feat(data): Add Glim-Encrusted Carapace
This shiny new torso costs 3,000 Stuiver, which is a new currency that has also been added to the list of costs.
This commit is contained in:
parent
ca7e4c7fc0
commit
0b1ed974c1
|
@ -190,6 +190,13 @@ class Cost(Enum):
|
||||||
# Byproducts subtracted from cost
|
# Byproducts subtracted from cost
|
||||||
SEGMENTED_RIBCAGE = (14*ACTION - 52.70)/3
|
SEGMENTED_RIBCAGE = (14*ACTION - 52.70)/3
|
||||||
|
|
||||||
|
# Stuiver
|
||||||
|
STUIVER = 5
|
||||||
|
|
||||||
|
# Glim-Encrusted Carapace
|
||||||
|
# The Flexile Peddler
|
||||||
|
GLIM_ENCRUSTED_CARAPACE = 3000*STUIVER
|
||||||
|
|
||||||
# Carved Ball of Stygian Ivory
|
# Carved Ball of Stygian Ivory
|
||||||
STYGIAN_IVORY = 250
|
STYGIAN_IVORY = 250
|
||||||
|
|
||||||
|
|
|
@ -98,6 +98,16 @@ class Torso(Enum):
|
||||||
antiquity = 2
|
antiquity = 2
|
||||||
)
|
)
|
||||||
|
|
||||||
|
GLIM_ENCRUSTED_CARAPACE = Action(
|
||||||
|
"Make something of your Glim-Encrusted Carapace",
|
||||||
|
cost = Cost.ACTION.value + Cost.GLIM_ENCRUSTED_CARAPACE.value,
|
||||||
|
torso_style = 55,
|
||||||
|
value = 6000,
|
||||||
|
skulls_needed = 1,
|
||||||
|
limbs_needed = 8,
|
||||||
|
amalgamy = 1
|
||||||
|
)
|
||||||
|
|
||||||
RIBCAGE_WITH_A_BOUQUET_OF_EIGHT_SPINES = Action(
|
RIBCAGE_WITH_A_BOUQUET_OF_EIGHT_SPINES = Action(
|
||||||
"Build on the Ribcage with the Eight Spines",
|
"Build on the Ribcage with the Eight Spines",
|
||||||
cost = Cost.ACTION.value + Cost.RIBCAGE_WITH_EIGHT_SPINES.value,
|
cost = Cost.ACTION.value + Cost.RIBCAGE_WITH_EIGHT_SPINES.value,
|
||||||
|
|
|
@ -260,6 +260,7 @@ def Solve(shadowy_level, bone_market_fluctuations = None, zoological_mania = Non
|
||||||
(40, 3), # Many-limbed
|
(40, 3), # Many-limbed
|
||||||
(45, 3), # Segmented
|
(45, 3), # Segmented
|
||||||
(50, 4), # Mammoth
|
(50, 4), # Mammoth
|
||||||
|
(55, 5), # Luminous
|
||||||
(60, 5), # Baroque
|
(60, 5), # Baroque
|
||||||
(70, 6), # Deep-water
|
(70, 6), # Deep-water
|
||||||
(80, 6), # Prismatic
|
(80, 6), # Prismatic
|
||||||
|
|
Loading…
Reference in New Issue