forked from External/mage
36 lines
797 B
Java
36 lines
797 B
Java
|
|
package mage.cards.a;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlashAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author Loki
|
|
*/
|
|
public final class AshcoatBear extends CardImpl {
|
|
|
|
public AshcoatBear(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{G}");
|
|
this.subtype.add(SubType.BEAR);
|
|
|
|
this.power = new MageInt(2);
|
|
this.toughness = new MageInt(2);
|
|
|
|
this.addAbility(FlashAbility.getInstance());
|
|
}
|
|
|
|
public AshcoatBear(final AshcoatBear card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public AshcoatBear copy() {
|
|
return new AshcoatBear(this);
|
|
}
|
|
}
|