Skip to content

Commit

Permalink
Magic.conf: fixing spells #A14 #A15
Browse files Browse the repository at this point in the history
to use the Astral procedure of summon spells.
  • Loading branch information
tux9th committed Dec 7, 2013
1 parent dfee15b commit 2463136
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions world/map/conf/magic.conf.template
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 2463136

Please sign in to comment.