mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- Added the option enchanted, unenchanted and token to getValidCards in CardList.java.
- Added Brainspoil, Cut the Earthly Bond and Venomous Vines.
This commit is contained in:
@@ -1,3 +1,22 @@
|
|||||||
|
Venomous Vines
|
||||||
|
2 G G
|
||||||
|
Sorcery
|
||||||
|
Destroy target enchanted permanent.
|
||||||
|
spDestroyTgt:Permanent.enchanted
|
||||||
|
|
||||||
|
Cut the Earthly Bond
|
||||||
|
U
|
||||||
|
Instant Arcane
|
||||||
|
Return target enchanted permanent to its owner's hand.
|
||||||
|
spBounceTgt:Permanent.enchanted:Hand
|
||||||
|
|
||||||
|
Brainspoil
|
||||||
|
3 B B
|
||||||
|
Sorcery
|
||||||
|
Destroy target creature that isn't enchanted. It can't be regenerated.
|
||||||
|
spDestroyTgt:Creature.unenchanted:NoRegen
|
||||||
|
Transmute:1 B B
|
||||||
|
|
||||||
Bad Moon
|
Bad Moon
|
||||||
1 B
|
1 B
|
||||||
Enchantment
|
Enchantment
|
||||||
@@ -4159,6 +4178,13 @@ no text
|
|||||||
SVar:Rarity:Uncommon
|
SVar:Rarity:Uncommon
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/back_to_nature.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/back_to_nature.jpg
|
||||||
|
|
||||||
|
Bad Moon
|
||||||
|
1 B
|
||||||
|
Enchantment
|
||||||
|
Black creatures get +1/+1
|
||||||
|
SVar:Rarity:Rare
|
||||||
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/bad_moon.jpg
|
||||||
|
|
||||||
Badlands
|
Badlands
|
||||||
no cost
|
no cost
|
||||||
Land Mountain Swamp
|
Land Mountain Swamp
|
||||||
|
|||||||
@@ -252,11 +252,11 @@ public class CardList implements Iterable<Card> {
|
|||||||
&& (!c.getKeyword().contains(exR[j].substring(7)));
|
&& (!c.getKeyword().contains(exR[j].substring(7)));
|
||||||
else r = r && (c.getKeyword().contains(exR[j].substring(4)));
|
else r = r && (c.getKeyword().contains(exR[j].substring(4)));
|
||||||
else if(exR[j].startsWith("tapped")) r = r && (c.isTapped());
|
else if(exR[j].startsWith("tapped")) r = r && (c.isTapped());
|
||||||
|
else if(exR[j].startsWith("enchanted")) r = r && (c.isEnchanted());
|
||||||
|
else if(exR[j].startsWith("unenchanted")) r = r && (!c.isEnchanted());
|
||||||
|
else if(exR[j].startsWith("token")) r = r && (c.isToken());
|
||||||
//TODO: converted mana cost
|
//TODO: converted mana cost
|
||||||
//TODO: tapped
|
|
||||||
//TODO: enchanted
|
|
||||||
//TODO: enchanting
|
//TODO: enchanting
|
||||||
//TODO: token
|
|
||||||
//TODO: counters
|
//TODO: counters
|
||||||
else if(exR[j].startsWith("named")) //by name
|
else if(exR[j].startsWith("named")) //by name
|
||||||
r = r && (c.getName().equals(exR[j].substring(6)));
|
r = r && (c.getName().equals(exR[j].substring(6)));
|
||||||
|
|||||||
Reference in New Issue
Block a user