mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
Support for Overgrown Zealot (#6085)
This commit is contained in:
@@ -231,6 +231,8 @@ public class ForgeScript {
|
||||
return sa.isMorphUp();
|
||||
} else if (property.equals("ManifestUp")) {
|
||||
return sa.isManifestUp();
|
||||
} else if (property.equals("isTurnFaceUp")) {
|
||||
return sa.isTurnFaceUp();
|
||||
} else if (property.equals("isCastFaceDown")) {
|
||||
return sa.isCastFaceDown();
|
||||
} else if (property.equals("Modular")) {
|
||||
|
||||
@@ -409,14 +409,6 @@ public class AbilityManaPart implements java.io.Serializable {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (restriction.equals("FaceDownOrTurnFaceUp")) {
|
||||
if ((sa.isSpell() && sa.getHostCard().isCreature() && sa.isCastFaceDown())
|
||||
|| sa.isTurnFaceUp()) {
|
||||
return true;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
if (restriction.equals("MorphOrManifest")) {
|
||||
if ((sa.isSpell() && sa.getHostCard().isCreature() && sa.isCastFaceDown())
|
||||
|| sa.isManifestUp() || sa.isMorphUp()) {
|
||||
|
||||
@@ -3,7 +3,7 @@ ManaCost:2 R G
|
||||
Types:Creature Lizard Advisor
|
||||
PT:4/4
|
||||
K:Vigilance
|
||||
A:AB$ Mana | Cost$ T | Produced$ R G | RestrictValid$ FaceDownOrTurnFaceUp | SpellDescription$ Add {R}{G}. Spend this mana only to cast face-down spells or to turn creatures face up.
|
||||
A:AB$ Mana | Cost$ T | Produced$ R G | RestrictValid$ Spell.isCastFaceDown,Static.isTurnFaceUp | SpellDescription$ Add {R}{G}. Spend this mana only to cast face-down spells or to turn creatures face up.
|
||||
AI:RemoveDeck:Random
|
||||
DeckHints:Keyword$Morph|Megamorph
|
||||
Oracle:Vigilance\n{T}: Add {R}{G}. Spend this mana only to cast face-down spells or to turn creatures face up.
|
||||
|
||||
Reference in New Issue
Block a user