-fix for issue 604 (Land play limitation should not apply in all cases) -- this adds a "castMehod" variable to MTGCardInstance. IF this variable is 0, the card was not "cast" (or for lands, "put into play" as part of the lands rule), but "added" to the battlefield with some other effect. On the other hand, if this variable is set, it means the card was cast -- as we discussed, I did not touch the "alternateCostPaid" variable, as I'm still not really sure these two concepts are actually the same
21 lines
363 B
Plaintext
21 lines
363 B
Plaintext
#Bug: Misty Rainforst triggers the "one land per turn" limit
|
|
# see http://code.google.com/p/wagic/issues/detail?id=604
|
|
[INIT]
|
|
FIRSTMAIN
|
|
[PLAYER1]
|
|
inplay:misty rainforest
|
|
library:island
|
|
hand:forest
|
|
[PLAYER2]
|
|
[DO]
|
|
misty rainforest
|
|
island
|
|
forest
|
|
[ASSERT]
|
|
FIRSTMAIN
|
|
[PLAYER1]
|
|
life:19
|
|
graveyard:misty rainforest
|
|
inplay:island,forest
|
|
[PLAYER2]
|
|
[END] |