blaze casings and pulv

This commit is contained in:
Sunskimmer822 2022-03-18 12:16:35 -07:00
parent 67a0070395
commit 1ecc79c84e
9 changed files with 112 additions and 0 deletions

View File

@ -91,6 +91,17 @@ public class Shitmod implements ModInitializer {
public static final Enchantment EXPLOSIVE_THORNS = new explosiveThornsEnchantment(Enchantment.Rarity.RARE, EnchantmentTarget.WEARABLE, new EquipmentSlot[] {EquipmentSlot.HEAD, EquipmentSlot.CHEST, EquipmentSlot.LEGS, EquipmentSlot.FEET});
public static final Item REINFORCED_BLAZE_METAL_INGOT = new reinforcedBlazeMetalIngot(new Item.Settings().fireproof().group(Shitmod.GENERAL_GROUP));
public static final Item BLAZE_METAL_SWORD_CASING = new blazeMetalSwordCasing(new Item.Settings().fireproof().group(Shitmod.GENERAL_GROUP));
public static final Item BLAZE_METAL_PICKAXE_CASING = new blazeMetalPickaxeCasing(new Item.Settings().fireproof().group(Shitmod.GENERAL_GROUP));
public static final Item BLAZE_METAL_AXE_CASING = new blazeMetalAxeCasing(new Item.Settings().fireproof().group(Shitmod.GENERAL_GROUP));
public static final Item BLAZE_METAL_SHOVEL_CASING = new blazeMetalShovelCasing(new Item.Settings().fireproof().group(Shitmod.GENERAL_GROUP));
public static final Item BLAZE_METAL_HOE_CASING = new blazeMetalHoeCasing(new Item.Settings().fireproof().group(Shitmod.GENERAL_GROUP));
@Override
public void onInitialize() {
@ -149,6 +160,18 @@ public class Shitmod implements ModInitializer {
Registry.register(Registry.ENCHANTMENT, new Identifier("shitmod", "explosive_thorns"), EXPLOSIVE_THORNS);
Registry.register(Registry.ITEM, new Identifier("shitmod", "reinforced_blaze_metal_ingot"), REINFORCED_BLAZE_METAL_INGOT);
Registry.register(Registry.ITEM, new Identifier("shitmod", "blaze_metal_sword_casing"), BLAZE_METAL_SWORD_CASING);
Registry.register(Registry.ITEM, new Identifier("shitmod", "blaze_metal_pickaxe_casing"), BLAZE_METAL_PICKAXE_CASING);
Registry.register(Registry.ITEM, new Identifier("shitmod", "blaze_metal_axe_casing"), BLAZE_METAL_AXE_CASING);
Registry.register(Registry.ITEM, new Identifier("shitmod", "blaze_metal_shovel_casing"), BLAZE_METAL_SHOVEL_CASING);
Registry.register(Registry.ITEM, new Identifier("shitmod", "blaze_metal_hoe_casing"), BLAZE_METAL_HOE_CASING);
CustomPortalBuilder.beginPortal()
.frameBlock(Shitmod.FABRIC_BLOCK)
.lightWithItem(Shitmod.BLAZE_METAL_INGOT)

View File

@ -0,0 +1,11 @@
package net.serenas.shitmod;
import net.minecraft.item.Item;
public class blazeMetalAxeCasing extends Item {
public blazeMetalAxeCasing(Settings settings) {
super(settings);
}
}

View File

@ -0,0 +1,11 @@
package net.serenas.shitmod;
import net.minecraft.item.Item;
public class blazeMetalHoeCasing extends Item {
public blazeMetalHoeCasing(Settings settings) {
super(settings);
}
}

View File

@ -0,0 +1,11 @@
package net.serenas.shitmod;
import net.minecraft.item.Item;
public class blazeMetalPickaxeCasing extends Item {
public blazeMetalPickaxeCasing(Settings settings) {
super(settings);
}
}

View File

@ -0,0 +1,11 @@
package net.serenas.shitmod;
import net.minecraft.item.Item;
public class blazeMetalShovelCasing extends Item {
public blazeMetalShovelCasing(Settings settings) {
super(settings);
}
}

View File

@ -0,0 +1,11 @@
package net.serenas.shitmod;
import net.minecraft.item.Item;
public class blazeMetalSwordCasing extends Item {
public blazeMetalSwordCasing(Settings settings) {
super(settings);
}
}

View File

@ -0,0 +1,11 @@
package net.serenas.shitmod;
import net.minecraft.item.Item;
public class pulverizedBlazeMetal extends Item {
public pulverizedBlazeMetal(Settings settings) {
super(settings);
}
}

View File

@ -0,0 +1,11 @@
package net.serenas.shitmod;
import net.minecraft.item.Item;
public class pulverizedNetherite extends Item {
public pulverizedNetherite(Settings settings) {
super(settings);
}
}

View File

@ -0,0 +1,12 @@
package net.serenas.shitmod;
import net.minecraft.item.Item;
public class reinforcedBlazeMetalIngot extends Item {
public reinforcedBlazeMetalIngot(Settings settings) {
super(settings);
}
}