wyvern.kernel.combat.damages
Class CutDamage

java.lang.Object
  extended bywyvern.kernel.combat.DamageType
      extended bywyvern.kernel.combat.damages.CutDamage
All Implemented Interfaces:
MeleeDamage

public class CutDamage
extends DamageType
implements MeleeDamage

Cutting/slashing damage.

Version:
1.0, Aug 23, 1999
Author:
Steve Yegge

Field Summary
static java.lang.String[] DAMAGE_YOU_MSGS
           
static java.lang.String[] YOU_DAMAGE_MSGS
           
 
Fields inherited from class wyvern.kernel.combat.DamageType
INANIMATE_DAMAGE_MSGS, wc_
 
Constructor Summary
CutDamage()
          Required no-arg constructor for Class.newInstance()
CutDamage(int wc)
          Constructs a new CutDamage
 
Method Summary
 java.lang.String[] getAttackerMessages()
          Returns an array of messages from least to most.
 java.lang.String[] getDefenderMessages()
          Returns an array of messages from least to most.
 java.lang.String getShortName()
          Returns "fire", "cold", "smash" or whatever else is used in the archetype files for this damage type.
 
Methods inherited from class wyvern.kernel.combat.DamageType
createClone, getAttackerMessagesInanimate, getAttackerMsg, getDamageClass, getDefenderMsg, getNegativeDamageAttackerMessage, getNegativeDamageDefenderMessage, getNoDamageAttackerMessage, getNoDamageDefenderMessage, getWC, setWC, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

YOU_DAMAGE_MSGS

public static final java.lang.String[] YOU_DAMAGE_MSGS

DAMAGE_YOU_MSGS

public static final java.lang.String[] DAMAGE_YOU_MSGS
Constructor Detail

CutDamage

public CutDamage()
Required no-arg constructor for Class.newInstance()


CutDamage

public CutDamage(int wc)
Constructs a new CutDamage

Method Detail

getShortName

public java.lang.String getShortName()
Returns "fire", "cold", "smash" or whatever else is used in the archetype files for this damage type.

Specified by:
getShortName in class DamageType
Returns:
the damage name

getAttackerMessages

public java.lang.String[] getAttackerMessages()
Returns an array of messages from least to most.

Overrides:
getAttackerMessages in class DamageType
Returns:
an array of messages to send to the attacker, depending on the damage done. Default messages are for physical attacks (cut/stab/smash).

getDefenderMessages

public java.lang.String[] getDefenderMessages()
Returns an array of messages from least to most.

Overrides:
getDefenderMessages in class DamageType
Returns:
an array of messages to send to the defender depending on the damage done. Default messages are for physical attacks (cut/stab/smash).