Skip to content

Commit

Permalink
extra settings for [A Shrunken Adventurer Am I] (loathers#1351)
Browse files Browse the repository at this point in the history
* get beehive. wall is too difficult without it
* get boning knife. wall is too difficult without it
* ignore flyer in hardcore. being small means you very often die when using it. and in hardcore access to workarounds is restricted. Ideally this would be replaced with a more detailed check & fix in the future.
* do not get [steel margarita]. can only consume size 1 drinks
fixes loathers#1350
  • Loading branch information
taltamir authored Sep 4, 2023
1 parent c7b77c3 commit 9f15554
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions RELEASE/scripts/autoscend/paths/small.ash
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ void small_initializeSettings()
return;
}
set_property("auto_wandOfNagamar", true); //wand used in this path
set_property("auto_getBeehive", true); //wall is too difficult without it
set_property("auto_getBoningKnife", true); //wall is too difficult without it
set_property("auto_getSteelOrgan", false); //can only consume size 1 drinks
if(in_hardcore())
{
//having vastly lower stats and no easy solutions in hardcore means you always die from flyering
//should be replaced with a more elegant solution where detailed estimation / calculation is done.
set_property("auto_ignoreFlyer", true);
}
}

void auto_SmallPulls()
Expand Down

0 comments on commit 9f15554

Please sign in to comment.