iron and stone
This commit is contained in:
parent
6ef4f76ba4
commit
359da192a1
@ -18,9 +18,9 @@ public class blazeMetalSword extends SwordItem {
|
||||
super(toolMaterial, attackDamage, attackSpeed, settings);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public TypedActionResult<ItemStack> use(World World, PlayerEntity PlayerEntity, Hand Hand) {
|
||||
|
||||
Vec3d looking = PlayerEntity.getRotationVector();
|
||||
FireballEntity fireball = new FireballEntity(World, PlayerEntity, looking.x, looking.y, looking.z, 5);
|
||||
World.spawnEntity(fireball);
|
||||
|
6
src/main/resources/data/shitmod/recipes/iron_axe.json
Normal file
6
src/main/resources/data/shitmod/recipes/iron_axe.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "minecraft:smithing",
|
||||
"base": {"item":"minecraft:stone_axe"},
|
||||
"addition": {"item":"minecraft:iron_ingot"},
|
||||
"result": {"item":"minecraft:iron_axe"}
|
||||
}
|
6
src/main/resources/data/shitmod/recipes/iron_hoe.json
Normal file
6
src/main/resources/data/shitmod/recipes/iron_hoe.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "minecraft:smithing",
|
||||
"base": {"item":"minecraft:stone_hoe"},
|
||||
"addition": {"item":"minecraft:iron_ingot"},
|
||||
"result": {"item":"minecraft:iron_hoe"}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "minecraft:smithing",
|
||||
"base": {"item":"minecraft:stone_pickaxe"},
|
||||
"addition": {"item":"minecraft:iron_ingot"},
|
||||
"result": {"item":"minecraft:iron_pickaxe"}
|
||||
}
|
6
src/main/resources/data/shitmod/recipes/iron_shovel.json
Normal file
6
src/main/resources/data/shitmod/recipes/iron_shovel.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "minecraft:smithing",
|
||||
"base": {"item":"minecraft:stone_shovel"},
|
||||
"addition": {"item":"minecraft:iron_ingot"},
|
||||
"result": {"item":"minecraft:iron_shovel"}
|
||||
}
|
6
src/main/resources/data/shitmod/recipes/iron_sword.json
Normal file
6
src/main/resources/data/shitmod/recipes/iron_sword.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "minecraft:smithing",
|
||||
"base": {"item":"minecraft:stone_sword"},
|
||||
"addition": {"item":"minecraft:iron_ingot"},
|
||||
"result": {"item":"minecraft:iron_sword"}
|
||||
}
|
6
src/main/resources/data/shitmod/recipes/stone_axe.json
Normal file
6
src/main/resources/data/shitmod/recipes/stone_axe.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "minecraft:smithing",
|
||||
"base": {"item":"minecraft:wooden_axe"},
|
||||
"addition": {"item":"minecraft:cobblestone"},
|
||||
"result": {"item":"minecraft:stone_axe"}
|
||||
}
|
6
src/main/resources/data/shitmod/recipes/stone_hoe.json
Normal file
6
src/main/resources/data/shitmod/recipes/stone_hoe.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "minecraft:smithing",
|
||||
"base": {"item":"minecraft:wooden_hoe"},
|
||||
"addition": {"item":"minecraft:cobblestone"},
|
||||
"result": {"item":"minecraft:stone_hoe"}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "minecraft:smithing",
|
||||
"base": {"item":"minecraft:wooden_pickaxe"},
|
||||
"addition": {"item":"minecraft:cobblestone"},
|
||||
"result": {"item":"minecraft:stone_pickaxe"}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "minecraft:smithing",
|
||||
"base": {"item":"minecraft:wooden_shovel"},
|
||||
"addition": {"item":"minecraft:cobblestone"},
|
||||
"result": {"item":"minecraft:stone_shovel"}
|
||||
}
|
6
src/main/resources/data/shitmod/recipes/stone_sword.json
Normal file
6
src/main/resources/data/shitmod/recipes/stone_sword.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "minecraft:smithing",
|
||||
"base": {"item":"minecraft:wooden_sword"},
|
||||
"addition": {"item":"minecraft:cobblestone"},
|
||||
"result": {"item":"minecraft:stone_sword"}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user