- Added the property "notEnteredBattlefieldThisTurn".

This commit is contained in:
Sloth
2011-11-18 11:14:23 +00:00
parent 303ffb43ab
commit b51c9b257b

View File

@@ -6727,6 +6727,10 @@ public class Card extends GameEntity implements Comparable<Card> {
if (!(this.getTurnInZone() == AllZone.getPhase().getTurn())) {
return false;
}
} else if (property.startsWith("notEnteredBattlefieldThisTurn")) {
if (this.getTurnInZone() == AllZone.getPhase().getTurn()) {
return false;
}
} else if (property.startsWith("dealtDamageToYouThisTurn")) {
if (!(this.dealtDmgToHumanThisTurn && this.getController().isPlayer(AllZone.getComputerPlayer()))
&& !(this.dealtDmgToComputerThisTurn && this.getController().isPlayer(AllZone.getHumanPlayer()))) {