mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
- Do not double the Infect damage when predicting it (already accounted for later)
This commit is contained in:
@@ -1348,14 +1348,7 @@ public class ComputerUtilCard {
|
||||
// predict Infect
|
||||
if (pumpedDmg == 0 && c.hasKeyword("Infect")) {
|
||||
if (poisonPumped > poisonOrig) {
|
||||
if (phase.is(PhaseType.COMBAT_DECLARE_BLOCKERS) && !combat.isBlocked(c)
|
||||
&& combat.getDefenderByAttacker(c) instanceof Player) {
|
||||
// We need only 10 counters to finish off an opponent, so each point counts as 2 damage
|
||||
pumpedDmg = poisonPumped * 2;
|
||||
} else {
|
||||
// For other circumstances (dealing damage to creatures and PWs), 1 point = 1 damage
|
||||
pumpedDmg = poisonPumped;
|
||||
}
|
||||
pumpedDmg = poisonPumped;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user