wyvern.kernel.combat.damages
Class StabDamage

java.lang.Object
  extended bywyvern.kernel.combat.DamageType
      extended bywyvern.kernel.combat.damages.StabDamage
All Implemented Interfaces:
MeleeDamage
Direct Known Subclasses:
BiteDamage, StingDamage

public class StabDamage
extends DamageType
implements MeleeDamage

Stabbing/poking 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
StabDamage()
          Required no-arg constructor for Class.newInstance()
StabDamage(int wc)
          Constructs a new StabDamage
 
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

StabDamage

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


StabDamage

public StabDamage(int wc)
Constructs a new StabDamage

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).