Page 7 of 7

Re: Aether Revolt Spoiler Season

PostPosted: 12 Jan 2017, 14:49
by Agetian
Marek14 wrote:Improvise scripts (accidentally posted them in Bug Reports thread).
Added, thanks! :)
I also scripted Treasure Keeper.

Now only 7 cards missing: Dark Intimations, Gonti's Machinations, Greenbelt Rampager, Hope of Ghirapur, Indomitable Creativity, Perilous Predicament, Scrap Trawler.

Gonti's Machinations and Hope of Ghirapur should already be scriptable thanks to Hanmac's efforts (see his post above). If anyone is willing to come up with scripts, you're very welcome to do so.

Scrap Trawler might be possible to code but I'm not sure - I tried coding it but the Artifact.CMCLTX check fails for some reason.

- Agetian

Re: Aether Revolt Spoiler Season

PostPosted: 12 Jan 2017, 16:46
by stormcat
:r33131
When Caught in the Brights triggered, enchanted creature was not exiled.

[Situation]
Attack:Mobile Garrison(My control)
Enchanted:Accomplished Automaton(Opponent control)

Re: Aether Revolt Spoiler Season

PostPosted: 12 Jan 2017, 16:57
by Agetian
stormcat wrote::r33131
When Caught in the Brights triggered, enchanted creature was not exiled.

[Situation]
Attack:Mobile Garrison(My control)
Enchanted:Accomplished Automaton(Opponent control)
This should have been fixed in r33132, can you please give a newer build a try?

- Agetian

Re: Aether Revolt Spoiler Season

PostPosted: 12 Jan 2017, 17:15
by stormcat
@Agetian
OK.I'm looking forward to being uploaded new build.

Re: Aether Revolt Spoiler Season

PostPosted: 12 Jan 2017, 19:39
by Hanmac
Code: Select all
Name:Perilous Predicament
ManaCost:4 B
Types:Instant
A:SP$ RepeatEach | Cost$ 4 B | AILogic$ OpponentHasMultipleCreatures | RepeatPlayers$ Opponent | RepeatSubAbility$ DBChoose | SubAbility$ DBSacAll | SpellDescription$ Each opponent sacrifices an artifact creature and a nonartifact creature.
SVar:DBChoose:DB$ ChooseCard | Defined$ Remembered | Amount$ 1 | Choices$ Creature.Artifact+RememberedPlayerCtrl | Mandatory$ True | RememberChosen$ True | SubAbility$ DBChoose2
SVar:DBChoose2:DB$ ChooseCard | Defined$ Remembered | Amount$ 1 | Choices$ Creature.nonArtifact+IsNotRemembered+RememberedPlayerCtrl | Mandatory$ True | RememberChosen$ True
SVar:DBSacAll:DB$ SacrificeAll | ValidCards$ Permanent.IsRemembered | SubAbility$ Cleanup
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
SVar:RemAIDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/perilous_predicament.jpg
Oracle:Each opponent sacrifices an artifact creature and a nonartifact creature.
a variation of Divine Reckoning

Re: Aether Revolt Spoiler Season

PostPosted: 13 Jan 2017, 09:46
by matrix4767
r33167:
Herald of Anguish is missing mana cost from ability.

Re: Aether Revolt Spoiler Season

PostPosted: 13 Jan 2017, 10:03
by Agetian
matrix4767 wrote:r33167:
Herald of Anguish is missing mana cost from ability.
Fixed (r33168).

- Agetian

Re: Aether Revolt Spoiler Season

PostPosted: 16 Jan 2017, 09:44
by matrix4767
Here's one card, though the Oracle won't show the second ability for some reason. But at least it works:

Code: Select all
Name:Gonti's Machinations
ManaCost:B
Types:Enchantment
T:Mode$ LifeLost | ValidPlayer$ You | TriggerZones$ Battlefield | FirstTime$ True | Execute$ TrigEnergy | TriggerDescription$ Whenever you lose life for the first time each turn, you get {E} (You get an energy counter. Damage causes loss of life).
SVar:TrigEnergy:DB$ PutCounter | Defined$ You | CounterType$ ENERGY | CounterNum$ 1
A:AB$ LoseLife | Cost$ PayEnergy<2> Sac<1/CARDNAME> | Defined$ Player.Opponent | LifeAmount$ 3 | SubAbility$ DBGainLife | TriggerDescription$ Each opponent loses 3 life. You gain life equal to the life lost this way.
SVar:DBGainLife:DB$ GainLife | Defined$ You | LifeAmount$ AFLifeLost | StackDescription$ You gain life equal to the life lost this way.
SVar:Picture:http://www.wizards.com/global/images/magic/general/gontis_machinations.jpg
Oracle:Whenever you lose life for the first time each turn, you get {E} (You get an energy counter. Damage causes loss of life).\nPay {E}{E}, sacrifice Gonti's Machinations: Each opponent loses 3 life. You gain life equal to the life lost this way.

Re: Aether Revolt Spoiler Season

PostPosted: 16 Jan 2017, 11:16
by Agetian
matrix4767 wrote:Here's one card, though the Oracle won't show the second ability for some reason. But at least it works:

Code: Select all
Name:Gonti's Machinations
ManaCost:B
Types:Enchantment
T:Mode$ LifeLost | ValidPlayer$ You | TriggerZones$ Battlefield | FirstTime$ True | Execute$ TrigEnergy | TriggerDescription$ Whenever you lose life for the first time each turn, you get {E} (You get an energy counter. Damage causes loss of life).
SVar:TrigEnergy:DB$ PutCounter | Defined$ You | CounterType$ ENERGY | CounterNum$ 1
A:AB$ LoseLife | Cost$ PayEnergy<2> Sac<1/CARDNAME> | Defined$ Player.Opponent | LifeAmount$ 3 | SubAbility$ DBGainLife | TriggerDescription$ Each opponent loses 3 life. You gain life equal to the life lost this way.
SVar:DBGainLife:DB$ GainLife | Defined$ You | LifeAmount$ AFLifeLost | StackDescription$ You gain life equal to the life lost this way.
SVar:Picture:http://www.wizards.com/global/images/magic/general/gontis_machinations.jpg
Oracle:Whenever you lose life for the first time each turn, you get {E} (You get an energy counter. Damage causes loss of life).\nPay {E}{E}, sacrifice Gonti's Machinations: Each opponent loses 3 life. You gain life equal to the life lost this way.
Thanks! I added it (the reason the second ability didn't show up was because it had TriggerDescription but needed SpellDescription).

- Agetian