Copper stairs, blocks and slabs are gone.
This commit is contained in:
parent
c4011c800b
commit
7216f55ba9
32 changed files with 46 additions and 373 deletions
|
@ -27,6 +27,7 @@ package techreborn.init;
|
|||
import net.fabricmc.fabric.api.loot.v1.FabricLootPoolBuilder;
|
||||
import net.fabricmc.fabric.api.loot.v1.event.LootTableLoadingCallback;
|
||||
import net.minecraft.item.ItemConvertible;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.loot.LootPool;
|
||||
import net.minecraft.loot.entry.ItemEntry;
|
||||
import net.minecraft.loot.entry.LootPoolEntry;
|
||||
|
@ -40,7 +41,7 @@ public class ModLoot {
|
|||
|
||||
public static void init() {
|
||||
|
||||
LootPoolEntry copperIngot = makeEntry(Ingots.COPPER);
|
||||
LootPoolEntry copperIngot = makeEntry(Items.COPPER_INGOT);
|
||||
LootPoolEntry tinIngot = makeEntry(Ingots.TIN);
|
||||
LootPoolEntry leadIngot = makeEntry(Ingots.LEAD);
|
||||
LootPoolEntry silverIngot = makeEntry(Ingots.SILVER);
|
||||
|
|
|
@ -114,6 +114,7 @@ public class TRContent {
|
|||
public static Block RUBBER_WOOD;
|
||||
public static Block STRIPPED_RUBBER_WOOD;
|
||||
public static Block POTTED_RUBBER_SAPLING;
|
||||
public static Block COPPER_WALL;
|
||||
|
||||
// Armor
|
||||
public static Item CLOAKING_DEVICE;
|
||||
|
@ -426,7 +427,7 @@ public class TRContent {
|
|||
}
|
||||
|
||||
public enum StorageBlocks implements ItemConvertible {
|
||||
ALUMINUM, BRASS, BRONZE, CHROME, COPPER, ELECTRUM, INVAR, IRIDIUM, IRIDIUM_REINFORCED_STONE,
|
||||
ALUMINUM, BRASS, BRONZE, CHROME, ELECTRUM, INVAR, IRIDIUM, IRIDIUM_REINFORCED_STONE,
|
||||
IRIDIUM_REINFORCED_TUNGSTENSTEEL, LEAD, NICKEL, PERIDOT, PLATINUM, RED_GARNET, REFINED_IRON, RUBY,
|
||||
SAPPHIRE, SILVER, STEEL, TIN, TITANIUM, TUNGSTEN, TUNGSTENSTEEL, YELLOW_GARNET, ZINC;
|
||||
|
||||
|
@ -671,7 +672,7 @@ public class TRContent {
|
|||
}
|
||||
|
||||
public enum Ingots implements ItemConvertible {
|
||||
ADVANCED_ALLOY, ALUMINUM, BRASS, BRONZE, CHROME, COPPER, ELECTRUM, HOT_TUNGSTENSTEEL, INVAR, IRIDIUM_ALLOY, IRIDIUM,
|
||||
ADVANCED_ALLOY, ALUMINUM, BRASS, BRONZE, CHROME, ELECTRUM, HOT_TUNGSTENSTEEL, INVAR, IRIDIUM_ALLOY, IRIDIUM,
|
||||
LEAD, MIXED_METAL, NICKEL, PLATINUM, REFINED_IRON, SILVER, STEEL, TIN, TITANIUM, TUNGSTEN, TUNGSTENSTEEL, ZINC;
|
||||
|
||||
public final String name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue