From ca7e4c7fc039388e0940641d3e8c9d60fffda6fc Mon Sep 17 00:00:00 2001 From: Jeremy Saklad Date: Mon, 22 Apr 2024 08:09:33 -0500 Subject: [PATCH] style(data): Sort torsos by style value --- bonemarketsolver/data/torsos.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/bonemarketsolver/data/torsos.py b/bonemarketsolver/data/torsos.py index f92bf2b..10d09a7 100644 --- a/bonemarketsolver/data/torsos.py +++ b/bonemarketsolver/data/torsos.py @@ -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)