mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
[EOC] Implement Kilo, Apogee Mind
This commit is contained in:
parent
ecd3efd380
commit
74ea834e01
2 changed files with 47 additions and 0 deletions
44
Mage.Sets/src/mage/cards/k/KiloApogeeMind.java
Normal file
44
Mage.Sets/src/mage/cards/k/KiloApogeeMind.java
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
package mage.cards.k;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.BecomesTappedSourceTriggeredAbility;
|
||||
import mage.abilities.effects.common.counter.ProliferateEffect;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class KiloApogeeMind extends CardImpl {
|
||||
|
||||
public KiloApogeeMind(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{U}{R}{W}");
|
||||
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.ROBOT);
|
||||
this.subtype.add(SubType.ARTIFICER);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Haste
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
|
||||
// Whenever Kilo becomes tapped, proliferate.
|
||||
this.addAbility(new BecomesTappedSourceTriggeredAbility(new ProliferateEffect()));
|
||||
}
|
||||
|
||||
private KiloApogeeMind(final KiloApogeeMind card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public KiloApogeeMind copy() {
|
||||
return new KiloApogeeMind(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
|
|
@ -17,5 +18,7 @@ public final class EdgeOfEternitiesCommander extends ExpansionSet {
|
|||
private EdgeOfEternitiesCommander() {
|
||||
super("Edge of Eternities Commander", "EOC", ExpansionSet.buildDate(2025, 8, 1), SetType.SUPPLEMENTAL);
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Kilo, Apogee Mind", 3, Rarity.MYTHIC, mage.cards.k.KiloApogeeMind.class));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue