mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[BRO] Implement Mechanized Warfare (#9737)
This commit is contained in:
parent
1b28ca902a
commit
9a8b9c2ec7
2 changed files with 104 additions and 0 deletions
102
Mage.Sets/src/mage/cards/m/MechanizedWarfare.java
Normal file
102
Mage.Sets/src/mage/cards/m/MechanizedWarfare.java
Normal file
|
@ -0,0 +1,102 @@
|
|||
package mage.cards.m;
|
||||
|
||||
import mage.MageObject;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
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.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.players.Player;
|
||||
import mage.util.CardUtil;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author PurpleCrowbar
|
||||
*/
|
||||
public final class MechanizedWarfare extends CardImpl {
|
||||
|
||||
public MechanizedWarfare(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{R}{R}");
|
||||
|
||||
// If a red or artifact source you control would deal damage to an opponent or a
|
||||
// permanent an opponent controls, it deals that much damage plus 1 instead.
|
||||
this.addAbility(new SimpleStaticAbility(new MechanizedWarfareEffect()));
|
||||
}
|
||||
|
||||
private MechanizedWarfare(final MechanizedWarfare card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MechanizedWarfare copy() {
|
||||
return new MechanizedWarfare(this);
|
||||
}
|
||||
}
|
||||
|
||||
class MechanizedWarfareEffect extends ReplacementEffectImpl {
|
||||
|
||||
MechanizedWarfareEffect() {
|
||||
super(Duration.WhileOnBattlefield, Outcome.Damage);
|
||||
this.staticText = "If a red or artifact source you control would deal damage to an opponent "
|
||||
+ "or a permanent an opponent controls, it deals that much damage plus 1 instead.";
|
||||
}
|
||||
|
||||
private MechanizedWarfareEffect(final MechanizedWarfareEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
||||
event.setAmount(CardUtil.overflowInc(event.getAmount(), 1));
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean checksEventType(GameEvent event, Game game) {
|
||||
switch (event.getType()) {
|
||||
case DAMAGE_PERMANENT:
|
||||
case DAMAGE_PLAYER:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean applies(GameEvent event, Ability source, Game game) {
|
||||
Player controller = game.getPlayer(source.getControllerId());
|
||||
if (controller == null
|
||||
|| !controller.hasOpponent(getControllerOrSelf(event.getTargetId(), game), game)
|
||||
|| !source.isControlledBy(game.getControllerId(event.getSourceId()))) {
|
||||
return false;
|
||||
}
|
||||
MageObject sourceObject;
|
||||
Permanent sourcePermanent = game.getPermanentOrLKIBattlefield(event.getSourceId());
|
||||
if (sourcePermanent == null) {
|
||||
sourceObject = game.getObject(event.getSourceId());
|
||||
} else {
|
||||
sourceObject = sourcePermanent;
|
||||
}
|
||||
|
||||
return sourceObject != null
|
||||
&& event.getAmount() > 0
|
||||
&& (sourceObject.getColor(game).isRed() || sourceObject.isArtifact());
|
||||
}
|
||||
|
||||
private static UUID getControllerOrSelf(UUID id, Game game) {
|
||||
UUID outId = game.getControllerId(id);
|
||||
return outId == null ? id : outId;
|
||||
}
|
||||
|
||||
@Override
|
||||
public MechanizedWarfareEffect copy() {
|
||||
return new MechanizedWarfareEffect(this);
|
||||
}
|
||||
}
|
|
@ -153,6 +153,8 @@ public final class TheBrothersWar extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Loran, Disciple of History", 13, Rarity.UNCOMMON, mage.cards.l.LoranDiscipleOfHistory.class));
|
||||
cards.add(new SetCardInfo("Machine Over Matter", 57, Rarity.COMMON, mage.cards.m.MachineOverMatter.class));
|
||||
cards.add(new SetCardInfo("Mass Production", 15, Rarity.UNCOMMON, mage.cards.m.MassProduction.class));
|
||||
cards.add(new SetCardInfo("Mechanized Warfare", 139, Rarity.RARE, mage.cards.m.MechanizedWarfare.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Mechanized Warfare", 338, Rarity.RARE, mage.cards.m.MechanizedWarfare.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Mine Worker", 239, Rarity.COMMON, mage.cards.m.MineWorker.class));
|
||||
cards.add(new SetCardInfo("Mishra's Command", 141, Rarity.RARE, mage.cards.m.MishrasCommand.class));
|
||||
cards.add(new SetCardInfo("Mishra's Domination", 142, Rarity.COMMON, mage.cards.m.MishrasDomination.class));
|
||||
|
|
Loading…
Reference in a new issue