diff --git a/Mage.Sets/src/mage/sets/scarsofmirrodin/Skinrender.java b/Mage.Sets/src/mage/sets/scarsofmirrodin/Skinrender.java new file mode 100644 index 00000000000..5cdfce0dace --- /dev/null +++ b/Mage.Sets/src/mage/sets/scarsofmirrodin/Skinrender.java @@ -0,0 +1,80 @@ +/* + * 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.sets.scarsofmirrodin; + +import java.util.UUID; + +import mage.Constants.CardType; +import mage.Constants.Duration; +import mage.Constants.Rarity; +import mage.Constants.Zone; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.effects.Effect; +import mage.abilities.effects.common.AddCountersTargetEffect; +import mage.abilities.effects.common.DestroyTargetEffect; +import mage.cards.CardImpl; +import mage.counters.CounterType; +import mage.counters.common.MinusOneCounter; +import mage.target.Target; +import mage.target.TargetPermanent; +import mage.target.common.TargetCreaturePermanent; + +/** + * @author nantuko + */ +public class Skinrender extends CardImpl { + + public Skinrender(UUID ownerId) { + super(ownerId, 78, "Skinrender", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{2}{B}{B}"); + this.expansionSetCode = "SOM"; + this.subtype.add("Zombie"); + this.color.setBlack(true); + this.power = new MageInt(3); + this.toughness = new MageInt(3); + + Effect putCountersEffect = new AddCountersTargetEffect(CounterType.M1M1.createInstance(3)); + Ability ability = new EntersBattlefieldTriggeredAbility(putCountersEffect, false); + Target target = new TargetCreaturePermanent(); + target.setRequired(true); + ability.addTarget(target); + this.addAbility(ability); + } + + public Skinrender(final Skinrender card) { + super(card); + } + + @Override + public Skinrender copy() { + return new Skinrender(this); + } + +} diff --git a/Mage.Sets/src/mage/sets/worldwake/EverflowingChalice.java b/Mage.Sets/src/mage/sets/worldwake/EverflowingChalice.java index e8234e93f43..5b40e38ad50 100644 --- a/Mage.Sets/src/mage/sets/worldwake/EverflowingChalice.java +++ b/Mage.Sets/src/mage/sets/worldwake/EverflowingChalice.java @@ -98,7 +98,7 @@ class EverflowingChaliceAbility extends ManaAbility { public Mana getNetMana(Game game) { if (game == null) return new Mana(); - return Mana.ColorlessMana(game.getPermanent(this.getSourceId()).getCounters().getCount("charge")); + return Mana.ColorlessMana(game.getPermanent(this.getSourceId()).getCounters().getCount(CounterType.CHARGE)); } } diff --git a/Mage/src/mage/abilities/effects/common/AddCountersTargetEffect.java b/Mage/src/mage/abilities/effects/common/AddCountersTargetEffect.java index a8088c80d7c..db5a1aefc32 100644 --- a/Mage/src/mage/abilities/effects/common/AddCountersTargetEffect.java +++ b/Mage/src/mage/abilities/effects/common/AddCountersTargetEffect.java @@ -43,6 +43,7 @@ public class AddCountersTargetEffect extends OneShotEffect> implements Player, Ser if (actualDamage > 0) { Permanent source = game.getPermanent(sourceId); if (source != null && (source.getAbilities().containsKey(InfectAbility.getInstance().getId()))) { - getCounters().addCounter(CounterType.POISON.getInstance(actualDamage)); + getCounters().addCounter(CounterType.POISON.createInstance(actualDamage)); } else { actualDamage = this.loseLife(actualDamage, game); }