blaze metal stuff
This commit is contained in:
parent
5cbbe228f9
commit
f6d06346b7
@ -103,7 +103,13 @@ public class Shitmod implements ModInitializer {
|
|||||||
|
|
||||||
public static final Item BLAZE_METAL_HOE_CASING = new blazeMetalHoeCasing(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));
|
||||||
|
|
||||||
public static final Item POTATO_CHIPS = new potatoChips(new Item.Settings().group(ItemGroup.FOOD));
|
public static final Item POTATO_CHIPS = new potatoChips(new Item.Settings().group(ItemGroup.FOOD).maxCount(69));
|
||||||
|
|
||||||
|
public static final Item PULVERIZED_BLAZE_METAL = new pulverizedBlazeMetal(new Item.Settings().fireproof().group(Shitmod.GENERAL_GROUP));
|
||||||
|
|
||||||
|
public static final Item SEARED_GOLD_INGOT = new searedGoldIngot(new Item.Settings().fireproof().group(Shitmod.GENERAL_GROUP));
|
||||||
|
|
||||||
|
public static final Item PULVERIZED_NETHERITE = new pulverizedNetherite(new Item.Settings().fireproof().group(Shitmod.GENERAL_GROUP));
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onInitialize() {
|
public void onInitialize() {
|
||||||
@ -177,6 +183,12 @@ public class Shitmod implements ModInitializer {
|
|||||||
|
|
||||||
Registry.register(Registry.ITEM, new Identifier("shitmod", "potato_chip"), POTATO_CHIPS);
|
Registry.register(Registry.ITEM, new Identifier("shitmod", "potato_chip"), POTATO_CHIPS);
|
||||||
|
|
||||||
|
Registry.register(Registry.ITEM, new Identifier("shitmod", "pulverized_blaze_metal"), PULVERIZED_BLAZE_METAL);
|
||||||
|
|
||||||
|
Registry.register(Registry.ITEM, new Identifier("shitmod", "pulverized_netherite"), PULVERIZED_NETHERITE);
|
||||||
|
|
||||||
|
Registry.register(Registry.ITEM, new Identifier("shitmod", "seared_gold_ingot"), SEARED_GOLD_INGOT);
|
||||||
|
|
||||||
CustomPortalBuilder.beginPortal()
|
CustomPortalBuilder.beginPortal()
|
||||||
.frameBlock(Shitmod.FABRIC_BLOCK)
|
.frameBlock(Shitmod.FABRIC_BLOCK)
|
||||||
.lightWithItem(Shitmod.BLAZE_METAL_INGOT)
|
.lightWithItem(Shitmod.BLAZE_METAL_INGOT)
|
||||||
|
11
src/main/java/net/serenas/shitmod/searedGoldIngot.java
Normal file
11
src/main/java/net/serenas/shitmod/searedGoldIngot.java
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
package net.serenas.shitmod;
|
||||||
|
|
||||||
|
import net.minecraft.item.Item;
|
||||||
|
|
||||||
|
public class searedGoldIngot extends Item{
|
||||||
|
|
||||||
|
public searedGoldIngot(Settings settings) {
|
||||||
|
super(settings);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -15,7 +15,8 @@ public class totemOfEquivalency extends Item {
|
|||||||
public totemOfEquivalency(Settings settings) {
|
public totemOfEquivalency(Settings settings) {
|
||||||
super(settings);
|
super(settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TypedActionResult<ItemStack> use(World World, PlayerEntity PlayerEntity, Hand Hand) {
|
public TypedActionResult<ItemStack> use(World World, PlayerEntity PlayerEntity, Hand Hand) {
|
||||||
PlayerEntity.kill();
|
PlayerEntity.kill();
|
||||||
|
@ -2,5 +2,5 @@
|
|||||||
"type": "minecraft:smithing",
|
"type": "minecraft:smithing",
|
||||||
"base": {"item":"minecraft:stone_axe"},
|
"base": {"item":"minecraft:stone_axe"},
|
||||||
"addition": {"item":"minecraft:gold_ingot"},
|
"addition": {"item":"minecraft:gold_ingot"},
|
||||||
"result": {"item":"minecraft:gold_axe"}
|
"result": {"item":"minecraft:golden_axe"}
|
||||||
}
|
}
|
@ -2,5 +2,5 @@
|
|||||||
"type": "minecraft:smithing",
|
"type": "minecraft:smithing",
|
||||||
"base": {"item":"minecraft:stone_hoe"},
|
"base": {"item":"minecraft:stone_hoe"},
|
||||||
"addition": {"item":"minecraft:gold_ingot"},
|
"addition": {"item":"minecraft:gold_ingot"},
|
||||||
"result": {"item":"minecraft:gold_hoe"}
|
"result": {"item":"minecraft:golden_hoe"}
|
||||||
}
|
}
|
@ -2,5 +2,5 @@
|
|||||||
"type": "minecraft:smithing",
|
"type": "minecraft:smithing",
|
||||||
"base": {"item":"minecraft:stone_pickaxe"},
|
"base": {"item":"minecraft:stone_pickaxe"},
|
||||||
"addition": {"item":"minecraft:gold_ingot"},
|
"addition": {"item":"minecraft:gold_ingot"},
|
||||||
"result": {"item":"minecraft:gold_pickaxe"}
|
"result": {"item":"minecraft:golden_pickaxe"}
|
||||||
}
|
}
|
@ -2,5 +2,5 @@
|
|||||||
"type": "minecraft:smithing",
|
"type": "minecraft:smithing",
|
||||||
"base": {"item":"minecraft:stone_shovel"},
|
"base": {"item":"minecraft:stone_shovel"},
|
||||||
"addition": {"item":"minecraft:gold_ingot"},
|
"addition": {"item":"minecraft:gold_ingot"},
|
||||||
"result": {"item":"minecraft:gold_shovel"}
|
"result": {"item":"minecraft:golden_shovel"}
|
||||||
}
|
}
|
@ -2,5 +2,5 @@
|
|||||||
"type": "minecraft:smithing",
|
"type": "minecraft:smithing",
|
||||||
"base": {"item":"minecraft:stone_sword"},
|
"base": {"item":"minecraft:stone_sword"},
|
||||||
"addition": {"item":"minecraft:gold_ingot"},
|
"addition": {"item":"minecraft:gold_ingot"},
|
||||||
"result": {"item":"minecraft:gold_sword"}
|
"result": {"item":"minecraft:golden_sword"}
|
||||||
}
|
}
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"type": "minecraft:smithing",
|
"type": "minecraft:smithing",
|
||||||
"base": {"item":"minecraft:gold_axe"},
|
"base": {"item":"minecraft:golden_axe"},
|
||||||
"addition": {"item":"minecraft:diamond"},
|
"addition": {"item":"minecraft:diamond"},
|
||||||
"result": {"item":"minecraft:diamond_axe"}
|
"result": {"item":"minecraft:diamond_axe"}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"type": "minecraft:smithing",
|
"type": "minecraft:smithing",
|
||||||
"base": {"item":"minecraft:gold_hoe"},
|
"base": {"item":"minecraft:golden_hoe"},
|
||||||
"addition": {"item":"minecraft:diamond"},
|
"addition": {"item":"minecraft:diamond"},
|
||||||
"result": {"item":"minecraft:diamond_hoe"}
|
"result": {"item":"minecraft:diamond_hoe"}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"type": "minecraft:smithing",
|
"type": "minecraft:smithing",
|
||||||
"base": {"item":"minecraft:gold_pickaxe"},
|
"base": {"item":"minecraft:golden_pickaxe"},
|
||||||
"addition": {"item":"minecraft:diamond"},
|
"addition": {"item":"minecraft:diamond"},
|
||||||
"result": {"item":"minecraft:diamond_pickaxe"}
|
"result": {"item":"minecraft:diamond_pickaxe"}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"type": "minecraft:smithing",
|
"type": "minecraft:smithing",
|
||||||
"base": {"item":"minecraft:gold_shovel"},
|
"base": {"item":"minecraft:golden_shovel"},
|
||||||
"addition": {"item":"minecraft:diamond"},
|
"addition": {"item":"minecraft:diamond"},
|
||||||
"result": {"item":"minecraft:diamond_shovel"}
|
"result": {"item":"minecraft:diamond_shovel"}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"type": "minecraft:smithing",
|
"type": "minecraft:smithing",
|
||||||
"base": {"item":"minecraft:gold_sword"},
|
"base": {"item":"minecraft:golden_sword"},
|
||||||
"addition": {"item":"minecraft:diamond"},
|
"addition": {"item":"minecraft:diamond"},
|
||||||
"result": {"item":"minecraft:diamond_sword"}
|
"result": {"item":"minecraft:diamond_sword"}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"pattern": [
|
||||||
|
"RX ",
|
||||||
|
" ",
|
||||||
|
" "
|
||||||
|
],
|
||||||
|
"key": {
|
||||||
|
"X": {
|
||||||
|
"item": "shitmod:pulverized_netherite"
|
||||||
|
},
|
||||||
|
"R": {
|
||||||
|
"item": "shitmod:seared_gold_ingot"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"item": "shitmod:pulverized_blaze_metal",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:blasting",
|
||||||
|
"ingredient": {
|
||||||
|
"item": "minecraft:gold_ingot"
|
||||||
|
},
|
||||||
|
"result": "shitmod:seared_gold_ingot",
|
||||||
|
"experience": 0.1,
|
||||||
|
"cookingtime": 200
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:blasting",
|
||||||
|
"ingredient": {
|
||||||
|
"item": "minecraft:netherite_ingot"
|
||||||
|
},
|
||||||
|
"result": "shitmod:pulverized_netherite",
|
||||||
|
"experience": 0.1,
|
||||||
|
"cookingtime": 200
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
{
|
||||||
|
"item": "shitmod:blaze_metal_ingot"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "shitmod:blaze_metal_ingot"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "shitmod:blaze_metal_ingot"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "shitmod:blaze_metal_ingot"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "shitmod:pulverized_blaze_metal"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"item": "shitmod:reinforced_blaze_metal_ingot",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user