You are looking at a message for coders

Some updates:
- The level 2 trainer is a little more user-friendly.
- cast now uses the trigger word 'cast' as you begin casting a spell. Target is the spell, second is the one at which the spell is cast.
- cast heal now uses the trigger word 'heal' whenever it increases health. Hopefully you are the target.
- cast fire now uses the trigger word 'burn' whenever it decreases health. Hopefully, you aren't the target.

If you are coding spells or weapon special attacks, please let Thorn know so he can add your trigger words to the description of cast. Please review this before making up any new words to see if there is one already being used that will work for you. This will keep us from having to code a lot of reactions.

Sample code:

if second of cast then casted;
if target of heal then healed;
if target of burn then burned;

##casted:
say 'msg',"[$actor] wonders what is being cast at it.";

##healed:
say 'msg',"[$actor] smiles.";

##burned:
say 'msg',"[$actor] frowns.";