mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
Implemented Stormcloud Spirit
This commit is contained in:
parent
1c2f384bcc
commit
36e2689408
2 changed files with 37 additions and 0 deletions
36
Mage.Sets/src/mage/cards/s/StormcloudSpirit.java
Normal file
36
Mage.Sets/src/mage/cards/s/StormcloudSpirit.java
Normal file
|
@ -0,0 +1,36 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.constants.SubType;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class StormcloudSpirit extends CardImpl {
|
||||
|
||||
public StormcloudSpirit(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{U}{U}");
|
||||
|
||||
this.subtype.add(SubType.SPIRIT);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
public StormcloudSpirit(final StormcloudSpirit card) {
|
||||
super(card);
|
||||