mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
[EMN] implemented many more colorless cards
This commit is contained in:
parent
566e667780
commit
2e4384ef68
3 changed files with 1 additions and 11 deletions
|
@ -28,8 +28,6 @@
|
|||
package mage.sets.alarareborn;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.constants.*;
|
||||
import mage.abilities.common.DealsDamageToAPlayerAttachedTriggeredAbility;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
|
@ -38,6 +36,7 @@ import mage.abilities.effects.common.continuous.GainAbilityAttachedEffect;
|
|||
import mage.abilities.keyword.EquipAbility;
|
||||
import mage.abilities.keyword.FearAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.*;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -50,9 +49,6 @@ public class MaskOfRiddles extends CardImpl {
|
|||
this.expansionSetCode = "ARB";
|
||||
this.subtype.add("Equipment");
|
||||
|
||||
|
||||
|
||||
|
||||
// Equipped creature has fear.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(FearAbility.getInstance(), AttachmentType.EQUIPMENT)));
|
||||
// Whenever equipped creature deals combat damage to a player, you may draw a card.
|
||||
|
|
|
@ -55,9 +55,6 @@ public class ShieldOfTheRighteous extends CardImpl {
|
|||
this.expansionSetCode = "ARB";
|
||||
this.subtype.add("Equipment");
|
||||
|
||||
|
||||
|
||||
|
||||
// Equipped creature gets +0/+2 and has vigilance.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEquippedEffect(0, 2)));
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(VigilanceAbility.getInstance(), AttachmentType.EQUIPMENT)));
|
||||
|
|
|
@ -48,9 +48,6 @@ public class LoxodonSmiter extends CardImpl {
|
|||
this.expansionSetCode = "RTR";
|
||||
this.subtype.add("Elephant");
|
||||
this.subtype.add("Soldier");
|
||||
|
||||
|
||||
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
|
|
Loading…
Reference in a new issue