mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
updated Transguild Courier text
This commit is contained in:
parent
2fa3ce912b
commit
8d79d456bc
1 changed files with 8 additions and 4 deletions
|
@ -1,30 +1,34 @@
|
||||||
|
|
||||||
package mage.cards.t;
|
package mage.cards.t;
|
||||||
|
|
||||||
import java.util.UUID;
|
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
|
import mage.abilities.effects.common.InfoEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
|
import mage.constants.Zone;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author Wehk
|
* @author Wehk
|
||||||
*/
|
*/
|
||||||
public final class TransguildCourier extends CardImpl {
|
public final class TransguildCourier extends CardImpl {
|
||||||
|
|
||||||
public TransguildCourier(UUID ownerId, CardSetInfo setInfo) {
|
public TransguildCourier(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{4}");
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}");
|
||||||
this.subtype.add(SubType.GOLEM);
|
this.subtype.add(SubType.GOLEM);
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
this.toughness = new MageInt(3);
|
this.toughness = new MageInt(3);
|
||||||
|
|
||||||
this.color.setWhite(true);
|
this.color.setWhite(true);
|
||||||
this.color.setBlue(true);
|
this.color.setBlue(true);
|
||||||
this.color.setBlack(true);
|
this.color.setBlack(true);
|
||||||
this.color.setRed(true);
|
this.color.setRed(true);
|
||||||
this.color.setGreen(true);
|
this.color.setGreen(true);
|
||||||
|
this.addAbility(new SimpleStaticAbility(Zone.ALL, new InfoEffect("{this} is all colors")));
|
||||||
}
|
}
|
||||||
|
|
||||||
public TransguildCourier(final TransguildCourier card) {
|
public TransguildCourier(final TransguildCourier card) {
|
||||||
|
|
Loading…
Reference in a new issue