Quest for Ancient Secrets second ability is targeted. please note I have added "other *" in the triggered event (first ability) because its odd when activating its second ability, it ask you to put quest counters on it which is wrong

. correction fix:
- Code: Select all
[card]
name=Quest for Ancient Secrets
auto=@movedTo(other *|mygraveyard):may counter(0/0,1,Quest) all(this)
auto={C(0/0,-5,Quest)}{S}:name(choose player) target(player) ability$!name(shuffle graveyard to library) all(*|mygraveyard) moveTo(ownerlibrary) and!(shuffle)!!$ targetedplayer
text=Whenever a card is put into your graveyard from anywhere, you may put a quest counter on Quest for Ancient Secrets. -- Remove five quest counters from Quest for Ancient Secrets and sacrifice it: Target player shuffles his or her graveyard into his or her library.
mana={U}
type=Enchantment
[/card]
also these two cards below corrects trigger event(if the condition is met then fire the ability if applicable, not fire ability then check condition)
Quest for Renewal, if there are 4 or more quest counters then it will have the triggered ability, else no triggered ability.
Quest for the Nihil Stone, if there are 2 or more quest counters then it will have the triggered ability, else no triggered ability.
- Code: Select all
[card]
name=Quest for Renewal
auto=@tapped(creature|mybattlefield):counter(0/0,1,Quest) all(this)
auto=this(counter{0/0.1.Quest}>=4) transforms((,newability[@each opponent untap:untap all(creature|mybattlefield)]))
text=Whenever a creature you control becomes tapped, you may put a quest counter on Quest for Renewal. -- As long as there are four or more quest counters on Quest for Renewal, untap all creatures you control during each other player's untap step.
mana={1}{G}
type=Enchantment
[/card]
[card]
name=Quest for the Nihil Stone
auto=@discarded(*|opponenthand):may counter(0/0,1,Quest) all(this)
auto=this(counter{0/0.1.Quest}>=2) transforms((,newability[@each opponent upkeep restriction{type(*|opponenthand)~lessthan~1}:may life:-5 opponent]))
text=Whenever an opponent discards a card, you may put a quest counter on Quest for the Nihil Stone. -- At the beginning of each opponent's upkeep, if that player has no cards in hand and Quest for the Nihil Stone has two or more quest counters on it, you may have that player lose 5 life.
mana={B}
type=Enchantment
[/card]