Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static void register() {

public static final BlockEntry<DropExperienceBlock> TIN_ORE = Robotics.REGISTRATE
.block("tin_ore", DropExperienceBlock::new)
.lang("Tin ore")
.lang("Tin Ore")
.properties(properties -> properties.of()
.sound(SoundType.STONE)
.strength(3.0F, 3.0F)
Expand All @@ -56,7 +56,7 @@ public static void register() {

public static final BlockEntry<DropExperienceBlock> DEEPSLATE_TIN_ORE = Robotics.REGISTRATE
.block("deepslate_tin_ore", DropExperienceBlock::new)
.lang("Deepslate tin ore")
.lang("Deepslate Tin Ore")
.initialProperties(BlockRegistry.TIN_ORE)
.properties(properties -> properties
.sound(SoundType.DEEPSLATE)
Expand All @@ -74,7 +74,7 @@ public static void register() {

public static final BlockEntry<Block> TIN_BLOCK = Robotics.REGISTRATE
.block("tin_block", Block::new)
.lang("Tin block")
.lang("Block of Tin")
.properties(properties -> properties.of()
.sound(SoundType.METAL)
.strength(5.0F, 6.0F)
Expand All @@ -90,7 +90,7 @@ public static void register() {

public static final BlockEntry<Block> BRONZE_BLOCK = Robotics.REGISTRATE
.block("bronze_block", Block::new)
.lang("Bronze block")
.lang("Block of Bronze")
.properties(properties -> properties.of()
.sound(SoundType.METAL)
.strength(6.0F, 7.0F)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,31 +24,31 @@ public static void register() {

public static final ItemEntry<Item> TIN_INGOT = Robotics.REGISTRATE
.item("tin_ingot", Item::new)
.lang("Tin ingot")
.lang("Tin Ingot")
.tag(Tags.Items.INGOTS)
.tag(AllTags.forgeItemTag("ingots/tin"))
.register();
public static final ItemEntry<Item> TIN_NUGGET = Robotics.REGISTRATE
.item("tin_nugget", Item::new)
.lang("Tin nugget")
.lang("Tin Nugget")
.tag(Tags.Items.NUGGETS)
.tag(AllTags.forgeItemTag("nuggets/tin"))
.register();
public static final ItemEntry<Item> RAW_TIN = Robotics.REGISTRATE
.item("raw_tin", Item::new)
.lang("Raw tin")
.lang("Raw Tin")
.tag(Tags.Items.RAW_MATERIALS)
.register();

public static final ItemEntry<Item> BRONZE_INGOT = Robotics.REGISTRATE
.item("bronze_ingot", Item::new)
.lang("Bronze ingot")
.lang("Bronze Ingot")
.tag(Tags.Items.INGOTS)
.tag(AllTags.forgeItemTag("ingots/bronze"))
.register();
public static final ItemEntry<Item> BRONZE_NUGGET = Robotics.REGISTRATE
.item("bronze_nugget", Item::new)
.lang("Bronze nugget")
.lang("Bronze Nugget")
.tag(Tags.Items.NUGGETS)
.tag(AllTags.forgeItemTag("nuggets/bronze"))
.register();
Expand Down