forked from External/mage
32 lines
No EOL
665 B
Java
32 lines
No EOL
665 B
Java
package mage.abilities.condition.common;
|
|
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.condition.Condition;
|
|
import mage.game.Game;
|
|
import mage.game.permanent.Permanent;
|
|
|
|
/**
|
|
* Checks if a Permanent is renown
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
|
|
public enum RenownedSourceCondition implements Condition {
|
|
|
|
instance;
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
Permanent permanent = game.getPermanent(source.getSourceId());
|
|
if (permanent != null) {
|
|
return permanent.isRenowned();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "it's renowned";
|
|
}
|
|
|
|
|
|
} |