mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
[EOE] Implement Entropic Battlecruiser
This commit is contained in:
parent
59d32c47ea
commit
8e9154dfb2
2 changed files with 106 additions and 0 deletions
105
Mage.Sets/src/mage/cards/e/EntropicBattlecruiser.java
Normal file
105
Mage.Sets/src/mage/cards/e/EntropicBattlecruiser.java
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
package mage.cards.e;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.AttacksTriggeredAbility;
|
||||
import mage.abilities.common.DiscardedByOpponentTriggeredAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.LoseLifeTargetEffect;
|
||||
import mage.abilities.keyword.DeathtouchAbility;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.StationAbility;
|
||||
import mage.abilities.keyword.StationLevelAbility;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.SubType;
|
||||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
import mage.target.common.TargetDiscard;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class EntropicBattlecruiser extends CardImpl {
|
||||
|
||||
public EntropicBattlecruiser(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}{B}");
|
||||
|
||||
this.subtype.add(SubType.SPACECRAFT);
|
||||
|
||||
// Station
|
||||
this.addAbility(new StationAbility());
|
||||
|
||||
// STATION 1+
|
||||
// Whenever an opponent discards a card, they lose 3 life.
|
||||
this.addAbility(new StationLevelAbility(1).withLevelAbility(
|
||||
new DiscardedByOpponentTriggeredAbility(new LoseLifeTargetEffect(3).setText("they lose 3 life"))
|
||||
));
|
||||
|
||||
// STATION 8+
|
||||
// Flying
|
||||
// Deathtouch
|
||||
// Whenever this Spacecraft attacks, each opponent discards a card. Each opponent who doesn't loses 3 life.
|
||||
// 3/10
|
||||
this.addAbility(new StationLevelAbility(8)
|
||||
.withLevelAbility(FlyingAbility.getInstance())
|
||||
.withLevelAbility(DeathtouchAbility.getInstance())
|
||||
.withLevelAbility(new AttacksTriggeredAbility(new EntropicBattlecruiserEffect()))
|
||||
.withPT(3, 10));
|
||||
}
|
||||
|
||||
private EntropicBattlecruiser(final EntropicBattlecruiser card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public EntropicBattlecruiser copy() {
|
||||
return new EntropicBattlecruiser(this);
|
||||
}
|
||||
}
|
||||
|
||||
class EntropicBattlecruiserEffect extends OneShotEffect {
|
||||
|
||||
EntropicBattlecruiserEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "each opponent discards a card. Each opponent who doesn't loses 3 life";
|
||||
}
|
||||
|
||||
private EntropicBattlecruiserEffect(final EntropicBattlecruiserEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public EntropicBattlecruiserEffect copy() {
|
||||
return new EntropicBattlecruiserEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Map<UUID, Card> map = new HashMap<>();
|
||||
for (UUID opponentId : game.getOpponents(source.getControllerId())) {
|
||||
Player player = game.getPlayer(opponentId);
|
||||
if (player == null || player.getHand().isEmpty()) {
|
||||
continue;
|
||||
}
|
||||
TargetDiscard target = new TargetDiscard(opponentId);
|
||||
player.choose(Outcome.Discard, target, source, game);
|
||||
map.put(opponentId, game.getCard(target.getFirstTarget()));
|
||||
}
|
||||
for (UUID opponentId : game.getOpponents(source.getControllerId())) {
|
||||
Player player = game.getPlayer(opponentId);
|
||||
if (player != null && !player.discard(
|
||||
map.getOrDefault(opponentId, null), false, source, game
|
||||
)) {
|
||||
player.loseLife(3, game, source, false);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
@ -82,6 +82,7 @@ public final class EdgeOfEternities extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Emissary Escort", 326, Rarity.RARE, mage.cards.e.EmissaryEscort.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Emissary Escort", 399, Rarity.RARE, mage.cards.e.EmissaryEscort.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Emissary Escort", 56, Rarity.RARE, mage.cards.e.EmissaryEscort.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Entropic Battlecruiser", 99, Rarity.RARE, mage.cards.e.EntropicBattlecruiser.class));
|
||||
cards.add(new SetCardInfo("Eusocial Engineering", 181, Rarity.UNCOMMON, mage.cards.e.EusocialEngineering.class));
|
||||
cards.add(new SetCardInfo("Evendo, Waking Haven", 253, Rarity.MYTHIC, mage.cards.e.EvendoWakingHaven.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Evendo, Waking Haven", 279, Rarity.MYTHIC, mage.cards.e.EvendoWakingHaven.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue