wyvern.kernel.combat.damages
Class PoisonDamage

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

public class PoisonDamage
extends DamageType
implements MeleeDamage

Poison/corrosion.

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

PoisonDamage

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


PoisonDamage

public PoisonDamage(int wc)
Constructs a new PoisonDamage

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