From e2ccc5c87f960836b868bd3c2b0559cf0f389988 Mon Sep 17 00:00:00 2001 From: Justin Herlehy Date: Mon, 17 Jul 2017 17:15:48 -0700 Subject: [PATCH] Subtype Update for "Z" Cards. Updated the subtypes for all implemented cards in the "Z" package. Corrected typo in the SubType enum for type BOAR. Added a varargs function to allow all creature types to be added in a single function call rather than 1-4. --- Mage.Sets/src/mage/cards/z/Zap.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/z/Zap.java b/Mage.Sets/src/mage/cards/z/Zap.java index ef6853e1dde..a97ad771306 100644 --- a/Mage.Sets/src/mage/cards/z/Zap.java +++ b/Mage.Sets/src/mage/cards/z/Zap.java @@ -27,14 +27,15 @@ */ package mage.cards.z; -import java.util.UUID; -import mage.constants.CardType; import mage.abilities.effects.common.DamageTargetEffect; import mage.abilities.effects.common.DrawCardSourceControllerEffect; import mage.cards.CardImpl; import mage.cards.CardSetInfo; +import mage.constants.CardType; import mage.target.common.TargetCreatureOrPlayer; +import java.util.UUID; + /** * * @author Loki @@ -44,7 +45,6 @@ public class Zap extends CardImpl { public Zap(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{2}{R}"); - // Zap deals 1 damage to target creature or player. this.getSpellAbility().addEffect(new DamageTargetEffect(1)); this.getSpellAbility().addTarget(new TargetCreatureOrPlayer());