mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- Added Aura Gnarlid.
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
Aura Gnarlid
|
||||||
|
2 G
|
||||||
|
Creature Beast
|
||||||
|
Aura Gnarlid gets +1/+1 for each Aura on the battlefield.
|
||||||
|
2/2
|
||||||
|
Creatures with power less than CARDNAME's power can't block it.
|
||||||
|
|
||||||
Lull
|
Lull
|
||||||
1 G
|
1 G
|
||||||
Instant
|
Instant
|
||||||
|
|||||||
@@ -60,6 +60,9 @@ public class CombatUtil {
|
|||||||
&& blocker.getKeyword().contains("CARDNAME can't block creatures with power greater than CARDNAME's power.")) return false;
|
&& blocker.getKeyword().contains("CARDNAME can't block creatures with power greater than CARDNAME's power.")) return false;
|
||||||
if (attacker.getNetAttack() >= blocker.getNetDefense()
|
if (attacker.getNetAttack() >= blocker.getNetDefense()
|
||||||
&& blocker.getKeyword().contains("CARDNAME can't block creatures with power equal to or greater than CARDNAME's toughness.")) return false;
|
&& blocker.getKeyword().contains("CARDNAME can't block creatures with power equal to or greater than CARDNAME's toughness.")) return false;
|
||||||
|
if (attacker.getKeyword().contains("Creatures with power less than CARDNAME's power can't block it.") &&
|
||||||
|
attacker.getNetAttack() > blocker.getNetAttack()) return false;
|
||||||
|
|
||||||
|
|
||||||
}// hasKeyword CARDNAME can't block creatures with power ...
|
}// hasKeyword CARDNAME can't block creatures with power ...
|
||||||
|
|
||||||
|
|||||||
@@ -83,6 +83,7 @@ public class StaticEffects
|
|||||||
cardToEffectsList.put("Werebear", new String[] {"Werebear"});
|
cardToEffectsList.put("Werebear", new String[] {"Werebear"});
|
||||||
cardToEffectsList.put("Divinity of Pride", new String[] {"Divinity_of_Pride"});
|
cardToEffectsList.put("Divinity of Pride", new String[] {"Divinity_of_Pride"});
|
||||||
cardToEffectsList.put("Yavimaya Enchantress", new String[] {"Yavimaya_Enchantress"});
|
cardToEffectsList.put("Yavimaya Enchantress", new String[] {"Yavimaya_Enchantress"});
|
||||||
|
cardToEffectsList.put("Aura Gnarlid", new String[] {"Aura_Gnarlid"} );
|
||||||
cardToEffectsList.put("Knight of the Reliquary", new String[] {"Knight_of_the_Reliquary"});
|
cardToEffectsList.put("Knight of the Reliquary", new String[] {"Knight_of_the_Reliquary"});
|
||||||
cardToEffectsList.put("Zuberi, Golden Feather", new String[] {"Zuberi"});
|
cardToEffectsList.put("Zuberi, Golden Feather", new String[] {"Zuberi"});
|
||||||
cardToEffectsList.put("Loxodon Punisher", new String[] {"Loxodon_Punisher"});
|
cardToEffectsList.put("Loxodon Punisher", new String[] {"Loxodon_Punisher"});
|
||||||
@@ -132,6 +133,7 @@ public class StaticEffects
|
|||||||
cardToEffectsList.put("Kongming, \"Sleeping Dragon\"", new String[] {"Kongming"});
|
cardToEffectsList.put("Kongming, \"Sleeping Dragon\"", new String[] {"Kongming"});
|
||||||
cardToEffectsList.put("Radiant, Archangel", new String[] {"Radiant_Archangel"});
|
cardToEffectsList.put("Radiant, Archangel", new String[] {"Radiant_Archangel"});
|
||||||
cardToEffectsList.put("Castle", new String[] {"Castle"});
|
cardToEffectsList.put("Castle", new String[] {"Castle"});
|
||||||
|
cardToEffectsList.put("Giant Tortoise", new String[] {"Giant_Tortoise"});
|
||||||
cardToEffectsList.put("Castle Raptors", new String[] {"Castle_Raptors"});
|
cardToEffectsList.put("Castle Raptors", new String[] {"Castle_Raptors"});
|
||||||
cardToEffectsList.put("Darksteel Forge", new String[] {"Darksteel_Forge"} );
|
cardToEffectsList.put("Darksteel Forge", new String[] {"Darksteel_Forge"} );
|
||||||
cardToEffectsList.put("Levitation", new String[] {"Levitation"});
|
cardToEffectsList.put("Levitation", new String[] {"Levitation"});
|
||||||
@@ -180,7 +182,6 @@ public class StaticEffects
|
|||||||
cardToEffectsList.put("Meddling Mage", new String[] {"Meddling_Mage"});
|
cardToEffectsList.put("Meddling Mage", new String[] {"Meddling_Mage"});
|
||||||
cardToEffectsList.put("Gaddock Teeg", new String[] {"Gaddock_Teeg"});
|
cardToEffectsList.put("Gaddock Teeg", new String[] {"Gaddock_Teeg"});
|
||||||
cardToEffectsList.put("Iona, Shield of Emeria", new String[] {"Iona_Shield_of_Emeria"});
|
cardToEffectsList.put("Iona, Shield of Emeria", new String[] {"Iona_Shield_of_Emeria"});
|
||||||
cardToEffectsList.put("Giant Tortoise",new String[] {"Giant_Tortoise"});
|
|
||||||
cardToEffectsList.put("Kor Duelist", new String[] {"Kor_Duelist"});
|
cardToEffectsList.put("Kor Duelist", new String[] {"Kor_Duelist"});
|
||||||
cardToEffectsList.put("Keldon Warlord", new String[] {"Keldon_Warlord"});
|
cardToEffectsList.put("Keldon Warlord", new String[] {"Keldon_Warlord"});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user