mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
fixed verify failures
This commit is contained in:
parent
01eb0cdfae
commit
8d3c45007c
4 changed files with 3 additions and 37 deletions
|
@ -1,34 +0,0 @@
|
|||
package mage.cards.d;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.constants.SubType;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class DigDeep extends CardImpl {
|
||||
|
||||
public DigDeep(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{G}");
|
||||
|
||||
this.subtype.add(SubType.ADVENTURE);
|
||||
this.power = new MageInt(6);
|
||||
this.toughness = new MageInt(5);
|
||||
|
||||
// Choose target creature. Mill four cards, then put a +1/+1 counter on that creature for each creature card milled this way.
|
||||
}
|
||||
|
||||
private DigDeep(final DigDeep card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DigDeep copy() {
|
||||
return new DigDeep(this);
|
||||
}
|
||||
}
|
|
@ -38,7 +38,8 @@ public final class MyrkulsInvoker extends CardImpl {
|
|||
ability.addEffect(new GainAbilityControlledEffect(
|
||||
new MenaceAbility(false), Duration.EndOfTurn,
|
||||
StaticFilters.FILTER_CONTROLLED_CREATURE
|
||||
).setText("and gain menace until end of turn"));
|
||||
).setText("and gain menace until end of turn " +
|
||||
"<i>(A creature with menace can't be blocked except by two or more creatures.)</i>"));
|
||||
this.addAbility(ability.withFlavorWord("Psychic Blades"));
|
||||
}
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ public final class SaddleOfTheCavalier extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// Equip {3}
|
||||
this.addAbility(new EquipAbility(3));
|
||||
this.addAbility(new EquipAbility(3, false));
|
||||
}
|
||||
|
||||
private SaddleOfTheCavalier(final SaddleOfTheCavalier card) {
|
||||
|
|
|
@ -90,7 +90,6 @@ public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Dawnbringer Cleric", 15, Rarity.COMMON, mage.cards.d.DawnbringerCleric.class));
|
||||
cards.add(new SetCardInfo("Deadly Dispute", 124, Rarity.COMMON, mage.cards.d.DeadlyDispute.class));
|
||||
cards.add(new SetCardInfo("Decanter of Endless Water", 309, Rarity.COMMON, mage.cards.d.DecanterOfEndlessWater.class));
|
||||
cards.add(new SetCardInfo("Dig Deep", 223, Rarity.COMMON, mage.cards.d.DigDeep.class));
|
||||
cards.add(new SetCardInfo("Displacer Kitten", 63, Rarity.RARE, mage.cards.d.DisplacerKitten.class));
|
||||
cards.add(new SetCardInfo("Draconic Lore", 64, Rarity.COMMON, mage.cards.d.DraconicLore.class));
|
||||
cards.add(new SetCardInfo("Draconic Muralists", 224, Rarity.UNCOMMON, mage.cards.d.DraconicMuralists.class));
|
||||
|
|
Loading…
Reference in a new issue