com.planet_ink.coffee_mud.Races
Class Kitten

java.lang.Object
  extended by com.planet_ink.coffee_mud.Races.StdRace
      extended by com.planet_ink.coffee_mud.Races.Cat
          extended by com.planet_ink.coffee_mud.Races.Kitten
All Implemented Interfaces:
CMModifiable, CMObject, MsgListener, StatsAffecting, Tickable, Race, java.lang.Cloneable, java.lang.Comparable<CMObject>

public class Kitten
extends Cat


Field Summary
protected static java.util.Vector resources
           
 
Fields inherited from class com.planet_ink.coffee_mud.Races.StdRace
CODES, empty, mappedCulturalAbilities, naturalWeapon, naturalWeaponChoices, outfitChoices, racialAbilityMap, racialEffectMap
 
Fields inherited from interface com.planet_ink.coffee_mud.Races.interfaces.Race
AGE_ANCIENT, AGE_CHILD, AGE_DESCS, AGE_INFANT, AGE_MATURE, AGE_MIDDLEAGED, AGE_OLD, AGE_TODDLER, AGE_VENERABLE, AGE_YOUNGADULT, BODY_ANTENEA, BODY_ARM, BODY_EAR, BODY_EYE, BODY_FOOT, BODY_GILL, BODY_HAND, BODY_HEAD, BODY_LEG, BODY_MOUTH, BODY_NECK, BODY_NOSE, BODY_PARTS, BODY_TAIL, BODY_TORSO, BODY_WAIST, BODY_WEARGRID, BODY_WEARVECTOR, BODY_WING, BODYPARTHASH, BODYPARTSTR, GENFLAG_DESCS, GENFLAG_NOCHARM, GENFLAG_NOCLASS, GENFLAG_NOEXP, GENFLAG_NOFERTILE, GENFLAG_NOLEVELS
 
Fields inherited from interface com.planet_ink.coffee_mud.core.interfaces.Tickable
STATUS_AFFECT, STATUS_ALIVE, STATUS_BEHAVIOR, STATUS_CLASS, STATUS_DEAD, STATUS_END, STATUS_FIGHT, STATUS_MISC, STATUS_MISC2, STATUS_MISC3, STATUS_MISC4, STATUS_MISC5, STATUS_MISC6, STATUS_MISC7, STATUS_NOT, STATUS_OTHER, STATUS_RACE, STATUS_REBIRTH, STATUS_SCRIPT, STATUS_START, STATUS_WEATHER, TICKID_AREA, TICKID_CLAN, TICKID_CLANITEM, TICKID_DEADBODY_DECAY, TICKID_EMAIL, TICKID_EXIT_BEHAVIOR, TICKID_EXIT_REOPEN, TICKID_ITEM_BEHAVIOR, TICKID_ITEM_BOUNCEBACK, TICKID_LIGHT_FLICKERS, TICKID_LIVEAUCTION, TICKID_LONGERMASK, TICKID_MOB, TICKID_QUEST, TICKID_READYTOSTOP, TICKID_ROOM_BEHAVIOR, TICKID_ROOM_ITEM_REJUV, TICKID_SPELL_AFFECT, TICKID_TIMEAUCTION, TICKID_TRAP_DESTRUCTION, TICKID_TRAP_RESET, TICKMASK_SOLITARY, TICKS_PER_RLMIN, TIME_MILIS_PER_MUDHOUR, TIME_TICK, TIME_TICK_DOUBLE
 
Constructor Summary
Kitten()
           
 
Method Summary
 int[] bodyMask()
          Returns an array indexed by body part codes as defined by the BODY_* constants in the Race interface.
 long forbiddenWornBits()
          A bitmap showing which on locations a member of this race can not wear clothing, even if the members have one or more of the required limbs.
 int heightVariance()
          The amount from 0-this to add to the minimum height to achieve a random height.
 java.lang.String ID()
          The CoffeeMud Java Class ID shared by all instances of this object.
 int lightestWeight()
          The lightest weight for a member of this race
 java.util.Vector myResources()
          Returns a Vector of RawMaterial objects (usually GenFoodResource, GenLiquidResource, or GenResource items) representing what is left over of a member of this race after they've been butchered and cut up.
 java.lang.String name()
          The nice displayable name of this instance of this object
 java.lang.String racialCategory()
          Which racial category this race falls in.
 int shortestFemale()
          The minimum height of females of this race.
 int shortestMale()
          The minimum height of males of this race.
 int weightVariance()
          The amount from 0-this to add to the minumum weight to achieve a random weight.
 
