Fixed adouble calss name.

This commit is contained in:
LevelX2 2014-08-13 18:44:43 +02:00
parent 797ee3d945
commit 98bfd16680
2 changed files with 10 additions and 11 deletions

View file

@ -80,7 +80,7 @@ public class DomriRade extends CardImpl {
// -2: Target creature you control fights another target creature.
LoyaltyAbility ability2 = new LoyaltyAbility(new FightTargetsEffect(), -2);
ability2.addTarget(new TargetControlledCreaturePermanent());
ability2.addTarget(new TargetOtherCreaturePermanent());
ability2.addTarget(new DomriRadeTargetOtherCreaturePermanent());
this.addAbility(ability2);
// -7: You get an emblem with "Creatures you control have double strike, trample, hexproof and haste."
@ -153,13 +153,13 @@ class DomriRadeEmblem extends Emblem {
}
}
class TargetOtherCreaturePermanent extends TargetCreaturePermanent {
class DomriRadeTargetOtherCreaturePermanent extends TargetCreaturePermanent {
public TargetOtherCreaturePermanent() {
public DomriRadeTargetOtherCreaturePermanent() {
super();
}
public TargetOtherCreaturePermanent(final TargetOtherCreaturePermanent target) {
public DomriRadeTargetOtherCreaturePermanent(final DomriRadeTargetOtherCreaturePermanent target) {
super(target);
}
@ -172,8 +172,8 @@ class TargetOtherCreaturePermanent extends TargetCreaturePermanent {
}
@Override
public TargetOtherCreaturePermanent copy() {
return new TargetOtherCreaturePermanent(this);
public DomriRadeTargetOtherCreaturePermanent copy() {
return new DomriRadeTargetOtherCreaturePermanent(this);
}
}