diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-01-02 09:29:20 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-01-02 09:29:20 -0300 |
commit | c9b5bbb2a50b8eaab0ff6c6693dff78c7df6fcb6 (patch) | |
tree | e49143b8406aed10e2cc3e2ba65959e1970dca33 | |
parent | cd2fa3a4842c4f0fbd6f970485fdbfc5850fb3ea (diff) | |
download | serverdata-c9b5bbb2a50b8eaab0ff6c6693dff78c7df6fcb6.tar.gz serverdata-c9b5bbb2a50b8eaab0ff6c6693dff78c7df6fcb6.tar.bz2 serverdata-c9b5bbb2a50b8eaab0ff6c6693dff78c7df6fcb6.tar.xz serverdata-c9b5bbb2a50b8eaab0ff6c6693dff78c7df6fcb6.zip |
Transfer Mana can be learned with Mr. Saves (it's support, after all)
-rw-r--r-- | npc/027-4/saves.txt | 4 | ||||
-rw-r--r-- | npc/config/magic.txt | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/npc/027-4/saves.txt b/npc/027-4/saves.txt index 0d316784e..c337b8019 100644 --- a/npc/027-4/saves.txt +++ b/npc/027-4/saves.txt @@ -63,12 +63,16 @@ function basicMagic { mes l(".:: Chanting ::."); mesc l("Reduces MP cost when using chanting-based skills."); mes ""; + mes l(".:: Transfer Mana ::."); + mesc l("Drains your MP bar to replenish target's. Doesn't go past 100%."); + mes ""; menuint l("First Aid"), TMW2_FIRSTAID, l("Accumulate Power"), HW_MAGICPOWER, l("Provoke"), SM_PROVOKE, l("Windwalker"), SN_WINDWALK, l("Chanting"), TMW2_CHANT, + l("Transfer Mana"), TMW2_MPTRANSFER, l("Cancel"), 0; return; } diff --git a/npc/config/magic.txt b/npc/config/magic.txt index 100eae7ae..8a1f98e28 100644 --- a/npc/config/magic.txt +++ b/npc/config/magic.txt @@ -349,6 +349,10 @@ OnInit: // Chanting RegisterMagic(1, TMW2_CHANT, 5, SpellBookPage, 1, CLASS_SCHOLARSHIP, 25); + // Transfer Mana + RegisterMagic(1, TMW2_MPTRANSFER, 10, SpellBookPage, 1, + CLASS_SCHOLARSHIP, 5); + // Windwalker RegisterMagic(2, SN_WINDWALK, 3, SpellBookPage, 1, CLASS_SCHOLARSHIP, 25); |