mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Implement The Locust God (HOU)
This commit is contained in:
parent
d95bd421fc
commit
6d35de829f
2 changed files with 2 additions and 1 deletions
|
@ -595,6 +595,7 @@
|
|||
|Generate|TOK:HOP|Pentavite|||PentaviteToken|
|
||||
|Generate|TOK:HOP|Pest|||PestToken|
|
||||
|Generate|TOK:HOP|Saproling|||SaprolingToken|
|
||||
|Generate|TOK:HOU|Insect|||TheLocustGodInsectToken|
|
||||
|Generate|TOK:ICE|Caribou|||CaribouToken|
|
||||
|Generate|TOK:INV|Bird|||OwlToken|
|
||||
|Generate|TOK:INV|Elephant|||ElephantToken|
|
||||
|
|
|
@ -69,7 +69,7 @@ public class TheLocustGod extends CardImpl {
|
|||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Whenever you draw a card, create a 1/1 blue and red Insect creature token with flying and haste.
|
||||
this.addAbility(new DrawCardControllerTriggeredAbility(new CreateTokenEffect(new TheLocustGodInsectToken(), 1, true, false), false));
|
||||
this.addAbility(new DrawCardControllerTriggeredAbility(new CreateTokenEffect(new TheLocustGodInsectToken(), 1, false, false), false));
|
||||
|
||||
// {2}{U}{R}: Draw a card, then discard a card.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawDiscardControllerEffect(1, 1, false), new ManaCostsImpl("{2}{U}{R}"));
|
||||
|
|
Loading…
Reference in a new issue