diff options
Diffstat (limited to 'npc/027-2/colin.txt')
-rw-r--r-- | npc/027-2/colin.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/npc/027-2/colin.txt b/npc/027-2/colin.txt index ac3d1f82e..ce4ad4b4c 100644 --- a/npc/027-2/colin.txt +++ b/npc/027-2/colin.txt @@ -85,11 +85,15 @@ function basicMagic { mes l(".:: Frost Diver ::."); mesc l("Basic ice single target attack. May freeze targets."); mes ""; + mes l(".:: Meteor Strike ::."); + mesc l("Basic earth single target attack. May stun targets."); + mes ""; menuint l("Fire Arrow"), TMW2_FIREARROW, l("Napalm Beat"), TMW2_NAPALMBEAT, l("Magic Strike"), TMW2_MAGICSTRIKE, l("Frost Diver"), TMW2_FROSTDIVER, + l("Meteor Strike"), TMW2_METEORSTRIKE, l("Cancel"), 0; return; } @@ -108,6 +112,9 @@ function standardMagic { mes l(".:: Frost Nova ::."); mesc l("Basic ice area attack. May freeze targets."); mes ""; + mes l(".:: Meteor Shower ::."); + mesc l("Basic earth area attack. May stun targets."); + mes ""; mes l(".:: Firewalk ::."); mesc l("Superior damage on enemies who walk over the fire."); mes ""; @@ -116,6 +123,7 @@ function standardMagic { l("Holy Light"), TMW2_HOLYLIGHT, l("Lightning Bolt"), TMW2_LIGHTNINGBOLT, l("Frost Nova"), TMW2_FROSTNOVA, + l("Meteor Shower"), TMW2_METEORSHOWER, l("Firewalk"), SO_FIREWALK, l("Cancel"), 0; return; @@ -135,11 +143,15 @@ function advancedMagic { mes l(".:: Nilfheim ::."); mesc l("Basic ice area attack. Freeze targets in a big area."); mes ""; + mes l(".:: Gaia Break ::."); + mesc l("Destroys everything in a line (earth). Boosts allied forces DEF."); + mes ""; menuint l("Armageddon"), TMW2_ARMAGEDDON, l("Judgment"), TMW2_JUDGMENT, l("Tempest"), TMW2_TEMPEST, l("Nilfheim"), TMW2_NILFHEIM, + l("Gaia Break"), TMW2_GAIABREAK, l("Cancel"), 0; return; } |