Skip to content

Commit b44679a

Browse files
committed
longk
1 parent 0af0f50 commit b44679a

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

src/overblocks/content/OBBlocks.java

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class OBBlocks {
2626
hotCarbonStone, magmaCarbonStone, graphiticFloor, ceriseStone, redIceStone, shallowSlag, sunkenCoreZone, carbonPebbles, beryllicVent,
2727
redIceVent, ceriseVent, ceriseStoneWall, redGraphiticWall, ceriseBoulder,
2828
//other
29-
payloadPropulsionTower, plastaniumCrusher, plastaniumDeflectWall,
29+
payloadPropulsionTower, plastaniumCrusher, diseaseMixer, plastaniumDeflectWall,
3030
//turrets
3131
vampirism, devastation;
3232

@@ -174,6 +174,18 @@ public static void load(){
174174
consumeItem(Items.coal, 2);
175175
}};
176176

177+
diseaseMixer = new GenericCrafter("disease-mixer"){{
178+
requirements(Category.crafting, with(Items.copper, 50, Items.lead, 25, Items.titanium, 20));
179+
hasItems = true;
180+
hasPower = true;
181+
outputItem = new ItemStack(OBItems.diseaseVector, 1);
182+
183+
size = 2;
184+
185+
consumePower(0.3f);
186+
consumeItems(with(Items.lead, 1, Items.sporePod, 2));
187+
}};
188+
177189
plastaniumDeflectWall = new ReflectionWall("plastanium-deflect-wall"){{
178190
requirements(Category.defense, ItemStack.with(Items.phaseFabric, 24, Items.plastanium, 16, Items.metaglass, 8));
179191
health = 200 * 4 * 4;

0 commit comments

Comments
 (0)