mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 20:29:19 -08:00
[minor] removed unused imports
This commit is contained in:
parent
a3be8073e2
commit
2b7471df3f
4 changed files with 14 additions and 39 deletions
|
|
@ -33,7 +33,6 @@ import mage.Constants.Rarity;
|
|||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.common.FightTargetsEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.game.Game;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
|
|
@ -52,7 +51,7 @@ public class BloodFeud extends CardImpl<BloodFeud> {
|
|||
// Target creature fights another target creature.
|
||||
this.getSpellAbility().addEffect(new FightTargetsEffect());
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(true));
|
||||
this.getSpellAbility().addTarget(new TargetOtherCreaturePermanent(true));
|
||||
this.getSpellAbility().addTarget(new TargetOtherCreaturePermanent());
|
||||
}
|
||||
|
||||
public BloodFeud(final BloodFeud card) {
|
||||
|
|
@ -67,7 +66,7 @@ public class BloodFeud extends CardImpl<BloodFeud> {
|
|||
|
||||
class TargetOtherCreaturePermanent extends TargetCreaturePermanent {
|
||||
|
||||
public TargetOtherCreaturePermanent(boolean required) {
|
||||
public TargetOtherCreaturePermanent() {
|
||||
super(true);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -36,8 +36,6 @@ import mage.abilities.Ability;
|
|||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.ContinuousEffectImpl;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.Cards;
|
||||
import mage.cards.CardsImpl;
|
||||
import mage.filter.common.FilterCreatureCard;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
|
|
|||
|
|
@ -27,7 +27,6 @@
|
|||
*/
|
||||
package mage.sets.lorwyn;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import mage.Constants;
|
||||
import mage.Constants.CardType;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue