[VOC] Implemented Timin, Youthful Geist

This commit is contained in:
Evan Kranzler 2021-11-09 22:55:33 -05:00
parent 6c273bbabe
commit 8470a2e8e6
2 changed files with 55 additions and 0 deletions

View 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);
}
}

View file

@ -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));