Methods inherited from class com.planet_ink.coffee_mud.Races.Cat
affectCharStats, affectEnvStats, arriveStr, availabilityCode, getAgingChart, healthText, leaveStr, myNaturalWeapon
 
Methods inherited from class com.planet_ink.coffee_mud.Races.StdRace
adjustExperienceGain, affectCharState, agingAffects, classless, compareTo, copyOf, culturalAbilities, culturalAbilityNames, culturalAbilityProficiencies, destroyBodyAfterUse, executeMsg, expless, fertile, funHumanoidWeapon, getCodeNum, getCorpseContainer, getSaveStatIndex, getStat, getStatCodes, getTickStatus, healthBuddy, initializeClass, isGeneric, isStat, level, leveless, makeGenRace, makeResource, mixRace, newInstance, okMessage, outfit, practicesAtFirstLevel, racialAbilities, racialAbilityLevels, racialAbilityNames, racialAbilityProficiencies, racialAbilityQuals, racialEffectLevels, racialEffectNames, racialEffectParms, racialEffects, racialParms, sameAs, setHeightWeight, setRacialParms, setStat, startRacing, tick, trainsAtFirstLevel, uncharmable
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

resources

protected static java.util.Vector resources
Constructor Detail

Kitten

public Kitten()
Method Detail

ID

public java.lang.String ID()
Description copied from interface: CMObject
The CoffeeMud Java Class ID shared by all instances of this object. Unlike the Java Class name, this method does not include package information. However, it must return a String value unique to its class category in the ClassLoader. Class categories include Libraries, Common, Areas, Abilities, Behaviors, CharClasses, Commands, Exits Locales, MOBS, Races, WebMacros, Basic Items, Armor, Weapons, ClanItems, MiscTech. The name is typically identical to the class name.

Specified by:
ID in interface CMObject
Overrides:
ID in class Cat
Returns:
the name of this class

name

public java.lang.String name()
Description copied from interface: Tickable
The nice displayable name of this instance of this object

Specified by:
name in interface Tickable
Specified by:
name in interface Race
Overrides:
name in class Cat
Returns:
the displayable name of this object instance

shortestMale

public int shortestMale()
Description copied from interface: Race
The minimum height of males of this race.

Specified by:
shortestMale in interface Race
Overrides:
shortestMale in class Cat
Returns:
minimum height of males in inches

shortestFemale

public int shortestFemale()
Description copied from interface: Race
The minimum height of females of this race.

Specified by:
shortestFemale in interface Race
Overrides:
shortestFemale in class Cat
Returns:
minimum height of females in inches

heightVariance

public int heightVariance()
Description copied from interface: Race
The amount from 0-this to add to the minimum height to achieve a random height.

Specified by:
heightVariance in interface Race
Overrides:
heightVariance in class Cat
Returns:
a range of inches to add to the mimiumum height

lightestWeight

public int lightestWeight()
Description copied from interface: Race
The lightest weight for a member of this race

Specified by:
lightestWeight in interface Race
Overrides:
lightestWeight in class Cat
Returns:
the lightest weight for something of this race

weightVariance

public int weightVariance()
Description copied from interface: Race
The amount from 0-this to add to the minumum weight to achieve a random weight.

Specified by:
weightVariance in interface Race
Overrides:
weightVariance in class Cat
Returns:
a range of pounds to add to the minimum weight

forbiddenWornBits

public long forbiddenWornBits()
Description copied from interface: Race
A bitmap showing which on locations a member of this race can not wear clothing, even if the members have one or more of the required limbs. The bitmap is made from Item.WORN_* constant values.

Specified by:
forbiddenWornBits in interface Race
Overrides:
forbiddenWornBits in class Cat
Returns:
the illegal wear location bitmap
See Also:
Item

racialCategory

public java.lang.String racialCategory()
Description copied from interface: Race
Which racial category this race falls in.

Specified by:
racialCategory in interface Race
Overrides:
racialCategory in class Cat
Returns:
racial category

bodyMask

public int[] bodyMask()
Description copied from interface: Race
Returns an array indexed by body part codes as defined by the BODY_* constants in the Race interface. Each value is either -1 to show that the body part does not apply, 0 to show that the body part is not found on this race, and 1 or more to show how many of that part this race normally has.

Specified by:
bodyMask in interface Race
Overrides:
bodyMask in class Cat
Returns:
an array of body parts

myResources

public java.util.Vector myResources()
Description copied from interface: Race
Returns a Vector of RawMaterial objects (usually GenFoodResource, GenLiquidResource, or GenResource items) representing what is left over of a member of this race after they've been butchered and cut up.

Specified by:
myResources in interface Race
Overrides:
myResources in class Cat
Returns:
a vector of rawmaterial objects
See Also:
RawMaterial