Skip to content

Commit

Permalink
groveling gravel everything resistant enemies (like strong wind)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsimich committed Nov 5, 2024
1 parent bb82967 commit de7f7c6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions RELEASE/scripts/autoscend/iotms/mr2023.ash
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ boolean wantToThrowGravel(location loc, monster enemy)
{
return true;
}
if(enemy.physical_resistance >= 100 && enemy.elemental_resistance >= 100)
{
return true;
}
// look for specific monsters in zones where some monsters we do care about
static boolean[string] gravelTargets = $strings[
Expand Down

0 comments on commit de7f7c6

Please sign in to comment.