Skip to content

Commit

Permalink
Added aluminum ingot/raw aluminum
Browse files Browse the repository at this point in the history
  • Loading branch information
JunePrimavera committed Sep 1, 2023
1 parent 0090e51 commit 5d48f64
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/io/github/teampropulsive/Items.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,32 @@ public class Items {
public static final Item OXYGEN_CANISTER = new GasCanister(new FabricItemSettings(), Propulsive.id("gas/oxygen"), 1000);
public static final Item METHANE_CANISTER = new GasCanister(new FabricItemSettings(), Propulsive.id("gas/methane"), 1000);
public static final Item HYDROGEN_CANISTER = new GasCanister(new FabricItemSettings(), Propulsive.id("gas/hydrogen"), 1000);
public static final Item RAW_ALUMINUM = new Item(new FabricItemSettings());
public static final Item ALUMINUM_INGOT = new Item(new FabricItemSettings());
public static final ArmorItem SPACE_HELMET = new ArmorItem(SpaceArmorMaterial.INSTANCE, ArmorItem.Type.HELMET, new FabricItemSettings());
public static final ArmorItem SPACE_CHESTPLATE = new ArmorItem(SpaceArmorMaterial.INSTANCE, ArmorItem.Type.CHESTPLATE, new FabricItemSettings());
public static final ArmorItem SPACE_LEGGINGS = new ArmorItem(SpaceArmorMaterial.INSTANCE, ArmorItem.Type.LEGGINGS, new FabricItemSettings());
public static final ArmorItem SPACE_BOOTS = new ArmorItem(SpaceArmorMaterial.INSTANCE, ArmorItem.Type.BOOTS, new FabricItemSettings());
public static void register() {
// Canisters
registerItem("oxygen_canister", OXYGEN_CANISTER);
registerItem("methane_canister", METHANE_CANISTER);
registerItem("hydrogen_canister", HYDROGEN_CANISTER);

// Space suit
registerItem("space_helmet", SPACE_HELMET);
registerItem("space_chestplate", SPACE_CHESTPLATE);
registerItem("space_leggings", SPACE_LEGGINGS);
registerItem("space_boots", SPACE_BOOTS);

// Moon blocks
registerBlockItem("lunar_regolith", Blocks.MOON_REGOLITH);
registerBlockItem("volcanic_lunar_regolith", Blocks.VOLCANIC_MOON_REGOLITH);
registerBlockItem("anorthosite", Blocks.ANORTHOSITE);

// Aluminum
registerItem("raw_aluminum", RAW_ALUMINUM);
registerItem("aluminum_ingot", ALUMINUM_INGOT);
registerBlockItem("aluminum_block", Blocks.ALUMINUM_BLOCK);
registerBlockItem("aluminum_ore", Blocks.ALUMINUM_ORE);
registerBlockItem("aluminum_deepslate_ore", Blocks.ALUMINUM_DEEPSLATE_ORE);
Expand Down

0 comments on commit 5d48f64

Please sign in to comment.