diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-03-15 10:13:18 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-03-15 10:13:18 -0300 |
commit | 1fe59054c15bcb893ff9266586288143008d57a0 (patch) | |
tree | dce9b71226a876280cfa9cba8fd549546c4803c9 | |
parent | 1f1d33a851b787f7a19a0bd692f54112ec546f9f (diff) | |
download | serverdata-1fe59054c15bcb893ff9266586288143008d57a0.tar.gz serverdata-1fe59054c15bcb893ff9266586288143008d57a0.tar.bz2 serverdata-1fe59054c15bcb893ff9266586288143008d57a0.tar.xz serverdata-1fe59054c15bcb893ff9266586288143008d57a0.zip |
OVH Fire skill
-rw-r--r-- | db/constants.conf | 1 | ||||
-rw-r--r-- | db/re/item_db.conf | 1 | ||||
-rw-r--r-- | db/re/skill_db.conf | 15 | ||||
-rw-r--r-- | db/re/skill_tree.conf | 1 | ||||
-rw-r--r-- | npc/functions/hub.txt | 3 | ||||
-rw-r--r-- | npc/magic/ovh.txt | 13 | ||||
-rw-r--r-- | npc/scripts.conf | 1 |
7 files changed, 34 insertions, 1 deletions
diff --git a/db/constants.conf b/db/constants.conf index c00be49a4..7e14026dc 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -2234,6 +2234,7 @@ constants_db: { FX_SUCCESS: 27 FX_FAILURE: 28 FX_CUPID: 34 + FX_HELLBLAZE: 36 FX_SMOKE: 50 FX_GRENADE: 51 FX_SMOKEBOMB: 52 diff --git a/db/re/item_db.conf b/db/re/item_db.conf index dbfe5d559..04e9adc87 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -5893,6 +5893,7 @@ item_db: ( bonus bDefEle, Ele_Fire; bonus2 bMagicAddEle, Ele_Fire, 25; bonus2 bMagicAtkEle, Ele_Fire, 25; + skill TMW2_OVHFIRE, 1; "> }, { diff --git a/db/re/skill_db.conf b/db/re/skill_db.conf index 7fedcb1b9..100064157 100644 --- a/db/re/skill_db.conf +++ b/db/re/skill_db.conf @@ -38457,7 +38457,20 @@ skill_db: ( SPCost: 35 } }, -// 20004~20009 reserved for TMW/Evol +{ + Id: 20004 + Name: "TMW2_OVHFIRE" + Description: "OVH Fire" + MaxLevel: 1 + CoolDown: 60000 + SkillType: { + Self: true + } + SkillInfo: { + Quest: true + } +}, +// 20005~20009 reserved for TMW/Evol { Id: 20010 Name: "TMW2_SKILLPERMIT" diff --git a/db/re/skill_tree.conf b/db/re/skill_tree.conf index 247d85fe4..5b474e77d 100644 --- a/db/re/skill_tree.conf +++ b/db/re/skill_tree.conf @@ -45,6 +45,7 @@ Human: { AL_DP: 0 TMW2_OVERLOAD: 0 TMW2_STUDY: 0 + TMW2_OVHFIRE: 0 // Transmigration Skills TMW2_PARUM: 0 diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index cbbf33592..b03a47253 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -290,6 +290,9 @@ function script HUB_SkillInvoke { case TMW2_CRAFT: UserCtrlPanel(); break; + case TMW2_OVHFIRE: + SK_OVHFire(); + break; case TMW2_MPREGEN: SK_mpregen(); break; diff --git a/npc/magic/ovh.txt b/npc/magic/ovh.txt new file mode 100644 index 000000000..476be292c --- /dev/null +++ b/npc/magic/ovh.txt @@ -0,0 +1,13 @@ +// TMW2 script +// Author: Jesusalva <admin@tmw2.org> +// +// Magic Script: TMW2_OVHFIRE +// +// Burns down the user to a toast, but they'll survive, because they are awesome. + +function script SK_OVHFire { + specialeffect FX_HELLBLAZE, AREA, getcharid(3); + return; +} + + diff --git a/npc/scripts.conf b/npc/scripts.conf index 1e5a2422e..290624ea8 100644 --- a/npc/scripts.conf +++ b/npc/scripts.conf @@ -127,6 +127,7 @@ "npc/magic/forget.txt", "npc/magic/guild.txt", "npc/magic/mpregen.txt", +"npc/magic/ovh.txt", "npc/magic/parum.txt", "npc/magic/plantkingdom.txt", "npc/magic/revive.txt", |