mirror of
https://github.com/correl/mage.git
synced 2025-01-14 03:00:10 +00:00
Implemented Mindstorm Crown
This commit is contained in:
parent
6f4d77fc0f
commit
b0254a12a5
2 changed files with 144 additions and 0 deletions
143
Mage.Sets/src/mage/cards/m/MindstormCrown.java
Normal file
143
Mage.Sets/src/mage/cards/m/MindstormCrown.java
Normal file
|
@ -0,0 +1,143 @@
|
|||
/*
|
||||
* 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.cards.m;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.BeginningOfUpkeepTriggeredAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.TargetController;
|
||||
import mage.constants.WatcherScope;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.players.Player;
|
||||
import mage.watchers.Watcher;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public class MindstormCrown extends CardImpl {
|
||||
|
||||
public MindstormCrown(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}");
|
||||
|
||||
// At the beginning of your upkeep, draw a card if you had no cards in hand at the beginning of this turn. If you had a card in hand, Mindstorm Crown deals 1 damage to you.
|
||||
this.addAbility(new BeginningOfUpkeepTriggeredAbility(new MindstormCrownEffect(), TargetController.YOU, false), new MindstormCrownWatcher());
|
||||
}
|
||||
|
||||
public MindstormCrown(final MindstormCrown card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MindstormCrown copy() {
|
||||
return new MindstormCrown(this);
|
||||
}
|
||||
}
|
||||
|
||||
class MindstormCrownEffect extends OneShotEffect {
|
||||
|
||||
MindstormCrownEffect() {
|
||||
super(Outcome.Benefit);
|
||||
this.staticText = "";
|
||||
}
|
||||
|
||||
MindstormCrownEffect(final MindstormCrownEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MindstormCrownEffect copy() {
|
||||
return new MindstormCrownEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
Permanent permanent = game.getPermanentOrLKIBattlefield(source.getSourceId());
|
||||
if (player == null) {
|
||||
return false;
|
||||
}
|
||||
MindstormCrownWatcher watcher = (MindstormCrownWatcher) game.getState().getWatchers().get(MindstormCrownWatcher.class.getSimpleName());
|
||||
if (watcher != null && watcher.getCardsInHandCount() == 0) {
|
||||
player.drawCards(1, game);
|
||||
} else {
|
||||
if (permanent != null) {
|
||||
player.damage(2, permanent.getId(), game, false, true);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
class MindstormCrownWatcher extends Watcher {
|
||||
|
||||
private int cardsInHandCount;
|
||||
|
||||
public MindstormCrownWatcher() {
|
||||
super(MindstormCrownWatcher.class.getSimpleName(), WatcherScope.GAME);
|
||||
}
|
||||
|
||||
public MindstormCrownWatcher(final MindstormCrownWatcher watcher) {
|
||||
super(watcher);
|
||||
cardsInHandCount = watcher.cardsInHandCount;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void watch(GameEvent event, Game game) {
|
||||
if (event.getType() == GameEvent.EventType.BEGINNING_PHASE_PRE
|
||||
&& game.getPhase() != null) {
|
||||
Player player = game.getPlayer(game.getActivePlayerId());
|
||||
int cardsInHand = 0;
|
||||
if (player != null) {
|
||||
cardsInHand = player.getHand().size();
|
||||
}
|
||||
cardsInHandCount = cardsInHand;
|
||||
}
|
||||
}
|
||||
|
||||
public int getCardsInHandCount() {
|
||||
return cardsInHandCount;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void reset() {
|
||||
cardsInHandCount = 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public MindstormCrownWatcher copy() {
|
||||
return new MindstormCrownWatcher(this);
|
||||
}
|
||||
}
|
|
@ -160,6 +160,7 @@ public class Mirrodin extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Mesmeric Orb", 204, Rarity.RARE, mage.cards.m.MesmericOrb.class));
|
||||
cards.add(new SetCardInfo("Mind's Eye", 205, Rarity.RARE, mage.cards.m.MindsEye.class));
|
||||
cards.add(new SetCardInfo("Mindslaver", 206, Rarity.RARE, mage.cards.m.Mindslaver.class));
|
||||
cards.add(new SetCardInfo("Mindstorm Crown", 207, Rarity.UNCOMMON, mage.cards.m.MindstormCrown.class));
|
||||
cards.add(new SetCardInfo("Molder Slug", 125, Rarity.RARE, mage.cards.m.MolderSlug.class));
|
||||
cards.add(new SetCardInfo("Molten Rain", 101, Rarity.COMMON, mage.cards.m.MoltenRain.class));
|
||||
cards.add(new SetCardInfo("Moriok Scavenger", 68, Rarity.COMMON, mage.cards.m.MoriokScavenger.class));
|
||||
|
|
Loading…
Reference in a new issue