Implement The Locust God (HOU)

This commit is contained in:
spjspj 2017-06-27 21:32:14 +10:00
parent d95bd421fc
commit 6d35de829f
2 changed files with 2 additions and 1 deletions

View file

@ -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|

View file

@ -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}"));