- Added Kumano's Blessing and Winnow

This commit is contained in:
swordshine
2013-02-28 00:37:31 +00:00
parent 58924a5854
commit 198ee38ba6
5 changed files with 32 additions and 1 deletions

View File

@@ -6981,6 +6981,12 @@ public class Card extends GameEntity implements Comparable<Card> {
|| !this.getReceivedDamageFromThisTurn().keySet().contains(equipee)) {
return false;
}
} else if (property.equals("wasDealtDamageByEnchantedThisTurn")) {
Card enchanted = source.getEnchantingCard();
if (this.getReceivedDamageFromThisTurn().keySet().isEmpty()
|| !this.getReceivedDamageFromThisTurn().keySet().contains(enchanted)) {
return false;
}
} else if (property.startsWith("dealtDamageThisTurn")) {
if (this.getTotalDamageDoneBy() == 0) {
return false;