- Added Magewright's Stone.

This commit is contained in:
Sloth
2011-11-30 21:17:37 +00:00
parent 8b657e3794
commit 9fdc681962
3 changed files with 22 additions and 0 deletions

View File

@@ -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()) {