Conspiracy - Dethrone ability discussion

For all your questions regarding Image Card Coding.
Please read the Image Posting Guideline & Index before posting in this forum.
Forum rules
DO NOT POST BUG REPORT IN THIS FORUM !!

Please read carefully the forum rules related to the card coding section : viewtopic.php?f=21&t=1545

All post will be edited to follow forum rules.
Locked
KF1
Posts: 1952
Joined: Tue Apr 06, 2010 7:04 pm

Conspiracy - Dethrone ability discussion

Post by KF1 »

I believe dethrone can be done.

Here is my initial code, let's begin the discussion:

auto=@combat(attacking) source(this):if compare(lifetotal)~lessthan~compare(opponentlifetotal) then counter(1/1,1)

EDIT 5/24/14: Tacoghandi states that the dethrone code should be:

auto=@combat(attacking) source(this):if compare(lifetotal)
~equalto~compare(opponentlifetotal) then counter(1/1) all
(this)
auto=@combat(attacking) source(this):if compare(lifetotal)
~lessthan~compare(opponentlifetotal) then counter(1/1) all
(this)

Marchesa, the Black Rose

[The extension jpg has been deactivated and can no longer be displayed.]

Code: Select all

[card]
name=Marchesa, the Black Rose  
auto=@combat(attacking) source(this):if compare(lifetotal)
~equalto~compare(opponentlifetotal) then counter(1/1) all
(this)
auto=@combat(attacking) source(this):if compare(lifetotal)
~lessthan~compare(opponentlifetotal) then counter(1/1) all
(this)
auto=lord(other creature|mybattlefield) transforms((,newability
[@combat(attacking) source(this):if compare(lifetotal)
~lessthan~compare(opponentlifetotal) then counter(1/1,1)]))
auto=lord(other creature[counter{1/1.1}]|mybattlefield)
transforms((,newability [@movedTo(this|graveyard) from
(battlefield):moveTo(mybattlefield)]))
text=Dethrone (Whenever this creature attacks, the player with 
the most life or tied for the most life, put a +1/+1 counter on it.) 
-- Other creatures you control have dethrone. --Whenever a 
creature you control with a +1/+1 counter on it dies, return that 
card to the battlefield under your control at the beginning of the 
next end step. 
mana={1}{U}{B}{R}
type=Legendary Creature
subtype=Human Wizard 
power=3
toughness=3
[/card]
Locked