mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
Implemented Recruit the Worthy
This commit is contained in:
parent
75d5c93933
commit
c23ade5781
2 changed files with 36 additions and 0 deletions
35
Mage.Sets/src/mage/cards/r/RecruitTheWorthy.java
Normal file
35
Mage.Sets/src/mage/cards/r/RecruitTheWorthy.java
Normal file
|
@ -0,0 +1,35 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.keyword.BuybackAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.game.permanent.token.SoldierToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class RecruitTheWorthy extends CardImpl {
|
||||
|
||||
public RecruitTheWorthy(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{W}");
|
||||
|
||||
// Buyback {3}
|
||||
this.addAbility(new BuybackAbility("{3}"));
|
||||
|
||||
// Create a 1/1 white Soldier creature token.
|
||||
this.getSpellAbility().addEffect(new CreateTokenEffect(new SoldierToken()));
|
||||
}
|
||||
|
||||
private RecruitTheWorthy(final RecruitTheWorthy card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RecruitTheWorthy copy() {
|
||||
return new RecruitTheWorthy(this);
|
||||
}
|
||||
}
|
|
@ -162,6 +162,7 @@ public final class ModernHorizons extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Reap the Past", 211, Rarity.RARE, mage.cards.r.ReapThePast.class));
|
||||
cards.add(new SetCardInfo("Rebuild", 66, Rarity.UNCOMMON, mage.cards.r.Rebuild.class));
|
||||
cards.add(new SetCardInfo("Reckless Charge", 144, Rarity.COMMON, mage.cards.r.RecklessCharge.class));
|
||||
cards.add(new SetCardInfo("Recruit the Worthy", 22, Rarity.COMMON, mage.cards.r.RecruitTheWorthy.class));
|
||||
cards.add(new SetCardInfo("Regrowth", 175, Rarity.UNCOMMON, mage.cards.r.Regrowth.class));
|
||||
cards.add(new SetCardInfo("Rotwidow Pack", 212, Rarity.UNCOMMON, mage.cards.r.RotwidowPack.class));
|
||||
cards.add(new SetCardInfo("Ruination Rioter", 213, Rarity.UNCOMMON, mage.cards.r.RuinationRioter.class));
|
||||
|
|
Loading…
Add table
Reference in a new issue