forked from External/mage
[BLB] Implement Roughshod Duo
This commit is contained in:
parent
b92c22d602
commit
7f80e9ee50
2 changed files with 54 additions and 0 deletions
53
Mage.Sets/src/mage/cards/r/RoughshodDuo.java
Normal file
53
Mage.Sets/src/mage/cards/r/RoughshodDuo.java
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.ExpendTriggeredAbility;
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class RoughshodDuo extends CardImpl {
|
||||
|
||||
public RoughshodDuo(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}");
|
||||
|
||||
this.subtype.add(SubType.MOUSE);
|
||||
this.subtype.add(SubType.RACCOON);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Trample
|
||||
this.addAbility(TrampleAbility.getInstance());
|
||||
|
||||
// Whenever you expend 4, target creature you control gets +1/+1 and gains trample until end of turn.
|
||||
Ability ability = new ExpendTriggeredAbility(
|
||||
new BoostTargetEffect(1, 1)
|
||||
.setText("target creature you control gets +1/+1"),
|
||||
ExpendTriggeredAbility.Expend.FOUR
|
||||
);
|
||||
ability.addEffect(new GainAbilityTargetEffect(TrampleAbility.getInstance())
|
||||
.setText("and gains trample until end of turn"));
|
||||
ability.addTarget(new TargetControlledCreaturePermanent());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private RoughshodDuo(final RoughshodDuo card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RoughshodDuo copy() {
|
||||
return new RoughshodDuo(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -160,6 +160,7 @@ public final class Bloomburrow extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Repel Calamity", 27, Rarity.UNCOMMON, mage.cards.r.RepelCalamity.class));
|
||||
cards.add(new SetCardInfo("Reptilian Recruiter", 149, Rarity.UNCOMMON, mage.cards.r.ReptilianRecruiter.class));
|
||||
cards.add(new SetCardInfo("Rockface Village", 259, Rarity.UNCOMMON, mage.cards.r.RockfaceVillage.class));
|
||||
cards.add(new SetCardInfo("Roughshod Duo", 150, Rarity.COMMON, mage.cards.r.RoughshodDuo.class));
|
||||
cards.add(new SetCardInfo("Run Away Together", 67, Rarity.COMMON, mage.cards.r.RunAwayTogether.class));
|
||||
cards.add(new SetCardInfo("Rust-Shield Rampager", 190, Rarity.COMMON, mage.cards.r.RustShieldRampager.class));
|
||||
cards.add(new SetCardInfo("Ruthless Negotiation", 108, Rarity.UNCOMMON, mage.cards.r.RuthlessNegotiation.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue