@@ -26,7 +26,7 @@ public class OBBlocks {
26
26
hotCarbonStone , magmaCarbonStone , graphiticFloor , ceriseStone , redIceStone , shallowSlag , sunkenCoreZone , carbonPebbles , beryllicVent ,
27
27
redIceVent , ceriseVent , ceriseStoneWall , redGraphiticWall , ceriseBoulder ,
28
28
//other
29
- payloadPropulsionTower , plastaniumCrusher , plastaniumDeflectWall ,
29
+ payloadPropulsionTower , plastaniumCrusher , diseaseMixer , plastaniumDeflectWall ,
30
30
//turrets
31
31
vampirism , devastation ;
32
32
@@ -174,6 +174,18 @@ public static void load(){
174
174
consumeItem (Items .coal , 2 );
175
175
}};
176
176
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
+
177
189
plastaniumDeflectWall = new ReflectionWall ("plastanium-deflect-wall" ){{
178
190
requirements (Category .defense , ItemStack .with (Items .phaseFabric , 24 , Items .plastanium , 16 , Items .metaglass , 8 ));
179
191
health = 200 * 4 * 4 ;
0 commit comments