mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Ticking Gnomes - Fixed not working activated ability.
This commit is contained in:
parent
ea564803a2
commit
2abfad795e
1 changed files with 3 additions and 3 deletions
|
@ -28,9 +28,6 @@
|
|||
package mage.sets.urzaslegacy;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
|
@ -38,6 +35,8 @@ import mage.abilities.costs.common.SacrificeSourceCost;
|
|||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.abilities.keyword.EchoAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
import mage.target.common.TargetCreatureOrPlayer;
|
||||
|
||||
|
@ -60,6 +59,7 @@ public class TickingGnomes extends CardImpl {
|
|||
// Sacrifice Ticking Gnomes: Ticking Gnomes deals 1 damage to target creature or player.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new SacrificeSourceCost());
|
||||
ability.addTarget(new TargetCreatureOrPlayer());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public TickingGnomes(final TickingGnomes card) {
|
||||
|
|
Loading…
Reference in a new issue