From 7193c29a5f723d1547b47f3127e4c88751349633 Mon Sep 17 00:00:00 2001 From: Jeremy Saklad Date: Thu, 26 May 2022 07:05:47 -0600 Subject: [PATCH] feat: Add Segmented Ribcage to torsos --- bonemarketsolver/data/torsos.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/bonemarketsolver/data/torsos.py b/bonemarketsolver/data/torsos.py index 2beec0f..4d15047 100644 --- a/bonemarketsolver/data/torsos.py +++ b/bonemarketsolver/data/torsos.py @@ -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)