1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-05 17:00:10 -09:00

Added ManaInAnyCombinationEffect and RemoveCountersForCostCondition and some minor formatting and additions.

This commit is contained in:
LevelX2 2013-11-21 14:28:54 +01:00
parent b7c45a7090
commit b8af8106f6
13 changed files with 250 additions and 20 deletions
Mage.Server.Plugins/Mage.Player.AI/src/main/java/mage/player/ai
Mage.Sets/src/mage/sets
Mage/src/mage

View file

@ -1292,6 +1292,9 @@ public class ComputerPlayer<T extends ComputerPlayer<T>> extends PlayerImpl<T> i
public int getAmount(int min, int max, String message, Game game) {
log.debug("getAmount");
//TODO: improve this
if (min < max && min == 0) {
return new Random().nextInt(max+1);
}
return min;
}

View file

@ -87,7 +87,9 @@ public class Seasinger extends CardImpl<Seasinger> {
this.addAbility(new SkipUntapOptionalAbility());
// {tap}: Gain control of target creature whose controller controls an Island for as long as you control Seasinger and Seasinger remains tapped.
ConditionalContinousEffect effect = new ConditionalContinousEffect(new GainControlTargetEffect(Duration.Custom), new ControlsPermanentCondition(seasinger, ControlsPermanentCondition.CountType.EQUAL_TO, 1, SourceTappedCondition.getInstance()), rule);
ConditionalContinousEffect effect = new ConditionalContinousEffect(
new GainControlTargetEffect(Duration.Custom),
new ControlsPermanentCondition(seasinger, ControlsPermanentCondition.CountType.EQUAL_TO, 1, SourceTappedCondition.getInstance()), rule);
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new TapSourceCost());
creatureWhoseControllerControlsIsland.add(new ControllerControlsIslandPredicate());
ability.addTarget(new TargetCreaturePermanent(creatureWhoseControllerControlsIsland));

View file

@ -29,19 +29,14 @@ package mage.sets.theros;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.BeginningOfUntapTriggeredAbility;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.AsThoughEffectImpl;
import mage.abilities.effects.Effect;
import mage.abilities.effects.common.UntapAllControllerEffect;
import mage.abilities.effects.common.continious.CastAsThoughItHadFlashEffect;
import mage.cards.Card;
import mage.cards.CardImpl;
import mage.constants.AsThoughEffectType;
import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.Outcome;
import mage.constants.Rarity;
import mage.constants.TargetController;
import mage.constants.Zone;
@ -49,7 +44,6 @@ import mage.filter.FilterPermanent;
import mage.filter.common.FilterCreatureCard;
import mage.filter.predicate.Predicates;
import mage.filter.predicate.mageobject.CardTypePredicate;
import mage.game.Game;
/**
*

View file

@ -49,7 +49,7 @@ public class EquipmentAttachedCondition implements Condition {
@Override
public boolean apply(Game game, Ability source) {
Permanent attachment = game.getPermanent(source.getSourceId());
return attachment == null || attachment.getAttachedTo() == null;
return attachment != null && attachment.getAttachedTo() != null;
}
}

View file

@ -51,7 +51,7 @@ public class RemoveVariableCountersSourceCost extends CostImpl<RemoveVariableCou
public RemoveVariableCountersSourceCost(Counter counter, int minimalCountersToPay) {
this.minimalCountersToPay = minimalCountersToPay;
this.name = counter.getName();
this.text = "Remove X " + name + " counter from {this}";
this.text = "Remove X " + name + " counters from {this}";
}
public RemoveVariableCountersSourceCost(Counter counter) {
@ -68,10 +68,7 @@ public class RemoveVariableCountersSourceCost extends CostImpl<RemoveVariableCou
@Override
public boolean canPay(UUID sourceId, UUID controllerId, Game game) {
Permanent permanent = game.getPermanent(sourceId);
if (permanent.getCounters().getCount(name) >= minimalCountersToPay) {
return true;
}
return false;
return permanent != null && permanent.getCounters().getCount(name) >= minimalCountersToPay;
}
@Override

View file

@ -32,6 +32,7 @@ import java.util.UUID;
import mage.constants.AbilityType;
import mage.abilities.Ability;
import mage.abilities.costs.CostImpl;
import mage.constants.AsThoughEffectType;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.game.permanent.Permanent;
@ -66,7 +67,8 @@ public class TapSourceCost extends CostImpl<TapSourceCost> {
public boolean canPay(UUID sourceId, UUID controllerId, Game game) {
Permanent permanent = game.getPermanent(sourceId);
if (permanent != null) {
return !permanent.isTapped() && permanent.canTap();
return !permanent.isTapped() &&
(permanent.canTap() || game.getContinuousEffects().asThough(sourceId, AsThoughEffectType.ACTIVATE_HASTE, game));
}
return false;
}

View file

@ -0,0 +1,46 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package mage.abilities.dynamicvalue.common;
import mage.abilities.Ability;
import mage.abilities.costs.Cost;
import mage.abilities.costs.common.RemoveVariableCountersSourceCost;
import mage.abilities.dynamicvalue.DynamicValue;
import mage.game.Game;
/**
*
* @author LevelX2
*/
public class RemovedCountersForCostValue implements DynamicValue {
@Override
public int calculate(Game game, Ability sourceAbility) {
for (Cost cost: sourceAbility.getCosts()) {
if (cost instanceof RemoveVariableCountersSourceCost) {
return ((RemoveVariableCountersSourceCost) cost).getAmount();
}
}
return 0;
}
@Override
public String getMessage() {
return "number of removed counters";
}
@Override
public DynamicValue copy() {
return new RemovedCountersForCostValue();
}
@Override
public String toString() {
return "X";
}
}

