forked from External/mage
58 lines
1.7 KiB
Java
58 lines
1.7 KiB
Java
|
|
package mage.abilities.effects.common;
|
|
|
|
import mage.MageObject;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.Mode;
|
|
import mage.abilities.effects.OneShotEffect;
|
|
import mage.constants.Outcome;
|
|
import mage.game.Game;
|
|
import mage.game.permanent.Permanent;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
public class FightTargetSourceEffect extends OneShotEffect {
|
|
|
|
public FightTargetSourceEffect() {
|
|
super(Outcome.Damage);
|
|
}
|
|
|
|
public FightTargetSourceEffect(final FightTargetSourceEffect effect) {
|
|
super(effect);
|
|
}
|
|
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
MageObject sourceObject = source.getSourceObject(game);
|
|
if (sourceObject != null) {
|
|
Permanent sourcePermanent = source.getSourcePermanentIfItStillExists(game);
|
|
Permanent creature1 = game.getPermanent(getTargetPointer().getFirst(game, source));
|
|
// 20110930 - 701.10
|
|
if (creature1 != null && sourcePermanent != null) {
|
|
if (creature1.isCreature() && sourcePermanent.isCreature()) {
|
|
return sourcePermanent.fight(creature1, source, game);
|
|
}
|
|
}
|
|
if (!game.isSimulation()) {
|
|
game.informPlayers(sourceObject.getLogName() + ": Fighting effect has been fizzled.");
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public FightTargetSourceEffect copy() {
|
|
return new FightTargetSourceEffect(this);
|
|
}
|
|
|
|
@Override
|
|
public String getText(Mode mode) {
|
|
if (staticText != null && !staticText.isEmpty()) {
|
|
return staticText;
|
|
}
|
|
return new StringBuilder("{this} fights another target ").append(mode.getTargets().get(0).getTargetName()).toString();
|
|
}
|
|
|
|
}
|