mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
- Added requested card Barbed Wire
This commit is contained in:
parent
cb340e4709
commit
f432365197
2 changed files with 108 additions and 2 deletions
105
Mage.Sets/src/mage/cards/b/BarbedWire.java
Normal file
105
Mage.Sets/src/mage/cards/b/BarbedWire.java
Normal file
|
@ -0,0 +1,105 @@
|
||||||
|
package mage.cards.b;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.common.BeginningOfUpkeepTriggeredAbility;
|
||||||
|
import mage.abilities.common.SimpleActivatedAbility;
|
||||||
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||||
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
import mage.abilities.effects.PreventionEffectImpl;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Duration;
|
||||||
|
import mage.constants.Outcome;
|
||||||
|
import mage.constants.TargetController;
|
||||||
|
import mage.constants.Zone;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.events.GameEvent;
|
||||||
|
import mage.players.Player;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author jeffwadsworth
|
||||||
|
*/
|
||||||
|
public final class BarbedWire extends CardImpl {
|
||||||
|
|
||||||
|
private final String rule = "At the beginning of each player's upkeep, "
|
||||||
|
+ "Barbed Wire deals 1 damage to that player.";
|
||||||
|
|
||||||
|
public BarbedWire(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}");
|
||||||
|
|
||||||
|
// At the beginning of each player's upkeep, Barbed Wire deals 1 damage to that player.
|
||||||
|
this.addAbility(new BeginningOfUpkeepTriggeredAbility(
|
||||||
|
Zone.BATTLEFIELD,
|
||||||
|
new BarbwireDamageEffect(),
|
||||||
|
TargetController.ACTIVE,
|
||||||
|
false, true, rule));
|
||||||
|
|
||||||
|
// {2}: Prevent the next 1 damage that would be dealt by Barbed Wire this turn.
|
||||||
|
this.addAbility(new SimpleActivatedAbility(
|
||||||
|
new BarbedWirePreventionEffect(), new ManaCostsImpl("{2}")));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private BarbedWire(final BarbedWire card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BarbedWire copy() {
|
||||||
|
return new BarbedWire(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class BarbwireDamageEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
public BarbwireDamageEffect() {
|
||||||
|
super(Outcome.Damage);
|
||||||
|
this.staticText = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
public BarbwireDamageEffect(final BarbwireDamageEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BarbwireDamageEffect copy() {
|
||||||
|
return new BarbwireDamageEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
Player activePlayer = game.getPlayer(targetPointer.getFirst(game, source));
|
||||||
|
if (activePlayer != null) {
|
||||||
|
activePlayer.damage(1, source.getSourceId(), game);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class BarbedWirePreventionEffect extends PreventionEffectImpl {
|
||||||
|
|
||||||
|
public BarbedWirePreventionEffect() {
|
||||||
|
super(Duration.EndOfTurn, 1, false);
|
||||||
|
staticText = "Prevent the next 1 damage that would be dealt by {this} this turn";
|
||||||
|
}
|
||||||
|
|
||||||
|
public BarbedWirePreventionEffect(final BarbedWirePreventionEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BarbedWirePreventionEffect copy() {
|
||||||
|
return new BarbedWirePreventionEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean applies(GameEvent event, Ability source, Game game) {
|
||||||
|
return super.applies(event, source, game)
|
||||||
|
&& event.getSourceId().equals(source.getSourceId());
|
||||||
|
}
|
||||||
|
}
|
|
@ -35,6 +35,7 @@ public final class MercadianMasques extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Assembly Hall", 286, Rarity.RARE, mage.cards.a.AssemblyHall.class));
|
cards.add(new SetCardInfo("Assembly Hall", 286, Rarity.RARE, mage.cards.a.AssemblyHall.class));
|
||||||
cards.add(new SetCardInfo("Ballista Squad", 5, Rarity.UNCOMMON, mage.cards.b.BallistaSquad.class));
|
cards.add(new SetCardInfo("Ballista Squad", 5, Rarity.UNCOMMON, mage.cards.b.BallistaSquad.class));
|
||||||
cards.add(new SetCardInfo("Balloon Peddler", 59, Rarity.COMMON, mage.cards.b.BalloonPeddler.class));
|
cards.add(new SetCardInfo("Balloon Peddler", 59, Rarity.COMMON, mage.cards.b.BalloonPeddler.class));
|
||||||
|
cards.add(new SetCardInfo("Barbed Wire", 287, Rarity.UNCOMMON, mage.cards.b.BarbedWire.class));
|
||||||
cards.add(new SetCardInfo("Battle Rampart", 173, Rarity.COMMON, mage.cards.b.BattleRampart.class));
|
cards.add(new SetCardInfo("Battle Rampart", 173, Rarity.COMMON, mage.cards.b.BattleRampart.class));
|
||||||
cards.add(new SetCardInfo("Battle Squadron", 174, Rarity.RARE, mage.cards.b.BattleSquadron.class));
|
cards.add(new SetCardInfo("Battle Squadron", 174, Rarity.RARE, mage.cards.b.BattleSquadron.class));
|
||||||
cards.add(new SetCardInfo("Bifurcate", 230, Rarity.RARE, mage.cards.b.Bifurcate.class));
|
cards.add(new SetCardInfo("Bifurcate", 230, Rarity.RARE, mage.cards.b.Bifurcate.class));
|
||||||
|
|
Loading…
Reference in a new issue