mora.txt 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. //===== rAthena Script =======================================
  2. //= Mora Village
  3. //===== By: ==================================================
  4. //= SuperHulk
  5. //===== Current Version: =====================================
  6. //= 1.1a
  7. //===== Compatible With: =====================================
  8. //= rAthena SVN
  9. //===== Description: =========================================
  10. //= Mora Town Script
  11. //===== Additional Comments: =================================
  12. //= 1.0 First version. [SuperHulk]
  13. //= 1.1 Translations to English. [Flaid]
  14. //= 1.1a Standardized. [Euphy]
  15. //============================================================
  16. mora,185,163,5 script Mora Citizen#1 516,{
  17. mes "[Scholar Gary]";
  18. mes "Hello, traveler!";
  19. mes "I'm Gary, the expert about enchantments in this area.";
  20. mes "What do you want to know?";
  21. next;
  22. switch(select("Fundamentals of enchantment.:Nothing.")) {
  23. case 1:
  24. mes "[Scholar Gary]";
  25. mes "Ah, I see that you are interested";
  26. mes "in enchantments!";
  27. mes "Alright, here are the basics!!";
  28. mes "After this you should understand";
  29. mes "the mysteries of our enchantments!";
  30. next;
  31. mes "[Scholar Gary]";
  32. mes "First of all, you must know";
  33. mes "that this is magic, not an";
  34. mes "exact science.";
  35. next;
  36. mes "[Scholar Gary]";
  37. mes "You don't really know what will";
  38. mes "happen. You can be lucky or";
  39. mes "unlucky, and get a more or";
  40. mes "less powerful enchantment.";
  41. next;
  42. mes "[Scholar Gary]";
  43. mes "You can miss the magic, too!";
  44. mes "If this happens while your equip";
  45. mes "is being enchanted, you'll lose it";
  46. mes "all previous enchantments, cards, and the refine!";
  47. next;
  48. mes "[Scholar Gary]";
  49. mes "There is also a risk of";
  50. mes "breaking your equipment";
  51. mes "while trying to enchant";
  52. mes "your equip with a second enchantment!";
  53. next;
  54. mes "[Scholar Gary]";
  55. mes "Each attempt to enchant will cost";
  56. mes "you 1 Mora coin and 100,000 zeny.";
  57. mes "If you don't know yet, the money";
  58. mes "made with this service goes";
  59. mes "straight to the people of Mora!";
  60. next;
  61. mes "[Scholar Gary]";
  62. mes "Those were the basics.";
  63. mes "Take them to your heart.";
  64. mes "For more details, you can";
  65. mes "always visit my master,";
  66. mes "Gougueulé Tonami!";
  67. close;
  68. case 2:
  69. mes "[Scholar Gary]";
  70. mes "Goodbye, and good luck!";
  71. close;
  72. }
  73. }
  74. mora,52,138,8 script Mora Citizen#2 516,{
  75. mes "[Valere]";
  76. mes "Hello, adventurer!";
  77. mes "You look like you're";
  78. mes "lost, aren't you!?";
  79. next;
  80. mes "[Valere]";
  81. mes "...";
  82. mes "Ah, okay.";
  83. mes "But you look like you want to";
  84. mes "enchant your equipment!";
  85. next;
  86. mes "[Valere]";
  87. mes "I only need to know one thing";
  88. mes "before telling you more about";
  89. mes "the Mora equipment enchants!";
  90. mes "So tell me, what is your class?";
  91. next;
  92. switch(select("Warlock.:Arch Bishop.:Ranger.:Guillotine Cross.:Rune Knight.:Other.:Goodbye.")) {
  93. case 1:
  94. mes "[Valere]";
  95. mes "Hmm, you should visit the";
  96. mes "Artifact Crafter.";
  97. mes "That is our enchantment specialist";
  98. mes "for Warlock equipment!";
  99. close;
  100. case 2:
  101. mes "[Valere]";
  102. mes "Hmm, you should visit the";
  103. mes "Master of Relics.";
  104. mes "That is our enchantment specialist";
  105. mes "for Arch Bishop equipment!";
  106. close;
  107. case 3:
  108. case 4:
  109. case 5:
  110. mes "[Valere]";
  111. mes "Hmm, you should visit the";
  112. mes "Artifact Researcher.";
  113. mes "That is our enchantment specialist";
  114. mes "for Ranger, Guillotine Cross,";
  115. mes "and Rune Knight equipment!";
  116. close;
  117. case 6:
  118. mes "[Valere]";
  119. mes "Hmm, there is the Master Tailor";
  120. mes "who sells and enchants the 'Army Padding'.";
  121. next;
  122. mes "[Valere]";
  123. mes "There's also the Pendant Crafter";
  124. mes "who enchants 'Pendant of Guardian'.";
  125. next;
  126. mes "[Valere]";
  127. mes "And finally the Bulberry Westhood";
  128. mes "who enchants 'Loki's muffler'.";
  129. close;
  130. case 7:
  131. mes "[Valere]";
  132. mes "Goodbye, and good luck!";
  133. close;
  134. }
  135. }