From 6d35de829f7f0b34f00d6ada430b4815c1ca2077 Mon Sep 17 00:00:00 2001 From: spjspj Date: Tue, 27 Jun 2017 21:32:14 +1000 Subject: [PATCH] Implement The Locust God (HOU) --- Mage.Client/src/main/resources/card-pictures-tok.txt | 1 + Mage.Sets/src/mage/cards/t/TheLocustGod.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Client/src/main/resources/card-pictures-tok.txt b/Mage.Client/src/main/resources/card-pictures-tok.txt index f2dd4833827..4792bd5df13 100644 --- a/Mage.Client/src/main/resources/card-pictures-tok.txt +++ b/Mage.Client/src/main/resources/card-pictures-tok.txt @@ -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| diff --git a/Mage.Sets/src/mage/cards/t/TheLocustGod.java b/Mage.Sets/src/mage/cards/t/TheLocustGod.java index ff79a2f2491..fc8f375fb8a 100644 --- a/Mage.Sets/src/mage/cards/t/TheLocustGod.java +++ b/Mage.Sets/src/mage/cards/t/TheLocustGod.java @@ -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}"));