From 7e05790a07852578073e67aaf5880beea1bbdc34 Mon Sep 17 00:00:00 2001 From: BetaSteward Date: Thu, 28 Jul 2011 11:25:06 -0400 Subject: [PATCH] added SOM - Chimeric Mass --- .../sets/scarsofmirrodin/ChimericMass.java | 150 ++++++++++++++++++ Mage/src/mage/MageInt.java | 4 +- .../abilities/effects/ContinuousEffects.java | 1 + 3 files changed, 154 insertions(+), 1 deletion(-) create mode 100644 Mage.Sets/src/mage/sets/scarsofmirrodin/ChimericMass.java diff --git a/Mage.Sets/src/mage/sets/scarsofmirrodin/ChimericMass.java b/Mage.Sets/src/mage/sets/scarsofmirrodin/ChimericMass.java new file mode 100644 index 00000000000..78c849a70d3 --- /dev/null +++ b/Mage.Sets/src/mage/sets/scarsofmirrodin/ChimericMass.java @@ -0,0 +1,150 @@ +/* + * 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.sets.scarsofmirrodin; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Duration; +import mage.Constants.Layer; +import mage.Constants.Outcome; +import mage.Constants.Rarity; +import mage.Constants.SubLayer; +import mage.Constants.Zone; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.EntersBattlefieldAbility; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.common.SimpleStaticAbility; +import mage.abilities.costs.Costs; +import mage.abilities.costs.CostsImpl; +import mage.abilities.costs.mana.GenericManaCost; +import mage.abilities.dynamicvalue.DynamicValue; +import mage.abilities.dynamicvalue.common.CountersCount; +import mage.abilities.effects.ContinuousEffectImpl; +import mage.abilities.effects.OneShotEffect; +import mage.abilities.effects.common.continious.BecomesCreatureSourceEOTEffect; +import mage.cards.CardImpl; +import mage.counters.CounterType; +import mage.game.Game; +import mage.game.permanent.Permanent; +import mage.game.permanent.token.Token; + +/** + * + * @author BetaSteward_at_googlemail.com + */ +public class ChimericMass extends CardImpl { + + public ChimericMass(UUID ownerId) { + super(ownerId, 141, "Chimeric Mass", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{X}"); + this.expansionSetCode = "SOM"; + this.addAbility(new EntersBattlefieldAbility(new ChimericMassEffect(), "{this} enters the battlefield with X charge counters on it")); + Costs costs = new CostsImpl(); + costs.add(new GenericManaCost(1)); + this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BecomesCreatureSourceEOTEffect(new ChimericMassToken(), ""), costs)); + } + + public ChimericMass(final ChimericMass card) { + super(card); + } + + @Override + public ChimericMass copy() { + return new ChimericMass(this); + } + +} + +class ChimericMassEffect extends OneShotEffect { + public ChimericMassEffect() { + super(Outcome.Benefit); + } + + public ChimericMassEffect(final ChimericMassEffect effect) { + super(effect); + } + + @Override + public boolean apply(Game game, Ability source) { + int amount = source.getManaCostsToPay().getVariableCosts().get(0).getAmount(); + Permanent p = game.getPermanent(source.getSourceId()); + if (p != null) { + p.addCounters(CounterType.CHARGE.createInstance(amount)); + return true; + } + return true; + } + + @Override + public ChimericMassEffect copy() { + return new ChimericMassEffect(this); + } +} + +class ChimericMassToken extends Token { + + public ChimericMassToken() { + super("", "Construct artifact creature with \"This creature's power and toughness are each equal to the number of charge counters on it.\""); + cardType.add(CardType.CREATURE); + subtype.add("Construct"); + power = MageInt.EmptyMageInt; + toughness = MageInt.EmptyMageInt; + this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ChimericMassTokenEffect())); + } +} + +class ChimericMassTokenEffect extends ContinuousEffectImpl { + + private DynamicValue counters = new CountersCount(CounterType.CHARGE); + + public ChimericMassTokenEffect() { + super(Duration.WhileOnBattlefield, Layer.PTChangingEffects_7, SubLayer.SetPT_7b, Outcome.BoostCreature); + } + + public ChimericMassTokenEffect(final ChimericMassTokenEffect effect) { + super(effect); + } + + @Override + public ChimericMassTokenEffect copy() { + return new ChimericMassTokenEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Permanent token = game.getPermanent(source.getSourceId()); + if (token != null) { + int count = counters.calculate(game, source); + token.getPower().setValue(count); + token.getToughness().setValue(count); + return true; + } + return false; + } + +} \ No newline at end of file diff --git a/Mage/src/mage/MageInt.java b/Mage/src/mage/MageInt.java index 81c0ff2bf01..e54c92b558f 100644 --- a/Mage/src/mage/MageInt.java +++ b/Mage/src/mage/MageInt.java @@ -33,7 +33,7 @@ import mage.util.Copyable; public class MageInt implements Serializable, Copyable { - public static MageInt EmptyMageInt = new MageInt(0, ""); + public static MageInt EmptyMageInt = new MageInt(Integer.MIN_VALUE, null); protected int baseValue; protected String cardValue = ""; @@ -50,6 +50,8 @@ public class MageInt implements Serializable, Copyable { @Override public MageInt copy() { + if (this == EmptyMageInt) + return this; return new MageInt(baseValue, cardValue); } diff --git a/Mage/src/mage/abilities/effects/ContinuousEffects.java b/Mage/src/mage/abilities/effects/ContinuousEffects.java index bb6713ea9e3..2b76ab5c5ca 100644 --- a/Mage/src/mage/abilities/effects/ContinuousEffects.java +++ b/Mage/src/mage/abilities/effects/ContinuousEffects.java @@ -463,6 +463,7 @@ public class ContinuousEffects implements Serializable { for (ContinuousEffect effect: layer) { effect.apply(Layer.AbilityAddingRemovingEffects_6, SubLayer.NA, abilityMap.get(effect.getId()), game); } + layerEffects = getLayeredEffects(game); layer = filterLayeredEffects(layerEffects, Layer.PTChangingEffects_7); for (ContinuousEffect effect: layer) { effect.apply(Layer.PTChangingEffects_7, SubLayer.CharacteristicDefining_7a, abilityMap.get(effect.getId()), game);