mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
[ANA] - implemented Titanic Pelagosaur
This commit is contained in:
parent
56d8887cf8
commit
e04705d914
1 changed files with 32 additions and 0 deletions
32
Mage.Sets/src/mage/cards/t/TitanicPelagosaur.java
Normal file
32
Mage.Sets/src/mage/cards/t/TitanicPelagosaur.java
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
package mage.cards.t;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.SubType;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author JayDi85
|
||||||
|
*/
|
||||||
|
public final class TitanicPelagosaur extends CardImpl {
|
||||||
|
|
||||||
|
public TitanicPelagosaur(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{U}{U}");
|
||||||
|
this.subtype.add(SubType.DINOSAUR);
|
||||||
|
|
||||||
|
this.power = new MageInt(4);
|
||||||
|
this.toughness = new MageInt(6);
|
||||||
|
}
|
||||||
|
|
||||||
|
public TitanicPelagosaur(final TitanicPelagosaur card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TitanicPelagosaur copy() {
|
||||||
|
return new TitanicPelagosaur(this);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue