style(data): Sort torsos by style value

This commit is contained in:
Jeremy Saklad 2024-04-22 08:09:33 -05:00
parent 7f8c9f7c32
commit ca7e4c7fc0
Signed by: Jeremy Saklad
GPG Key ID: 94B02EA3D0B6481B
1 changed files with 11 additions and 11 deletions

View File

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