diff options
Diffstat (limited to 'npc/027-0')
-rw-r--r-- | npc/027-0/_import.txt | 1 | ||||
-rw-r--r-- | npc/027-0/enrique.txt | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/npc/027-0/_import.txt b/npc/027-0/_import.txt index 06a62a4f6..000690756 100644 --- a/npc/027-0/_import.txt +++ b/npc/027-0/_import.txt @@ -1,3 +1,4 @@ // Map 027-0: Administration Building // This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/027-0/_warps.txt", "npc/027-0/enrique.txt", diff --git a/npc/027-0/enrique.txt b/npc/027-0/enrique.txt index 282f3781d..f39ae5409 100644 --- a/npc/027-0/enrique.txt +++ b/npc/027-0/enrique.txt @@ -7,6 +7,59 @@ 027-0,46,25,0 script Enrique NPC_BLACKALCHEMIST,{ mesn; mesq l("Hello. I am Enrique, headmaster of The Academy."); + if (!MAGIC_LVL) + close; + do + { + next; + select + l("Thanks!"), + l("What is the Academy?"), + l("What are Magic Skill Points?"), + l("What are Research Points"); + mes ""; + switch (@menu) { + case 1: + goodbye(); + break; + case 2: + mesn; + mesq l("The Academy Island is situated east of Land of Fire Village."); + next; + mesn; + mesq l("It was built by The Alliance, and can be accessed by a ship in Tulimshar."); + next; + mesn; + mesq l("As you may be aware, the Magic Council is in Tulim, after all."); + next; + mesn; + mesq l("Here you can find professors, academics and researchers. Feel free to enroll in any class as well."); + break; + case 3: + mesn; + mesq l("Simply put, they are raw power."); + next; + mesn; + mesq l("There is only so much magical power your body can handle without breaking."); + next; + mesn; + mesq l("By \"breaking\", I do not mean death. It is something worse."); + next; + mesn; + mesq l("How to expand this limit? Well, you'll need to touch a Mana Stone. If you can handle more raw power, your limit will extend."); + next; + mesn; + mesq l("It also increases naturally as you grow, albeit less."); + next; + mesn; + mesq l("Keep in mind, we at the Academy do not have a Mana Stone."); + break; + case 4: + mesn; + mesq l("It is something not yet fully implemented."); + break; + } + } while (@menu != 1); close; OnInit: |