View file

@ -39,8 +39,8 @@ import mage.game.Game;
*/
public class DynamicManaEffect extends BasicManaEffect {
private Mana computedMana;
private DynamicValue amount;
private final Mana computedMana;
private final DynamicValue amount;
private String text = null;
public DynamicManaEffect(Mana mana, DynamicValue amount) {

View file

@ -0,0 +1,93 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package mage.abilities.effects.common;
import java.util.ArrayList;
import java.util.Arrays;
import mage.Mana;
import mage.abilities.Ability;
import mage.abilities.dynamicvalue.DynamicValue;
import mage.abilities.dynamicvalue.common.StaticValue;
import mage.constants.ColoredManaSymbol;
import mage.game.Game;
import mage.players.Player;
import mage.util.CardUtil;
/**
*
* @author LevelX2
*/
public class ManaInAnyCombinationEffect extends ManaEffect <ManaInAnyCombinationEffect> {
private ArrayList<ColoredManaSymbol> manaSymbols = new ArrayList();
private final DynamicValue amount;
public ManaInAnyCombinationEffect(int amount, ColoredManaSymbol... coloredManaSymbols) {
this(new StaticValue(amount), coloredManaSymbols);
}
public ManaInAnyCombinationEffect(DynamicValue amount, ColoredManaSymbol... coloredManaSymbols) {
super();
this.manaSymbols.addAll(Arrays.asList(coloredManaSymbols));
this.amount = amount;
this.staticText = setText();
}
public ManaInAnyCombinationEffect(final ManaInAnyCombinationEffect effect) {
super(effect);
this.manaSymbols = effect.manaSymbols;
this.amount = effect.amount;
}
@Override
public ManaInAnyCombinationEffect copy() {
return new ManaInAnyCombinationEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Player player = game.getPlayer(source.getControllerId());
if (player != null){
Mana mana = new Mana();
int amountOfManaLeft = amount.calculate(game, source);
while (amountOfManaLeft > 0 && player.isInGame()) {
for (ColoredManaSymbol coloredManaSymbol: manaSymbols) {
int number = player.getAmount(0, amountOfManaLeft, new StringBuilder("How many ").append(coloredManaSymbol.name()).append(" mana?").toString(), game);
if (number > 0) {
for (int i = 0; i < number; i++) {
mana.add(new Mana(coloredManaSymbol));
}
amountOfManaLeft -= number;
}
if (amountOfManaLeft == 0) {
break;
}
}
}
player.getManaPool().addMana(mana, game, source);
return true;
}
return false;
}
private String setText() {
StringBuilder sb = new StringBuilder("Add ");
sb.append(CardUtil.numberToText(amount.toString()));
sb.append(" mana in any combination of ");
int i = 0;
for (ColoredManaSymbol coloredManaSymbol: manaSymbols) {
i++;
if (i > 1) {
sb.append(" and/or ");
}
sb.append("{").append(coloredManaSymbol.toString()).append("}");
}
sb.append(" to your mana pool");
return sb.toString();
}
}

View file

@ -6,13 +6,14 @@ package mage.constants;
*/
public enum AsThoughEffectType {
ATTACK,
ACTIVATE_HASTE,
BLOCK_TAPPED,
BE_BLOCKED,
CAST,
DAMAGE,
HEXPROOF,
SPEND_ANY_MANA,
PAY,
REVEAL_FACE_DOWN,
SPEND_ANY_MANA,
TARGET
}

View file

@ -7,7 +7,7 @@ package mage.constants;
public enum ColoredManaSymbol {
W("W"), U("U"), B("B"), R("R"), G("G");
private String text;
private final String text;
ColoredManaSymbol(String text) {
this.text = text;

View file

@ -28,7 +28,49 @@
package mage.counters;
import mage.counters.common.*;
import mage.counters.common.AgeCounter;
import mage.counters.common.AimCounter;
import mage.counters.common.ArrowheadCounter;
import mage.counters.common.AwakeningCounter;
import mage.counters.common.BlazeCounter;
import mage.counters.common.BriberyCounter;
import mage.counters.common.ChargeCounter;
import mage.counters.common.DespairCounter;
import mage.counters.common.DevotionCounter;
import mage.counters.common.DivinityCounter;
import mage.counters.common.ElixirCounter;
import mage.counters.common.EonCounter;
import mage.counters.common.EyeballCounter;
import mage.counters.common.FadeCounter;
import mage.counters.common.FateCounter;
import mage.counters.common.FeatherCounter;
import mage.counters.common.FuseCounter;
import mage.counters.common.HatchlingCounter;
import mage.counters.common.HoofprintCounter;
import mage.counters.common.IceCounter;
import mage.counters.common.KiCounter;
import mage.counters.common.LevelCounter;
import mage.counters.common.LoreCounter;
import mage.counters.common.LoyaltyCounter;
import mage.counters.common.MiningCounter;
import mage.counters.common.MinusOneCounter;
import mage.counters.common.PageCounter;
import mage.counters.common.PainCounter;
import mage.counters.common.PetrificationCounter;
import mage.counters.common.PlagueCounter;
import mage.counters.common.PlusOneCounter;
import mage.counters.common.PoisonCounter;
import mage.counters.common.PressureCounter;
import mage.counters.common.QuestCounter;
import mage.counters.common.SlimeCounter;
import mage.counters.common.SporeCounter;
import mage.counters.common.StorageCounter;
import mage.counters.common.StudyCounter;
import mage.counters.common.TheftCounter;
import mage.counters.common.TimeCounter;
import mage.counters.common.TowerCounter;
import mage.counters.common.VileCounter;
import mage.counters.common.WishCounter;
/**
* Enum for counters, names and instances.
@ -72,6 +114,7 @@ public enum CounterType {
QUEST(new QuestCounter().name),
SLIME(new SlimeCounter().name),
SPORE(new SporeCounter().name),
STORAGE(new StorageCounter().name),
STUDY(new StudyCounter().name),
THEFT(new TheftCounter().name),
TIME(new TimeCounter().name),
@ -79,7 +122,7 @@ public enum CounterType {
VILE(new VileCounter().name),
WISH(new WishCounter().name);
private String name;
private final String name;
private CounterType(String name) {
this.name = name;
@ -163,6 +206,8 @@ public enum CounterType {
return new SlimeCounter(amount);
case SPORE:
return new SporeCounter(amount);
case STORAGE:
return new StorageCounter(amount);
case STUDY:
return new StudyCounter(amount);
case EYEBALL:

View file

@ -0,0 +1,47 @@
/*
* Copyright 2011 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.counters.common;
import mage.counters.Counter;
/**
*
* @author LevelX2
*/
public class StorageCounter extends Counter<SlimeCounter> {
public StorageCounter() {
this(1);
}
public StorageCounter(int amount) {
super("storage");
this.count = amount;
}
}