Skip to content

Commit

Permalink
Don't use Northern Explosion against snowmen (#2115)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shiverwarp authored Sep 17, 2024
1 parent 8512daf commit 47cb411
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions packages/garbo/src/combat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -607,8 +607,10 @@ export class Macro extends StrictMacro {
(currentHitStat() === $stat`Muscle` ||
itemType(equippedItem($slot`weapon`)) === "knife"),

Macro.trySkillRepeat(
$skill`Northern Explosion`,
Macro.ifNot(
$monster`X-32-F Combat Training Snowman`,
Macro.trySkillRepeat($skill`Northern Explosion`),
).trySkillRepeat(
$skill`Lunging Thrust-Smack`,
$skill`Saucegeyser`,
$skill`Weapon of the Pastalord`,
Expand All @@ -622,9 +624,12 @@ export class Macro extends StrictMacro {
$skill`Cannelloni Cannon`,
$skill`Wave of Sauce`,
$skill`Saucestorm`,
$skill`Northern Explosion`,
$skill`Lunging Thrust-Smack`,
),
)
.ifNot(
$monster`X-32-F Combat Training Snowman`,
Macro.trySkillRepeat($skill`Northern Explosion`),
)
.trySkillRepeat($skill`Lunging Thrust-Smack`),
)
.attack()
.repeat();
Expand Down

0 comments on commit 47cb411

Please sign in to comment.