forked from External/mage
* Slightly revamped basic card icons All icon classes which were just static text have been removed, and instead replaced with a static instance. A new icon for reach has been added Some icons have been reused for new abilities (hexproof for shroud and ward, infect for toxic) When a card would have two icons of the same type, the icons are instead combines into one with a combined hover tooltip. * Fixed missing capitalization on ward, hexproof
44 lines
941 B
Java
44 lines
941 B
Java
package mage.abilities.keyword;
|
|
|
|
import mage.abilities.MageSingleton;
|
|
import mage.abilities.StaticAbility;
|
|
import mage.abilities.icon.CardIconImpl;
|
|
import mage.constants.Zone;
|
|
|
|
import java.io.ObjectStreamException;
|
|
|
|
/**
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
public class VigilanceAbility extends StaticAbility implements MageSingleton {
|
|
|
|
private static final VigilanceAbility instance;
|
|
|
|
static {
|
|
instance = new VigilanceAbility();
|
|
instance.addIcon(CardIconImpl.ABILITY_VIGILANCE);
|
|
}
|
|
|
|
private Object readResolve() throws ObjectStreamException {
|
|
return instance;
|
|
}
|
|
|
|
public static VigilanceAbility getInstance() {
|
|
return instance;
|
|
}
|
|
|
|
private VigilanceAbility() {
|
|
super(Zone.BATTLEFIELD, null);
|
|
}
|
|
|
|
@Override
|
|
public String getRule() {
|
|
return "vigilance";
|
|
}
|
|
|
|
@Override
|
|
public VigilanceAbility copy() {
|
|
return instance;
|
|
}
|
|
|
|
}
|