Added incinerator

This commit is contained in:
Anuken
2018-04-08 12:23:39 -04:00
parent 6db1175c95
commit 21fe0f9246
7 changed files with 224 additions and 126 deletions

View File

@@ -67,6 +67,7 @@ public class Recipes {
new Recipe(crafting, CraftingBlocks.pulverizer, stack(Items.steel, 10), stack(Items.iron, 10)),
new Recipe(crafting, CraftingBlocks.stoneFormer, stack(Items.steel, 10), stack(Items.iron, 10)),
new Recipe(crafting, CraftingBlocks.melter, stack(Items.steel, 30), stack(Items.titanium, 15)),
new Recipe(crafting, CraftingBlocks.incinerator, stack(Items.steel, 60), stack(Items.iron, 60)),
new Recipe(crafting, CraftingBlocks.weaponFactory, stack(Items.steel, 60), stack(Items.iron, 60)).setDesktop(),
//new Recipe(production, ProductionBlocks.stonedrill, stack(Item.stone, 12)),

View File

@@ -193,5 +193,9 @@ public class CraftingBlocks {
weaponFactory = new WeaponFactory("weaponfactory") {{
size = 2;
health = 250;
}},
incinerator = new Incinerator("incinerator") {{
health = 90;
}};
}