- RtR: Added Avenging Arrow

This commit is contained in:
moomarc
2012-09-27 13:38:38 +00:00
parent f84740c651
commit 1f7a5906ec

View File

@@ -6955,6 +6955,10 @@ public class Card extends GameEntity implements Comparable<Card> {
|| !this.getReceivedDamageFromThisTurn().keySet().contains(equipee)) {
return false;
}
} else if (property.startsWith("dealtDamageThisTurn")) {
if (this.getTotalDamageDoneBy() == 0) {
return false;
}
} else if (property.startsWith("attackedThisTurn")) {
if (!this.getDamageHistory().getCreatureAttackedThisTurn()) {
return false;