From 1bf13a09009cdb8e94b124750bea756d82040aa3 Mon Sep 17 00:00:00 2001 From: Jeremy Saklad Date: Thu, 11 Aug 2022 16:03:40 -0500 Subject: [PATCH] feat: Update cost of Fossilised Forelimbs Fossilised Forelimbs now cost 85 Hinterland Scrip from Anning and Daughters, which makes Palaeontological Discoveries a better source. --- bonemarketsolver/data/costs.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bonemarketsolver/data/costs.py b/bonemarketsolver/data/costs.py index 0d127a1..e55f7dc 100644 --- a/bonemarketsolver/data/costs.py +++ b/bonemarketsolver/data/costs.py @@ -104,10 +104,6 @@ class Cost(Enum): # Hinterland Scrip HINTERLAND_SCRIP = 50 - # Fossilised Forelimb - # Anning and Daughters - FOSSILISED_FORELIMB = 55*HINTERLAND_SCRIP - # Hedonist # Handsome Townhouse, 3cp at a time HEDONIST_CP = ACTION/3 @@ -222,6 +218,10 @@ class Cost(Enum): # Plain of Thirsty Grasses PALAEONTOLOGICAL_DISCOVERY = (ACTION + 140*SURVEY)/6 + # Fossilised Forelimb + # Results of Excavation, 2 at a time + FOSSILISED_FORELIMB = (4*PALAEONTOLOGICAL_DISCOVERY)/2 + # Helical Thighbone # Results of Excavation, 6 at a time HELICAL_THIGH = (2*PALAEONTOLOGICAL_DISCOVERY)/6