Skip to content

Commit

Permalink
fix: make ShootTheMoon remove buff first before attacking
Browse files Browse the repository at this point in the history
  • Loading branch information
scarf005 committed Jun 21, 2024
1 parent 197863f commit 67481d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/marisa/cards/ShootTheMoon.kt
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ class ShootTheMoon : AmplifiedAttack(
}

val harm = if (isAmplified) block else damage
toRemove.forEach { addToBot(it) }
addToBot(
DamageAction(m, DamageInfo(p, harm, damageTypeForTurn), AttackEffect.SLASH_DIAGONAL)
)
toRemove.forEach { addToBot(it) }
}

override fun makeCopy(): AbstractCard = ShootTheMoon()
Expand Down

0 comments on commit 67481d0

Please sign in to comment.