mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38:01 +00:00
- Added the option tapped to getValidCards in CardList.java.
- Added Assassinate, Death Stroke and Vengeance.
This commit is contained in:
@@ -1,3 +1,21 @@
|
|||||||
|
Assassinate
|
||||||
|
2 B
|
||||||
|
Sorcery
|
||||||
|
Destroy target tapped creature.
|
||||||
|
spDestroyTgt:Creature.tapped
|
||||||
|
|
||||||
|
Death Stroke
|
||||||
|
B B
|
||||||
|
Sorcery
|
||||||
|
Destroy target tapped creature.
|
||||||
|
spDestroyTgt:Creature.tapped
|
||||||
|
|
||||||
|
Vengeance
|
||||||
|
3 W
|
||||||
|
Sorcery
|
||||||
|
Destroy target tapped creature.
|
||||||
|
spDestroyTgt:Creature.tapped
|
||||||
|
|
||||||
Drekavac
|
Drekavac
|
||||||
1 B
|
1 B
|
||||||
Creature Beast
|
Creature Beast
|
||||||
|
|||||||
@@ -251,6 +251,7 @@ public class CardList implements Iterable<Card> {
|
|||||||
if(exR[j].startsWith("without")) r = r
|
if(exR[j].startsWith("without")) r = r
|
||||||
&& (!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)));
|
||||||
|
if(exR[j].startsWith("tapped")) r = r && (c.isTapped());
|
||||||
//TODO: converted mana cost
|
//TODO: converted mana cost
|
||||||
//TODO: tapped
|
//TODO: tapped
|
||||||
//TODO: enchanted
|
//TODO: enchanted
|
||||||
|
|||||||
Reference in New Issue
Block a user