mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
[FDN] Implement Preposterous Proportions
This commit is contained in:
parent
adbbde1fdc
commit
a518fedebb
2 changed files with 41 additions and 0 deletions
40
Mage.Sets/src/mage/cards/p/PreposterousProportions.java
Normal file
40
Mage.Sets/src/mage/cards/p/PreposterousProportions.java
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
package mage.cards.p;
|
||||
|
||||
import mage.abilities.effects.common.continuous.BoostControlledEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityControlledEffect;
|
||||
import mage.abilities.keyword.VigilanceAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.filter.StaticFilters;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class PreposterousProportions extends CardImpl {
|
||||
|
||||
public PreposterousProportions(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{5}{G}{G}");
|
||||
|
||||
// Creatures you control get +10/+10 and gain vigilance until end of turn.
|
||||
this.getSpellAbility().addEffect(new BoostControlledEffect(
|
||||
10, 10, Duration.EndOfTurn
|
||||
).setText("creatures you control get +10/+10"));
|
||||
this.getSpellAbility().addEffect(new GainAbilityControlledEffect(
|
||||
VigilanceAbility.getInstance(), Duration.EndOfTurn,
|
||||
StaticFilters.FILTER_PERMANENT_CREATURE
|
||||
).setText("and gain vigilance until end of turn"));
|
||||
}
|
||||
|
||||
private PreposterousProportions(final PreposterousProportions card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PreposterousProportions copy() {
|
||||
return new PreposterousProportions(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -222,6 +222,7 @@ public final class Foundations extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Phyrexian Arena", 180, Rarity.RARE, mage.cards.p.PhyrexianArena.class));
|
||||
cards.add(new SetCardInfo("Plains", 272, Rarity.LAND, mage.cards.basiclands.Plains.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Predator Ooze", 642, Rarity.RARE, mage.cards.p.PredatorOoze.class));
|
||||
cards.add(new SetCardInfo("Preposterous Proportions", 109, Rarity.RARE, mage.cards.p.PreposterousProportions.class));
|
||||
cards.add(new SetCardInfo("Prideful Parent", 21, Rarity.COMMON, mage.cards.p.PridefulParent.class));
|
||||
cards.add(new SetCardInfo("Primal Might", 643, Rarity.RARE, mage.cards.p.PrimalMight.class));
|
||||
cards.add(new SetCardInfo("Prime Speaker Zegana", 664, Rarity.RARE, mage.cards.p.PrimeSpeakerZegana.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue