ah
This commit is contained in:
@@ -6,7 +6,7 @@ minecraft_version=1.20.1
|
|||||||
yarn_mappings=1.20.1+build.10
|
yarn_mappings=1.20.1+build.10
|
||||||
loader_version=0.18.3
|
loader_version=0.18.3
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version=26.2.25
|
mod_version=26.2.26
|
||||||
maven_group=dev.tggamesyt
|
maven_group=dev.tggamesyt
|
||||||
archives_base_name=szar
|
archives_base_name=szar
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
|||||||
@@ -647,6 +647,11 @@ public class Szar implements ModInitializer {
|
|||||||
})
|
})
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
Registry.register(
|
||||||
|
Registries.ITEM,
|
||||||
|
new Identifier(MOD_ID, "towers"),
|
||||||
|
new BlockItem(OBELISK_CORE, new Item.Settings())
|
||||||
|
);
|
||||||
}
|
}
|
||||||
public static final StructurePieceType TNT_OBELISK_PIECE =
|
public static final StructurePieceType TNT_OBELISK_PIECE =
|
||||||
Registry.register(
|
Registry.register(
|
||||||
|
|||||||
@@ -72,5 +72,6 @@
|
|||||||
"entity.szar.merl": "Merl",
|
"entity.szar.merl": "Merl",
|
||||||
"item.szar.merl_spawn_egg": "Merl Spawn Egg",
|
"item.szar.merl_spawn_egg": "Merl Spawn Egg",
|
||||||
"effect.szar.pregnant": "Pregnant",
|
"effect.szar.pregnant": "Pregnant",
|
||||||
"entity.szar.kid": "Kid"
|
"entity.szar.kid": "Kid",
|
||||||
|
"block.szar.obelisk_core": "Towers Core Block"
|
||||||
}
|
}
|
||||||
|
|||||||
6
src/main/resources/assets/szar/models/item/towers.json
Normal file
6
src/main/resources/assets/szar/models/item/towers.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "szar:item/towers"
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
src/main/resources/assets/szar/textures/item/towers.png
Normal file
BIN
src/main/resources/assets/szar/textures/item/towers.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 465 B |
@@ -5,7 +5,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"display": {
|
"display": {
|
||||||
"icon": { "item": "minecraft:tnt" },
|
"icon": { "item": "szar:towers" },
|
||||||
"title": "Hmm, familiar...",
|
"title": "Hmm, familiar...",
|
||||||
"description": "You were there when the towers fell",
|
"description": "You were there when the towers fell",
|
||||||
"frame": "challenge",
|
"frame": "challenge",
|
||||||
|
|||||||
Reference in New Issue
Block a user