mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
- Added Mausoleum Turnkey.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -6911,6 +6911,7 @@ res/cardsfolder/m/matsu_tribe_decoy.txt -text
|
|||||||
res/cardsfolder/m/matsu_tribe_sniper.txt svneol=native#text/plain
|
res/cardsfolder/m/matsu_tribe_sniper.txt svneol=native#text/plain
|
||||||
res/cardsfolder/m/maul_splicer.txt svneol=native#text/plain
|
res/cardsfolder/m/maul_splicer.txt svneol=native#text/plain
|
||||||
res/cardsfolder/m/mausoleum_guard.txt -text
|
res/cardsfolder/m/mausoleum_guard.txt -text
|
||||||
|
res/cardsfolder/m/mausoleum_turnkey.txt -text
|
||||||
res/cardsfolder/m/maw_of_the_mire.txt -text
|
res/cardsfolder/m/maw_of_the_mire.txt -text
|
||||||
res/cardsfolder/m/maw_of_the_obzedat.txt -text
|
res/cardsfolder/m/maw_of_the_obzedat.txt -text
|
||||||
res/cardsfolder/m/mawcor.txt svneol=native#text/plain
|
res/cardsfolder/m/mawcor.txt svneol=native#text/plain
|
||||||
|
|||||||
@@ -4,5 +4,6 @@ Types:Sorcery
|
|||||||
A:SP$ Pump | Cost$ G | ValidTgts$ Creature.YouCtrl+Green | TgtPrompt$ Select target green creature you control | SubAbility$ DBFight | NumAtt$ +2 | NumDef$ +2 | SpellDescription$ Target green creature you control gets +2/+2 until end of turn. It fights target green creature an opponent controls.
|
A:SP$ Pump | Cost$ G | ValidTgts$ Creature.YouCtrl+Green | TgtPrompt$ Select target green creature you control | SubAbility$ DBFight | NumAtt$ +2 | NumDef$ +2 | SpellDescription$ Target green creature you control gets +2/+2 until end of turn. It fights target green creature an opponent controls.
|
||||||
SVar:DBFight:DB$ Fight | Defined$ ParentTarget | ValidTgts$ Creature.OppCtrl+Green | TgtPrompt$ Select target green creature an opponent controls
|
SVar:DBFight:DB$ Fight | Defined$ ParentTarget | ValidTgts$ Creature.OppCtrl+Green | TgtPrompt$ Select target green creature an opponent controls
|
||||||
SVar:RemRandomDeck:True
|
SVar:RemRandomDeck:True
|
||||||
|
SVar:RemAIDeck:True
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/hunt_the_hunter.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/hunt_the_hunter.jpg
|
||||||
Oracle:Target green creature you control gets +2/+2 until end of turn. It fights target green creature an opponent controls.
|
Oracle:Target green creature you control gets +2/+2 until end of turn. It fights target green creature an opponent controls.
|
||||||
9
res/cardsfolder/m/mausoleum_turnkey.txt
Normal file
9
res/cardsfolder/m/mausoleum_turnkey.txt
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
Name:Mausoleum Turnkey
|
||||||
|
ManaCost:3 B
|
||||||
|
Types:Creature Ogre Rogue
|
||||||
|
PT:3/2
|
||||||
|
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigChangeZone | RememberController$ True | TriggerDescription$ When CARDNAME enters the battlefield, return target creature card of an opponent's choice from your graveyard to your hand.
|
||||||
|
SVar:TrigChangeZone:DB$ ChangeZone | Origin$ Graveyard | Destination$ Hand | ValidTgts$ Creature.RememberedPlayerCtrl | TargetingPlayer$ Opponent | SubAbility$ DBCleanup
|
||||||
|
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
|
||||||
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/mausoleum_turnkey.jpg
|
||||||
|
Oracle:When Mausoleum Turnkey enters the battlefield, return target creature card of an opponent's choice from your graveyard to your hand.
|
||||||
@@ -377,6 +377,10 @@ public class TriggerHandler {
|
|||||||
sa.setActivatingPlayer(p);
|
sa.setActivatingPlayer(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (triggerParams.containsKey("RememberController")) {
|
||||||
|
host.addRemembered(sa.getActivatingPlayer());
|
||||||
|
}
|
||||||
|
|
||||||
sa.setStackDescription(sa.toString());
|
sa.setStackDescription(sa.toString());
|
||||||
if (sa.getApi() == ApiType.Charm && !sa.isWrapper()) {
|
if (sa.getApi() == ApiType.Charm && !sa.isWrapper()) {
|
||||||
CharmEffect.makeChoices(sa);
|
CharmEffect.makeChoices(sa);
|
||||||
|
|||||||
Reference in New Issue
Block a user