blaze casings and pulv
This commit is contained in:
parent
67a0070395
commit
1ecc79c84e
@ -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)
|
||||
|
11
src/main/java/net/serenas/shitmod/blazeMetalAxeCasing.java
Normal file
11
src/main/java/net/serenas/shitmod/blazeMetalAxeCasing.java
Normal 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);
|
||||
}
|
||||
|
||||
}
|
11
src/main/java/net/serenas/shitmod/blazeMetalHoeCasing.java
Normal file
11
src/main/java/net/serenas/shitmod/blazeMetalHoeCasing.java
Normal 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);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.serenas.shitmod;
|
||||
|
||||
import net.minecraft.item.Item;
|
||||
|
||||
public class blazeMetalPickaxeCasing extends Item {
|
||||
|
||||
public blazeMetalPickaxeCasing(Settings settings) {
|
||||
super(settings);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.serenas.shitmod;
|
||||
|
||||
import net.minecraft.item.Item;
|
||||
|
||||
public class blazeMetalShovelCasing extends Item {
|
||||
|
||||
public blazeMetalShovelCasing(Settings settings) {
|
||||
super(settings);
|
||||
}
|
||||
|
||||
}
|
11
src/main/java/net/serenas/shitmod/blazeMetalSwordCasing.java
Normal file
11
src/main/java/net/serenas/shitmod/blazeMetalSwordCasing.java
Normal 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);
|
||||
}
|
||||
|
||||
}
|
11
src/main/java/net/serenas/shitmod/pulverizedBlazeMetal.java
Normal file
11
src/main/java/net/serenas/shitmod/pulverizedBlazeMetal.java
Normal 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);
|
||||
}
|
||||
|
||||
}
|
11
src/main/java/net/serenas/shitmod/pulverizedNetherite.java
Normal file
11
src/main/java/net/serenas/shitmod/pulverizedNetherite.java
Normal 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);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package net.serenas.shitmod;
|
||||
|
||||
import net.minecraft.item.Item;
|
||||
|
||||
public class reinforcedBlazeMetalIngot extends Item {
|
||||
|
||||
public reinforcedBlazeMetalIngot(Settings settings) {
|
||||
super(settings);
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user