diff options
author | tux9th <mr.x@aon.at> | 2013-12-07 21:48:56 +0100 |
---|---|---|
committer | tux9th <mr.x@aon.at> | 2013-12-07 21:48:56 +0100 |
commit | 2463136afc6b40912cdbb05ee1d2f07c70fb3eb4 (patch) | |
tree | 0ff48c44d1be26079df52520fc24fc19cf24498a /world/map/conf | |
parent | dfee15b173c5a431cc72c7bef267521e169de6ec (diff) | |
download | serverdata-2463136afc6b40912cdbb05ee1d2f07c70fb3eb4.tar.gz serverdata-2463136afc6b40912cdbb05ee1d2f07c70fb3eb4.tar.bz2 serverdata-2463136afc6b40912cdbb05ee1d2f07c70fb3eb4.tar.xz serverdata-2463136afc6b40912cdbb05ee1d2f07c70fb3eb4.zip |
Magic.conf: fixing spells #A14 #A15
to use the Astral procedure of summon spells.
Diffstat (limited to 'world/map/conf')
-rw-r--r-- | world/map/conf/magic.conf.template | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/conf/magic.conf.template b/world/map/conf/magic.conf.template index 29f2ade5..769ec572 100644 --- a/world/map/conf/magic.conf.template +++ b/world/map/conf/magic.conf.template @@ -1026,7 +1026,7 @@ LOCAL SPELL summon-mouboo : "#A14" = => EFFECT CALL adjust_spellpower(school); CALL default_effect(); CALL gain_xp(2, 37); - CALL summon_dark_spell(1028, 1 + spellpower / 270 , 4000 - (spellpower * 9), spellpower * 100, 2); + CALL summon_spell(1028, 1 + spellpower / 270 , 4000 - (spellpower * 9), spellpower * 100, 2); LOCAL SPELL summon-pinkie : "#A15" = LET level = 1 @@ -1038,7 +1038,7 @@ LOCAL SPELL summon-pinkie : "#A15" = => EFFECT CALL adjust_spellpower(school); CALL default_effect(); CALL gain_xp(2, 38); - CALL summon_dark_spell(1018, 1 + spellpower / 120, 5000 - (spellpower * 9), spellpower * 150, 2); + CALL summon_spell(1018, 1 + spellpower / 120, 5000 - (spellpower * 9), spellpower * 150, 2); SPELL detect-players : "#G10" = LET level = 1 |