mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
merge
This commit is contained in:
commit
3552ea5a64
2 changed files with 377 additions and 0 deletions
156
Mage.Sets/src/mage/sets/morningtide/PreeminentCaptain.java
Normal file
156
Mage.Sets/src/mage/sets/morningtide/PreeminentCaptain.java
Normal file
|
@ -0,0 +1,156 @@
|
|||
/*
|
||||
* 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.morningtide;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Outcome;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.Constants.Zone;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.AttacksTriggeredAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.keyword.FirstStrikeAbility;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.players.Player;
|
||||
import mage.target.common.TargetCardInHand;
|
||||
import mage.target.common.TargetDefender;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Rafbill
|
||||
*/
|
||||
public class PreeminentCaptain extends CardImpl<PreeminentCaptain> {
|
||||
|
||||
final PreeminentCaptainEffect effect = new PreeminentCaptainEffect();
|
||||
|
||||
public PreeminentCaptain(UUID ownerId) {
|
||||
super(ownerId, 20, "Preeminent Captain", Rarity.RARE,
|
||||
new CardType[] { CardType.CREATURE }, "{2}{W}");
|
||||
this.expansionSetCode = "MOR";
|
||||
this.subtype.add("Kithkin");
|
||||
this.subtype.add("Soldier");
|
||||
|
||||
this.color.setWhite(true);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
this.addAbility(FirstStrikeAbility.getInstance());
|
||||
// Whenever Preeminent Captain attacks, you may put a Soldier creature
|
||||
// card from your hand onto the battlefield tapped and attacking.
|
||||
this.addAbility(new AttacksTriggeredAbility(effect, true));
|
||||
}
|
||||
|
||||
public PreeminentCaptain(final PreeminentCaptain card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PreeminentCaptain copy() {
|
||||
return new PreeminentCaptain(this);
|
||||
}
|
||||
}
|
||||
|
||||
class PreeminentCaptainEffect extends OneShotEffect<PreeminentCaptainEffect> {
|
||||
|
||||
public PreeminentCaptainEffect() {
|
||||
super(Outcome.PutCreatureInPlay);
|
||||
this.staticText = "put a Soldier creature card from your hand onto the battlefield tapped and attacking.";
|
||||
}
|
||||
|
||||
public PreeminentCaptainEffect(final PreeminentCaptainEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
TargetCardInHand target = new TargetCardInHand(new FilterSoldierCard());
|
||||
if (target.choose(getOutcome(), player.getId(), game)) {
|
||||
if (target.getTargets().size() > 0) {
|
||||
UUID cardId = target.getFirstTarget();
|
||||
Card card = player.getHand().get(cardId, game);
|
||||
if (card != null) {
|
||||
player.getHand().remove(card);
|
||||
if (card.putOntoBattlefield(game, Zone.HAND,
|
||||
source.getId(), source.getControllerId())) {
|
||||
Permanent permanent = game.getPermanent(card.getId());
|
||||
permanent.setTapped(true);
|
||||
TargetDefender def = new TargetDefender(game
|
||||
.getCombat().getDefenders(), player.getId());
|
||||
if (def.choose(getOutcome(), player.getId(), game)) {
|
||||
// TODO -> If only one option, don't ask, as for
|
||||
// normal attacking.
|
||||
if (def.getTargets().size() > 0) {
|
||||
game.getCombat().declareAttacker(
|
||||
permanent.getId(),
|
||||
def.getFirstTarget(), game);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public PreeminentCaptainEffect copy() {
|
||||
return new PreeminentCaptainEffect(this);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class FilterSoldierCard extends FilterCard<FilterSoldierCard> {
|
||||
|
||||
public FilterSoldierCard() {
|
||||
this("a soldier creature card.");
|
||||
}
|
||||
|
||||
public FilterSoldierCard(String name) {
|
||||
super(name);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add("Soldier");
|
||||
}
|
||||
|
||||
public FilterSoldierCard(final FilterSoldierCard filter) {
|
||||
super(filter);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilterSoldierCard copy() {
|
||||
return new FilterSoldierCard(this);
|
||||
}
|
||||
|
||||
}
|
221
Mage.Sets/src/mage/sets/zendikar/SummoningTrap.java
Normal file
221
Mage.Sets/src/mage/sets/zendikar/SummoningTrap.java
Normal file
|
@ -0,0 +1,221 @@
|
|||
/*
|
||||
* 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.zendikar;
|
||||
|
||||
import java.util.UUID;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import mage.Constants;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Outcome;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.Constants.Zone;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.costs.AlternativeCostImpl;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.Cards;
|
||||
import mage.cards.CardsImpl;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.common.FilterCreatureCard;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.events.GameEvent.EventType;
|
||||
import mage.players.Player;
|
||||
import mage.target.TargetCard;
|
||||
import mage.target.common.TargetCardInLibrary;
|
||||
import mage.watchers.Watcher;
|
||||
import mage.watchers.WatcherImpl;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Rafbill
|
||||
*/
|
||||
public class SummoningTrap extends CardImpl<SummoningTrap> {
|
||||
|
||||
public SummoningTrap(UUID ownerId) {
|
||||
super(ownerId, 184, "Summoning Trap", Rarity.RARE,
|
||||
new CardType[] { CardType.INSTANT }, "{4}{G}{G}");
|
||||
this.expansionSetCode = "ZEN";
|
||||
this.subtype.add("Trap");
|
||||
|
||||
this.color.setGreen(true);
|
||||
|
||||
// If a creature spell you cast this turn was countered by a spell or
|
||||
// ability an opponent controlled, you may pay {0} rather than pay
|
||||
// Summoning Trap's mana cost.
|
||||
this.getSpellAbility().addAlternativeCost(
|
||||
new SummoningTrapAlternativeCost());
|
||||
this.addWatcher(new SummoningTrapWatcher());
|
||||
// Look at the top seven cards of your library. You may put a creature
|
||||
// card from among them onto the battlefield. Put the rest on the bottom
|
||||
// of your library in any order.
|
||||
this.getSpellAbility().addEffect(new SummoningTrapEffect());
|
||||
}
|
||||
|
||||
public SummoningTrap(final SummoningTrap card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SummoningTrap copy() {
|
||||
return new SummoningTrap(this);
|
||||
}
|
||||
}
|
||||
|
||||
class SummoningTrapWatcher extends WatcherImpl<SummoningTrapWatcher> {
|
||||
|
||||
public SummoningTrapWatcher() {
|
||||
super("CreatureSpellCountered");
|
||||
}
|
||||
|
||||
public SummoningTrapWatcher(final SummoningTrapWatcher watcher) {
|
||||
super(watcher);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SummoningTrapWatcher copy() {
|
||||
return new SummoningTrapWatcher(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void watch(GameEvent event, Game game) {
|
||||
if (condition == true) // no need to check - condition has already
|
||||
// occured
|
||||
return;
|
||||
if (event.getType() == EventType.COUNTERED
|
||||
&& game.getStack().getStackObject(event.getTargetId())
|
||||
.getCardType().contains(CardType.CREATURE)
|
||||
&& game.getOpponents(controllerId)
|
||||
.contains(event.getPlayerId()))
|
||||
Logger.getAnonymousLogger().info(
|
||||
game.getCard(event.getTargetId()).toString());
|
||||
condition = true;
|
||||
}
|
||||
}
|
||||
|
||||
class SummoningTrapAlternativeCost extends
|
||||
AlternativeCostImpl<SummoningTrapAlternativeCost> {
|
||||
|
||||
public SummoningTrapAlternativeCost() {
|
||||
super("you may pay {0} rather than pay Summoning Trap's mana cost");
|
||||
this.add(new GenericManaCost(0));
|
||||
}
|
||||
|
||||
public SummoningTrapAlternativeCost(final SummoningTrapAlternativeCost cost) {
|
||||
super(cost);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SummoningTrapAlternativeCost copy() {
|
||||
return new SummoningTrapAlternativeCost(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isAvailable(Game game, Ability source) {
|
||||
Watcher watcher = game.getState().getWatchers()
|
||||
.get(source.getControllerId(), "CreatureSpellCountered");
|
||||
if (watcher != null && watcher.conditionMet())
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getText() {
|
||||
return "If a creature spell you cast this turn was countered by a spell or ability an opponent controlled, you may pay {0} rather than pay Summoning Trap's mana cost.";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class SummoningTrapEffect extends OneShotEffect<SummoningTrapEffect> {
|
||||
|
||||
public SummoningTrapEffect(final SummoningTrapEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
public SummoningTrapEffect() {
|
||||
super(Outcome.PutCreatureInPlay);
|
||||
this.staticText = "Look at the top seven cards of your library. You may put a creature card from among them onto the battlefield. Put the rest on the bottom of your library in any order.";
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
|
||||
Cards cards = new CardsImpl(Zone.PICK);
|
||||
int count = Math.min(player.getLibrary().size(), 7);
|
||||
for (int i = 0; i < count; i++) {
|
||||
Card card = player.getLibrary().removeFromTop(game);
|
||||
if (card != null) {
|
||||
cards.add(card);
|
||||
}
|
||||
}
|
||||
|
||||
if (!cards.isEmpty()) {
|
||||
TargetCard target = new TargetCard(Zone.PICK,
|
||||
new FilterCreatureCard(
|
||||
"creature card to put on the battlefield"));
|
||||
if (player.choose(Outcome.PutCreatureInPlay, cards, target, game)) {
|
||||
Card card = cards.get(target.getFirstTarget(), game);
|
||||
if (card != null) {
|
||||
cards.remove(card);
|
||||
card.putOntoBattlefield(game, Zone.PICK,
|
||||
source.getSourceId(), source.getControllerId());
|
||||
}
|
||||
}
|
||||
if (cards.size() > 0) {
|
||||
TargetCard target2 = new TargetCard(Constants.Zone.PICK,
|
||||
new FilterCard(
|
||||
"card to put on the bottom of your library"));
|
||||
target2.setRequired(true);
|
||||
while (cards.size() > 1) {
|
||||
player.choose(Constants.Outcome.Benefit, cards, target2,
|
||||
game);
|
||||
Card card = cards.get(target2.getFirstTarget(), game);
|
||||
if (card != null) {
|
||||
cards.remove(card);
|
||||
player.getLibrary().putOnBottom(card, game);
|
||||
}
|
||||
target2.clearChosen();
|
||||
}
|
||||
Card card = cards.get(cards.iterator().next(), game);
|
||||
cards.remove(card);
|
||||
player.getLibrary().putOnBottom(card, game);
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SummoningTrapEffect copy() {
|
||||
return new SummoningTrapEffect(this);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue