Compare commits
	
		
			2 Commits
		
	
	
		
			7f8c9f7c32
			...
			0b1ed974c1
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 0b1ed974c1 | |||
| ca7e4c7fc0 | 
@ -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
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -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,
 | 
				
			||||||
@ -87,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,
 | 
				
			||||||
@ -134,16 +155,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)
 | 
				
			||||||
 | 
				
			|||||||
@ -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…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user