diff options
author | Fate <fate-tmw@googlemail.com> | 2009-06-16 07:56:53 +0000 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2009-06-16 07:56:53 +0000 |
commit | 33bf6e3a1298e9cadde7cda8b5a9157b7facd966 (patch) | |
tree | e2c61152fc54ca848f12756ddc9f4e8c94b3088b /conf/magic.conf.template | |
parent | e2780cb029aa6c8951b7afb1cff57ecd20ef329e (diff) | |
download | serverdata-33bf6e3a1298e9cadde7cda8b5a9157b7facd966.tar.gz serverdata-33bf6e3a1298e9cadde7cda8b5a9157b7facd966.tar.bz2 serverdata-33bf6e3a1298e9cadde7cda8b5a9157b7facd966.tar.xz serverdata-33bf6e3a1298e9cadde7cda8b5a9157b7facd966.zip |
Tondar now hands out the ask-magic-progress spell
Diffstat (limited to 'conf/magic.conf.template')
-rw-r--r-- | conf/magic.conf.template | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/conf/magic.conf.template b/conf/magic.conf.template index aa37257b..0dbbaba4 100644 --- a/conf/magic.conf.template +++ b/conf/magic.conf.template @@ -232,19 +232,29 @@ SPELL ask-magic-exp : "#G01" = THEN max_experience = 1200; ELSE max_experience = 100; - ratio = (10 * experience) / max_experience; + ratio = (10 * experience - random(max_experience / 30)) / max_experience; #Randomness: jitter a bit at the transitions to give more precise information if used frequently IF ratio >= 10 - THEN message(caster, "You feel that are ready to advance to the next level of magic."); + THEN message(caster, "You feel in perfect control of your magic."); ELSE IF ratio >= 9 - THEN message(caster, "You feel that are very close to having the prowess needed to advance to the next level of magic."); + THEN message(caster, "You feel in almost perfect control of your magic."); + ELSE IF ratio >= 8 + THEN message(caster, "You feel that you have very good control of your magic."); ELSE IF ratio >= 7 - THEN message(caster, "You feel quite skilled at this level of magic but still need to get used to some more corner cases before you can advance."); + THEN message(caster, "You feel quite in control of your magic."); + ELSE IF ratio >= 6 + THEN message(caster, "You feel mostly in control of your magic."); ELSE IF ratio >= 5 - THEN message(caster, "You feel competent at this level of magic but realise that you must practice more."); + THEN message(caster, "You feel somewhat in control of your magic."); + ELSE IF ratio >= 4 + THEN message(caster, "You feel somewhat uneasy about controlling your magic."); ELSE IF ratio >= 3 - THEN message(caster, "You feel that you have grasped the basics of this level of magic, but still have some way to go."); - ELSE message (caster, "You feel that you are still at the beginning of your quest for mastering this level of magic."); + THEN message(caster, "Trying to control your magic makes you quite uncomfortable."); + ELSE IF ratio >= 2 + THEN message(caster, "You feel that you have only the bare minimum of control over your magic."); + ELSE IF ratio >= 1 + THEN message(caster, "You feel quite overwhelmed by your magic, but are beginning to see patterns."); + ELSE message (caster, "You feel completely overwhelmed by your magic."); ) # SPELL ask-life-magic-exp : "#G02" = |