- Added Heartwood Storyteller Avatar

This commit is contained in:
swordshine
2014-05-05 02:04:25 +00:00
parent 8e11cde662
commit 89cf695545
5 changed files with 33 additions and 2 deletions

View File

@@ -212,6 +212,15 @@ public class ManaCostAdjustment {
if (!sa.isSpell()) {
return;
}
if (params.containsKey("OnlyFirstSpell")) {
if (activator == null ) {
return;
}
if (CardLists.filterControlledBy(activator.getGame().getStack().getCardsCastThisTurn(),
activator).size() > 0) {
return;
}
}
} else if (params.get("Type").equals("Ability")) {
if (!(sa instanceof AbilityActivated)) {
return;
@@ -343,6 +352,15 @@ public class ManaCostAdjustment {
if (!sa.isSpell()) {
return;
}
if (params.containsKey("OnlyFirstSpell")) {
if (activator == null ) {
return;
}
if (CardLists.filterControlledBy(activator.getGame().getStack().getCardsCastThisTurn(),
activator).size() > 0) {
return;
}
}
} else if (params.get("Type").equals("Ability")) {
if (!(sa instanceof AbilityActivated)) {
return;