Added Stripped Pine Log
This commit is contained in:
parent
79f304521b
commit
b86455623a
9 changed files with 33 additions and 3 deletions
|
|
@ -25,4 +25,13 @@ public class BlockInit {
|
||||||
.requiresCorrectToolForDrops()
|
.requiresCorrectToolForDrops()
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
public static final RegistryObject<Block> STRIPPED_PINE_LOG = BLOCKS.register("stripped_pine_log",
|
||||||
|
() -> new Block(BlockBehaviour.Properties.of()
|
||||||
|
.mapColor(MapColor.COLOR_BROWN)
|
||||||
|
.sound(SoundType.WOOD)
|
||||||
|
.strength(2)
|
||||||
|
.explosionResistance(2)
|
||||||
|
.requiresCorrectToolForDrops()
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ public class CreativeTabInit {
|
||||||
output.accept(BlockInit.LEAD_ORE.get());
|
output.accept(BlockInit.LEAD_ORE.get());
|
||||||
output.accept(BlockInit.TIN_ORE.get());
|
output.accept(BlockInit.TIN_ORE.get());
|
||||||
output.accept(BlockInit.PINE_LOG.get());
|
output.accept(BlockInit.PINE_LOG.get());
|
||||||
|
output.accept(BlockInit.STRIPPED_PINE_LOG.get());
|
||||||
})
|
})
|
||||||
.build()
|
.build()
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -41,5 +41,6 @@ public class ItemsInit {
|
||||||
public static final RegistryObject<BlockItem> LEAD_ORE_ITEM = ITEMS.register("lead_ore", () -> new BlockItem(BlockInit.LEAD_ORE.get(), new Item.Properties()));
|
public static final RegistryObject<BlockItem> LEAD_ORE_ITEM = ITEMS.register("lead_ore", () -> new BlockItem(BlockInit.LEAD_ORE.get(), new Item.Properties()));
|
||||||
public static final RegistryObject<BlockItem> TIN_ORE_ITEM = ITEMS.register("tin_ore", () -> new BlockItem(BlockInit.TIN_ORE.get(), new Item.Properties()));
|
public static final RegistryObject<BlockItem> TIN_ORE_ITEM = ITEMS.register("tin_ore", () -> new BlockItem(BlockInit.TIN_ORE.get(), new Item.Properties()));
|
||||||
public static final RegistryObject<BlockItem> PINE_LOG_ITEM = ITEMS.register("pine_log", () -> new BlockItem(BlockInit.PINE_LOG.get(), new Item.Properties()));
|
public static final RegistryObject<BlockItem> PINE_LOG_ITEM = ITEMS.register("pine_log", () -> new BlockItem(BlockInit.PINE_LOG.get(), new Item.Properties()));
|
||||||
|
public static final RegistryObject<BlockItem> STRIPPED_PINE_LOG_ITEM = ITEMS.register("stripped_pine_log", () -> new BlockItem(BlockInit.STRIPPED_PINE_LOG.get(), new Item.Properties()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"":{
|
||||||
|
"model": "util_rings:block/stripped_pine_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -25,5 +25,6 @@
|
||||||
"block.util_rings.lead_ore": "Lead Ore",
|
"block.util_rings.lead_ore": "Lead Ore",
|
||||||
"block.util_rings.tin_ore": "Tin Ore",
|
"block.util_rings.tin_ore": "Tin Ore",
|
||||||
"block.util_rings.pine_log": "Pine Log",
|
"block.util_rings.pine_log": "Pine Log",
|
||||||
|
"block.util_rings.stripped_pine_log": "Stripped Pine Log",
|
||||||
"itemGroup.rings_tab": "Utility Rings"
|
"itemGroup.rings_tab": "Utility Rings"
|
||||||
}
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent":"minecraft:block/cube_all",
|
||||||
|
"textures":{
|
||||||
|
"all":"util_rings:block/pine/stripped_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "util_rings:block/stripped_pine_log"
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"replace": false,
|
"replace": false,
|
||||||
"values": [
|
"values": [
|
||||||
"util_rings:pine_log"
|
"util_rings:pine_log",
|
||||||
|
"util_rings:stripped_pine_log"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"replace": false,
|
"replace": false,
|
||||||
"values": [
|
"values": [
|
||||||
"util_rings:pine_log"
|
"util_rings:pine_log",
|
||||||
|
"util_rings:stripped_pine_log"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Reference in a new issue