mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Implemented Almighty Brushwagg
This commit is contained in:
parent
800ea45fd4
commit
df44de36d7
2 changed files with 46 additions and 0 deletions
45
Mage.Sets/src/mage/cards/a/AlmightyBrushwagg.java
Normal file
45
Mage.Sets/src/mage/cards/a/AlmightyBrushwagg.java
Normal file
|
@ -0,0 +1,45 @@
|
|||
package mage.cards.a;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.continuous.BoostSourceEffect;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class AlmightyBrushwagg extends CardImpl {
|
||||
|
||||
public AlmightyBrushwagg(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}");
|
||||
|
||||
this.subtype.add(SubType.BRUSHWAGG);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// Trample
|
||||
this.addAbility(TrampleAbility.getInstance());
|
||||
|
||||
// {3}{G}: Almighty Brushwagg gets +3/+3 until end of turn.
|
||||
this.addAbility(new SimpleActivatedAbility(
|
||||
new BoostSourceEffect(3, 3, Duration.EndOfTurn), new ManaCostsImpl("{3}{G}")
|
||||
));
|
||||
}
|
||||
|
||||
private AlmightyBrushwagg(final AlmightyBrushwagg card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AlmightyBrushwagg copy() {
|
||||
return new AlmightyBrushwagg(this);
|
||||
}
|
||||
}
|
|
@ -60,6 +60,7 @@ public final class IkoriaLairOfBehemoths extends ExpansionSet {
|
|||
this.maxCardNumberInBooster = 274;
|
||||
this.hasBasicLands = false; // remove when basics are available
|
||||
|
||||
cards.add(new SetCardInfo("Almighty Brushwagg", 143, Rarity.COMMON, mage.cards.a.AlmightyBrushwagg.class));
|
||||
cards.add(new SetCardInfo("Barrier Breach", 145, Rarity.UNCOMMON, mage.cards.b.BarrierBreach.class));
|
||||
cards.add(new SetCardInfo("Bastion of Remembrance", 73, Rarity.UNCOMMON, mage.cards.b.BastionOfRemembrance.class));
|
||||
cards.add(new SetCardInfo("Blood Curdle", 75, Rarity.COMMON, mage.cards.b.BloodCurdle.class));
|
||||
|
|
Loading…
Reference in a new issue