mirror of
https://github.com/correl/mage.git
synced 2025-03-16 01:06:34 -09:00
commit
8a1619f9b4
6 changed files with 347 additions and 8 deletions
92
Mage.Sets/src/mage/cards/f/FowlPlay.java
Normal file
92
Mage.Sets/src/mage/cards/f/FowlPlay.java
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification, are
|
||||||
|
* permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
|
* conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||||
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
|
* provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||||
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||||
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
* The views and conclusions contained in the software and documentation are those of the
|
||||||
|
* authors and should not be interpreted as representing official policies, either expressed
|
||||||
|
* or implied, of BetaSteward_at_googlemail.com.
|
||||||
|
*/
|
||||||
|
package mage.cards.f;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
|
import mage.abilities.effects.common.AttachEffect;
|
||||||
|
import mage.abilities.effects.common.continuous.BecomesCreatureAttachedEffect;
|
||||||
|
import mage.constants.Outcome;
|
||||||
|
import mage.target.TargetPermanent;
|
||||||
|
import mage.abilities.keyword.EnchantAbility;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Duration;
|
||||||
|
import mage.constants.SubType;
|
||||||
|
import mage.constants.Zone;
|
||||||
|
import mage.game.permanent.token.Token;
|
||||||
|
import mage.target.common.TargetCreaturePermanent;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author spjspj
|
||||||
|
*/
|
||||||
|
public class FowlPlay extends CardImpl {
|
||||||
|
|
||||||
|
public FowlPlay(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{2}{U}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.AURA);
|
||||||
|
|
||||||
|
// Enchant creature
|
||||||
|
TargetPermanent auraTarget = new TargetCreaturePermanent();
|
||||||
|
this.getSpellAbility().addTarget(auraTarget);
|
||||||
|
this.getSpellAbility().addEffect(new AttachEffect(Outcome.AddAbility));
|
||||||
|
Ability ability = new EnchantAbility(auraTarget.getTargetName());
|
||||||
|
this.addAbility(ability);
|
||||||
|
|
||||||
|
// Enchanted creature is a Chicken with base power and toughness 1/1 and loses all abilities.
|
||||||
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
|
||||||
|
new BecomesCreatureAttachedEffect(new FowlPlayToken(),
|
||||||
|
"Enchanted creature is a Chicken with base power and toughness 1/1 and loses all abilities",
|
||||||
|
Duration.WhileOnBattlefield, BecomesCreatureAttachedEffect.LoseType.ABILITIES_SUBTYPE_AND_PT)));
|
||||||
|
}
|
||||||
|
|
||||||
|
public FowlPlay(final FowlPlay card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public FowlPlay copy() {
|
||||||
|
return new FowlPlay(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class FowlPlayToken extends Token {
|
||||||
|
|
||||||
|
public FowlPlayToken() {
|
||||||
|
super("Chicken", "a Chicken with base power and toughness 1/1 with no abilities");
|
||||||
|
cardType.add(CardType.CREATURE);
|
||||||
|
subtype.add(SubType.CHICKEN);
|
||||||
|
power = new MageInt(1);
|
||||||
|
toughness = new MageInt(1);
|
||||||
|
}
|
||||||
|
}
|
125
Mage.Sets/src/mage/cards/g/GoblinTutor.java
Normal file
125
Mage.Sets/src/mage/cards/g/GoblinTutor.java
Normal file
|
@ -0,0 +1,125 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification, are
|
||||||
|
* permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
|
* conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||||
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
|
* provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||||
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||||
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
* The views and conclusions contained in the software and documentation are those of the
|
||||||
|
* authors and should not be interpreted as representing official policies, either expressed
|
||||||
|
* or implied, of BetaSteward_at_googlemail.com.
|
||||||
|
*/
|
||||||
|
package mage.cards.g;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.effects.Effect;
|
||||||
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Outcome;
|
||||||
|
import mage.filter.FilterCard;
|
||||||
|
import mage.filter.common.FilterArtifactCard;
|
||||||
|
import mage.filter.common.FilterCreatureCard;
|
||||||
|
import mage.filter.common.FilterEnchantmentCard;
|
||||||
|
import mage.filter.common.FilterInstantOrSorceryCard;
|
||||||
|
import mage.filter.predicate.mageobject.NamePredicate;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.players.Player;
|
||||||
|
import mage.target.common.TargetCardInLibrary;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author spjspj
|
||||||
|
*/
|
||||||
|
public class GoblinTutor extends CardImpl {
|
||||||
|
|
||||||
|
public GoblinTutor(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{R}");
|
||||||
|
|
||||||
|
// Roll a six-sided die. If you roll a 1, Goblin Tutor has no effect. Otherwise, search your library for the indicated card, reveal it, put it into your hand, then shuffle your library. 2 - A card named Goblin Tutor 3 - An enchantment card 4 - An artifact card 5 - A creature card 6 - An instant or sorcery card
|
||||||
|
this.getSpellAbility().addEffect(new GoblinTutorEffect());
|
||||||
|
}
|
||||||
|
|
||||||
|
public GoblinTutor(final GoblinTutor card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GoblinTutor copy() {
|
||||||
|
return new GoblinTutor(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class GoblinTutorEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
private static final FilterCard filter = new FilterCard("card named Goblin Tutor");
|
||||||
|
|
||||||
|
static {
|
||||||
|
filter.add(new NamePredicate("Goblin Tutor"));
|
||||||
|
}
|
||||||
|
|
||||||
|
public GoblinTutorEffect() {
|
||||||
|
super(Outcome.PutCreatureInPlay);
|
||||||
|
this.staticText = "Roll a six-sided die. If you roll a 1, {this} has no effect. Otherwise, search your library for the indicated card, reveal it, put it into your hand, then shuffle your library. 2 - A card named Goblin Tutor 3 - An enchantment card 4 - An artifact card 5 - A creature card 6 - An instant or sorcery card";
|
||||||
|
}
|
||||||
|
|
||||||
|
public GoblinTutorEffect(final GoblinTutorEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GoblinTutorEffect copy() {
|
||||||
|
return new GoblinTutorEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
Player controller = game.getPlayer(source.getControllerId());
|
||||||
|
if (controller != null) {
|
||||||
|
int amount = controller.rollDice(game, 6);
|
||||||
|
|
||||||
|
Effect effect = null;
|
||||||
|
// 2 - A card named Goblin Tutor
|
||||||
|
// 3 - An enchantment card
|
||||||
|
// 4 - An artifact card
|
||||||
|
// 5 - A creature card
|
||||||
|
// 6 - An instant or sorcery card
|
||||||
|
if (amount == 2) {
|
||||||
|
effect = new SearchLibraryPutInHandEffect(new TargetCardInLibrary(0, 1, filter), true);
|
||||||
|
} else if (amount == 3) {
|
||||||
|
effect = new SearchLibraryPutInHandEffect(new TargetCardInLibrary(0, 1, new FilterEnchantmentCard()), true);
|
||||||
|
} else if (amount == 4) {
|
||||||
|
effect = new SearchLibraryPutInHandEffect(new TargetCardInLibrary(0, 1, new FilterArtifactCard()), true);
|
||||||
|
} else if (amount == 5) {
|
||||||
|
effect = new SearchLibraryPutInHandEffect(new TargetCardInLibrary(0, 1, new FilterCreatureCard()), true);
|
||||||
|
} else if (amount == 6) {
|
||||||
|
effect = new SearchLibraryPutInHandEffect(new TargetCardInLibrary(0, 1, new FilterInstantOrSorceryCard()), true);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (effect != null) {
|
||||||
|
effect.apply(game, source);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
116
Mage.Sets/src/mage/cards/h/HungryHungryHeifer.java
Normal file
116
Mage.Sets/src/mage/cards/h/HungryHungryHeifer.java
Normal file
|
@ -0,0 +1,116 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification, are
|
||||||
|
* permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
|
* conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||||
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
|
* provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||||
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||||
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
* The views and conclusions contained in the software and documentation are those of the
|
||||||
|
* authors and should not be interpreted as representing official policies, either expressed
|
||||||
|
* or implied, of BetaSteward_at_googlemail.com.
|
||||||
|
*/
|
||||||
|
package mage.cards.h;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.common.BeginningOfUpkeepTriggeredAbility;
|
||||||
|
import mage.abilities.costs.common.RemoveCounterCost;
|
||||||
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Outcome;
|
||||||
|
import mage.constants.SubType;
|
||||||
|
import mage.constants.TargetController;
|
||||||
|
import mage.constants.Zone;
|
||||||
|
import mage.filter.common.FilterControlledPermanent;
|
||||||
|
import mage.filter.predicate.permanent.CounterPredicate;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.permanent.Permanent;
|
||||||
|
import mage.players.Player;
|
||||||
|
import mage.target.common.TargetControlledPermanent;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author spjspj
|
||||||
|
*/
|
||||||
|
public class HungryHungryHeifer extends CardImpl {
|
||||||
|
|
||||||
|
public HungryHungryHeifer(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.COW);
|
||||||
|
this.power = new MageInt(3);
|
||||||
|
this.toughness = new MageInt(3);
|
||||||
|
|
||||||
|
// At the beginning of your upkeep, you may remove a counter from a permanent you control. If you don't, sacrifice Hungry Hungry Heifer.
|
||||||
|
this.addAbility(new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, new HungryHungryHeiferEffect(), TargetController.YOU, false, false));
|
||||||
|
}
|
||||||
|
|
||||||
|
public HungryHungryHeifer(final HungryHungryHeifer card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public HungryHungryHeifer copy() {
|
||||||
|
return new HungryHungryHeifer(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class HungryHungryHeiferEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
private static final FilterControlledPermanent filter = new FilterControlledPermanent("a permanent you control with a counter on it");
|
||||||
|
|
||||||
|
static {
|
||||||
|
filter.add(new CounterPredicate(null));
|
||||||
|
}
|
||||||
|
|
||||||
|
public HungryHungryHeiferEffect() {
|
||||||
|
super(Outcome.Sacrifice);
|
||||||
|
this.staticText = "you may remove a counter from a permanent you control. If you don't, sacrifice {this}";
|
||||||
|
}
|
||||||
|
|
||||||
|
public HungryHungryHeiferEffect(final HungryHungryHeiferEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public HungryHungryHeiferEffect copy() {
|
||||||
|
return new HungryHungryHeiferEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
Player controller = game.getPlayer(source.getControllerId());
|
||||||
|
Permanent sourceObject = (Permanent) source.getSourceObjectIfItStillExists(game);
|
||||||
|
if (sourceObject != null && controller != null) {
|
||||||
|
if (controller.chooseUse(outcome, "Remove a counter from a permanent you control?", source, game)) {
|
||||||
|
TargetControlledPermanent target = new TargetControlledPermanent(1, 1, filter, true);
|
||||||
|
RemoveCounterCost cost = new RemoveCounterCost(target);
|
||||||
|
if (cost.pay(null, game, source.getSourceId(), controller.getId(), true)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sourceObject.sacrifice(source.getSourceId(), game);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
|
@ -24,7 +24,10 @@ public class Unglued extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Chicken Egg", 41, Rarity.COMMON, mage.cards.c.ChickenEgg.class));
|
cards.add(new SetCardInfo("Chicken Egg", 41, Rarity.COMMON, mage.cards.c.ChickenEgg.class));
|
||||||
cards.add(new SetCardInfo("Chicken a la King", 17, Rarity.RARE, mage.cards.c.ChickenALaKing.class));
|
cards.add(new SetCardInfo("Chicken a la King", 17, Rarity.RARE, mage.cards.c.ChickenALaKing.class));
|
||||||
cards.add(new SetCardInfo("Forest", 88, Rarity.LAND, mage.cards.basiclands.Forest.class, new CardGraphicInfo(FrameStyle.UGL_FULL_ART_BASIC, false)));
|
cards.add(new SetCardInfo("Forest", 88, Rarity.LAND, mage.cards.basiclands.Forest.class, new CardGraphicInfo(FrameStyle.UGL_FULL_ART_BASIC, false)));
|
||||||
|
cards.add(new SetCardInfo("Fowl Play", 24, Rarity.COMMON, mage.cards.f.FowlPlay.class));
|
||||||
|
cards.add(new SetCardInfo("Goblin Tutor", 45, Rarity.UNCOMMON, mage.cards.g.GoblinTutor.class));
|
||||||
cards.add(new SetCardInfo("Growth Spurt", 61, Rarity.COMMON, mage.cards.g.GrowthSpurt.class));
|
cards.add(new SetCardInfo("Growth Spurt", 61, Rarity.COMMON, mage.cards.g.GrowthSpurt.class));
|
||||||
|
cards.add(new SetCardInfo("Hungry Hungry Heifer", 63, Rarity.UNCOMMON, mage.cards.h.HungryHungryHeifer.class));
|
||||||
cards.add(new SetCardInfo("Island", 85, Rarity.LAND, mage.cards.basiclands.Island.class, new CardGraphicInfo(FrameStyle.UGL_FULL_ART_BASIC, false)));
|
cards.add(new SetCardInfo("Island", 85, Rarity.LAND, mage.cards.basiclands.Island.class, new CardGraphicInfo(FrameStyle.UGL_FULL_ART_BASIC, false)));
|
||||||
cards.add(new SetCardInfo("Jack-in-the-Mox", 75, Rarity.RARE, mage.cards.j.JackInTheMox.class));
|
cards.add(new SetCardInfo("Jack-in-the-Mox", 75, Rarity.RARE, mage.cards.j.JackInTheMox.class));
|
||||||
cards.add(new SetCardInfo("Jumbo Imp", 34, Rarity.UNCOMMON, mage.cards.j.JumboImp.class));
|
cards.add(new SetCardInfo("Jumbo Imp", 34, Rarity.UNCOMMON, mage.cards.j.JumboImp.class));
|
||||||
|
|
|
@ -36,7 +36,9 @@ public class DoIfCostPaid extends OneShotEffect {
|
||||||
|
|
||||||
public DoIfCostPaid(Effect effect, Cost cost, String chooseUseText, boolean optional) {
|
public DoIfCostPaid(Effect effect, Cost cost, String chooseUseText, boolean optional) {
|
||||||
super(Outcome.Benefit);
|
super(Outcome.Benefit);
|
||||||
this.executingEffects.add(effect);
|
if (effect != null) {
|
||||||
|
this.executingEffects.add(effect);
|
||||||
|
}
|
||||||
this.cost = cost;
|
this.cost = cost;
|
||||||
this.chooseUseText = chooseUseText;
|
this.chooseUseText = chooseUseText;
|
||||||
this.optional = optional;
|
this.optional = optional;
|
||||||
|
@ -74,10 +76,9 @@ public class DoIfCostPaid extends OneShotEffect {
|
||||||
message = CardUtil.replaceSourceName(message, mageObject.getLogName());
|
message = CardUtil.replaceSourceName(message, mageObject.getLogName());
|
||||||
boolean result = true;
|
boolean result = true;
|
||||||
if (cost.canPay(source, source.getSourceId(), player.getId(), game)
|
if (cost.canPay(source, source.getSourceId(), player.getId(), game)
|
||||||
&& (!optional || player.chooseUse(executingEffects.get(0).getOutcome(), message, source, game))) {
|
&& executingEffects.size() > 0 && (!optional || player.chooseUse(executingEffects.get(0).getOutcome(), message, source, game))) {
|
||||||
cost.clearPaid();
|
cost.clearPaid();
|
||||||
if (cost.pay(source, game, source.getSourceId(), player.getId(), false)) {
|
if (cost.pay(source, game, source.getSourceId(), player.getId(), false)) {
|
||||||
game.applyEffects(); // To end effects e.g. of sacrificed permanents
|
|
||||||
for (Effect effect : executingEffects) {
|
for (Effect effect : executingEffects) {
|
||||||
effect.setTargetPointer(this.targetPointer);
|
effect.setTargetPointer(this.targetPointer);
|
||||||
if (effect instanceof OneShotEffect) {
|
if (effect instanceof OneShotEffect) {
|
||||||
|
@ -87,7 +88,8 @@ public class DoIfCostPaid extends OneShotEffect {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
player.resetStoredBookmark(game); // otherwise you can e.g. undo card drawn with Mentor of the Meek
|
player.resetStoredBookmark(game); // otherwise you can e.g. undo card drawn with Mentor of the Meek
|
||||||
} else if (!otherwiseEffects.isEmpty()) {
|
}
|
||||||
|
else if (!otherwiseEffects.isEmpty()) {
|
||||||
for (Effect effect : otherwiseEffects) {
|
for (Effect effect : otherwiseEffects) {
|
||||||
effect.setTargetPointer(this.targetPointer);
|
effect.setTargetPointer(this.targetPointer);
|
||||||
if (effect instanceof OneShotEffect) {
|
if (effect instanceof OneShotEffect) {
|
||||||
|
@ -97,7 +99,8 @@ public class DoIfCostPaid extends OneShotEffect {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (!otherwiseEffects.isEmpty()) {
|
}
|
||||||
|
else if (!otherwiseEffects.isEmpty()) {
|
||||||
for (Effect effect : otherwiseEffects) {
|
for (Effect effect : otherwiseEffects) {
|
||||||
effect.setTargetPointer(this.targetPointer);
|
effect.setTargetPointer(this.targetPointer);
|
||||||
if (effect instanceof OneShotEffect) {
|
if (effect instanceof OneShotEffect) {
|
||||||
|
|
|
@ -85,14 +85,14 @@ public enum SubType {
|
||||||
CENTAUR("Centaur", SubTypeSet.CreatureType),
|
CENTAUR("Centaur", SubTypeSet.CreatureType),
|
||||||
CEREAN("Cerean", SubTypeSet.CreatureType, true), // Star Wars
|
CEREAN("Cerean", SubTypeSet.CreatureType, true), // Star Wars
|
||||||
CEPHALID("Cephalid", SubTypeSet.CreatureType),
|
CEPHALID("Cephalid", SubTypeSet.CreatureType),
|
||||||
CHICKEN("Chicken", SubTypeSet.CreatureType), // Unglued
|
CHICKEN("Chicken", SubTypeSet.CreatureType, true), // Unglued
|
||||||
CHIMERA("Chimera", SubTypeSet.CreatureType),
|
CHIMERA("Chimera", SubTypeSet.CreatureType),
|
||||||
CHISS("Chiss", SubTypeSet.CreatureType, true),
|
CHISS("Chiss", SubTypeSet.CreatureType, true),
|
||||||
CITIZEN("Citizen", SubTypeSet.CreatureType),
|
CITIZEN("Citizen", SubTypeSet.CreatureType),
|
||||||
CLERIC("Cleric", SubTypeSet.CreatureType),
|
CLERIC("Cleric", SubTypeSet.CreatureType),
|
||||||
COCKATRICE("Cockatrice", SubTypeSet.CreatureType),
|
COCKATRICE("Cockatrice", SubTypeSet.CreatureType),
|
||||||
CONSTRUCT("Construct", SubTypeSet.CreatureType),
|
CONSTRUCT("Construct", SubTypeSet.CreatureType),
|
||||||
COW("Cow", SubTypeSet.CreatureType), // Unglued
|
COW("Cow", SubTypeSet.CreatureType, true), // Unglued
|
||||||
COWARD("Coward", SubTypeSet.CreatureType),
|
COWARD("Coward", SubTypeSet.CreatureType),
|
||||||
CRAB("Crab", SubTypeSet.CreatureType),
|
CRAB("Crab", SubTypeSet.CreatureType),
|
||||||
CROCODILE("Crocodile", SubTypeSet.CreatureType),
|
CROCODILE("Crocodile", SubTypeSet.CreatureType),
|
||||||
|
@ -134,7 +134,7 @@ public enum SubType {
|
||||||
FROG("Frog", SubTypeSet.CreatureType),
|
FROG("Frog", SubTypeSet.CreatureType),
|
||||||
FUNGUS("Fungus", SubTypeSet.CreatureType),
|
FUNGUS("Fungus", SubTypeSet.CreatureType),
|
||||||
// G
|
// G
|
||||||
GAMER("Gamer", SubTypeSet.CreatureType), // Un-sets
|
GAMER("Gamer", SubTypeSet.CreatureType, true), // Un-sets
|
||||||
GAMORREAN("Gamorrean", SubTypeSet.CreatureType, true), // Star Wars
|
GAMORREAN("Gamorrean", SubTypeSet.CreatureType, true), // Star Wars
|
||||||
GAND("Gand", SubTypeSet.CreatureType, true), // Star Wars
|
GAND("Gand", SubTypeSet.CreatureType, true), // Star Wars
|
||||||
GARGOYLE("Gargoyle", SubTypeSet.CreatureType),
|
GARGOYLE("Gargoyle", SubTypeSet.CreatureType),
|
||||||
|
|
Loading…
Add table
Reference in a new issue