mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
[AFR] Implemented Greataxe
This commit is contained in:
parent
faa5e2f4da
commit
a3222716b2
2 changed files with 39 additions and 0 deletions
38
Mage.Sets/src/mage/cards/g/Greataxe.java
Normal file
38
Mage.Sets/src/mage/cards/g/Greataxe.java
Normal file
|
@ -0,0 +1,38 @@
|
|||
package mage.cards.g;
|
||||
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.common.continuous.BoostEquippedEffect;
|
||||
import mage.abilities.keyword.EquipAbility;
|
||||
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 Greataxe extends CardImpl {
|
||||
|
||||
public Greataxe(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{1}");
|
||||
|
||||
this.subtype.add(SubType.EQUIPMENT);
|
||||
|
||||
// Equipped creature gets +4/+0.
|
||||
this.addAbility(new SimpleStaticAbility(new BoostEquippedEffect(4, 0)));
|
||||
|
||||
// Equip {5}
|
||||
this.addAbility(new EquipAbility(5));
|
||||
}
|
||||
|
||||
private Greataxe(final Greataxe card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Greataxe copy() {
|
||||
return new Greataxe(this);
|
||||
}
|
||||
}
|
|
@ -90,6 +90,7 @@ public final class AdventuresInTheForgottenRealms extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Goblin Javelineer", 144, Rarity.COMMON, mage.cards.g.GoblinJavelineer.class));
|
||||
cards.add(new SetCardInfo("Goblin Morningstar", 145, Rarity.UNCOMMON, mage.cards.g.GoblinMorningstar.class));
|
||||
cards.add(new SetCardInfo("Grazilaxx, Illithid Scholar", 60, Rarity.RARE, mage.cards.g.GrazilaxxIllithidScholar.class));
|
||||
cards.add(new SetCardInfo("Greataxe", 245, Rarity.COMMON, mage.cards.g.Greataxe.class));
|
||||
cards.add(new SetCardInfo("Green Dragon", 186, Rarity.UNCOMMON, mage.cards.g.GreenDragon.class));
|
||||
cards.add(new SetCardInfo("Gretchen Titchwillow", 223, Rarity.UNCOMMON, mage.cards.g.GretchenTitchwillow.class));
|
||||
cards.add(new SetCardInfo("Grim Wanderer", 107, Rarity.UNCOMMON, mage.cards.g.GrimWanderer.class));
|
||||
|
|
Loading…
Reference in a new issue