Added large variants of titanium/durium walls
This commit is contained in:
@@ -14,6 +14,8 @@ public enum Recipe{
|
||||
titaniumwall(defense, DefenseBlocks.titaniumwall, stack(Item.titanium, 2)),
|
||||
duriumwall(defense, DefenseBlocks.diriumwall, stack(Item.dirium, 2)),
|
||||
compositewall(defense, DefenseBlocks.compositewall, stack(Item.dirium, 2), stack(Item.titanium, 2), stack(Item.steel, 2), stack(Item.iron, 2)),
|
||||
titaniumwalllarge(defense, DefenseBlocks.titaniumwalllarge, stack(Item.titanium, 8)),
|
||||
duriumwalllarge(defense, DefenseBlocks.diriumwalllarge, stack(Item.dirium, 8)),
|
||||
healturret(defense, DefenseBlocks.repairturret, stack(Item.iron, 30)),
|
||||
megahealturret(defense, DefenseBlocks.megarepairturret, stack(Item.iron, 20), stack(Item.steel, 30)),
|
||||
titaniumshieldwall(defense, DefenseBlocks.titaniumshieldwall, stack(Item.titanium, 2)),
|
||||
|
||||
@@ -37,6 +37,16 @@ public class DefenseBlocks{
|
||||
health = 270;
|
||||
formalName = "composite wall";
|
||||
}},
|
||||
titaniumwalllarge = new Wall("titaniumwall-large"){{
|
||||
health = 150*4;
|
||||
formalName = "large titanium wall";
|
||||
width = height = 2;
|
||||
}},
|
||||
diriumwalllarge = new Wall("duriumwall-large"){{
|
||||
health = 190*4;
|
||||
formalName = "large dirium wall";
|
||||
width = height = 2;
|
||||
}},
|
||||
titaniumshieldwall = new ShieldedWallBlock("titaniumshieldwall"){{
|
||||
health = 150;
|
||||
formalName = "shielded wall";
|
||||
|
||||
Reference in New Issue
Block a user