mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Implemented Combine Guildmage
This commit is contained in:
parent
de3b065229
commit
2597fb3cad
2 changed files with 144 additions and 0 deletions
143
Mage.Sets/src/mage/cards/c/CombineGuildmage.java
Normal file
143
Mage.Sets/src/mage/cards/c/CombineGuildmage.java
Normal file
|
@ -0,0 +1,143 @@
|
||||||
|
package mage.cards.c;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.common.SimpleActivatedAbility;
|
||||||
|
import mage.abilities.costs.common.TapSourceCost;
|
||||||
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||||
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
import mage.abilities.effects.ReplacementEffectImpl;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Duration;
|
||||||
|
import mage.constants.Outcome;
|
||||||
|
import mage.constants.SubType;
|
||||||
|
import mage.counters.CounterType;
|
||||||
|
import mage.filter.FilterPermanent;
|
||||||
|
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.events.EntersTheBattlefieldEvent;
|
||||||
|
import mage.game.events.GameEvent;
|
||||||
|
import mage.game.permanent.Permanent;
|
||||||
|
import mage.target.TargetPermanent;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public final class CombineGuildmage extends CardImpl {
|
||||||
|
|
||||||
|
private static final FilterPermanent filter1
|
||||||
|
= new FilterControlledCreaturePermanent("creature you control (to remove a counter from)");
|
||||||
|
private static final FilterPermanent filter2
|
||||||
|
= new FilterControlledCreaturePermanent("creature you control (to move a counter to)");
|
||||||
|
|
||||||
|
public CombineGuildmage(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}{U}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.MERFOLK);
|
||||||
|
this.subtype.add(SubType.WIZARD);
|
||||||
|
this.power = new MageInt(2);
|
||||||
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
|
// {1}{G}, {T}: This turn, each creature you control enters the battlefield with an additional +1/+1 counter on it.
|
||||||
|
Ability ability = new SimpleActivatedAbility(
|
||||||
|
new CombineGuildmageReplacementEffect(), new ManaCostsImpl("{1}{G}")
|
||||||
|
);
|
||||||
|
ability.addCost(new TapSourceCost());
|
||||||
|
this.addAbility(ability);
|
||||||
|
|
||||||
|
// {1}{U}, {T}: Move a +1/+1 counter from target creature you control onto another target creature you control.
|
||||||
|
ability = new SimpleActivatedAbility(
|
||||||
|
new CombineGuildmageCounterEffect(), new ManaCostsImpl("{1}{U}")
|
||||||
|
);
|
||||||
|
ability.addCost(new TapSourceCost());
|
||||||
|
ability.addTarget(new TargetPermanent(filter1));
|
||||||
|
ability.addTarget(new TargetPermanent(filter2));
|
||||||
|
this.addAbility(ability);
|
||||||
|
}
|
||||||
|
|
||||||
|
private CombineGuildmage(final CombineGuildmage card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public CombineGuildmage copy() {
|
||||||
|
return new CombineGuildmage(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class CombineGuildmageReplacementEffect extends ReplacementEffectImpl {
|
||||||
|
|
||||||
|
CombineGuildmageReplacementEffect() {
|
||||||
|
super(Duration.EndOfTurn, Outcome.BoostCreature);
|
||||||
|
this.staticText = "This turn, each creature you control enters the battlefield with an additional +1/+1 counter on it";
|
||||||
|
}
|
||||||
|
|
||||||
|
private CombineGuildmageReplacementEffect(CombineGuildmageReplacementEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean checksEventType(GameEvent event, Game game) {
|
||||||
|
return event.getType() == GameEvent.EventType.ENTERS_THE_BATTLEFIELD;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean applies(GameEvent event, Ability source, Game game) {
|
||||||
|
Permanent permanent = ((EntersTheBattlefieldEvent) event).getTarget();
|
||||||
|
return permanent != null && permanent.isControlledBy(source.getControllerId()) && permanent.isCreature();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
||||||
|
Permanent target = ((EntersTheBattlefieldEvent) event).getTarget();
|
||||||
|
if (target != null) {
|
||||||
|
target.addCounters(CounterType.P1P1.createInstance(), source, game, event.getAppliedEffects());
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public CombineGuildmageReplacementEffect copy() {
|
||||||
|
return new CombineGuildmageReplacementEffect(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class CombineGuildmageCounterEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
CombineGuildmageCounterEffect() {
|
||||||
|
super(Outcome.Benefit);
|
||||||
|
staticText = "Move a +1/+1 counter from target creature you control onto another target creature you control.";
|
||||||
|
}
|
||||||
|
|
||||||
|
private CombineGuildmageCounterEffect(final CombineGuildmageCounterEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public CombineGuildmageCounterEffect copy() {
|
||||||
|
return new CombineGuildmageCounterEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
Permanent fromPermanent = game.getPermanent(source.getFirstTarget());
|
||||||
|
Permanent toPermanent = game.getPermanent(source.getTargets().get(1).getFirstTarget());
|
||||||
|
if (fromPermanent == null || toPermanent == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (fromPermanent.getCounters(game).getCount(CounterType.P1P1) > 0) {
|
||||||
|
fromPermanent.removeCounters(CounterType.P1P1.createInstance(), game);
|
||||||
|
toPermanent.addCounters(CounterType.P1P1.createInstance(), source, game);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
|
@ -51,6 +51,7 @@ public final class RavnicaAllegiance extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Burn Bright", 93, Rarity.COMMON, mage.cards.b.BurnBright.class));
|
cards.add(new SetCardInfo("Burn Bright", 93, Rarity.COMMON, mage.cards.b.BurnBright.class));
|
||||||
cards.add(new SetCardInfo("Burning-Tree Vandal", 94, Rarity.COMMON, mage.cards.b.BurningTreeVandal.class));
|
cards.add(new SetCardInfo("Burning-Tree Vandal", 94, Rarity.COMMON, mage.cards.b.BurningTreeVandal.class));
|
||||||
cards.add(new SetCardInfo("Carnival // Carnage", 222, Rarity.UNCOMMON, mage.cards.c.CarnivalCarnage.class));
|
cards.add(new SetCardInfo("Carnival // Carnage", 222, Rarity.UNCOMMON, mage.cards.c.CarnivalCarnage.class));
|
||||||
|
cards.add(new SetCardInfo("Combine Guildmage", 163, Rarity.UNCOMMON, mage.cards.c.CombineGuildmage.class));
|
||||||
cards.add(new SetCardInfo("Consecrate // Consume", 224, Rarity.UNCOMMON, mage.cards.c.ConsecrateConsume.class));
|
cards.add(new SetCardInfo("Consecrate // Consume", 224, Rarity.UNCOMMON, mage.cards.c.ConsecrateConsume.class));
|
||||||
cards.add(new SetCardInfo("Cry of the Carnarium", 70, Rarity.UNCOMMON, mage.cards.c.CryOfTheCarnarium.class));
|
cards.add(new SetCardInfo("Cry of the Carnarium", 70, Rarity.UNCOMMON, mage.cards.c.CryOfTheCarnarium.class));
|
||||||
cards.add(new SetCardInfo("Depose // Deploy", 225, Rarity.UNCOMMON, mage.cards.d.DeposeDeploy.class));
|
cards.add(new SetCardInfo("Depose // Deploy", 225, Rarity.UNCOMMON, mage.cards.d.DeposeDeploy.class));
|
||||||
|
|
Loading…
Reference in a new issue