mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
Implemented Kunoros, Hound of Athreos
This commit is contained in:
parent
d91a068521
commit
0e798da20f
2 changed files with 119 additions and 0 deletions
118
Mage.Sets/src/mage/cards/k/KunorosHoundOfAthreos.java
Normal file
118
Mage.Sets/src/mage/cards/k/KunorosHoundOfAthreos.java
Normal file
|
|
@ -0,0 +1,118 @@
|
||||||
|
package mage.cards.k;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
|
import mage.abilities.effects.ContinuousRuleModifyingEffectImpl;
|
||||||
|
import mage.abilities.keyword.LifelinkAbility;
|
||||||
|
import mage.abilities.keyword.MenaceAbility;
|
||||||
|
import mage.abilities.keyword.VigilanceAbility;
|
||||||
|
import mage.cards.Card;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.*;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.events.GameEvent;
|
||||||
|
import mage.game.events.ZoneChangeEvent;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public final class KunorosHoundOfAthreos extends CardImpl {
|
||||||
|
|
||||||
|
public KunorosHoundOfAthreos(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{W}{B}");
|
||||||
|
|
||||||
|
this.addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.HOUND);
|
||||||
|
this.power = new MageInt(3);
|
||||||
|
this.toughness = new MageInt(3);
|
||||||
|
|
||||||
|
// Vigilance
|
||||||
|
this.addAbility(VigilanceAbility.getInstance());
|
||||||
|
|
||||||
|
// Menace
|
||||||
|
this.addAbility(new MenaceAbility());
|
||||||
|
|
||||||
|
// Lifelink
|
||||||
|
this.addAbility(LifelinkAbility.getInstance());
|
||||||
|
|
||||||
|
// Creature cards in graveyards can't enter the battlefield.
|
||||||
|
this.addAbility(new SimpleStaticAbility(new KunorosHoundOfAthreosEnterEffect()));
|
||||||
|
|
||||||
|
// Players can't cast spells from graveyards.
|
||||||
|
this.addAbility(new SimpleStaticAbility(new KunorosHoundOfAthreosCastEffect()));
|
||||||
|
}
|
||||||
|
|
||||||
|
private KunorosHoundOfAthreos(final KunorosHoundOfAthreos card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public KunorosHoundOfAthreos copy() {
|
||||||
|
return new KunorosHoundOfAthreos(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class KunorosHoundOfAthreosEnterEffect extends ContinuousRuleModifyingEffectImpl {
|
||||||
|
|
||||||
|
KunorosHoundOfAthreosEnterEffect() {
|
||||||
|
super(Duration.WhileOnBattlefield, Outcome.Benefit);
|
||||||
|
staticText = "creature cards in graveyards can't enter the battlefield";
|
||||||
|
}
|
||||||
|
|
||||||
|
private KunorosHoundOfAthreosEnterEffect(final KunorosHoundOfAthreosEnterEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public KunorosHoundOfAthreosEnterEffect copy() {
|
||||||
|
return new KunorosHoundOfAthreosEnterEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean checksEventType(GameEvent event, Game game) {
|
||||||
|
return event.getType() == GameEvent.EventType.ZONE_CHANGE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean applies(GameEvent event, Ability source, Game game) {
|
||||||
|
ZoneChangeEvent zEvent = (ZoneChangeEvent) event;
|
||||||
|
if (zEvent.getToZone() != Zone.BATTLEFIELD
|
||||||
|
|| zEvent.getFromZone() != Zone.GRAVEYARD) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Card card = game.getCard(zEvent.getTargetId());
|
||||||
|
return card != null && card.isCreature();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class KunorosHoundOfAthreosCastEffect extends ContinuousRuleModifyingEffectImpl {
|
||||||
|
|
||||||
|
KunorosHoundOfAthreosCastEffect() {
|
||||||
|
super(Duration.WhileOnBattlefield, Outcome.Benefit);
|
||||||
|
staticText = "players can't cast spells from graveyards";
|
||||||
|
}
|
||||||
|
|
||||||
|
private KunorosHoundOfAthreosCastEffect(final KunorosHoundOfAthreosCastEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public KunorosHoundOfAthreosCastEffect copy() {
|
||||||
|
return new KunorosHoundOfAthreosCastEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean checksEventType(GameEvent event, Game game) {
|
||||||
|
return event.getType() == GameEvent.EventType.CAST_SPELL;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean applies(GameEvent event, Ability source, Game game) {
|
||||||
|
return game.getCard(event.getSourceId()) != null
|
||||||
|
&& game.getState().getZone(event.getSourceId()) == Zone.GRAVEYARD;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -50,6 +50,7 @@ public final class TherosBeyondDeath extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Island", 251, Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
|
cards.add(new SetCardInfo("Island", 251, Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
|
||||||
cards.add(new SetCardInfo("Klothys's Design", 176, Rarity.UNCOMMON, mage.cards.k.KlothyssDesign.class));
|
cards.add(new SetCardInfo("Klothys's Design", 176, Rarity.UNCOMMON, mage.cards.k.KlothyssDesign.class));
|
||||||
cards.add(new SetCardInfo("Klothys, God of Destiny", 220, Rarity.MYTHIC, mage.cards.k.KlothysGodOfDestiny.class));
|
cards.add(new SetCardInfo("Klothys, God of Destiny", 220, Rarity.MYTHIC, mage.cards.k.KlothysGodOfDestiny.class));
|
||||||
|
cards.add(new SetCardInfo("Kunoros, Hound of Athreos", 341, Rarity.RARE, mage.cards.k.KunorosHoundOfAthreos.class));
|
||||||
cards.add(new SetCardInfo("Leonin of the Lost Pride", 28, Rarity.COMMON, mage.cards.l.LeoninOfTheLostPride.class));
|
cards.add(new SetCardInfo("Leonin of the Lost Pride", 28, Rarity.COMMON, mage.cards.l.LeoninOfTheLostPride.class));
|
||||||
cards.add(new SetCardInfo("Memory Drain", 54, Rarity.COMMON, mage.cards.m.MemoryDrain.class));
|
cards.add(new SetCardInfo("Memory Drain", 54, Rarity.COMMON, mage.cards.m.MemoryDrain.class));
|
||||||
cards.add(new SetCardInfo("Mire's Grasp", 106, Rarity.COMMON, mage.cards.m.MiresGrasp.class));
|
cards.add(new SetCardInfo("Mire's Grasp", 106, Rarity.COMMON, mage.cards.m.MiresGrasp.class));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue