1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 09:18:59 -09:00

update author tags, remove unneeded static text

This commit is contained in:
htrajan 2020-04-17 22:30:39 -07:00
parent 9b930ca243
commit c567fc2ee1
3 changed files with 5 additions and 3 deletions
Mage.Sets/src/mage/cards/s
Mage/src/main/java/mage/abilities

View file

@ -26,12 +26,10 @@ public final class SanctuaryBlade extends CardImpl {
// As Sanctuary Blade becomes attached to a creature, choose a color.
GainProtectionFromColorAttachedEffect protectionEffect = new GainProtectionFromColorAttachedEffect(Duration.WhileOnBattlefield);
protectionEffect.setText("choose a color.");
this.addAbility(new AttachedToCreatureTriggeredAbility(protectionEffect, false));
// Equipped creature gets +2/+0 and has protection from the last chosen color.
Effect boostEffect = new BoostEquippedEffect(2, 0);
boostEffect.setText("Equipped creature gets +2/+0 and has protection from the last chosen color.");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, boostEffect));
// Equip {3}

View file

@ -9,6 +9,10 @@ import mage.game.permanent.Permanent;
import static mage.constants.CardType.CREATURE;
/**
*
* @author htrajan
*/
public class AttachedToCreatureTriggeredAbility extends TriggeredAbilityImpl {
public AttachedToCreatureTriggeredAbility(Effect effect, boolean optional) {

View file

@ -13,7 +13,7 @@ import mage.players.Player;
/**
*
* @author LevelX2
* @author htrajan
*/
public class GainProtectionFromColorAttachedEffect extends GainAbilitySourceEffect {