mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28: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
|
||||
1 B
|
||||
Creature Beast
|
||||
|
||||
@@ -251,6 +251,7 @@ public class CardList implements Iterable<Card> {
|
||||
if(exR[j].startsWith("without")) r = r
|
||||
&& (!c.getKeyword().contains(exR[j].substring(7)));
|
||||
else r = r && (c.getKeyword().contains(exR[j].substring(4)));
|
||||
if(exR[j].startsWith("tapped")) r = r && (c.isTapped());
|
||||
//TODO: converted mana cost
|
||||
//TODO: tapped
|
||||
//TODO: enchanted
|
||||
|
||||
Reference in New Issue
Block a user