style(data): Sort torsos by style value
This commit is contained in:
parent
7f8c9f7c32
commit
ca7e4c7fc0
|
@ -76,6 +76,17 @@ class Torso(Enum):
|
||||||
amalgamy = 2
|
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(
|
MAMMOTH_RIBCAGE = Action(
|
||||||
"Build on the Mammoth Ribcage",
|
"Build on the Mammoth Ribcage",
|
||||||
cost = Cost.ACTION.value + Cost.MAMMOTH_RIBCAGE.value,
|
cost = Cost.ACTION.value + Cost.MAMMOTH_RIBCAGE.value,
|
||||||
|
@ -134,16 +145,5 @@ class Torso(Enum):
|
||||||
menace = 1
|
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):
|
def __str__(self):
|
||||||
return str(self.value)
|
return str(self.value)
|
||||||
|
|
Loading…
Reference in New Issue