mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Added Magewright's Stone.
This commit is contained in:
@@ -7094,6 +7094,16 @@ public class Card extends GameEntity implements Comparable<Card> {
|
||||
if (!source.getRemembered().contains(this)) {
|
||||
return false;
|
||||
}
|
||||
} else if (property.equals("hasActivatedAbilityWithTapCost")) {
|
||||
boolean hasIt = false;
|
||||
for (SpellAbility sa : this.getSpellAbilities()) {
|
||||
if (sa.isAbility() && sa.getPayCosts() != null && sa.getPayCosts().getTap()) {
|
||||
hasIt = true;
|
||||
}
|
||||
}
|
||||
if (!hasIt) {
|
||||
return false;
|
||||
}
|
||||
} else if (property.equals("SameNameAsImprinted")) {
|
||||
boolean b = false;
|
||||
for (final Card card : source.getImprinted()) {
|
||||
|
||||
Reference in New Issue
Block a user