mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[VOC] Implemented Timin, Youthful Geist
This commit is contained in:
parent
6c273bbabe
commit
8470a2e8e6
2 changed files with 55 additions and 0 deletions
54
Mage.Sets/src/mage/cards/t/TiminYouthfulGeist.java
Normal file
54
Mage.Sets/src/mage/cards/t/TiminYouthfulGeist.java
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.BeginningOfCombatTriggeredAbility;
|
||||
import mage.abilities.effects.common.TapTargetEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.PartnerWithAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.constants.TargetController;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TiminYouthfulGeist extends CardImpl {
|
||||
|
||||
public TiminYouthfulGeist(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{U}");
|
||||
|
||||
this.addSuperType(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.SPIRIT);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Partner with Rhoda, Geist Avenger
|
||||
this.addAbility(new PartnerWithAbility("Rhoda, Geist Avenger"));
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// At the beginning of each combat, tap up to one target creature.
|
||||
Ability ability = new BeginningOfCombatTriggeredAbility(
|
||||
new TapTargetEffect(), TargetController.ANY, false
|
||||
);
|
||||
ability.addTarget(new TargetCreaturePermanent(0, 1));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private TiminYouthfulGeist(final TiminYouthfulGeist card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TiminYouthfulGeist copy() {
|
||||
return new TiminYouthfulGeist(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -126,6 +126,7 @@ public final class CrimsonVowCommander extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Temple of Enlightenment", 185, Rarity.RARE, mage.cards.t.TempleOfEnlightenment.class));
|
||||
cards.add(new SetCardInfo("Temple of Malice", 186, Rarity.RARE, mage.cards.t.TempleOfMalice.class));
|
||||
cards.add(new SetCardInfo("Temple of the False God", 187, Rarity.UNCOMMON, mage.cards.t.TempleOfTheFalseGod.class));
|
||||
cards.add(new SetCardInfo("Timin, Youthful Geist", 16, Rarity.RARE, mage.cards.t.TiminYouthfulGeist.class));
|
||||
cards.add(new SetCardInfo("Twilight Drover", 100, Rarity.RARE, mage.cards.t.TwilightDrover.class));
|
||||
cards.add(new SetCardInfo("Unclaimed Territory", 188, Rarity.UNCOMMON, mage.cards.u.UnclaimedTerritory.class));
|
||||
cards.add(new SetCardInfo("Underworld Connections", 138, Rarity.RARE, mage.cards.u.UnderworldConnections.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue