mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
Merge branch 'thrasta' into 'master'
MH2: Thrasta and "Trample over planeswalkers" See merge request core-developers/forge!4824
This commit is contained in:
@@ -448,7 +448,9 @@ public class VAssignCombatDamage {
|
||||
}
|
||||
else {
|
||||
lethalDamage = Math.max(0, card.getLethalDamage());
|
||||
if (attackerHasDeathtouch) {
|
||||
if (card.getCurrentState().getType().isPlaneswalker()) {
|
||||
lethalDamage = Integer.valueOf(card.getCurrentState().getLoyalty());
|
||||
} else if (attackerHasDeathtouch) {
|
||||
lethalDamage = Math.min(lethalDamage, 1);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user