mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fixed Duplicity casting costs.
This commit is contained in:
parent
09b64b2025
commit
2323654a22
2 changed files with 202 additions and 203 deletions
|
@ -31,7 +31,7 @@ import mage.util.CardUtil;
|
||||||
public final class Duplicity extends CardImpl {
|
public final class Duplicity extends CardImpl {
|
||||||
|
|
||||||
public Duplicity(UUID ownerId, CardSetInfo setInfo) {
|
public Duplicity(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{3}{U}");
|
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{3}{U}{U}");
|
||||||
|
|
||||||
// When Duplicity enters the battlefield, exile the top five cards of your library face down.
|
// When Duplicity enters the battlefield, exile the top five cards of your library face down.
|
||||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new DuplicityEffect(), false));
|
this.addAbility(new EntersBattlefieldTriggeredAbility(new DuplicityEffect(), false));
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
package mage.cards.p;
|
package mage.cards.p;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
@ -11,8 +10,8 @@ import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
|
import mage.constants.SubType;
|
||||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.permanent.Permanent;
|
import mage.game.permanent.Permanent;
|
||||||
|
@ -26,7 +25,7 @@ import mage.target.common.TargetControlledPermanent;
|
||||||
public final class ProwlingPangolin extends CardImpl {
|
public final class ProwlingPangolin extends CardImpl {
|
||||||
|
|
||||||
public ProwlingPangolin(UUID ownerId, CardSetInfo setInfo) {
|
public ProwlingPangolin(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}{B}");
|
||||||
this.subtype.add(SubType.BEAST, SubType.PANGOLIN);
|
this.subtype.add(SubType.BEAST, SubType.PANGOLIN);
|
||||||
this.power = new MageInt(6);
|
this.power = new MageInt(6);
|
||||||
this.toughness = new MageInt(5);
|
this.toughness = new MageInt(5);
|
||||||
|
|
Loading…
Reference in a new issue