J0N4TH4N - (PLC) updated, note: Pongify "target=creature

text=Destroy target creature. It can't be regenerated. That creature's controller puts a 3/3 green Ape creature token onto the battlefield.
auto=bury && token(Ape,creature,3/3,green) targetcontroller"
Doesn't work, if cast on creature the player is controlling, it works, but when cast on opponent's creature, token ends up on player's side.
This commit is contained in:
leungclj
2009-09-23 08:54:54 +00:00
parent 9f755c7b27
commit decd70d4cf
6 changed files with 589 additions and 719 deletions

View File

@@ -0,0 +1,22 @@
#testing && with targetcontroller on player 1
[INIT]
FIRSTMAIN
[PLAYER1]
hand:Call to Heel
inplay:grizzly bears
library:Angelic Wall
manapool:{U}{1}
[PLAYER2]
[DO]
Call to Heel
grizzly bears
[ASSERT]
FIRSTMAIN
[PLAYER1]
hand:Angelic Wall,grizzly bears
graveyard:Call to Heel
manapool:{0}
life:20
[PLAYER2]
life:20
[END]

View File

@@ -0,0 +1,22 @@
#testing && with targetcontroller on player 2
[INIT]
FIRSTMAIN
[PLAYER1]
hand:Call to Heel
manapool:{U}{1}
[PLAYER2]
inplay:grizzly bears
library:Angelic Wall
[DO]
Call to Heel
grizzly bears
[ASSERT]
FIRSTMAIN
[PLAYER1]
graveyard:Call to Heel
manapool:{0}
life:20
[PLAYER2]
hand:Angelic Wall,grizzly bears
life:20
[END]

View File

@@ -53,10 +53,13 @@ blessed_wine.txt
#blinking_spirit.txt
bloodfire_colossus.txt
bloodhall_ooze.txt
body_double.txt
bottle_gnomes.txt
bottle_gnomes2.txt
boggart_arsonists.txt
brass_man.txt
Call_to_Heel_1.txt
Call_to_Heel_2.txt
castle.txt
cathodion.txt
celestial_purge.txt

View File

@@ -0,0 +1,41 @@
# Copying dead things
[INIT]
FIRSTMAIN
[PLAYER1]
hand:Body Double
manapool:{4}{U}
graveyard:Grizzly Bears
[PLAYER2]
[DO]
Body Double
choice 0
Grizzly Bears
eot
eot
#untap
next
#upkeep
next
#draw
next
#main1
next
#combat begin
next
#attackers
Body Double
next
#blockers
next
#damage
next
#combat end
[ASSERT]
COMBATEND
[PLAYER1]
inplay:Body Double
graveyard:Grizzly Bears
manapool:{0}
[PLAYER2]
life:18
[END]