From f2a421afca7b543a9aef45538716310382c1b3da Mon Sep 17 00:00:00 2001 From: Jeremy Saklad Date: Tue, 31 Aug 2021 17:06:03 -0500 Subject: [PATCH] Correct Searing Enigma cost Acquiring Searing Enigmas through Khan's Heart costs two Intercepted Cablegrams, which must also be acquired through Khan's Heart. --- bonemarketsolver/data/costs.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bonemarketsolver/data/costs.py b/bonemarketsolver/data/costs.py index 8649805..63f2b33 100644 --- a/bonemarketsolver/data/costs.py +++ b/bonemarketsolver/data/costs.py @@ -91,6 +91,10 @@ class Cost(Enum): # Khan's Heart, 10 at a time INFILTRATING = ACTION/10 + # Intercepted Cablegram + # Khan's Heart, tap a telegraph cable, 50 at a time + INTERCEPTED_CABLEGRAM = (2*ACTION + 130*INFILTRATING)/50 + # Volume of Collated Research # Hurlers statue, 10 at a time COLLATED_RESEARCH = (ACTION + 4*HELL_FAVOURS)/10 @@ -175,8 +179,8 @@ class Cost(Enum): SCINTILLACK = 250 # Searing Enigma - # Khan's Heart - SEARING_ENIGMA = 2*ACTION + 130*INFILTRATING + # Khan's Heart, disgruntled academic + SEARING_ENIGMA = 2*ACTION + 130*INFILTRATING + 2*INTERCEPTED_CABLEGRAM # Carved Ball of Stygian Ivory STYGIAN_IVORY = 250