mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Add ImperviousGreatwurm - GRN BaB promo
https://scryfall.com/card/grn/273/impervious-greatwurm
This commit is contained in:
parent
a018f6fb5c
commit
dc66618e1d
1 changed files with 43 additions and 0 deletions
43
Mage.Sets/src/mage/cards/i/ImperviousGreatwurm.java
Normal file
43
Mage.Sets/src/mage/cards/i/ImperviousGreatwurm.java
Normal file
|
@ -0,0 +1,43 @@
|
|||
package mage.cards.i;
|
||||
|
||||
import mage.abilities.keyword.ConvokeAbility;
|
||||
import mage.abilities.keyword.IndestructibleAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.MageInt;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Rystan
|
||||
*/
|
||||
|
||||
public final class ImperviousGreatwurm extends CardImpl {
|
||||
|
||||
public ImperviousGreatwurm(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{7}{G}{G}{G}");
|
||||
this.subtype.add(SubType.WURM);
|
||||
this.subtype.add(SubType.SHAMAN);
|
||||
|
||||
this.power = new MageInt(16);
|
||||
this.toughness = new MageInt(16);
|
||||
|
||||
// Convoke
|
||||
this.addAbility(new ConvokeAbility());
|
||||
|
||||
// Indestructible
|
||||
this.addAbility(IndestructibleAbility.getInstance());
|
||||
}
|
||||
|
||||
public ImperviousGreatwurm(final ImperviousGreatwurm card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ImperviousGreatwurm copy() {
|
||||
return new ImperviousGreatwurm(this);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue