mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
commit
fb15c79964
1 changed files with 32 additions and 0 deletions
32
Mage.Sets/src/mage/sets/kaladesh/MakeObsolete.java
Normal file
32
Mage.Sets/src/mage/sets/kaladesh/MakeObsolete.java
Normal file
|
@ -0,0 +1,32 @@
|
|||
package mage.sets.kaladesh;
|
||||
|
||||
import mage.abilities.effects.common.continuous.BoostOpponentsEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Rarity;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author royk
|
||||
*/
|
||||
public class MakeObsolete extends CardImpl {
|
||||
|
||||
public MakeObsolete(UUID ownerId) {
|
||||
super(ownerId, 89, "Make Obsolete", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "(2)(B)");
|
||||
this.expansionSetCode = "KLD";
|
||||
|
||||
// Creatures your opponents control get -1/-1 until end of turn
|
||||
this.getSpellAbility().addEffect(new BoostOpponentsEffect(-1, -1, Duration.EndOfTurn));
|
||||
}
|
||||
|
||||
public MakeObsolete(final MakeObsolete card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MakeObsolete copy() {
|
||||
return new MakeObsolete(this);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue