mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Moved the execution of getStLandManaAbilities() to checkStaticAbilities() (fixes Evil Presence).
This commit is contained in:
@@ -8,6 +8,7 @@ SVar:ChangeZone:AB$ ChangeZone | Cost$ 0 | Hidden$ True | Mandatory$ True | Chan
|
|||||||
T:Mode$ Always | TriggerZones$ Battlefield | IsPresent$ Card.YouCtrl | PresentZone$ Graveyard | PresentCompare$ EQ0 | Execute$ TrigLoseGame | TriggerDescription$ When there are no cards in your graveyard, you lose the game.
|
T:Mode$ Always | TriggerZones$ Battlefield | IsPresent$ Card.YouCtrl | PresentZone$ Graveyard | PresentCompare$ EQ0 | Execute$ TrigLoseGame | TriggerDescription$ When there are no cards in your graveyard, you lose the game.
|
||||||
SVar:TrigLoseGame:AB$ LosesGame | Cost$ 0 | Defined$ You
|
SVar:TrigLoseGame:AB$ LosesGame | Cost$ 0 | Defined$ You
|
||||||
SVar:X:ReplaceCount$DamageAmount
|
SVar:X:ReplaceCount$DamageAmount
|
||||||
|
SVar:RemRandomDeck:True
|
||||||
SVar:Rarity:Rare
|
SVar:Rarity:Rare
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/immortal_coil.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/immortal_coil.jpg
|
||||||
SetInfo:ALA|Rare|http://magiccards.info/scans/en/ala/79.jpg
|
SetInfo:ALA|Rare|http://magiccards.info/scans/en/ala/79.jpg
|
||||||
|
|||||||
@@ -863,6 +863,8 @@ public class GameAction {
|
|||||||
final Command com = GameActionUtil.getCommands().get(effect);
|
final Command com = GameActionUtil.getCommands().get(effect);
|
||||||
com.execute();
|
com.execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GameActionUtil.getStLandManaAbilities().execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1028,8 +1030,6 @@ public class GameAction {
|
|||||||
this.destroyLegendaryCreatures();
|
this.destroyLegendaryCreatures();
|
||||||
this.destroyPlaneswalkers();
|
this.destroyPlaneswalkers();
|
||||||
|
|
||||||
GameActionUtil.getStLandManaAbilities().execute();
|
|
||||||
|
|
||||||
if (!refreeze) {
|
if (!refreeze) {
|
||||||
AllZone.getStack().unfreezeStack();
|
AllZone.getStack().unfreezeStack();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user