Wall of Reverence

This commit is contained in:
Loki 2011-06-20 17:49:46 +03:00
parent f5f9907fc0
commit a1c67fb2a4
2 changed files with 160 additions and 0 deletions

View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6" inherit-compiler-output="false">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:3.8.1" level="project" />
<orderEntry type="module" module-name="Mage-Common" />
<orderEntry type="module" module-name="Mage" />
<orderEntry type="library" name="Maven: log4j:log4j:1.2.14" level="project" />
<orderEntry type="library" name="Maven: com.googlecode.jspf:jspf-core:0.9.1" level="project" />
<orderEntry type="library" name="Maven: org.swinglabs:swingx:1.6.1" level="project" />
<orderEntry type="library" name="Maven: com.jhlabs:filters:2.0.235" level="project" />
<orderEntry type="library" name="Maven: org.swinglabs:swing-worker:1.1" level="project" />
</component>
</module>

View file

@ -0,0 +1,136 @@
/*
* 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.conflux;
import java.util.UUID;
import mage.Constants;
import mage.Constants.CardType;
import mage.Constants.Rarity;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.TriggeredAbilityImpl;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.keyword.DefenderAbility;
import mage.abilities.keyword.FlyingAbility;
import mage.cards.CardImpl;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.game.permanent.Permanent;
import mage.players.Player;
import mage.target.common.TargetControlledCreaturePermanent;
/**
*
* @author Loki
*/
public class WallofReverence extends CardImpl<WallofReverence> {
public WallofReverence (UUID ownerId) {
super(ownerId, 20, "Wall of Reverence", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{3}{W}");
this.expansionSetCode = "CON";
this.subtype.add("Spirit");
this.subtype.add("Wall");
this.color.setWhite(true);
this.power = new MageInt(1);
this.toughness = new MageInt(6);
this.addAbility(DefenderAbility.getInstance());
this.addAbility(FlyingAbility.getInstance());
this.addAbility(new WallofReverenceTriggeredAbility());
}
public WallofReverence (final WallofReverence card) {
super(card);
}
@Override
public WallofReverence copy() {
return new WallofReverence(this);
}
}
class WallofReverenceTriggeredAbility extends TriggeredAbilityImpl<WallofReverenceTriggeredAbility> {
WallofReverenceTriggeredAbility() {
super(Constants.Zone.BATTLEFIELD, new WallofReverenceTriggeredEffect(), true);
this.addTarget(new TargetControlledCreaturePermanent());
}
WallofReverenceTriggeredAbility(final WallofReverenceTriggeredAbility ability) {
super(ability);
}
@Override
public WallofReverenceTriggeredAbility copy() {
return new WallofReverenceTriggeredAbility(this);
}
@Override
public boolean checkTrigger(GameEvent event, Game game) {
if (event.getType() == GameEvent.EventType.END_PHASE_PRE && event.getPlayerId().equals(this.controllerId)) {
return true;
}
return false;
}
@Override
public String getRule() {
return "At the beginning of your end step, " + effects.getText(this);
}
}
class WallofReverenceTriggeredEffect extends OneShotEffect<WallofReverenceTriggeredEffect> {
WallofReverenceTriggeredEffect() {
super(Constants.Outcome.GainLife);
}
WallofReverenceTriggeredEffect(WallofReverenceTriggeredEffect effect) {
super(effect);
}
@Override
public boolean apply(Game game, Ability source) {
Permanent target = game.getPermanent(source.getFirstTarget());
Player player = game.getPlayer(source.getControllerId());
if (target != null && player != null) {
player.gainLife(target.getPower().getValue(), game);
return true;
}
return false;
}
@Override
public WallofReverenceTriggeredEffect copy() {
return new WallofReverenceTriggeredEffect(this);
}
@Override
public String getText(Ability source) {
return "you may gain life equal to the power of target creature you control";
}
}