mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- RtR: Added Avenging Arrow
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user