From 33bf6e3a1298e9cadde7cda8b5a9157b7facd966 Mon Sep 17 00:00:00 2001 From: Fate Date: Tue, 16 Jun 2009 07:56:53 +0000 Subject: Tondar now hands out the ask-magic-progress spell --- conf/magic.conf.template | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) (limited to 'conf/magic.conf.template') 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" = -- cgit v1.2.3-60-g2f50