mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
[CLB] Implemented Githzerai Monk
This commit is contained in:
parent
e016794e99
commit
e22d73a4b5
2 changed files with 50 additions and 0 deletions
49
Mage.Sets/src/mage/cards/g/GithzeraiMonk.java
Normal file
49
Mage.Sets/src/mage/cards/g/GithzeraiMonk.java
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
package mage.cards.g;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.common.TapAllEffect;
|
||||
import mage.abilities.keyword.FlashAbility;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.StaticFilters;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class GithzeraiMonk extends CardImpl {
|
||||
|
||||
public GithzeraiMonk(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{W}");
|
||||
|
||||
this.subtype.add(SubType.GITH);
|
||||
this.subtype.add(SubType.MONK);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Flash
|
||||
this.addAbility(FlashAbility.getInstance());
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Psychic Defense — When Githzerai Monk enters the battlefield, tap all creatures you don't control.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(
|
||||
new TapAllEffect(StaticFilters.FILTER_CREATURES_YOU_DONT_CONTROL)
|
||||
).withFlavorWord("Psychic Defense"));
|
||||
}
|
||||
|
||||
private GithzeraiMonk(final GithzeraiMonk card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public GithzeraiMonk copy() {
|
||||
return new GithzeraiMonk(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -125,6 +125,7 @@ public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Geode Golem", 316, Rarity.UNCOMMON, mage.cards.g.GeodeGolem.class));
|
||||
cards.add(new SetCardInfo("Ghost Lantern", 128, Rarity.UNCOMMON, mage.cards.g.GhostLantern.class));
|
||||
cards.add(new SetCardInfo("Giant Ankheg", 233, Rarity.UNCOMMON, mage.cards.g.GiantAnkheg.class));
|
||||
cards.add(new SetCardInfo("Githzerai Monk", 20, Rarity.UNCOMMON, mage.cards.g.GithzeraiMonk.class));
|
||||
cards.add(new SetCardInfo("Goggles of Night", 74, Rarity.COMMON, mage.cards.g.GogglesOfNight.class));
|
||||
cards.add(new SetCardInfo("Gorion, Wise Mentor", 276, Rarity.RARE, mage.cards.g.GorionWiseMentor.class));
|
||||
cards.add(new SetCardInfo("Greatsword of Tyr", 22, Rarity.COMMON, mage.cards.g.GreatswordOfTyr.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue