/
com/planet_ink/coffee_mud/Abilities/
com/planet_ink/coffee_mud/Abilities/Common/
com/planet_ink/coffee_mud/Abilities/Diseases/
com/planet_ink/coffee_mud/Abilities/Druid/
com/planet_ink/coffee_mud/Abilities/Fighter/
com/planet_ink/coffee_mud/Abilities/Prayers/
com/planet_ink/coffee_mud/Abilities/Properties/
com/planet_ink/coffee_mud/Abilities/Skills/
com/planet_ink/coffee_mud/Abilities/Songs/
com/planet_ink/coffee_mud/Abilities/Spells/
com/planet_ink/coffee_mud/Abilities/Thief/
com/planet_ink/coffee_mud/Abilities/Traps/
com/planet_ink/coffee_mud/Areas/interfaces/
com/planet_ink/coffee_mud/Behaviors/
com/planet_ink/coffee_mud/CharClasses/interfaces/
com/planet_ink/coffee_mud/Commands/
com/planet_ink/coffee_mud/Commands/interfaces/
com/planet_ink/coffee_mud/Exits/interfaces/
com/planet_ink/coffee_mud/Items/Armor/
com/planet_ink/coffee_mud/Items/Basic/
com/planet_ink/coffee_mud/Items/MiscMagic/
com/planet_ink/coffee_mud/Items/Software/
com/planet_ink/coffee_mud/Items/Weapons/
com/planet_ink/coffee_mud/Libraries/interfaces/
com/planet_ink/coffee_mud/Locales/
com/planet_ink/coffee_mud/Locales/interfaces/
com/planet_ink/coffee_mud/MOBS/
com/planet_ink/coffee_mud/MOBS/interfaces/
com/planet_ink/coffee_mud/Races/
com/planet_ink/coffee_mud/Races/interfaces/
com/planet_ink/coffee_mud/WebMacros/
com/planet_ink/coffee_mud/WebMacros/interfaces/
com/planet_ink/coffee_mud/application/
com/planet_ink/coffee_mud/core/smtp/
com/planet_ink/siplet/applet/
lib/
resources/examples/
resources/fakedb/
resources/quests/delivery/
resources/quests/diseased/
resources/quests/drowning/
resources/quests/gobwar/
resources/quests/holidays/
resources/quests/robbed/
resources/quests/smurfocide/
resources/quests/stolen/
resources/quests/templates/
resources/quests/treasurehunt/
resources/quests/vengeance/
web/
web/admin.templates/
web/admin/images/
web/pub.templates/
web/pub/images/mxp/
web/pub/sounds/
package com.planet_ink.coffee_mud.Common.interfaces;
import com.planet_ink.coffee_mud.core.interfaces.*;
import com.planet_ink.coffee_mud.core.*;
import com.planet_ink.coffee_mud.Abilities.interfaces.*;
import com.planet_ink.coffee_mud.Areas.interfaces.*;
import com.planet_ink.coffee_mud.Behaviors.interfaces.*;
import com.planet_ink.coffee_mud.CharClasses.interfaces.*;
import com.planet_ink.coffee_mud.Commands.interfaces.*;
import com.planet_ink.coffee_mud.Common.interfaces.*;
import com.planet_ink.coffee_mud.Exits.interfaces.*;
import com.planet_ink.coffee_mud.Items.interfaces.*;
import com.planet_ink.coffee_mud.Locales.interfaces.*;
import com.planet_ink.coffee_mud.MOBS.interfaces.*;
import com.planet_ink.coffee_mud.Races.interfaces.*;
/*
   Copyright 2000-2006 Bo Zimmerman

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/
/**
 * An object to access and change fields representing the varias aspects of a MOB
 * @see com.planet_ink.coffee_mud.MOBS.interfaces.MOB
 * @author Bo Zimmerman
 *
 */
public interface CharStats extends CMCommon
{
    /** stat constant for strength */
    public static final int VALUE_ALLSTATS_DEFAULT=10;
    
    /** stat constant for strength */
	public static final int STAT_STRENGTH=0;
    /** stat constant for intelligence */
	public static final int STAT_INTELLIGENCE=1;
    /** stat constant for dexterity */
	public static final int STAT_DEXTERITY=2;
    /** stat constant for constitution */
	public static final int STAT_CONSTITUTION=3;
    /** stat constant for  constitution*/
	public static final int STAT_CHARISMA=4;
    /** stat constant for  charisma*/
	public static final int STAT_WISDOM=5;
    /** constant for number of stat codes 0 - this-1 which are base stats */
	public static final int NUM_BASE_STATS=6;
    /** stat constant for  gender*/
	public static final int STAT_GENDER=6;
    /** constant for first stat code which is a saving throw  */
	public static final int NUM_SAVE_START=7;
    /** stat constant for  save vs paralysis*/
	public static final int STAT_SAVE_PARALYSIS=7;
    /** stat constant for  save vs fire*/
	public static final int STAT_SAVE_FIRE=8;
    /** stat constant for  save vs cold*/
	public static final int STAT_SAVE_COLD=9;
    /** stat constant for  save vs water*/
	public static final int STAT_SAVE_WATER=10;
    /** stat constant for  save vs gas*/
	public static final int STAT_SAVE_GAS=11;
    /** stat constant for  save vs mind attacks/illusion*/
	public static final int STAT_SAVE_MIND=12;
    /** stat constant for  save vs somethingelse*/
	public static final int STAT_SAVE_GENERAL=13;
    /** stat constant for  save vs humiliation*/
	public static final int STAT_SAVE_JUSTICE=14;
    /** stat constant for  save vs acid*/
	public static final int STAT_SAVE_ACID=15;
    /** stat constant for  save vs electricity*/
	public static final int STAT_SAVE_ELECTRIC=16;
    /** stat constant for  save vs poison*/
	public static final int STAT_SAVE_POISON=17;
    /** stat constant for  save vs undead attacks*/
	public static final int STAT_SAVE_UNDEAD=18;
    /** stat constant for  save vs magic*/
	public static final int STAT_SAVE_MAGIC=19;
    /** stat constant for  save vs disease*/
	public static final int STAT_SAVE_DISEASE=20;
    /** stat constant for  save vs traps*/
	public static final int STAT_SAVE_TRAPS=21;
    /** stat constant for  max strength adjustment*/
	public static final int STAT_MAX_STRENGTH_ADJ=22;
    /** stat constant for  max intelligence adjustment*/
	public static final int STAT_MAX_INTELLIGENCE_ADJ=23;
    /** stat constant for  max dextity adjustment*/
	public static final int STAT_MAX_DEXTERITY_ADJ=24;
    /** stat constant for  nax constitution adjustment*/
	public static final int STAT_MAX_CONSTITUTION_ADJ=25;
    /** stat constant for  mac charisma adjustment*/
	public static final int STAT_MAX_CHARISMA_ADJ=26;
    /** stat constant for  max wisdom adjustment*/
	public static final int STAT_MAX_WISDOM_ADJ=27;
    /** stat constant for age*/
	public static final int STAT_AGE=28;
    /** stat constant for save vs detection when hiding */
    public static final int STAT_SAVE_DETECTION=29;
    /** stat constant for save vs overlooking hidden things */
    public static final int STAT_SAVE_OVERLOOKING=30;
    /** constant for total number of stat codes */
    public static final int STAT_FAITH=31;
    /** constant for total number of stat codes */
	public final static int NUM_STATS=32;

	/**
     * Copies the internal data of this object into another of kind.
     * @param intoStats another CharStats object.
	 */
    public void copyInto(CharStats intoStats);
    
   /**
     * Get the value of one of the STAT_ constants, representing attributes,
     * saving throws, and max attributes, from the CharStats interface.
     * @see CharStats
     * @param statNum which STAT_ constant to get a value for
     * @return the value of the given STAT
     */
	public int getStat(int statNum);
    /**
     * Get the value of one of the mob stats, representing attributes,
     * saving throws, and max attributes, from the CharStats interface.
     * The abilityName is cross referenced with STAT_DESCS string array
     * to determine the proper STAT_ constant.
     * @see CharStats
     * @see CharStats#STAT_DESCS
     * @param abilityName name of which constant to get a value for
     * @return the value of the given STAT
     */
	public int getStat(String abilityName);
    /**
     * Set the value of one of the STAT_ constants, representing attributes,
     * saving throws, and max attributes, from the CharStats interface.
     * @see CharStats
     * @param statNum which STAT_ constant to get a value for
     * @param value the value of the given STAT
     */
	public void setStat(int statNum, int value);
    /**
     * Set one of the basic attributes to a given value.  The basic attributes
     * are defined as the first 6 STAT_ constants from the CharStats interface.
     * Using this method will also update the STAT_MAX_* attributes to make
     * sure that they are not able to be modifed upwards.
     * @see CharStats
     * @param statNum which STAT_ constant to get a value for
     * @param value the value of the given STAT
     */
	public void setPermanentStat(int statNum, int value);
    
    /**
     * Set one of the basic attributes to approx the value.  The basic attributes
     * are defined as the first 6 STAT_ constants from the CharStats interface.
     * Using this method will also update the STAT_MAX_* attributes to make
     * sure that they are not able to be trained upwards.
     * @see CharStats
     * @param statNum which STAT_ constant to get an approx value for
     * @param value the value of the max, and approxvalue of the given STAT
     */
    public void setRacialStat(int statNum, int value);
    
    /**
     * This method cross-references the given stat name string with the STAT_DESCS
     * string list in the CharStats interface to return the STAT_ constant which
     * the given string represents.
     * @see CharStats
     * @param abilityName name of which constant to determine the STAT_ constant for
     * @return the STAT_ constant value from CharStats interface
     */
	public int getCode(String abilityName);

    /**
     * Uses the saving throw stats stored here the the mob, modified by basic attributes,
     * to return a final Saving Throw value for this mob.
     * @see CharStats
     * @param which which STAT_SAVE_ constant from CharStats interface to use
     * @return the final saving throw value
     */
	public int getSave(int which);
    /**
     * Get saving throw and max stat info as an semicolon string list.
     * @return semicolon string
     */
    public String getSavesAsString();
    /**
     * set saving throw and max stat info from a semicolon string list.
     * @param str semicolon string
     */
    public void setSavesFromString(String str);
    /**
     * Return the number of a given body part which this mob has.  The
     * racial part number comes from the Race interface BODY_ constants.
     * @see com.planet_ink.coffee_mud.Races.interfaces.Race
     * @param racialPartNumber the BODY_ constant from Race interface
     * @return the number of the given body part this mob has
     */
    public int getBodyPart(int racialPartNumber);
    /**
     * Alter the number of a given body part which this mob has.  The
     * racial part number comes from the Race interface BODY_ constants.
     * The number is positive or negative reflecting the change.
     * @see com.planet_ink.coffee_mud.Races.interfaces.Race
     * @param racialPartNumber the BODY_ constant from Race interface
     * @param number the amount to change by, positive or negative
     */
    public void alterBodypart(int racialPartNumber, int number);
    /**
     * Check the difference between the number of a given body part which
     * this mob has and the number he or she should have.  The
     * racial part number comes from the Race interface BODY_ constants.
     * The return value is positive or negative reflecting the change.
     * @see com.planet_ink.coffee_mud.Races.interfaces.Race
     * @param racialPartNumber the BODY_ constant from Race interface
     * @return the difference between parts he has and should have
     */
    public int getBodypartAlteration(int racialPartNumber);
    /**
     * Returns the entire current body part situation as a string list.
     * @return the body parts alteration list
     */
    public String getBodyPartsAsString();
    /**
     * Sets the body part situation for this mob from a string list.  The
     * name is a reminder to make sure the mobs Race is established first.
     * @param str the string list representing the body part situation
     */
    public void setBodyPartsFromStringAfterRace(String str);


	/**
     * Returns the number of character classes that this mob has 0 or more
     * levels in.
     * @return number of character classes
	 */
	public int numClasses();
    /**
     * Returns the CharClass object for this mob which corresponds to the
     * the given index.  The oldest class is always indexed at 0, with next
     * newest at 1, and the current one last.
     * @see com.planet_ink.coffee_mud.CharClasses.interfaces.CharClass
     * @param i the index into the charclass list.
     * @return the CharClass object
     */
	public CharClass getMyClass(int i);
    /**
     * Returns the CharClass object for this mob which corresponds to the
     * the final index.  The oldest class is always indexed at 0, with next
     * newest at 1, and the current one last.
     * @see #numClasses()
     * @see com.planet_ink.coffee_mud.CharClasses.interfaces.CharClass
     * @return the 0 index CharClass object
     */
	public CharClass getCurrentClass();
    /**
     * Returns the number of levels that this mob has in the CharClass
     * object which corresponds to the final index.
     * The oldest class is always indexed at 0, with next
     * newest at 1, and the current one last.
     * @see #numClasses()
     * @return the number of levels in the 0 index class
     */
    public int getCurrentClassLevel();
    /**
     * Creates the enumerated set of character class objects stored here
     * from a semicolon list of string names
     * @param classes the semicolon list of character class names
     */
	public void setMyClasses(String classes);
    /**
     * Creates the enumerated set of character class levels stored here
     * from a semicolon list of levels.
     * @param levels the semicolon list of levels
     */
	public void setMyLevels(String levels);
    /**
     * Returns the enumerated set of character class names stored here
     * as a semicolon list of string names
     * @return the semicolon list of character class names
     */
	public String getMyClassesStr();
    /**
     * Returns the enumerated set of character class levels stored here
     * as a semicolon list of levels.
     * @return levels the semicolon list of levels
     */
	public String getMyLevelsStr();
    /**
     * Adds the character class to the mob to the given class, automatically
     * making the class level 0, and making the class current.
     * @see #getCurrentClass()
     * @see com.planet_ink.coffee_mud.CharClasses.interfaces.CharClass
     * @param aClass The charclass object to set the current class to
     */
	public void setCurrentClass(CharClass aClass);
    /**
     * Sets the current class level for the mob to the given level.
     * @param level The chararacter class level to set the current class to
     */
    public void setCurrentClassLevel(int level);
    /**
     * Returns the number of levels this mob has in the given character class.
     * -1 means the mob has NO levels in that class.
     * @see com.planet_ink.coffee_mud.CharClasses.interfaces.CharClass
     * @param aClass the CharClass object to check
     * @return the number of levels the mob has in the class, or -1
     */
	public int getClassLevel(CharClass aClass);
    /**
     * Returns the number of levels this mob has in the given character class by name.
     * -1 means the mob has NO levels in that class.
     * @see com.planet_ink.coffee_mud.CharClasses.interfaces.CharClass
     * @param aClass the name of the Character Class to check
     * @return the number of levels the mob has in the class, or -1
     */
	public int getClassLevel(String aClass);
    /**
     * Returns the combined number of class levels the mob has in all of his classes,
     * except for the current one.
     * @return combined levels minus the current one.
     */
	public int combinedSubLevels();
    /**
     * Changes the number of class levels the mob has in the given character class
     * to the given level.  If the mob does not have any levels in the given
     * class, then setCurrentClass will be called first.
     * @see #setCurrentClass(CharClass)
     * @see com.planet_ink.coffee_mud.CharClasses.interfaces.CharClass
     * @param aClass the character class to set a level for
     * @param level the level to set for the given character class
     */
	public void setClassLevel(CharClass aClass, int level);
    /**
     * Returns the race of the mob.
     * @see com.planet_ink.coffee_mud.Races.interfaces.Race
     * @return the Race of the mob
     */
	public Race getMyRace();
    /**
     * Sets the race of the mob.  Race.startRacing should
     * be called after this method is.
     * @see com.planet_ink.coffee_mud.Races.interfaces.Race#startRacing(MOB, boolean)
     * @see com.planet_ink.coffee_mud.Races.interfaces.Race
     * @param newVal the Race of the mob
     */
	public void setMyRace(Race newVal);
    /**
     * Returns the displayable name of this mobs current race.  If this method
     * is called on the mobs charStats() object, as opposed to baseCharStats(), it
     * may return something different than charStats().getMyRace().name().  For this
     * reason, you should ONLY use this method when you want to display the mobs
     * current race.
     * @see com.planet_ink.coffee_mud.Races.interfaces.Race
     * @see #setRaceName(String)
     * @return the name of this mobs current race.
     */
	public String raceName();
    /**
     * Changes the apparant race of ths mob by setting a new name.  A value of null will
     * reset this setting, allowing the mobs TRUE race to be displayed through the
     * raceName method instead of the string set through this one.
     * @see com.planet_ink.coffee_mud.Races.interfaces.Race
     * @see #setRaceName(String)
     * @param newRaceName the name of the mobs apparant race
     */
	public void setRaceName(String newRaceName);
    /**
     * Changes the apparant char class of ths mob by setting a new name.  A value of null will
     * reset this setting, allowing the mobs TRUE current class to be displayed through the
     * displayClassName method instead of the string set through this one.
     * @see com.planet_ink.coffee_mud.CharClasses.interfaces.CharClass
     * @see #displayClassName()
     * @see #displayClassLevel(MOB, boolean)
     * @see #displayClassLevelOnly(MOB)
     * @param newname the name of the mobs apparant current class
     */
	public void setDisplayClassName(String newname);
    /**
     * Changes the apparant level of ths mob by setting a new name.  A value of null will
     * reset this setting, allowing the mobs TRUE level to be displayed through the
     * displayClassLevel method instead of the string set through this one.
     * @see com.planet_ink.coffee_mud.CharClasses.interfaces.CharClass
     * @see #displayClassName()
     * @see #displayClassLevel(MOB, boolean)
     * @see #displayClassLevelOnly(MOB)
     * @see #setDisplayClassName(String)
     * @param newlevel the name of the mobs apparant level
     */
	public void setDisplayClassLevel(String newlevel);
    /**
     * Returns the displayable name of this mobs current class.  If this method
     * is called on the mobs charStats() object, as opposed to baseCharStats(), it
     * may return something different than charStats().getCurrentClass().name().  For this
     * reason, you should ONLY use this method when you want to display the mobs
     * current class.
     * @see com.planet_ink.coffee_mud.CharClasses.interfaces.CharClass
     * @see #setDisplayClassName(String)
     * @see #displayClassLevel(MOB, boolean)
     * @see #displayClassLevelOnly(MOB)
     * @return the name of this mobs current class.
     */
	public String displayClassName();
    /**
     * Returns a combination of the displayClassName and displayClassLevel for
     * the given mob.  If either are null, authentic values will be used.
     * @see com.planet_ink.coffee_mud.CharClasses.interfaces.CharClass
     * @see #displayClassName()
     * @see #setDisplayClassName(String)
     * @see #displayClassLevelOnly(MOB)
     * @param mob the mob whose class and overall level to display
     * @param shortForm if true, display only the class and level, no extra wording
     * @return the name of this mobs current class.
     */
	public String displayClassLevel(MOB mob, boolean shortForm);
    /**
     * Returns either the given mobs authentic classlevel/total level,
     * or the value set through setDisplayClassLevel method.
     * @see com.planet_ink.coffee_mud.CharClasses.interfaces.CharClass
     * @see com.planet_ink.coffee_mud.Common.interfaces.CharStats#displayClassName()
     * @see #setDisplayClassName(String)
     * @see #displayClassLevel(MOB, boolean)
     * @param mob the mob whose class and overall level to display
     * @return the name of this mobs current class.
     */
	public String displayClassLevelOnly(MOB mob);

    /**
     * Resets all of the stats in this object, attributes and saves alike, to
     * the same given value
     * @param def the value to set all stats to.
     */
    public void setAllValues(int def);

    /**
     * Resets all of the basic 1-6 stats in this object, to the same given value
     * @param def the value to set all stats to.
     */
    public void setAllBaseValues(int def);
    
    /**
     * Returns the sum of local and race-based unwearability codes.
     * @see com.planet_ink.coffee_mud.Items.interfaces.Item
     * @return a bitmap of unwearable locations
     */
    public long getWearableRestrictionsBitmap();
    
    /**
     * Sets the sum of local and race-based unwearability codes.
     * @see com.planet_ink.coffee_mud.Items.interfaces.Item
     * @param bitmap a bitmap of unwearable locations
     */
    public void setWearableRestrictionsBitmap(long bitmap);
    
    /**
     * Sets the apparant gender of the mob. If null is used, this value is reset
     * and the mobs real gender name will be displayed through the genderName method
     * instead of the one set here.
     * @see #genderName()
     * @param gname the name of the mobs gender to display
     */
	public void setGenderName(String gname);
    /**
     * Returns the apparant gender of the mob.  If this method
     * is called on the mobs charStats() object, as opposed to baseCharStats(), it
     * may return something different than charStats().getStat(GENDER)  For this
     * reason, you should ONLY use this method when you want to display the mobs
     * current gender.
     * @see #setGenderName(String)
     * @return the apparant gender of the mob
     */
	public String genderName();

    /**
     * Based on the apparant gender of the mob, return the appropriate word "him", "her", or "it".
     * @return the gender-correct pronoun for this mob
     */
	public String himher();
    /**
     * Based on the apparant gender of the mob, return the appropriate word "his", "her", or "its".
     * @return the gender-correct pronoun for this mob
     */
	public String hisher();
    /**
     * Based on the apparant gender of the mob, return the appropriate word "he", "she", or "it".
     * @return the gender-correct pronoun for this mob
     */
	public String heshe();
    /**
     * Based on the apparant gender of the mob, return the appropriate word "He", "She", or "It".
     * @return the gender-correct pronoun for this mob
     */
	public String HeShe();
    /**
     * Based on the apparant gender of the mob, return the appropriate word "sir", "madam", or "sir".
     * @return the gender-correct title for this mob
     */
    public String sirmadam();
    /**
     * Based on the apparant gender of the mob, return the appropriate word "Sir", "Madam", or "Sir".
     * @return the gender-correct title for this mob
     */
    public String SirMadam();
    /**
     * Returns the age category for this mob, based on the age stat constant stored here.  The age
     * categories are defined in the Race interface as AGE_ constants.
     * @see com.planet_ink.coffee_mud.Races.interfaces.Race
     * @return the numeric age category of this mob
     */
	public int ageCategory();
    /**
     * Returns the string name of the age category for this mob, based on the age
     * stat constant stored here.  The age category names are defined in the Race
     * interface in the AGE_DESCS_ constant.
     * @see com.planet_ink.coffee_mud.Races.interfaces.Race#AGE_DESCS
     * @return the name of the age category for this mob
     */
	public String ageName();

    /** string array of abbreviations of each stat code, ordered by numeric value */
    public static final String[] STAT_ABBR=
    {
        "S",
        "I",
        "D",
        "C",
        "CH",
        "W",
        "G",
        "vPY",
        "vF",
        "vC",
        "vW",
        "vG",
        "vMI",
        "V",
        "vJ",
        "vA",
        "vE",
        "vP",
        "vU",
        "vM",
        "vD",
        "vT",
        "mS",
        "mI",
        "mD",
        "mC",
        "mCH",
        "mW",
        "A",
        "vH",
        "vO",
        "vC"
    };

    /** string array of descriptions of each stat code, ordered by numeric value */
    public static final String[] STAT_DESCS=
    {
        "STRENGTH",
        "INTELLIGENCE",
        "DEXTERITY",
        "CONSTITUTION",
        "CHARISMA",
        "WISDOM",
        "GENDER",
        "PARALYSIS SAVE",
        "SAVE VS FIRE",
        "SAVE VS COLD",
        "SAVE VS WATER",
        "SAVE VS GAS",
        "SAVE VS MIND",
        "GENERAL SAVE",
        "JUSTICE SAVE",
        "SAVE VS ACID",
        "SAVE VS ELECTRICITY",
        "SAVE VS POISON",
        "SAVE VS UNDEAD",
        "SAVE VS MAGIC",
        "SAVE VS DISEASE",
        "SAVE VS TRAPS",
        "MAX STRENGTH ADJ.",
        "MAX INTELLIGENCE ADJ.",
        "MAX DEXTERITY ADJ.",
        "MAX CONSTITUTION ADJ.",
        "MAX CHARISMA ADJ.",
        "MAX WISDOM ADJ.",
        "AGE",
        "SAVE VS DETECTION",
        "SAVE VS OVERLOOKING",
        "SAVE VS CONVERSIONS"
    };

    /** string array of descriptions of each stat code, ordered by numeric value */
    public static final String[] STAT_NAMES=
    {
        "STRENGTH",
        "INTELLIGENCE",
        "DEXTERITY",
        "CONSTITUTION",
        "CHARISMA",
        "WISDOM",
        "GENDER",
        "PARALYSIS",
        "FIRE",
        "COLD",
        "WATER",
        "GAS",
        "MIND",
        "GENERAL",
        "JUSTICE",
        "ACID",
        "ELECTRICITY",
        "POISON",
        "UNDEAD",
        "MAGIC",
        "DISEASE",
        "TRAPS",
        "MAXSTRENGTH",
        "MAXINTELLIGENCE",
        "MAXDEXTERITY",
        "MAXCONSTITUTION",
        "MAXCHARISMA",
        "MAXWISDOM",
        "AGE",
        "DETECTION",
        "OVERLOOKING",
        "CONVERSION"
    };

    /** string array of attributable descriptions of each stat code, ordered by numeric value */
    public static final String[] STAT_DESC_ATTS=
    {
        "STRONG",
        "INTELLIGENT",
        "DEXTEROUS",
        "HEALTHY",
        "CHARISMATIC",
        "WISE",
        "",
        "RESISTANT TO PARALYSIS",
        "RESISTANT TO FIRE",
        "RESISTANT TO COLD",
        "RESISTANT TO WATER",
        "RESISTANT TO GAS",
        "RESISTANT TO MIND ATTACKS",
        "RESISTANT",
        "RESISTANT TO UNDIGNIFIED ATTACKS",
        "RESISTANT TO ACID",
        "RESISTANT TO ELECTRICITY",
        "RESISTANT TO POISON",
        "RESISTANT TO UNDEAD",
        "RESISTANT TO MAGIC",
        "RESISTANT TO DISEASE",
        "RESISTANT TO TRAPS",
        "POTENTIALLY STRONG",
        "POTENTIALLY INTELLIGENT",
        "POTENTIALLY DEXTROUS",
        "POTENTIALLY HEALTHY",
        "POTENTIALLY CHARISMATIC",
        "POTENTIALLY WISE",
        "OLD",
        "CONCEALED",
        "WATCHFUL",
        "DOUBTFUL"
    };

    /** an appropriate CMMsg MSG type to correspond to the given saving throw, indexed as STAT_SAVE_ constant */
    public static int[] STAT_MSG_MAP= {-1, // strength
           -1, // intelligence
           -1, // dexterity
           -1, // constitution
           -1, // charisma
           -1, // wisdom
           -1, // gender
            CMMsg.TYP_PARALYZE,
            CMMsg.TYP_FIRE,
            CMMsg.TYP_COLD,
            CMMsg.TYP_WATER,
            CMMsg.TYP_GAS,
            CMMsg.TYP_MIND,
            CMMsg.TYP_GENERAL,
            CMMsg.TYP_JUSTICE,
            CMMsg.TYP_ACID,
            CMMsg.TYP_ELECTRIC,
            CMMsg.TYP_POISON,
            CMMsg.TYP_UNDEAD,
            CMMsg.TYP_CAST_SPELL,
            CMMsg.TYP_DISEASE,
            -1, // traps
            -1, // max str
            -1, // max int
            -1, // max
            -1, // max dex
            -1, // max con
            -1, // max cha
            -1, // max wis
            -1, // age
            -1, // save conceilment
            -1, // save overlooking
            -1, // save conversion
           };

}