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
925 B
Java
44 lines
925 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 TrampleAbility extends StaticAbility implements MageSingleton {
|
|
|
|
private static final TrampleAbility instance;
|
|
|
|
static {
|
|
instance = new TrampleAbility();
|
|
instance.addIcon(CardIconImpl.ABILITY_TRAMPLE);
|
|
}
|
|
|
|
private Object readResolve() throws ObjectStreamException {
|
|
return instance;
|
|
}
|
|
|
|
public static TrampleAbility getInstance() {
|
|
return instance;
|
|
}
|
|
|
|
private TrampleAbility() {
|
|
super(Zone.BATTLEFIELD, null);
|
|
}
|
|
|
|
@Override
|
|
public String getRule() {
|
|
return "trample";
|
|
}
|
|
|
|
@Override
|
|
public TrampleAbility copy() {
|
|
return instance;
|
|
}
|
|
|
|
}
|