forked from External/mage
185 lines
4.3 KiB
Java
185 lines
4.3 KiB
Java
package mage;
|
|
|
|
import mage.abilities.Abilities;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.costs.mana.ManaCost;
|
|
import mage.abilities.costs.mana.ManaCosts;
|
|
import mage.abilities.keyword.ChangelingAbility;
|
|
import mage.cards.Card;
|
|
import mage.cards.FrameStyle;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SuperType;
|
|
import mage.game.Game;
|
|
import mage.game.events.ZoneChangeEvent;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.EnumSet;
|
|
import java.util.List;
|
|
import java.util.UUID;
|
|
|
|
public interface MageObject extends MageItem, Serializable {
|
|
|
|
String getName();
|
|
|
|
String getIdName();
|
|
|
|
String getLogName();
|
|
|
|
String getImageName();
|
|
|
|
void setName(String name);
|
|
|
|
EnumSet<CardType> getCardType();
|
|
|
|
List<String> getSubtype(Game game);
|
|
|
|
boolean hasSubtype(String subtype, Game game);
|
|
|
|
EnumSet<SuperType> getSuperType();
|
|
|
|
Abilities<Ability> getAbilities();
|
|
|
|
boolean hasAbility(UUID abilityId, Game game);
|
|
|
|
ObjectColor getColor(Game game);
|
|
|
|
ObjectColor getFrameColor(Game game);
|
|
|
|
FrameStyle getFrameStyle();
|
|
|
|
ManaCosts<ManaCost> getManaCost();
|
|
|
|
int getConvertedManaCost();
|
|
|
|
MageInt getPower();
|
|
|
|
MageInt getToughness();
|
|
|
|
int getStartingLoyalty();
|
|
|
|
|
|
void adjustCosts(Ability ability, Game game);
|
|
|
|
void adjustTargets(Ability ability, Game game);
|
|
|
|
MageObject copy();
|
|
|
|
/**
|
|
* Defines that MageObject is a copy of another object
|
|
*
|
|
* @param isCopy
|
|
*/
|
|
void setCopy(boolean isCopy);
|
|
|
|
/**
|
|
* Checks if current MageObject is a copy of another object
|
|
*
|
|
* @return
|
|
*/
|
|
boolean isCopy();
|
|
|
|
int getZoneChangeCounter(Game game);
|
|
|
|
void updateZoneChangeCounter(Game game, ZoneChangeEvent event);
|
|
|
|
void setZoneChangeCounter(int value, Game game);
|
|
|
|
|
|
default boolean isCreature() {
|
|
return getCardType().contains(CardType.CREATURE);
|
|
}
|
|
|
|
default boolean isArtifact() {
|
|
return getCardType().contains(CardType.ARTIFACT);
|
|
}
|
|
|
|
default boolean isLand() {
|
|
return getCardType().contains(CardType.LAND);
|
|
}
|
|
|
|
default boolean isEnchantment() {
|
|
return getCardType().contains(CardType.ENCHANTMENT);
|
|
}
|
|
|
|
default boolean isInstant() {
|
|
return getCardType().contains(CardType.INSTANT);
|
|
}
|
|
|
|
default boolean isSorcery() {
|
|
return getCardType().contains(CardType.SORCERY);
|
|
}
|
|
|
|
default boolean isPlaneswalker() {
|
|
return getCardType().contains(CardType.PLANESWALKER);
|
|
}
|
|
|
|
default boolean isPermanent() {
|
|
return isCreature() || isArtifact() || isPlaneswalker() || isEnchantment() || isLand();
|
|
}
|
|
|
|
default boolean isLegendary() {
|
|
return getSuperType().contains(SuperType.LEGENDARY);
|
|
}
|
|
|
|
default boolean isSnow() {
|
|
return getSuperType().contains(SuperType.SNOW);
|
|
}
|
|
|
|
default void addSuperType(SuperType superType){
|
|
getSuperType().add(superType);
|
|
}
|
|
|
|
default boolean isBasic() { return getSuperType().contains(SuperType.BASIC);}
|
|
|
|
default boolean isWorld() {
|
|
return getSuperType().contains(SuperType.WORLD);
|
|
}
|
|
|
|
|
|
/**
|
|
* Checks whether two cards share card types.
|
|
*
|
|
*
|
|
* @param otherCard
|
|
* @return
|
|
*/
|
|
default boolean shareTypes(Card otherCard) {
|
|
|
|
if (otherCard == null) {
|
|
throw new IllegalArgumentException("Params can't be null");
|
|
}
|
|
|
|
for (CardType type : getCardType()) {
|
|
if (otherCard.getCardType().contains(type)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
default boolean shareSubtypes(Card otherCard, Game game) {
|
|
|
|
if (otherCard == null) {
|
|
throw new IllegalArgumentException("Params can't be null");
|
|
}
|
|
|
|
if (this.isCreature() && otherCard.isCreature()) {
|
|
if (this.getAbilities().contains(ChangelingAbility.getInstance())
|
|
|| this.getSubtype(game).contains(ChangelingAbility.ALL_CREATURE_TYPE)
|
|
|| otherCard.getAbilities().contains(ChangelingAbility.getInstance())
|
|
|| otherCard.getSubtype(game).contains(ChangelingAbility.ALL_CREATURE_TYPE)) {
|
|
return true;
|
|
}
|
|
}
|
|
for (String subtype : this.getSubtype(game)) {
|
|
if (otherCard.getSubtype(game).contains(subtype)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
}
|