mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 20:11:59 -08:00
57 lines
1.9 KiB
Java
57 lines
1.9 KiB
Java
package mage.cards.d;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
|
import mage.abilities.effects.common.DamageTargetEffect;
|
|
import mage.abilities.effects.common.counter.AddCountersTargetEffect;
|
|
import mage.abilities.keyword.BountyAbility;
|
|
import mage.constants.SubType;
|
|
import mage.constants.SuperType;
|
|
import mage.abilities.keyword.MenaceAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.counters.CounterType;
|
|
import mage.target.common.TargetAnyTarget;
|
|
import mage.target.common.TargetCreaturePermanent;
|
|
|
|
/**
|
|
*
|
|
* @author NinthWorld
|
|
*/
|
|
public final class DrydenVos extends CardImpl {
|
|
|
|
public DrydenVos(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}{R}");
|
|
|
|
this.addSuperType(SuperType.LEGENDARY);
|
|
this.subtype.add(SubType.HUMAN);
|
|
this.subtype.add(SubType.ROGUE);
|
|
this.power = new MageInt(2);
|
|
this.toughness = new MageInt(3);
|
|
|
|
// Menace
|
|
this.addAbility(new MenaceAbility());
|
|
|
|
// When Dryden Vos enters the battlefield, put a bounty counter on target creature.
|
|
Ability ability = new EntersBattlefieldTriggeredAbility(new AddCountersTargetEffect(CounterType.BOUNTY.createInstance()));
|
|
ability.addTarget(new TargetCreaturePermanent());
|
|
this.addAbility(ability);
|
|
|
|
// Bounty - Whenever a creature an opponent controls with a bounty counter on it dies, Dryden Vos deals 2 damage to any target.
|
|
Ability ability2 = new BountyAbility(new DamageTargetEffect(2));
|
|
ability2.addTarget(new TargetAnyTarget());
|
|
this.addAbility(ability2);
|
|
}
|
|
|
|
public DrydenVos(final DrydenVos card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public DrydenVos copy() {
|
|
return new DrydenVos(this);
|
|
}
|
|
}
|