rle.core.charm
Interface Charm

All Known Subinterfaces:
TemporaryCharm
All Known Implementing Classes:
CharmBase, TimedCharm

public interface Charm

A Charm is any game affect. Examples include speed due to quaffing a potion of speed and being temporarily blinded by a flash of light.


Method Summary
 java.util.Map<java.lang.String,java.lang.Object> getAttributes()
          Any attributes used to direct the course of this TemporaryCharm.
 Cause getCause()
          The cause of this charm, for example quaffing a potion of speed.
 Thing getTarget()
           
 void setAttributes(java.util.Map<java.lang.String,java.lang.Object> attributes)
           
 void setCause(Cause c)
           
 void setTarget(Thing target)
           
 void startCharm()
          Start this charm.
 

Method Detail

startCharm

void startCharm()
Start this charm.


getCause

Cause getCause()
The cause of this charm, for example quaffing a potion of speed.

Returns:

setCause

void setCause(Cause c)

getAttributes

java.util.Map<java.lang.String,java.lang.Object> getAttributes()
Any attributes used to direct the course of this TemporaryCharm.


setAttributes

void setAttributes(java.util.Map<java.lang.String,java.lang.Object> attributes)

getTarget

Thing getTarget()

setTarget

void setTarget(Thing target)