mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
added SOM - Chimeric Mass
This commit is contained in:
parent
924908c873
commit
7e05790a07
3 changed files with 154 additions and 1 deletions
150
Mage.Sets/src/mage/sets/scarsofmirrodin/ChimericMass.java
Normal file
150
Mage.Sets/src/mage/sets/scarsofmirrodin/ChimericMass.java
Normal file
|
@ -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<ChimericMass> {
|
||||
|
||||
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<ChimericMassEffect> {
|
||||
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<ChimericMassTokenEffect> {
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
|
@ -33,7 +33,7 @@ import mage.util.Copyable;
|
|||
|
||||
public class MageInt implements Serializable, Copyable<MageInt> {
|
||||
|
||||
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<MageInt> {
|
|||
|
||||
@Override
|
||||
public MageInt copy() {
|
||||
if (this == EmptyMageInt)
|
||||
return this;
|
||||
return new MageInt(baseValue, cardValue);
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue