diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-25 22:36:22 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-25 22:36:22 +0000 |
commit | 786e158717dec493ff9dfa573220b1084a557953 (patch) | |
tree | 5b90c2d8dc5764922f504738b53bbd9ce3d600ad /npc/quests/skills/wizard_skills.txt | |
parent | 66a202583057448a0ef1827e8aace0188793e8a7 (diff) | |
download | hercules-786e158717dec493ff9dfa573220b1084a557953.tar.gz hercules-786e158717dec493ff9dfa573220b1084a557953.tar.bz2 hercules-786e158717dec493ff9dfa573220b1084a557953.tar.xz hercules-786e158717dec493ff9dfa573220b1084a557953.zip |
Replacing specialeffect/2 numerics with constants in quests.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13237 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/skills/wizard_skills.txt')
-rw-r--r-- | npc/quests/skills/wizard_skills.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/npc/quests/skills/wizard_skills.txt b/npc/quests/skills/wizard_skills.txt index 2b190e063..1e8f67419 100644 --- a/npc/quests/skills/wizard_skills.txt +++ b/npc/quests/skills/wizard_skills.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= Lupus, Reddozen //===== Current Version: ===================================== -//= 1.4 +//= 1.5 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -11,6 +11,7 @@ //= Quests for skills: Sight Blaster //===== Additional Comments: ================================= //= 1.4 Rescripted to Aegis 10.3 stadards. [L0ne_W0lf] +//= 1.5 Replaced effect numerics with constants. [L0ne_W0lf] //============================================================ gef_tower,115,36,4 script Meow#q_wiz 876,{ @@ -26,7 +27,7 @@ gef_tower,115,36,4 script Meow#q_wiz 876,{ mes "Alright, here's your lesson!"; next; mes "^3355FF*BAM! BOOM! CRASH!*^000000"; - specialeffect2 183; // EF_SUI_EXPLOSION + specialeffect2 EF_SUI_EXPLOSION; next; mes "[Meow]"; mes "Don't you dare get"; @@ -40,7 +41,7 @@ gef_tower,115,36,4 script Meow#q_wiz 876,{ mes "the Sight Blaster skill before"; mes "Meow can administer another"; mes "vicious beating to you."; - specialeffect2 253; // EF_ABSORBSPIRITS + specialeffect2 EF_ABSORBSPIRITS; skill "WZ_SIGHTBLASTER",1,0; next; mes "[Meow]"; @@ -264,7 +265,7 @@ gef_tower,115,36,4 script Meow#q_wiz 876,{ mes "you to cast Sight before you"; mes "can activate it. Now try it."; next; - specialeffect2 183; // EF_SUI_EXPLOSION + specialeffect2 EF_SUI_EXPLOSION; mes "^3355FF*BAM! BOOM!*^000000"; next; mes "[Meow]"; @@ -288,7 +289,7 @@ gef_tower,115,36,4 script Meow#q_wiz 876,{ mes "You actually learned it!"; mes "That took way too much effort,"; mes "but at least we're done here."; - specialeffect2 253; // EF_ABSORBSPIRITS + specialeffect2 EF_ABSORBSPIRITS; delitem 991,10; //Crystal_Blue delitem 993,10; //Yellow_Live delitem 990,10; //Boody_Red |