mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
Removed duplicate dragon egg dragon token class
This commit is contained in:
parent
cb6e6b234f
commit
3fc84d9ba4
4 changed files with 4 additions and 44 deletions
|
|
@ -1,40 +0,0 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
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.FlyingAbility;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Zone;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class BroodKeeperDragonToken extends TokenImpl {
|
||||
|
||||
public BroodKeeperDragonToken() {
|
||||
super("Dragon Token", "2/2 red Dragon creature token with flying. It has \"{R}: This creature gets +1/+0 until end of turn.\"");
|
||||
this.setOriginalExpansionSetCode("M15");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.DRAGON);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, 0, Duration.EndOfTurn), new ManaCostsImpl("{R}")));
|
||||
}
|
||||
|
||||
public BroodKeeperDragonToken(final BroodKeeperDragonToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public BroodKeeperDragonToken copy() {
|
||||
return new BroodKeeperDragonToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -28,7 +28,7 @@ public final class DragonEggDragonToken extends TokenImpl {
|
|||
this.addAbility(FlyingAbility.getInstance());
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, 0, Duration.EndOfTurn), new ManaCostsImpl("{R}")));
|
||||
|
||||
availableImageSetCodes = Arrays.asList("C18", "EMA", "M14", "M19", "CMR", "IMA");
|
||||
availableImageSetCodes = Arrays.asList("C18", "EMA", "M14", "M15", "M19", "CMR", "IMA");
|
||||
}
|
||||
|
||||
public DragonEggDragonToken(final DragonEggDragonToken token) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue