feat: Add Segmented Ribcage to torsos

This commit is contained in:
Jeremy Saklad 2022-05-26 07:05:47 -06:00
parent 5075e773ee
commit 7193c29a5f
Signed by: Jeremy Saklad
GPG Key ID: 94B02EA3D0B6481B
1 changed files with 11 additions and 0 deletions

View File

@ -134,5 +134,16 @@ class Torso(Enum):
menace = 1
)
SEGMENTED_RIBCAGE = Action(
"Build on a Segmented Ribcage",
cost = Cost.ACTION.value + Cost.SEGMENTED_RIBCAGE.value,
torso_style = 110,
value = 250,
skulls_needed = 1,
limbs_needed = 2,
tails_needed = 1,
segments = 1,
)
def __str__(self):
return str(self.value)