mirror of
https://github.com/correl/mage.git
synced 2024-11-29 03:00:12 +00:00
Implemented Glory Bearers
This commit is contained in:
parent
8defedc72e
commit
6438030f8e
2 changed files with 43 additions and 0 deletions
42
Mage.Sets/src/mage/cards/g/GloryBearers.java
Normal file
42
Mage.Sets/src/mage/cards/g/GloryBearers.java
Normal file
|
@ -0,0 +1,42 @@
|
|||
package mage.cards.g;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.AttacksCreatureYouControlTriggeredAbility;
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class GloryBearers extends CardImpl {
|
||||
|
||||
public GloryBearers(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{3}{W}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.CLERIC);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Whenever another creature you control attacks, it gets +0/+1 until end of turn.
|
||||
this.addAbility(new AttacksCreatureYouControlTriggeredAbility(
|
||||
new BoostTargetEffect(0, 1)
|
||||
.setText("it gets +0/+1 until end of turn"),
|
||||
false, true
|
||||
));
|
||||
}
|
||||
|
||||
private GloryBearers(final GloryBearers card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public GloryBearers copy() {
|
||||
return new GloryBearers(this);
|
||||
}
|
||||
}
|
|
@ -96,6 +96,7 @@ public final class TherosBeyondDeath extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Gallia of the Endless Dance", 217, Rarity.RARE, mage.cards.g.GalliaOfTheEndlessDance.class));
|
||||
cards.add(new SetCardInfo("Gift of Strength", 171, Rarity.COMMON, mage.cards.g.GiftOfStrength.class));
|
||||
cards.add(new SetCardInfo("Glimpse of Freedom", 50, Rarity.UNCOMMON, mage.cards.g.GlimpseOfFreedom.class));
|
||||
cards.add(new SetCardInfo("Glory Bearers", 17, Rarity.COMMON, mage.cards.g.GloryBearers.class));
|
||||
cards.add(new SetCardInfo("Grasping Giant", 288, Rarity.RARE, mage.cards.g.GraspingGiant.class));
|
||||
cards.add(new SetCardInfo("Gray Merchant of Asphodel", 99, Rarity.UNCOMMON, mage.cards.g.GrayMerchantOfAsphodel.class));
|
||||
cards.add(new SetCardInfo("Grim Physician", 100, Rarity.COMMON, mage.cards.g.GrimPhysician.class));
|
||||
|
|
Loading…
Reference in a new issue