friarsol wrote:Chris H. wrote:friarsol wrote:What is odd about it? It seemed fine to me?
Edit: ChangeZone still needs its trigger hooks. So maybe the oddity you are seeing is the AI deciding not to activate the ChangeZone after it targets?
`
I went back and replayed the test deck once again. I think that I figured out the oddness.
The TgtPrompt$ no longer appears in the message window and it is appended to the message that is located in the title bar of the list window showing the graveyard contents?
`
Well, it can't appear in the message window since the card you are targeting is in the graveyard, and those aren't on display on the screen.
`
We apparently have some number of cards which have a non-functional "TgtPrompt$".
Raise Dead is an example of this:
- Raise Dead card | Open
- Name:Raise Dead
ManaCost:B
Types:Sorcery
Text:no text
A:SP$ChangeZone | Cost$ B | Origin$ Graveyard | Destination$ Hand | TgtPrompt$ Choose target creature card in your graveyard | ValidTgts$ Creature.YouCtrl | SpellDescription$ Return target creature card from your graveyard to your hand.
SVar:Rarity:Common
SVar:Picture:http://resources.wizards.com/magic/cards/9ed/en-us/card83220.jpg
SetInfo:8ED|Common|http://magiccards.info/scans/en/8e/157.jpg
SetInfo:LEA|Common|http://magiccards.info/scans/en/al/31.jpg
SetInfo:LEB|Common|http://magiccards.info/scans/en/be/31.jpg
SetInfo:7ED|Common|http://magiccards.info/scans/en/7e/157.jpg
SetInfo:PO2|Common|http://magiccards.info/scans/en/po2/26.jpg
SetInfo:4ED|Common|http://magiccards.info/scans/en/4e/40.jpg
SetInfo:POR|Common|http://magiccards.info/scans/en/po/30.jpg
SetInfo:9ED|Common|http://magiccards.info/scans/en/9e/156.jpg
SetInfo:6ED|Common|http://magiccards.info/scans/en/6e/152.jpg
SetInfo:3ED|Common|http://magiccards.info/scans/en/rv/32.jpg
SetInfo:5ED|Common|http://magiccards.info/scans/en/5e/53.jpg
SetInfo:S99|Common|http://magiccards.info/scans/en/st/85.jpg
SetInfo:2ED|Common|http://magiccards.info/scans/en/un/31.jpg
End
If I understand correctly, a card should only use a "TgtPrompt$" if:
- Code: Select all
Origin$ = Battlefield
or
Origin$ = Hand
`
as this is the only zones where we can target using the click on a card image type targeting. As such, there is no need to have a "TgtPrompt$" if:
- Code: Select all
Origin$ = Exile
or
Origin$ = Library
or
Origin$ = Graveyard