mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
- Fix for Wort's upkeep ability.
- Fix for Tangle Wire grabbing Enchantments instead of Creatures. Although we should probably just convert this to Triggers
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
Name:Wort, Boggart Auntie
|
||||
ManaCost:2 B R
|
||||
Types:Legendary Creature Goblin Shaman
|
||||
Text:At the beginning of your upkeep, you may return target Goblin card from your graveyard to your hand.
|
||||
Text:no text
|
||||
PT:3/3
|
||||
K:Fear
|
||||
T:Mode$ Phase | Phase$ Upkeep | Player$ You | Execute$ TrigChangeZone | Optional$ True | TriggerZones$ Battlefield | TriggerDescription$ At the beginning of your upkeep, you may return target Goblin card from your graveyard to your hand.
|
||||
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | Execute$ TrigChangeZone | Optional$ True | TriggerZones$ Battlefield | TriggerDescription$ At the beginning of your upkeep, you may return target Goblin card from your graveyard to your hand.
|
||||
SVar:TrigChangeZone:AB$ChangeZone | Cost$ 0 | Origin$ Graveyard | Destination$ Hand | TgtPrompt$ Choose target Goblin card in your graveyard | ValidTgts$ Goblin.YouCtrl
|
||||
SVar:Rarity:Rare
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/wort_boggart_auntie.jpg
|
||||
|
||||
@@ -8659,7 +8659,7 @@ public class GameActionUtil {
|
||||
final int num = source.getCounters(Counters.FADE);
|
||||
final CardList list = AllZoneUtil.getPlayerCardsInPlay(player).filter(new CardListFilter() {
|
||||
public boolean addCard(Card c) {
|
||||
return (c.isArtifact() || c.isLand() || c.isEnchantment()) && c.isUntapped();
|
||||
return (c.isArtifact() || c.isLand() || c.isCreature()) && c.isUntapped();
|
||||
}
|
||||
});
|
||||
for(int i = 0; i < num; i++) {
|
||||
|
||||
Reference in New Issue
Block a user