- RtR: Added Avenging Arrow

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

View File

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