mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Implemented Lazotep Plating
This commit is contained in:
parent
cd3396eab9
commit
1dd17f5cf0
2 changed files with 42 additions and 0 deletions
41
Mage.Sets/src/mage/cards/l/LazotepPlating.java
Normal file
41
Mage.Sets/src/mage/cards/l/LazotepPlating.java
Normal file
|
@ -0,0 +1,41 @@
|
|||
package mage.cards.l;
|
||||
|
||||
import mage.abilities.effects.common.continuous.GainAbilityControlledEffect;
|
||||
import mage.abilities.effects.keyword.AmassEffect;
|
||||
import mage.abilities.keyword.HexproofAbility;
|
||||
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 LazotepPlating extends CardImpl {
|
||||
|
||||
public LazotepPlating(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{U}");
|
||||
|
||||
// Amass 1.
|
||||
this.getSpellAbility().addEffect(new AmassEffect(1));
|
||||
|
||||
// You and permanents you control gain hexproof until end of turn.
|
||||
this.getSpellAbility().addEffect(new GainAbilityControlledEffect(
|
||||
HexproofAbility.getInstance(), Duration.EndOfTurn
|
||||
).setText("<br>You and"));
|
||||
this.getSpellAbility().addEffect(new GainAbilityControlledEffect(
|
||||
HexproofAbility.getInstance(), Duration.EndOfTurn
|
||||
));
|
||||
}
|
||||
|
||||
private LazotepPlating(final LazotepPlating card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public LazotepPlating copy() {
|
||||
return new LazotepPlating(this);
|
||||
}
|
||||
}
|
|
@ -65,6 +65,7 @@ public final class WarOfTheSpark extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Kiora's Dambreaker", 58, Rarity.COMMON, mage.cards.k.KiorasDambreaker.class));
|
||||
cards.add(new SetCardInfo("Kiora, Behemoth Beckoner", 232, Rarity.UNCOMMON, mage.cards.k.KioraBehemothBeckoner.class));
|
||||
cards.add(new SetCardInfo("Lazotep Behemoth", 95, Rarity.COMMON, mage.cards.l.LazotepBehemoth.class));
|
||||
cards.add(new SetCardInfo("Lazotep Plating", 59, Rarity.UNCOMMON, mage.cards.l.LazotepPlating.class));
|
||||
cards.add(new SetCardInfo("Lazotep Reaver", 96, Rarity.COMMON, mage.cards.l.LazotepReaver.class));
|
||||
cards.add(new SetCardInfo("Leyline Prowler", 202, Rarity.UNCOMMON, mage.cards.l.LeylineProwler.class));
|
||||
cards.add(new SetCardInfo("Liliana's Triumph", 98, Rarity.UNCOMMON, mage.cards.l.LilianasTriumph.class));
|
||||
|
|
Loading…
Reference in a new issue