mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[MH2] Implemented Blossoming Calm
This commit is contained in:
parent
9886dbb442
commit
bf48ce1e54
2 changed files with 41 additions and 0 deletions
40
Mage.Sets/src/mage/cards/b/BlossomingCalm.java
Normal file
40
Mage.Sets/src/mage/cards/b/BlossomingCalm.java
Normal file
|
@ -0,0 +1,40 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityControllerEffect;
|
||||
import mage.abilities.keyword.HexproofAbility;
|
||||
import mage.abilities.keyword.ReboundAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BlossomingCalm extends CardImpl {
|
||||
|
||||
public BlossomingCalm(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{W}");
|
||||
|
||||
// You gain hexproof until your next turn. You gain 2 life.
|
||||
this.getSpellAbility().addEffect(new GainAbilityControllerEffect(
|
||||
HexproofAbility.getInstance(), Duration.UntilYourNextTurn
|
||||
).setText("you gain hexproof until your next turn."));
|
||||
this.getSpellAbility().addEffect(new GainLifeEffect(2));
|
||||
|
||||
// Rebound
|
||||
this.addAbility(new ReboundAbility());
|
||||
}
|
||||
|
||||
private BlossomingCalm(final BlossomingCalm card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlossomingCalm copy() {
|
||||
return new BlossomingCalm(this);
|
||||
}
|
||||
}
|
|
@ -47,6 +47,7 @@ public final class ModernHorizons2 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Battle Plan", 114, Rarity.COMMON, mage.cards.b.BattlePlan.class));
|
||||
cards.add(new SetCardInfo("Blacksmith's Skill", 6, Rarity.COMMON, mage.cards.b.BlacksmithsSkill.class));
|
||||
cards.add(new SetCardInfo("Bloodbraid Marauder", 116, Rarity.RARE, mage.cards.b.BloodbraidMarauder.class));
|
||||
cards.add(new SetCardInfo("Blossoming Calm", 7, Rarity.UNCOMMON, mage.cards.b.BlossomingCalm.class));
|
||||
cards.add(new SetCardInfo("Bone Shards", 76, Rarity.COMMON, mage.cards.b.BoneShards.class));
|
||||
cards.add(new SetCardInfo("Bone Shredder", 272, Rarity.UNCOMMON, mage.cards.b.BoneShredder.class));
|
||||
cards.add(new SetCardInfo("Bottle Golems", 222, Rarity.COMMON, mage.cards.b.BottleGolems.class));
|
||||
|
|
Loading…
Reference in a new issue