diff options
author | Fate <fate-tmw@googlemail.com> | 2009-01-29 15:46:14 -0700 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2009-01-29 15:46:14 -0700 |
commit | c7283150f0b331508b62262be149d91ccf5f0fce (patch) | |
tree | d75a80b5028922403269dd060cd3fce716223198 | |
parent | be353ed4ca60438bee73a59711eef109139abe08 (diff) | |
download | serverdata-c7283150f0b331508b62262be149d91ccf5f0fce.tar.gz serverdata-c7283150f0b331508b62262be149d91ccf5f0fce.tar.bz2 serverdata-c7283150f0b331508b62262be149d91ccf5f0fce.tar.xz serverdata-c7283150f0b331508b62262be149d91ccf5f0fce.zip |
Fixed lay-on-hands to require life magic level 2
-rw-r--r-- | conf/magic.conf.template | 1 | ||||
-rw-r--r-- | npc/001-1_Tulimshar/bard.txt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/conf/magic.conf.template b/conf/magic.conf.template index 2f475aa5..69b6c019 100644 --- a/conf/magic.conf.template +++ b/conf/magic.conf.template @@ -426,6 +426,7 @@ SPELL lay-on-hands (target : STRING) : "#L10" = IN (MANA 10, CASTTIME 500, REQUIRE hp(caster) > max_hp(caster) / 20, REQUIRE skill(caster, MAGIC) > level, + REQUIRE skill(caster, school) > level, REQUIRE if_then_else(failed(pc(target)), 1, (rdistance(location(caster), location(pc(target))) < 2 + (spellpower / 50)) diff --git a/npc/001-1_Tulimshar/bard.txt b/npc/001-1_Tulimshar/bard.txt index 8b416ec5..3aa33668 100644 --- a/npc/001-1_Tulimshar/bard.txt +++ b/npc/001-1_Tulimshar/bard.txt @@ -4,7 +4,7 @@ setarray @songs$, "\"There once was a bard, who had it hard, because a man in dark green, was very mean.\"", "\"At Hurnscald inn, there was a person of fairest skin, declining wedding bands from quite a many hands.\"", "\"As the Sun sets down in the forest's brown, she whom the fragrance holds counts her gold.\""; - set @name$, "Bill Ballshaker the Bard"; + set @name$, "Bill Ballshaker the Bardフェイト"; mes "[" + @name$ + "]"; if (Sex) mes "\"Greetings, traveler! Have you come to listen to my stories?\""; |