mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- Added Kumano's Blessing and Winnow
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user