- Added 22 successful tested cards (card list --> first comment)
Zethfox found out that a single sacrifice cost as an addition to a normal manacost can be added to the manacost-line of a card!
Here is a code example from the famous card Natural Order (VIS):
[card]
name=Natural Order
auto=moveTo(myBattlefield) target(creature[green]|myLibrary)
text=As an additional cost to cast Natural Order, sacrifice a green creature. -- Search your library for a green creature card and put it onto the battlefield. Then shuffle your library.
mana={2}{G}{G}{s;notatarget(creature[green]|mybattlefield)}
type=Sorcery
[/card]
I tested this excessively and I have to say: This kind of code leads to absolute 100%ers.
- Added 2 tests for this to save it from being broken by future code changes.
- Removed the land cycle from Visions (Coral Atoll, everglades, etc.).
This commit is contained in:
@@ -332,6 +332,7 @@ moat.txt
|
||||
mobile_fort.txt
|
||||
mortuary.txt
|
||||
nantuko_husk.txt
|
||||
natural_order.txt
|
||||
necrogenesis.txt
|
||||
Nevinyrrals_Disk.txt
|
||||
Nevinyrrals_Disk2.txt
|
||||
@@ -391,6 +392,7 @@ seedcradle_witch.txt
|
||||
seismic_assault.txt
|
||||
seismic_spike_i191.txt
|
||||
selesnya_guildmage.txt
|
||||
shard_volley.txt
|
||||
silver_seraph_i300.txt
|
||||
skullcage0_i239.txt
|
||||
skullcage1_i239.txt
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
#Testing Natural Order (--> Sacrifice effects as part of the casting cost).
|
||||
#As an additional cost to cast Natural Order, sacrifice a green creature. -- Search your library for a green creature card and put it onto the battlefield. Then shuffle your library.
|
||||
[INIT]
|
||||
FIRSTMAIN
|
||||
[PLAYER1]
|
||||
inplay:forest,grizzly bears
|
||||
hand:natural order
|
||||
library:force of nature
|
||||
manapool:{2}{G}{G}
|
||||
[PLAYER2]
|
||||
[DO]
|
||||
natural order
|
||||
choice 0
|
||||
grizzly bears
|
||||
choice 0
|
||||
force of nature
|
||||
[ASSERT]
|
||||
FIRSTMAIN
|
||||
[PLAYER1]
|
||||
inplay:forest,force of nature
|
||||
graveyard:grizzly bears,natural order
|
||||
manapool:{0}
|
||||
[PLAYER2]
|
||||
[END]
|
||||
@@ -0,0 +1,26 @@
|
||||
#Testing Shard Volley (--> Sacrifice effects as part of the casting cost).
|
||||
#As an additional cost to cast Shard Volley, sacrifice a land. -- Shard Volley deals 3 damage to target creature or player.
|
||||
[INIT]
|
||||
FIRSTMAIN
|
||||
[PLAYER1]
|
||||
hand:shard volley,scathe zombies
|
||||
inplay:mountain,island,island,swamp
|
||||
manapool:{R}
|
||||
[PLAYER2]
|
||||
inplay:hill giant
|
||||
[DO]
|
||||
shard volley
|
||||
choice 0
|
||||
swamp
|
||||
choice 0
|
||||
hill giant
|
||||
[ASSERT]
|
||||
FIRSTMAIN
|
||||
[PLAYER1]
|
||||
hand:scathe zombies
|
||||
inplay:mountain,island,island
|
||||
graveyard:swamp,shard volley
|
||||
manapool{0}
|
||||
[PLAYER2]
|
||||
graveyard:hill giant
|
||||
[END]
|
||||
Reference in New Issue
Block a user