alchemist_skills.txt 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220
  1. //===== eAthena Script =======================================
  2. //= Alchemist Skills Quests
  3. //===== By: ==================================================
  4. //= Lupus, Reddozen, Samuray22
  5. //===== Current Version: =====================================
  6. //= 2.1a
  7. //===== Compatible With: =====================================
  8. //= eAthena SVN
  9. //===== Description: =========================================
  10. //= [Aegis COnversion]
  11. //= Quests for item: Elemental_Create_Book
  12. //= QUest for skill: Bioethics
  13. //===== Additional Comments: =================================
  14. //= 1.9 Rescripted to Aegis 10.3 stadards. [L0ne_W0lf]
  15. //= 2.0 Rescripted (and re-added) Bio Ethics quest. [L0ne_W0lf]
  16. //= 2.1 Fixed a Resurrection -> Homunculus Resurrection. [L0ne_W0lf]
  17. //= 2.1a Deleted some unused Variables in Bio Ethics quest. [Samuray22]
  18. //============================================================
  19. yuno_in04,33,108,4 script Pisruik#qsk_al 883,{
  20. if (BaseJob == Job_Alchemist) {
  21. if (JobLevel < 40) {
  22. mes "[Pisruik]";
  23. mes "^333333*Cough cough*^000000";
  24. mes "Damn, if only I had";
  25. mes "a little more money";
  26. mes "to buy some medicine.";
  27. mes "I should have stayed";
  28. mes "home today, but...";
  29. close;
  30. }
  31. if (ALCHE_SK == 0) {
  32. mes "[Pisruik]";
  33. mes "^333333*Cough cough*^000000";
  34. mes "Ugh, there's nothing";
  35. mes "worse than working when";
  36. mes "you're supposed to be resting.";
  37. mes "H-hey! Um, what are you doing?";
  38. set ALCHE_SK,1;
  39. next;
  40. mes "[Pisruik]";
  41. mes "Q-quit looking at";
  42. mes "my test results right";
  43. mes "this inst--oh. Wait.";
  44. mes "You're not one of the";
  45. mes "researchers here. Huh.";
  46. next;
  47. mes "[Pisruik]";
  48. mes "Uh... Don't you have";
  49. mes "anything better to do";
  50. mes "than to breathe down my";
  51. mes "back? I'm trying to finish";
  52. mes "something here! Oh, never";
  53. mes "mind, I'm just cranky...";
  54. close;
  55. }
  56. else if (ALCHE_SK == 1) {
  57. mes "[Pisruik]";
  58. mes "You again? You don't seem";
  59. mes "to be doing any research here.";
  60. mes "Is there something you need?";
  61. mes "Though, I'm afraid I can't be";
  62. mes "of very much help to you.";
  63. next;
  64. if (select("What are you working on?:I don't need anything, thanks.") == 1) {
  65. mes "[Pisruik]";
  66. mes "Well, I'm not sure if I can";
  67. mes "give you all of the details.";
  68. mes "You see, everyone here is";
  69. mes "a researcher that can't afford";
  70. mes "to rent a lab for himself. So we all ended up sharing this one.";
  71. next;
  72. mes "[Pisruik]";
  73. mes "Even though we all pitched";
  74. mes "in to rent this lab, we're all";
  75. mes "getting pretty desperate. In";
  76. mes "fact, a few of us have even";
  77. mes "stolen work from each other.";
  78. mes "That's pretty pathetic, huh?";
  79. next;
  80. mes "[Pisruik]";
  81. mes "I guess that's what happens";
  82. mes "when you're poor and don't";
  83. mes "have a day job. Things are";
  84. mes "so bad right now, I can't even";
  85. mes "afford to get new materials!";
  86. mes "What can I possibly do?";
  87. next;
  88. mes "[Pisruik]";
  89. mes "Ah, I've got it! You're";
  90. mes "an adventurer, right?";
  91. mes "If you're still curious about";
  92. mes "my research, I'll tell you more";
  93. mes "about it if you help me out by";
  94. mes "gathering some supplies for me.";
  95. next;
  96. mes "[Pisruik]";
  97. mes "I guess it couldn't do";
  98. mes "much harm if you knew what";
  99. mes "I was working on, anyway.";
  100. mes "I mean, we'd have to be working";
  101. mes "on the same project for you to";
  102. mes "benefit. So, what's your name?";
  103. next;
  104. mes "["+ strcharinfo(0) +"]";
  105. mes "I am called "+ strcharinfo(0) +".";
  106. next;
  107. set ALCHE_SK,2;
  108. mes "[Pisruik]";
  109. mes "Ah, "+ strcharinfo(0) +".";
  110. mes "Would you please bring";
  111. mes "^6600005 Yellow Gemstones^000000,";
  112. mes "^6600004 Empty Potion Bottles^000000,";
  113. mes "^66000010 Hearts of Mermaids^000000,";
  114. mes "and ^66000010 Moth Dust^000000?";
  115. close;
  116. }
  117. mes "[Pisruik]";
  118. mes "If you came here to buy";
  119. mes "Potion Manuals or something";
  120. mes "like that, you've come to the";
  121. mes "wrong guy. Everything you see";
  122. mes "here is for the completion";
  123. mes "of a personal project.";
  124. close;
  125. }
  126. else if (ALCHE_SK == 2) {
  127. mes "[Pisruik]";
  128. mes "Great you're back!";
  129. mes "Let's see, you were";
  130. mes "supposed to bring me";
  131. mes "4 Empty Potion Bottles...";
  132. mes "And... And... What else";
  133. mes "did I ask you to get?";
  134. next;
  135. switch(select("5 Yellow Gemstones:5 Blue Gemstones:5 Red Gemstones")) {
  136. case 1:
  137. mes "[Pisruik]";
  138. mes "Right, right!";
  139. mes "5 Yellow Gemstones.";
  140. mes "That's what I needed.";
  141. mes "I'm sure there was more,";
  142. mes "but what I can't recall exactly... ^FFFFFF ^000000";
  143. next;
  144. if (select("10 Hearts of Mermaid:10 Large Jellopies") == 1) {
  145. mes "[Pisruik]";
  146. mes "Of course!";
  147. mes "10 Hearts of Mermaid!";
  148. mes "How could I forget that?";
  149. mes "And then, the last thing";
  150. mes "I asked you for was, um...";
  151. next;
  152. if (select("10 Frill:10 Moth Dust") == 1) {
  153. mes "[Pisruik]";
  154. mes "No, that can't have";
  155. mes "been it. I already have";
  156. mes "plenty of Frills. Hmmm...";
  157. mes "What am I missing now?";
  158. close;
  159. }
  160. mes "[Pisruik]";
  161. mes "Right. I was just";
  162. mes "about to say that.";
  163. mes "So did you remember";
  164. mes "to bring me everything?";
  165. next;
  166. if (select("No.:Yes!") == 1) {
  167. if (rand(1,5) == 1) {
  168. mes "[Pisruik]";
  169. mes "You didn't...?";
  170. mes "Oh, just admit it.";
  171. mes "You don't want to";
  172. mes "do this for me, right?";
  173. mes "Don't go wasting your";
  174. mes "time just for my sake.";
  175. close;
  176. }
  177. mes "[Pisruik]";
  178. mes "Not yet, huh?";
  179. mes "Though I hope you can";
  180. mes "bring me that stuff as";
  181. mes "soon as possible, you";
  182. mes "don't have to do it, you";
  183. mes "know. Yeah, no big deal.";
  184. close;
  185. }
  186. mes "[Pisruik]";
  187. mes "Really now?";
  188. mes "Well, let me check";
  189. mes "what you brought to";
  190. mes "make sure you didn't";
  191. mes "forget anything. Hm...";
  192. next;
  193. if (countitem(715) > 4 && countitem(1093) > 3 && countitem(950) > 9 && countitem(1057) > 9) {
  194. delitem 715,5; //Yellow_Gemstone
  195. delitem 1093,4; //Empty_Potion
  196. delitem 950,10; //Heart_Of_Mermaid
  197. delitem 1057,10; //Moth_Dust
  198. set ALCHE_SK,3;
  199. mes "[Pisruik]";
  200. mes "Great, it looks like";
  201. mes "everything is here.";
  202. mes "Alright, let me take";
  203. mes "those. Now, guess what";
  204. mes "I'll be making with the";
  205. mes "materials you've brought.";
  206. next;
  207. switch(select("Medicine?:Bomb?")) {
  208. case 1:
  209. set ALCHE_SK,4;
  210. mes "[Pisruik]";
  211. mes "Hahahah, that's right!";
  212. mes "I'm working on making";
  213. mes "a new form of medicine.";
  214. break;
  215. case 2:
  216. set ALCHE_SK,4;
  217. mes "[Pisruik]";
  218. mes "A bomb? Do I look like";
  219. mes "a nutcase to you? No, no...";
  220. mes "I'm developing a new form of";
  221. mes "medicine. Sure, bombs make";
  222. mes "good money, but where would";
  223. mes "I test them? Here? No way!";
  224. break;
  225. }
  226. next;
  227. mes "[Pisruik]";
  228. mes "Anyway, this medicine";
  229. mes "reacts with the human body's";
  230. mes "digestive enzymes to initiate";
  231. mes "temporary metabolic changes";
  232. mes "that artificially stop heat";
  233. mes "absorption into the body.";
  234. next;
  235. mes "[Pisruik]";
  236. mes "The actual effect of this";
  237. mes "medicine is that it greatly";
  238. mes "increases the body's resistance";
  239. mes "to most forms of heat! However,";
  240. mes "it will also reduce resistance";
  241. mes "to cold as a side effect.";
  242. next;
  243. mes "[Pisruik]";
  244. mes "I know my medicine sounds";
  245. mes "a little weird, but think of";
  246. mes "the applications! If used in";
  247. mes "the right situations, this";
  248. mes "medicine may be quite handy.";
  249. next;
  250. mes "[Pisruik]";
  251. mes "Ah, seeing as you're still";
  252. mes "here, would you mind helping";
  253. mes "me again? I need about, hmm,";
  254. mes "20 Maneater Blossoms. If you";
  255. mes "could bring them to me, it'd";
  256. mes "really help me out a lot.";
  257. next;
  258. switch(select("Nope, I'm too busy!:Sure, I'll help you.:What's in it for me?")) {
  259. case 1:
  260. set ALCHE_SK,5;
  261. mes "[Pisruik]";
  262. mes "I guess I'll have to gather";
  263. mes "those on my own. Alright, well,";
  264. mes "seeing as we've both gotten";
  265. mes "what we wanted, I'll suppose";
  266. mes "your business with me is done.";
  267. close;
  268. case 2:
  269. set ALCHE_SK,6;
  270. mes "[Pisruik]";
  271. mes "Thanks, I really";
  272. mes "appreciate it. While";
  273. mes "I'm waiting for you,";
  274. mes "I can start boiling";
  275. mes "the Clover extract.";
  276. next;
  277. select("Clover extract? What's that for?");
  278. mes "[Pisruik]";
  279. mes "Well, I need the Clover";
  280. mes "extract for a compound";
  281. mes "that I'm going to make with";
  282. mes "the Maneater Blossoms. I'm";
  283. mes "kind of weak, so I try not to";
  284. mes "travel too far when I can.";
  285. next;
  286. mes "[Pisruik]";
  287. mes "Yeah, ever since I was";
  288. mes "little, I've had a weak";
  289. mes "heart and bad eyesight.";
  290. mes "The doctor tells me to avoid";
  291. mes "stress and hard work, but";
  292. mes "researching is my life.";
  293. if (Sex == 0) {
  294. next;
  295. mes "[Pisruik]";
  296. mes "I wonder...";
  297. mes "If you understand";
  298. mes "the way I feel, how";
  299. mes "much I've had to sacrifice";
  300. mes "for my dream. Heh, anyway...";
  301. }
  302. next;
  303. mes "[Pisruik]";
  304. mes "I hope you understand that";
  305. mes "it's too dangerous for me to";
  306. mes "gather Maneater Blossoms on";
  307. mes "my own, so if I'm going to get";
  308. mes "as much help as I can. Thanks";
  309. mes "again for being cooperative.";
  310. close;
  311. case 3:
  312. mes "[Pisruik]";
  313. mes "Ha ha ha ha!";
  314. mes "That's real business";
  315. mes "like of you! Alright,";
  316. mes "I may be poor, but if";
  317. mes "you help me, I'll give you";
  318. mes "the results of my research.";
  319. next;
  320. if (select("Nah, I'm too busy.:Alright, I'll help you.") == 1) {
  321. set ALCHE_SK,5;
  322. mes "[Pisruik]";
  323. mes "I guess I'll have to gather";
  324. mes "those on my own. Alright, well,";
  325. mes "seeing as we've both gotten";
  326. mes "what we wanted, I'll suppose";
  327. mes "your business with me is done.";
  328. close;
  329. }
  330. set ALCHE_SK,6;
  331. mes "[Pisruik]";
  332. mes "Thanks, I really";
  333. mes "appreciate it. While";
  334. mes "I'm waiting for you,";
  335. mes "I can start boiling";
  336. mes "the Clover extract.";
  337. next;
  338. select("Clover extract? What's that for?");
  339. mes "[Pisruik]";
  340. mes "Well, I need the Clover";
  341. mes "extract for a compound";
  342. mes "that I'm going to make with";
  343. mes "the Maneater Blossoms. I'm";
  344. mes "kind of weak, so I try not to";
  345. mes "travel too far when I can.";
  346. next;
  347. mes "[Pisruik]";
  348. mes "Yeah, ever since I was";
  349. mes "little, I've had a weak";
  350. mes "heart and bad eyesight.";
  351. mes "The doctor tells me to avoid";
  352. mes "stress and hard work, but";
  353. mes "researching is my life.";
  354. if (Sex == 0) {
  355. next;
  356. mes "[Pisruik]";
  357. mes "I wonder...";
  358. mes "If you understand";
  359. mes "the way I feel, how";
  360. mes "much I've had to sacrifice";
  361. mes "for my dream. Heh, anyway...";
  362. }
  363. next;
  364. mes "[Pisruik]";
  365. mes "I hope you understand that";
  366. mes "it's too dangerous for me to";
  367. mes "gather Maneater Blossoms on";
  368. mes "my own, so if I'm going to get";
  369. mes "as much help as I can. Thanks";
  370. mes "again for being cooperative.";
  371. close;
  372. }
  373. }
  374. else if (countitem(715) == 0 && countitem(1093) == 0 && countitem(950) == 0 && countitem(1057) == 0) {
  375. mes "[Pisruik]";
  376. mes "So you knew what";
  377. mes "you had to bring, came";
  378. mes "to remind me what I had";
  379. mes "forgotten, but didn't bring";
  380. mes "anything? Weird. Ah well.";
  381. mes "Come with the stuff next time.";
  382. close;
  383. }
  384. else {
  385. mes "[Pisruik]";
  386. mes "Oh, this isn't good, some";
  387. mes "of the items I asked for are";
  388. mes "missing. I'm sorry, but Alchemy";
  389. mes "gets dangerously unpredictable";
  390. mes "when things aren't used in just";
  391. mes "the right amounts. Hmmm...";
  392. next;
  393. mes "[Pisruik]";
  394. mes "Well, I can afford to";
  395. mes "push my deadlines back";
  396. mes "if you promise to return";
  397. mes "with the materials I need";
  398. mes "as soon as you possibly can.";
  399. close;
  400. }
  401. }
  402. mes "[Pisruik]";
  403. mes "Large Jellopy?";
  404. mes "Yes, Large--no.";
  405. mes "Wait, that doesn't";
  406. mes "sound right at all.";
  407. mes "No, it was something";
  408. mes "else I need you to get.";
  409. close;
  410. case 2:
  411. mes "[Pisruik]";
  412. mes "Blue Gemstones...?";
  413. mes "No, that was for the";
  414. mes "potion that increases";
  415. mes "tolerance to the Water";
  416. mes "property, I think. What's";
  417. mes "wrong with my memory?!";
  418. close;
  419. case 3:
  420. mes "[Pisruik]";
  421. mes "Red Gemstones...?";
  422. mes "No, that was for the";
  423. mes "potion that increases";
  424. mes "tolerance to the Earth";
  425. mes "property, I think. What's";
  426. mes "wrong with my memory?!";
  427. close;
  428. }
  429. }
  430. else if (ALCHE_SK == 3) {
  431. mes "[Pisruik]";
  432. mes "Why did you just leave?";
  433. mes "You didn't even let me";
  434. mes "finish talking! Oh well,";
  435. mes "maybe it's not your fault.";
  436. mes "Anyway, just so you know,";
  437. mes "I'm developing a new medicine.";
  438. set ALCHE_SK,4;
  439. close;
  440. }
  441. else if (ALCHE_SK == 4) {
  442. //NPC dialogue interrupted
  443. mes "[Pisruik]";
  444. mes "Alright, did you";
  445. mes "want to learn more";
  446. mes "about the medicine that";
  447. mes "I'm developing? I mean,";
  448. mes "that's why you came, right?";
  449. next;
  450. if (select("No, thanks.:Yes, please.") == 1) {
  451. mes "[Pisruik]";
  452. mes "Alright then.";
  453. mes "Really? Well, I'm";
  454. mes "willing to spend the";
  455. mes "time to explain it to";
  456. mes "you. After all, you did";
  457. mes "help me out just then.";
  458. close;
  459. }
  460. mes "[Pisruik]";
  461. mes "I'm working on a new";
  462. mes "form of medicine that,";
  463. mes "hopefully, will be used";
  464. mes "for the betterment and";
  465. mes "protection of mankind!";
  466. next;
  467. mes "[Pisruik]";
  468. mes "Anyway, this medicine";
  469. mes "reacts with the human body's";
  470. mes "digestive enzymes to initiate";
  471. mes "temporary metabolic changes";
  472. mes "that artificially stop heat";
  473. mes "absorption into the body.";
  474. next;
  475. mes "[Pisruik]";
  476. mes "The actual effect of this";
  477. mes "medicine is that it greatly";
  478. mes "increases the body's resistance";
  479. mes "to most forms of heat! However,";
  480. mes "it will also reduce resistance";
  481. mes "to cold as a side effect.";
  482. next;
  483. mes "[Pisruik]";
  484. mes "I know my medicine sounds";
  485. mes "a little weird, but think of";
  486. mes "the applications! If used in";
  487. mes "the right situations, this";
  488. mes "medicine may be quite handy.";
  489. next;
  490. mes "[Pisruik]";
  491. mes "Ah, seeing as you're still";
  492. mes "here, would you mind helping";
  493. mes "me again? I need about, hmm,";
  494. mes "20 Maneater Blossoms. If you";
  495. mes "could bring them to me, it'd";
  496. mes "really help me out a lot.";
  497. next;
  498. switch(select("Nope, I'm too busy!:Sure, I'll help you.:What's in it for me?")) {
  499. case 1:
  500. set ALCHE_SK,5;
  501. mes "[Pisruik]";
  502. mes "I guess I'll have to gather";
  503. mes "those on my own. Alright, well,";
  504. mes "seeing as we've both gotten";
  505. mes "what we wanted, I'll suppose";
  506. mes "your business with me is done.";
  507. close;
  508. case 2:
  509. set ALCHE_SK,6;
  510. mes "[Pisruik]";
  511. mes "Thanks, I really";
  512. mes "appreciate it. While";
  513. mes "I'm waiting for you,";
  514. mes "I can start boiling";
  515. mes "the Clover extract.";
  516. next;
  517. select("Clover extract? What's that for?");
  518. mes "[Pisruik]";
  519. mes "Well, I need the Clover";
  520. mes "extract for a compound";
  521. mes "that I'm going to make with";
  522. mes "the Maneater Blossoms. I'm";
  523. mes "kind of weak, so I try not to";
  524. mes "travel too far when I can.";
  525. next;
  526. mes "[Pisruik]";
  527. mes "Yeah, ever since I was";
  528. mes "little, I've had a weak";
  529. mes "heart and bad eyesight.";
  530. mes "The doctor tells me to avoid";
  531. mes "stress and hard work, but";
  532. mes "researching is my life.";
  533. if (Sex == 0) {
  534. next;
  535. mes "[Pisruik]";
  536. mes "I wonder...";
  537. mes "If you understand";
  538. mes "the way I feel, how";
  539. mes "much I've had to sacrifice";
  540. mes "for my dream. Heh, anyway...";
  541. }
  542. next;
  543. mes "[Pisruik]";
  544. mes "I hope you understand that";
  545. mes "it's too dangerous for me to";
  546. mes "gather Maneater Blossoms on";
  547. mes "my own, so if I'm going to get";
  548. mes "as much help as I can. Thanks";
  549. mes "again for being cooperative.";
  550. close;
  551. case 3:
  552. mes "[Pisruik]";
  553. mes "Ha ha ha ha!";
  554. mes "That's real business";
  555. mes "like of you! Alright,";
  556. mes "I may be poor, but if";
  557. mes "you help me, I'll give you";
  558. mes "the results of my research.";
  559. next;
  560. if (select("Nah, I'm too busy.:Alright, I'll help you.") == 1) {
  561. set ALCHE_SK,5;
  562. mes "[Pisruik]";
  563. mes "I guess I'll have to gather";
  564. mes "those on my own. Alright, well,";
  565. mes "seeing as we've both gotten";
  566. mes "what we wanted, I'll suppose";
  567. mes "your business with me is done.";
  568. close;
  569. }
  570. set ALCHE_SK,6;
  571. mes "[Pisruik]";
  572. mes "Thanks, I really";
  573. mes "appreciate it. While";
  574. mes "I'm waiting for you,";
  575. mes "I can start boiling";
  576. mes "the Clover extract.";
  577. next;
  578. select("Clover extract? What's that for?");
  579. mes "[Pisruik]";
  580. mes "Well, I need the Clover";
  581. mes "extract for a compound";
  582. mes "that I'm going to make with";
  583. mes "the Maneater Blossoms. I'm";
  584. mes "kind of weak, so I try not to";
  585. mes "travel too far when I can.";
  586. next;
  587. mes "[Pisruik]";
  588. mes "Yeah, ever since I was";
  589. mes "little, I've had a weak";
  590. mes "heart and bad eyesight.";
  591. mes "The doctor tells me to avoid";
  592. mes "stress and hard work, but";
  593. mes "researching is my life.";
  594. if (Sex == 0) {
  595. next;
  596. mes "[Pisruik]";
  597. mes "I wonder...";
  598. mes "If you understand";
  599. mes "the way I feel, how";
  600. mes "much I've had to sacrifice";
  601. mes "for my dream. Heh, anyway...";
  602. }
  603. next;
  604. mes "[Pisruik]";
  605. mes "I hope you understand that";
  606. mes "it's too dangerous for me to";
  607. mes "gather Maneater Blossoms on";
  608. mes "my own, so if I'm going to get";
  609. mes "as much help as I can. Thanks";
  610. mes "again for being cooperative.";
  611. close;
  612. }
  613. }
  614. else if (ALCHE_SK == 5) {
  615. //refuse bringing Maneater Blossom
  616. mes "[Pisruik]";
  617. mes "I'm busy right now.";
  618. mes "You didn't forget";
  619. mes "anything did you?";
  620. mes "If not, you better";
  621. mes "get going and let";
  622. mes "me do my work.";
  623. next;
  624. if (select("Alright, sorry to bother you.:Can I still help you?") == 1) {
  625. mes "[Pisruik]";
  626. mes "Yeah, whatever.";
  627. mes "Just hurry up and leave";
  628. mes "so that I can concentrate.";
  629. close;
  630. }
  631. mes "[Pisruik]";
  632. mes "Huh? What made you";
  633. mes "change your mind? Well,";
  634. mes "I can't afford not to accept";
  635. mes "any help, so I guess that's";
  636. mes "a \"Yes.\" Yeah, you can help.";
  637. next;
  638. mes "[Pisruik]";
  639. mes "Alright, go and get me";
  640. mes "20 Maneater Blossoms.";
  641. mes "If I weren't so sickly, I'd get";
  642. mes "them myself, but--*Cough* as";
  643. mes "you can see, I don't feel so well. ^FFFFFF ^000000";
  644. set ALCHE_SK,6;
  645. next;
  646. mes "[Pisruik]";
  647. if (Sex == 0) {
  648. mes "I... I really";
  649. mes "appreciate your";
  650. mes "willingness to help";
  651. mes "me in my research...";
  652. }
  653. else {
  654. mes "I hope you get those";
  655. mes "items to me as soon as";
  656. mes "you can. And don't flake";
  657. mes "out on me this time!";
  658. }
  659. close;
  660. }
  661. else if (ALCHE_SK == 6) {
  662. if (countitem(1032) > 19) {
  663. delitem 1032,20; //Blossom_Of_Maneater
  664. set ALCHE_SK,7;
  665. mes "[Pisruik]";
  666. mes "Thanks so much for";
  667. mes "bringing me these";
  668. mes "Maneater Blossoms.";
  669. if (Sex == 0) {
  670. mes "You don't know how";
  671. mes "much this means to me~";
  672. }
  673. else {
  674. mes "Now all I have to do";
  675. mes "is mix these with the";
  676. mes "Clover extract I prepared.";
  677. }
  678. next;
  679. set ALCHE_SK,9;
  680. specialeffect 183; //"Pisruik" EF_SUI_EXPLOSION
  681. mes "[Pisruik]";
  682. mes "Ah!";
  683. mes "M-my face!";
  684. next;
  685. //...Pretty Boy mode -_-
  686. mes "[Pisruik]";
  687. mes "Hey...";
  688. mes "Are you alright?";
  689. mes "That was a pretty";
  690. mes "big explosion...";
  691. next;
  692. mes "["+ strcharinfo(0) +"]";
  693. mes "Your glasses...";
  694. mes "They're broken...";
  695. next;
  696. if (Sex == 0) {
  697. mes "^3355FFThe explosion destroyed";
  698. mes "Pisruik's glasses, revealing";
  699. mes "the beautiful face of a";
  700. mes "gorgeous, gorgeous man.^000000";
  701. }
  702. else {
  703. mes "^3355FFThe explosion blew off";
  704. mes "Pisruik's glasses. Without";
  705. mes "them, he looks more like";
  706. mes "a male model than a dorky";
  707. mes "scientific researcher.^000000";
  708. }
  709. next;
  710. mes "["+ strcharinfo(0) +"]";
  711. mes "Holy crap!";
  712. mes "You're one";
  713. mes "good looking guy!";
  714. next;
  715. mes "[Pisruik]";
  716. mes "I c-can't see too";
  717. mes "well without my glasses.";
  718. mes "Well, at least I can tell";
  719. mes "that you're not bleeding.";
  720. mes "But are you alright?";
  721. next;
  722. mes "["+ strcharinfo(0) +"]";
  723. mes "Oh, I'm fine.";
  724. mes "But what are you";
  725. mes "going to do about";
  726. mes "your glasses?";
  727. next;
  728. mes "[Pisruik]";
  729. mes "Shoot, you're right.";
  730. mes "I don't happen to have";
  731. mes "an extra pair. Hey, can";
  732. mes "you get me a pair of glasses,";
  733. mes "the same kind I used to wear?";
  734. next;
  735. mes "[Pisruik]";
  736. mes "I know it's too much";
  737. mes "to ask you for, but I'm";
  738. mes "almost blind without them.";
  739. mes "I can't do very much if I can't";
  740. mes "even see. I'm really sorry";
  741. mes "about this, "+ strcharinfo(0) +".";
  742. close;
  743. }
  744. else {
  745. mes "[Pisruik]";
  746. mes "Would you come back with";
  747. mes "20 Maneater Blossoms";
  748. mes "so that I can finish this";
  749. mes "medicine I'm working on?";
  750. mes "Thanks, thanks, I've got";
  751. mes "to hustle with this project...";
  752. close;
  753. }
  754. }
  755. else if (ALCHE_SK == 7) {
  756. set ALCHE_SK,8;
  757. mes "[Pisruik]";
  758. mes "Hmmm...";
  759. mes "Actually, I miscalculated";
  760. mes "the number of Maneater";
  761. mes "Blossoms that I need. Would";
  762. mes "you bring me one more? Sorry,^FFFFFF ^000000 I know it's kind of troublesome...";
  763. close;
  764. }
  765. else if (ALCHE_SK == 8) {
  766. if (countitem(1032) > 0) {
  767. delitem 1032,1; //Blossom_Of_Maneater
  768. set ALCHE_SK,7;
  769. mes "[Pisruik]";
  770. mes "Thanks so much!";
  771. mes "Now I finally have the";
  772. mes "exact amount of Maneater";
  773. mes "Blossoms that I'll need.";
  774. if (Sex == 0) {
  775. mes "I'm really sorry for putting";
  776. mes "your through all this trouble.";
  777. }
  778. else {
  779. mes "Finally, I begin the most";
  780. mes "exciting part of this project!";
  781. }
  782. next;
  783. set ALCHE_SK,9;
  784. specialeffect 183; //"Pisruik" EF_SUI_EXPLOSION
  785. mes "[Pisruik]";
  786. mes "Ah!";
  787. mes "M-my face!";
  788. next;
  789. //...Pretty Boy mode -_-
  790. mes "[Pisruik]";
  791. mes "Hey...";
  792. mes "Are you alright?";
  793. mes "That was a pretty";
  794. mes "big explosion...";
  795. next;
  796. mes "["+ strcharinfo(0) +"]";
  797. mes "Your glasses...";
  798. mes "They're broken...";
  799. next;
  800. if (Sex == 0) {
  801. mes "^3355FFThe explosion destroyed";
  802. mes "Pisruik's glasses, revealing";
  803. mes "the beautiful face of a";
  804. mes "gorgeous, gorgeous man.^000000";
  805. }
  806. else {
  807. mes "^3355FFThe explosion blew off";
  808. mes "Pisruik's glasses. Without";
  809. mes "them, he looks more like";
  810. mes "a male model than a dorky";
  811. mes "scientific researcher.^000000";
  812. }
  813. next;
  814. mes "["+ strcharinfo(0) +"]";
  815. mes "Holy crap!";
  816. mes "You're one";
  817. mes "good looking guy!";
  818. next;
  819. mes "[Pisruik]";
  820. mes "I c-can't see too";
  821. mes "well without my glasses.";
  822. mes "Well, at least I can tell";
  823. mes "that you're not bleeding.";
  824. mes "But are you alright?";
  825. next;
  826. mes "["+ strcharinfo(0) +"]";
  827. mes "Oh, I'm fine.";
  828. mes "But what are you";
  829. mes "going to do about";
  830. mes "your glasses?";
  831. next;
  832. mes "[Pisruik]";
  833. mes "Shoot, you're right.";
  834. mes "I don't happen to have";
  835. mes "an extra pair. Hey, can";
  836. mes "you get me a pair of glasses,";
  837. mes "the same kind I used to wear?";
  838. next;
  839. mes "[Pisruik]";
  840. mes "I know it's too much";
  841. mes "to ask you for, but I'm";
  842. mes "almost blind without them.";
  843. mes "I can't do very much if I can't";
  844. mes "even see. I'm really sorry";
  845. mes "about this, "+ strcharinfo(0) +".";
  846. close;
  847. }
  848. else {
  849. mes "[Pisruik]";
  850. mes "Hmmm...";
  851. mes "Actually, I miscalculated";
  852. mes "the number of Maneater";
  853. mes "Blossoms that I need. Would";
  854. mes "you bring me one more? Sorry,^FFFFFF ^000000 I know it's kind of troublesome...";
  855. close;
  856. }
  857. }
  858. else if (ALCHE_SK == 9) {
  859. mes "^3355FFPisruik is holding his";
  860. mes "broken glasses, squinting";
  861. mes "his eyes. It seems he like";
  862. mes "he really does need them,";
  863. mes "even if he looks much less";
  864. mes "dorky without them.^000000";
  865. next;
  866. if (select("Let him try a pair of your glasses:Don't give him anything") == 1) {
  867. if (countitem(2243) > 0) {
  868. delitem 2243,1; //Spinning_Eyes
  869. set ALCHE_SK,10;
  870. //changes the quest steps by deicision.
  871. mes "["+ strcharinfo(0) +"]";
  872. mes "Here, why don't you";
  873. mes "check I'm carrying and";
  874. mes "see if there's a pair of";
  875. mes "glasses that you can use?";
  876. next;
  877. mes "[Pisruik]";
  878. mes "Huh? Oh, is that you?";
  879. mes "Ah, this pair of glasses";
  880. mes "works! Thanks a lot, now";
  881. mes "I can see again! Now, let";
  882. mes "me check the results of the";
  883. mes "experiment we conducted.";
  884. next;
  885. mes "[Pisruik]";
  886. mes "Okay, the test tube wasn't";
  887. mes "damaged. Yes, according to";
  888. mes "these readings, this medicine";
  889. mes "should be fully functional!";
  890. mes "I think it was a success!";
  891. mes "Well, theoretically anyway.";
  892. next;
  893. mes "[Pisruik]";
  894. mes "Hmm, changing the attributes";
  895. mes "of the human body for certain";
  896. mes "effects may cause controversy";
  897. mes "later, but hopefully this thing";
  898. mes "I've invented will be used for";
  899. mes "good. Ah, that's right!";
  900. next;
  901. mes "[Pisruik]";
  902. mes "Would you like me to";
  903. mes "teach you everything I've";
  904. mes "learned in my research? You";
  905. mes "should be able to create a new";
  906. mes "type of potion by making use of";
  907. mes "the knowledge I can teach you.";
  908. next;
  909. if (select("Sure!:No, thanks.") == 1) {
  910. mes "[Pisruik]";
  911. mes "Great, "+ strcharinfo(0) +"!";
  912. mes "I know I can trust you";
  913. mes "to use this research for";
  914. mes "good and noble ends. Now,";
  915. mes "please read this thesis and";
  916. mes "all of my additional notes...";
  917. next;
  918. mes "^3355FFPisruik thoroughly";
  919. mes "explains the properties";
  920. mes "of his medicine, the reaction";
  921. mes "of the human organs to it, as";
  922. mes "well as a few warnings about";
  923. mes "the medicine's side effects.^000000";
  924. next;
  925. set ALCHE_SK,11;
  926. getitem 7434,1; //Elemental_Create_Book
  927. mes "[Pisruik]";
  928. mes "Well, you should be";
  929. mes "ready to make your own";
  930. mes "potions that are a variation";
  931. mes "of my medicine. But you'll";
  932. mes "probably need to keep that";
  933. mes "thesis as a ready reference.";
  934. next;
  935. mes "[Pisruik]";
  936. if (Sex == 1) {
  937. mes "Hopefully, we'll";
  938. mes "meet again sometime";
  939. mes "in the future. Good luck on";
  940. mes "your journeys, adventurer.";
  941. mes "*Cough cough* Now... What";
  942. mes "will be my next project?";
  943. }
  944. else {
  945. mes "Anyway, I need to be";
  946. mes "working on a new project";
  947. mes "soon, so I suppose this is";
  948. mes "where we part ways for now.";
  949. mes "But I must say, it was truly";
  950. mes "a great pleasure to meet you...";
  951. }
  952. close;
  953. }
  954. mes "[Pisruik]";
  955. mes "R-Really...?";
  956. mes "Well, if you ever change";
  957. mes "your mind, feel free to come";
  958. mes "back for me to teach you.";
  959. if (Sex == 0) {
  960. mes "And it's no trouble at all!";
  961. mes "I really enjoy your company...";
  962. }
  963. close;
  964. }
  965. else {
  966. mes "^3355FFUnfortunately, there";
  967. mes "is nothing in your inventory";
  968. mes "that seems like a suitable";
  969. mes "replacement for Pisruik's";
  970. mes "broken glasses.^000000";
  971. close;
  972. }
  973. }
  974. mes "["+ strcharinfo(0) +"]";
  975. mes "Listen, you look so";
  976. mes "much better when you're";
  977. mes "not wearing glasses.";
  978. next;
  979. mes "[Pisruik]";
  980. mes "Excuse me,";
  981. mes "come again?";
  982. next;
  983. mes "["+ strcharinfo(0) +"]";
  984. mes "Hahahahhaha~!";
  985. mes "No-nothing at all!";
  986. close;
  987. }
  988. else if (ALCHE_SK == 10) {
  989. mes "[Pisruik]";
  990. mes "So, "+ strcharinfo(0) +",";
  991. mes "Would you like me to";
  992. mes "teach you the results";
  993. mes "of the research I've''";
  994. mes "been conducting?";
  995. next;
  996. if (select("Yes!:No, thanks.") == 1) {
  997. mes "[Pisruik]";
  998. mes "Great, "+ strcharinfo(0) +"!";
  999. mes "I know I can trust you";
  1000. mes "to use this research for";
  1001. mes "good and noble ends. Now,";
  1002. mes "please read this thesis and";
  1003. mes "all of my additional notes...";
  1004. next;
  1005. mes "^3355FFPisruik thoroughly";
  1006. mes "explains the properties";
  1007. mes "of his medicine, the reaction";
  1008. mes "of the human organs to it, as";
  1009. mes "well as a few warnings about";
  1010. mes "the medicine's side effects.^000000";
  1011. next;
  1012. set ALCHE_SK,11;
  1013. getitem 7434,1; //Elemental_Create_Book
  1014. mes "[Pisruik]";
  1015. mes "Well, you should be";
  1016. mes "ready to make your own";
  1017. mes "potions that are a variation";
  1018. mes "of my medicine. But you'll";
  1019. mes "probably need to keep that";
  1020. mes "thesis as a ready reference.";
  1021. next;
  1022. mes "[Pisruik]";
  1023. if (Sex == 1) {
  1024. mes "Hopefully, we'll";
  1025. mes "meet again sometime";
  1026. mes "in the future. Good luck on";
  1027. mes "your journeys, adventurer.";
  1028. mes "*Cough cough* Now... What";
  1029. mes "will be my next project?";
  1030. }
  1031. else {
  1032. mes "Anyway, I need to be";
  1033. mes "working on a new project";
  1034. mes "soon, so I suppose this is";
  1035. mes "where we part ways for now.";
  1036. mes "But I must say, it was truly";
  1037. mes "a great pleasure to meet you...";
  1038. }
  1039. close;
  1040. }
  1041. mes "[Pisruik]";
  1042. mes "R-Really...?";
  1043. mes "Well, if you ever change";
  1044. mes "your mind, feel free to come";
  1045. mes "back for me to teach you.";
  1046. if (Sex == 0) {
  1047. mes "And it's no trouble at all!";
  1048. mes "I really enjoy your company...";
  1049. }
  1050. close;
  1051. }
  1052. else if (ALCHE_SK == 11) {
  1053. if (countitem(7434) == 0) {
  1054. mes "[Pisruik]";
  1055. mes "Uh oh...";
  1056. mes "You lost the thesis";
  1057. mes "I wrote for you? I don't";
  1058. mes "have the time to write";
  1059. mes "another one for you now...";
  1060. close;
  1061. }
  1062. else if (countitem(7434) == 1) {
  1063. mes "[Pisruik]";
  1064. mes "So, how have you been";
  1065. mes "using the potions that";
  1066. mes "I've taught you to make?";
  1067. mes "Hopefully, they'll come";
  1068. mes "in handy in your adventures.";
  1069. close;
  1070. }
  1071. else if (countitem(7434) > 1) {
  1072. mes "[Pisruik]";
  1073. mes "Huh, so copies of my";
  1074. mes "thesis are circulating";
  1075. mes "around in public? Well,";
  1076. mes "I'm sorry, but I don't have";
  1077. mes "time to autograph your copy...";
  1078. close;
  1079. }
  1080. }
  1081. else {
  1082. mes "[Pisruik]";
  1083. mes "Mmm...?";
  1084. mes "Did you need anything";
  1085. mes "in particular? Though,";
  1086. mes "I'm afraid someone in";
  1087. mes "my position won't be";
  1088. mes "much help to you.";
  1089. close;
  1090. }
  1091. }
  1092. else {
  1093. mes "[Pisruik]";
  1094. mes "Mmm...?";
  1095. mes "Did you need anything";
  1096. mes "in particular? Though,";
  1097. mes "I'm afraid someone in";
  1098. mes "my position won't be";
  1099. mes "much help to you.";
  1100. close;
  1101. }
  1102. }
  1103. yuno_in04,22,107,5 script Irache#qsk_al 740,{
  1104. mes "[Irache]";
  1105. mes "Heh heh heh...!";
  1106. mes "It's done! With this";
  1107. mes "formula, I can melt any";
  1108. mes "substance in the world!";
  1109. mes "Hahahaha! Nothing stands";
  1110. mes "between me and world domi--";
  1111. next;
  1112. mes "[Irache]";
  1113. mes "OWWWW!";
  1114. mes "The secret formula!";
  1115. mes "It's burning through";
  1116. mes "the test tube! I've made";
  1117. mes "it too powerful! Confound it!";
  1118. close;
  1119. }
  1120. yuno_in04,27,107,4 script Degas#qsk_al 748,{
  1121. mes "[Degas]";
  1122. mes "It's such a pain working";
  1123. mes "so close to these other";
  1124. mes "scientists. The guy next";
  1125. mes "time is always cackling";
  1126. mes "about taking over the";
  1127. mes "world and whatnot.";
  1128. next;
  1129. mes "[Degas]";
  1130. mes "And this other geek is";
  1131. mes "always coughing. Between";
  1132. mes "the two of them, it's far too";
  1133. mes "noisy to focus on my research!";
  1134. mes "If only I could work in my very^FFFFFF ^000000 own private, secret laboratory...";
  1135. close;
  1136. }
  1137. yuno_in04,33,106,4 script Pile of Books#qsk_al 111,{
  1138. mes "^3355FFIt's simply a pile";
  1139. mes "of scattered documents.";
  1140. mes "Although it seems unorganized,";
  1141. mes "it doesn't look like the people";
  1142. mes "here have any trouble finding^FFFFFF ^3355FF what they need when they need it.";
  1143. close;
  1144. }
  1145. // Start Bioethics quest
  1146. lhz_in01,224,140,3 script Kellasus#qsk_al 57,{
  1147. if (BaseJob == Job_Alchemist && bioeth == 13) {
  1148. mes "[Kellasus]";
  1149. mes "Keep up the";
  1150. mes "good work. I get";
  1151. mes "the feeling that";
  1152. mes "our future might";
  1153. mes "be depending on you...";
  1154. close;
  1155. }
  1156. if (BaseJob == Job_Alchemist && bioeth == 12) {
  1157. mes "[Kellasus]";
  1158. mes "Alright then, I'll begin";
  1159. mes "by teaching you ^FF0000Bioethics^000000,";
  1160. mes "the fundamental skill for";
  1161. mes "creating Homunculi.";
  1162. next;
  1163. mes "[Kellasus]";
  1164. mes "In order to master Bioethics,";
  1165. mes "you've got to appreciate the";
  1166. mes "sweetness of life and genuinely";
  1167. mes "care about living creatures.";
  1168. mes "And so, you must always take";
  1169. mes "care of your Homunculus.";
  1170. next;
  1171. mes "[Kellasus]";
  1172. mes "You must constantly check";
  1173. mes "to see if your Homunculus";
  1174. mes "is tired or hungry, or if it's";
  1175. mes "been hurt. You must also take";
  1176. mes "into account your Homunculus's^FFFFFF ^000000 feelings towards you, its owner.";
  1177. next;
  1178. mes "[Kellasus]";
  1179. mes "When that nurturing attitude";
  1180. mes "becomes second nature to you,";
  1181. mes "you will have mastered Bioethics.^FFFFFF ^000000 It sounds simple, but you can only";
  1182. mes "understand a relationship with a Homunculus through experience.";
  1183. next;
  1184. mes "[Kellasus]";
  1185. mes "Well, you should know enough";
  1186. mes "by now to create and care for";
  1187. mes "your own Homunculus. I trust";
  1188. mes "that you will be responsible";
  1189. mes "in your search for discoveries";
  1190. mes "that may benefit mankind.";
  1191. next;
  1192. mes "[Kellasus]";
  1193. mes "Before we part";
  1194. mes "ways, would you";
  1195. mes "tell me your name?";
  1196. next;
  1197. mes "[" + strcharinfo(0) + "]";
  1198. mes "My name is...";
  1199. mes "" + strcharinfo(0) + ".";
  1200. next;
  1201. set bioeth,13;
  1202. skill 238,1,0;
  1203. mes "[Kellasus]";
  1204. mes "Ah...";
  1205. mes "" + strcharinfo(0) + ".";
  1206. mes "I'll remember that. Goodbye";
  1207. mes "for now, and I hope that you";
  1208. mes "make a great contribution to";
  1209. mes "the world of Alchemy someday.";
  1210. close;
  1211. }
  1212. if (BaseJob == Job_Alchemist && bioeth == 11) {
  1213. mes "[Kellasus]";
  1214. mes "Our viewpoints may be";
  1215. mes "different, but I'll agree that";
  1216. mes "there's too much potential in";
  1217. mes "studying Homunculi that I can";
  1218. mes "no longer ignore as a scientist";
  1219. mes "and as a humanitarian.";
  1220. next;
  1221. mes "[Kellasus]";
  1222. mes "If I teach you these skills,";
  1223. mes "you may be treading a moral";
  1224. mes "line. But I believe it should";
  1225. mes "be alright if you work to learn";
  1226. mes "something that will benefit";
  1227. mes "the greater good.";
  1228. next;
  1229. mes "[" + strcharinfo(0) + "]";
  1230. mes "Does...";
  1231. mes "Does that mean";
  1232. mes "you'll teach me?";
  1233. next;
  1234. mes "[Kellasus]";
  1235. mes "Now don't get too excited.";
  1236. mes "I'm still unsure if Homunculus";
  1237. mes "Study should be open to all";
  1238. mes "Alchemists, but for now,";
  1239. mes "I believe I can trust you.";
  1240. next;
  1241. mes "[Kellasus]";
  1242. mes "However, you've got to";
  1243. mes "use the skills I teach you";
  1244. mes "to ultimately benefit other";
  1245. mes "people. It's not like I can force you to forget once you know how";
  1246. mes "to make Homunculi, understand?";
  1247. next;
  1248. set bioeth,12;
  1249. mes "[Kellasus]";
  1250. mes "Please give me a little";
  1251. mes "time to prepare my lesson";
  1252. mes "for you. It's been a very long";
  1253. mes "time since I've done this...";
  1254. close;
  1255. }
  1256. if (BaseJob == Job_Alchemist && bioeth == 10) {
  1257. set bioeth,11;
  1258. mes "[Kellasus]";
  1259. mes "^333333*Sigh*^000000";
  1260. mes "I'm so confused...";
  1261. mes "There's no denying that";
  1262. mes "everything you said is right.";
  1263. mes "But now I don't know what";
  1264. mes "I should believe...";
  1265. close;
  1266. }
  1267. if (BaseJob == Job_Alchemist && bioeth == 9) {
  1268. mes "[Kellasus]";
  1269. mes "Have you come to";
  1270. mes "ask me again to teach";
  1271. mes "you Homunculus skills?";
  1272. mes "You're awfully persistent,";
  1273. mes "but I suppose that might be";
  1274. mes "how you became an Alchemist...";
  1275. next;
  1276. mes "[" + strcharinfo(0) + "]";
  1277. mes "Well, I sort of came";
  1278. mes "here to ask about that.";
  1279. mes "But first, I heard a rumor";
  1280. mes "that your son was really";
  1281. mes "sick for a while...";
  1282. next;
  1283. mes "[Kellasus]";
  1284. mes "Y-yes. It's really";
  1285. mes "difficult for me to";
  1286. mes "talk about that time.";
  1287. mes "The thought of losing";
  1288. mes "my boy is too much to bear.";
  1289. mes "He means the world to me...";
  1290. next;
  1291. mes "[Kellasus]";
  1292. mes "I was so desperate to";
  1293. mes "keep my boy alive that";
  1294. mes "I would have sold my soul";
  1295. mes "without any regret. I'm more";
  1296. mes "than willing to sacrifice my";
  1297. mes "own life for his sake.";
  1298. next;
  1299. mes "[Kellasus]";
  1300. mes "Luckily, my son";
  1301. mes "recovered from his";
  1302. mes "disease and he is very";
  1303. mes "healthy nowadays. But";
  1304. mes "why are you reminding";
  1305. mes "me of something like this?";
  1306. next;
  1307. mes "[" + strcharinfo(0) + "]";
  1308. mes "You're right that the creation";
  1309. mes "of Homunculi brings up a moral";
  1310. mes "issue. But instead of morals,";
  1311. mes "I want to appeal to your sense";
  1312. mes "of humanitarianism if I can.";
  1313. next;
  1314. mes "[Kellasus]";
  1315. mes "I don't follow.";
  1316. mes "What exactly";
  1317. mes "do you mean by";
  1318. mes "humanitarianism?";
  1319. next;
  1320. mes "[" + strcharinfo(0) + "]";
  1321. mes "I believe that the";
  1322. mes "study of Homunculi";
  1323. mes "could help us discover";
  1324. mes "the secret of life. There";
  1325. mes "is just too much too much";
  1326. mes "potential to do good to ignore.";
  1327. next;
  1328. mes "["+ strcharinfo(0) +"]";
  1329. mes "I'm not interested in";
  1330. mes "creating new creatures or";
  1331. mes "playing God. What I do want";
  1332. mes "is the knowledge to cure people";
  1333. mes "regardless of the disease. No";
  1334. mes "matter how desperate it may be.";
  1335. next;
  1336. mes "["+ strcharinfo(0) +"]";
  1337. mes "It may be immoral to";
  1338. mes "create experimental life";
  1339. mes "forms and to sacrifice them,";
  1340. mes "but I'm willing to do that for";
  1341. mes "the people who may need";
  1342. mes "that cure I might discover...";
  1343. next;
  1344. mes "["+ strcharinfo(0) +"]";
  1345. mes "When your son was";
  1346. mes "sick, you were willing";
  1347. mes "to make sacrifices to see";
  1348. mes "that he recover. But still,";
  1349. mes "there are other people in the";
  1350. mes "world with worse ailments...";
  1351. next;
  1352. mes "["+ strcharinfo(0) +"]";
  1353. mes "I want to study";
  1354. mes "Homunculi because";
  1355. mes "there's a chance that";
  1356. mes "I might be able to bring";
  1357. mes "hope to someone's";
  1358. mes "hopeless situation...";
  1359. next;
  1360. set bioeth,10;
  1361. mes "[Kellasus]";
  1362. mes "I've never...";
  1363. mes "I never thought...";
  1364. mes "I'm sorry. I need";
  1365. mes "some time alone...";
  1366. close;
  1367. }
  1368. if (BaseJob == Job_Alchemist && bioeth == 8) {
  1369. mes "[Kellasus]";
  1370. mes "Although I admit that";
  1371. mes "you're capabile of learning";
  1372. mes "what I might be able to teach";
  1373. mes "you about Homunculi, I can't";
  1374. mes "in good conscience do it. I'm";
  1375. mes "sorry, but please give up.";
  1376. close;
  1377. }
  1378. if (BaseJob == Job_Alchemist && bioeth == 7) {
  1379. mes "[Kellasus]";
  1380. mes "How many times must I tell";
  1381. mes "you? I'm sorry, but I can't teach you anything related to Homunculi.";
  1382. mes "It especially bothers me that you know nothing at all about them...";
  1383. next;
  1384. mes "[" + strcharinfo(0) + "]";
  1385. mes "But while I was gone,";
  1386. mes "I spent so much time";
  1387. mes "studying about Homunculi";
  1388. mes "from these Alchemy experts.";
  1389. mes "I guarantee that I'm qualified";
  1390. mes "to learn the fundamentals!";
  1391. next;
  1392. mes "[Kellasus]";
  1393. mes "Experts...? Ah, you mean";
  1394. mes "Skrajjad, Keshibien and";
  1395. mes "Broncher. My old colleages.";
  1396. mes "Alright. But I'll be the judge";
  1397. mes "of whether or not you learned";
  1398. mes "anything about Homunculi.";
  1399. next;
  1400. mes "[Kellasus]";
  1401. mes "I'm going to give you";
  1402. mes "several questions, so";
  1403. mes "I hope you answer all";
  1404. mes "of these correctly.";
  1405. mes "Are you ready?";
  1406. next;
  1407. mes "[Kellasus]";
  1408. mes "First question.";
  1409. mes "What skill, mastered";
  1410. mes "at Skill Level 1, allows";
  1411. mes "the caster to retreat a";
  1412. mes "Homunculus, putting it in";
  1413. mes "an inert state of hibernation?";
  1414. next;
  1415. input .@input$;
  1416. if (.@input$ == "Vaporize") {
  1417. mes "[Kellasus]";
  1418. mes "Hmm, not bad. So you've";
  1419. mes "been studying. Now, the second";
  1420. mes "question. What is the item, whose name indicates a very early stage";
  1421. mes "of Homunculus development, used for the Call Homunculus skill?";
  1422. next;
  1423. input .@input$;
  1424. if (.@input$ == "Embryo") {
  1425. mes "[Kellasus]";
  1426. mes "Huh. You got that one";
  1427. mes "right too. Alright, third";
  1428. mes "question. What is the";
  1429. mes "name of the skill, mastered";
  1430. mes "at Skill Level 5, which allows";
  1431. mes "you to resurrect Homunculi?";
  1432. next;
  1433. input .@input$;
  1434. if (.@input$ == "Homunculus Resurrection") {
  1435. mes "[Kellasus]";
  1436. mes "So you have been putting";
  1437. mes "a lot of effort in studying";
  1438. mes "this. I really admire your";
  1439. mes "dedication and it looks like";
  1440. mes "you've got the potential to";
  1441. mes "be a really great Alchemist.";
  1442. next;
  1443. mes "[Kellasus]";
  1444. mes "Still, even though you're";
  1445. mes "qualified to learn all the";
  1446. mes "Homunculus skills, I choose";
  1447. mes "not to teach them based on";
  1448. mes "my own personal principles.";
  1449. mes "Nothing can change my mind.";
  1450. next;
  1451. mes "[Kellasus]";
  1452. mes "I admit that I'm proud";
  1453. mes "of the progress you've";
  1454. mes "made, but I just can't";
  1455. mes "bring myself to be a part";
  1456. mes "of what I believe to be an";
  1457. mes "abuse of the gift of life.";
  1458. next;
  1459. set bioeth,8;
  1460. mes "[Kellasus]";
  1461. mes "There's just so much";
  1462. mes "risk! I don't think I can";
  1463. mes "bear to be responsible for";
  1464. mes "any of the consequences that";
  1465. mes "may come with the existence";
  1466. mes "of artificially created life.";
  1467. close;
  1468. }
  1469. else {
  1470. mes "[Kellasus]";
  1471. mes "I'm disappointed...";
  1472. mes "I really thought you";
  1473. mes "had learned everything";
  1474. mes "you could about Homunculi,";
  1475. mes "but it looks like there are a";
  1476. mes "few gaps in your knowledge.";
  1477. close;
  1478. }
  1479. }
  1480. else {
  1481. mes "[Kellasus]";
  1482. mes "Hmm... It looks like";
  1483. mes "you still haven't learned";
  1484. mes "enough about Homunculi.";
  1485. mes "Even if I wanted to teach";
  1486. mes "you, it looks like you're";
  1487. mes "not quite ready to learn...";
  1488. close;
  1489. }
  1490. }
  1491. else {
  1492. mes "[Kellasus]";
  1493. mes "You'd be able to get";
  1494. mes "the first question right";
  1495. mes "if you were really serious";
  1496. mes "about studying Homunculi.";
  1497. mes "You'd better just give up and";
  1498. mes "find a new alchemic interest.";
  1499. close;
  1500. }
  1501. }
  1502. if (BaseJob == Job_Alchemist && bioeth > 3) {
  1503. mes "[Kellasus]";
  1504. mes "I'm sorry, but";
  1505. mes "I refuse to teach";
  1506. mes "you anything related";
  1507. mes "to the Homunculus skills.";
  1508. next;
  1509. mes "[Kellasus]";
  1510. mes "I should feel insulted that";
  1511. mes "you asked me, but once there";
  1512. mes "was a time when I was more";
  1513. mes "like you, so I can understand";
  1514. mes "how you feel. However, my";
  1515. mes "views are much different now...";
  1516. close;
  1517. }
  1518. if (BaseJob == Job_Alchemist && bioeth == 3) {
  1519. mes "[Kellasus]";
  1520. mes "Oh, hello, what";
  1521. mes "brings you this way?";
  1522. mes "As your senior in the";
  1523. mes "field of Alchemy, I can";
  1524. mes "give you some advice if you're^FFFFFF ^000000 stumped by a particular problem...";
  1525. next;
  1526. if (select("Teach me the Homunculus Skills.:No, nothing.") == 1) {
  1527. mes "[" + strcharinfo(0) + "]";
  1528. mes "I want you to";
  1529. mes "teach me how to";
  1530. mes "create a Homunculus.";
  1531. next;
  1532. mes "[Kellasus]";
  1533. mes "...";
  1534. mes "Come again?";
  1535. mes "I don't think I heard";
  1536. mes "what you said quite right.";
  1537. next;
  1538. mes "[" + strcharinfo(0) + "]";
  1539. mes "I said...";
  1540. mes "I want you to";
  1541. mes "teach me the skills";
  1542. mes "for Homunculus creation.";
  1543. next;
  1544. mes "[Kellasus]";
  1545. mes "After all of my talk...";
  1546. mes "My warnings about knowledge";
  1547. mes "that should be forbidden to";
  1548. mes "Alchemists, you want to go";
  1549. mes "and create a Homunculus?!";
  1550. next;
  1551. mes "[Kellasus]";
  1552. mes "Perhaps I never should";
  1553. mes "have mentioned that subject.";
  1554. mes "But I still don't understand why^FFFFFF ^000000 you would suddenly want to ";
  1555. mes "learn those skills. Yes, it's";
  1556. mes "true that I could teach you...";
  1557. next;
  1558. set bioeth,4;
  1559. mes "[Kellasus]";
  1560. mes "But I refuse to pass down";
  1561. mes "my knowledge of Homunculi";
  1562. mes "to anyone for any reason.";
  1563. mes "Surely, you must know that";
  1564. mes "by now. I'm stupefied that you";
  1565. mes "even had the audacity to ask!";
  1566. close;
  1567. }
  1568. mes "[Kellasus]";
  1569. mes "No? Well, I suppose";
  1570. mes "learning something on";
  1571. mes "your own is good, but";
  1572. mes "sometimes it's good to ask";
  1573. mes "for help from those who are";
  1574. mes "more experienced than you.";
  1575. close;
  1576. }
  1577. if (BaseJob == Job_Alchemist && bioeth == 2) {
  1578. mes "[Kellasus]";
  1579. mes "Ah, you've returned...";
  1580. mes "Now, you must be wondering";
  1581. mes "why I have been warning you";
  1582. mes "about the dangers of using";
  1583. mes "Alchemy to obtain knowledge";
  1584. mes "that should be forbidden.";
  1585. next;
  1586. mes "[Kellasus]";
  1587. mes "It is better that you know now";
  1588. mes "than to find out later and not";
  1589. mes "be prepared. There is a skill";
  1590. mes "in Alchemy that transgresses";
  1591. mes "the natural laws by creating";
  1592. mes "life not intended by God.";
  1593. next;
  1594. mes "[Kellasus]";
  1595. mes "It is an extremely";
  1596. mes "dangerous skill that was";
  1597. mes "developed out of human";
  1598. mes "arrogance. Life is a beautiful";
  1599. mes "thing, a precious gift, that";
  1600. mes "we dare not tamper with.";
  1601. next;
  1602. mes "[Kellasus]";
  1603. mes "My greatest shame in";
  1604. mes "life is my contribution to";
  1605. mes "that field of knowledge. At";
  1606. mes "that time I was young and";
  1607. mes "headstrong, too proud to";
  1608. mes "admit I was playing God.";
  1609. next;
  1610. mes "[Kellasus]";
  1611. mes "I even went so far as to";
  1612. mes "become the most skilled";
  1613. mes "Alchemist in the creation";
  1614. mes "of ^FF0000Homunculi^000000. But I've";
  1615. mes "changed my ways. I don't...";
  1616. mes "I'll never create one again.";
  1617. next;
  1618. mes "[Kellasus]";
  1619. mes "Alchemy is an incredible";
  1620. mes "field of study, and it's great";
  1621. mes "that you've dedicated yourself";
  1622. mes "to it, but always remember that";
  1623. mes "this science has great potential for abuse, as well as for good.";
  1624. next;
  1625. mes "[Kellasus]";
  1626. mes "I only fear that your quest";
  1627. mes "for knowledge, your insatiable";
  1628. mes "curiosity to reveal the unknown,^FFFFFF ^000000 may lead you on the path of the";
  1629. mes "Homunculus. For your own sake,^FFFFFF ^000000 don't bother considering the idea.";
  1630. next;
  1631. set bioeth,3;
  1632. mes "[Kellasus]";
  1633. mes "Remember that all life is";
  1634. mes "precious. If your motives";
  1635. mes "are good, and untainted by";
  1636. mes "the desire for fame or fortune,";
  1637. mes "and if you work for the greater^FFFFFF ^000000 good of mankind, you'll be fine.";
  1638. close;
  1639. }
  1640. if (BaseJob == Job_Alchemist && bioeth == 1) {
  1641. mes "[Kellasus]";
  1642. mes "Ah, it's you again.";
  1643. mes "Since you're here, let";
  1644. mes "me ask you a question.";
  1645. mes "What exactly do you";
  1646. mes "think of Alchemy?";
  1647. next;
  1648. mes "[Kellasus]";
  1649. mes "Wait. Don't answer";
  1650. mes "that. As someone more";
  1651. mes "experienced in this field,";
  1652. mes "I believe that the answer";
  1653. mes "to that question is more";
  1654. mes "complicated than you think.";
  1655. next;
  1656. mes "[Kellasus]";
  1657. mes "Most people see Alchemists";
  1658. mes "as greedy scientists, assuming";
  1659. mes "that we use our skills exclusively for^FFFFFF.^000000the transmutation of gold. Of";
  1660. mes "course, learning how to do that";
  1661. mes "is part of our basic training.";
  1662. next;
  1663. mes "[Kellasus]";
  1664. mes "But learning transmutation";
  1665. mes "is part of something bigger.";
  1666. mes "All Alchemists must strive to";
  1667. mes "harness nature for the good";
  1668. mes "of mankind. To do this requires";
  1669. mes "the study of every science.";
  1670. next;
  1671. mes "[Kellasus]";
  1672. mes "The fields of Medicine,";
  1673. mes "Chemistry, Biology, Geology,";
  1674. mes "Astronomy, Astrology, Geomancy,";
  1675. mes "Mathematics, Physics and even";
  1676. mes "Philosophy must all be learned";
  1677. mes "by the competent Alchemist.";
  1678. next;
  1679. set bioeth,2;
  1680. mes "[Kellasus]";
  1681. mes "Once you've entered the";
  1682. mes "exciting vastness of Alchemy,";
  1683. mes "there is no turning back. Do";
  1684. mes "your best to learn all that you";
  1685. mes "can, and never forget that you^FFFFFF ^000000 have responsibilities to mankind.";
  1686. close;
  1687. }
  1688. if (BaseJob == Job_Alchemist) {
  1689. mes "[Kellasus]";
  1690. mes "You're another";
  1691. mes "practitioner of";
  1692. mes "Alchemy, aren't you?";
  1693. mes "It's been a long time";
  1694. mes "since I've spoken to";
  1695. mes "such a young colleague...";
  1696. next;
  1697. mes "[Kellasus]";
  1698. mes "As your elder colleague,";
  1699. mes "I encourage you to focus";
  1700. mes "on your training. Enlighten";
  1701. mes "yourself and satisfy your";
  1702. mes "curiosity by solving the";
  1703. mes "riddles of science.";
  1704. next;
  1705. mes "[Kellasus]";
  1706. mes "But heed my words...";
  1707. mes "There are secrets of";
  1708. mes "science that must never";
  1709. mes "be discovered by humans.";
  1710. mes "Do not be so proud as to";
  1711. mes "seek out forbidden truths.";
  1712. next;
  1713. set bioeth,1;
  1714. mes "[Kellasus]";
  1715. mes "Good luck in your";
  1716. mes "studies, and I hope";
  1717. mes "you never use your";
  1718. mes "search for answers as";
  1719. mes "an excuse to give in to";
  1720. mes "greed and obsession.";
  1721. close;
  1722. }
  1723. mes "[Kellasus]";
  1724. mes "Hmm. Who decides what";
  1725. mes "is right and wrong? What is";
  1726. mes "meant to be known and what";
  1727. mes "secrets were never intended";
  1728. mes "for mankind to understand?";
  1729. next;
  1730. mes "[Kellasus]";
  1731. mes "There are many who would";
  1732. mes "agree that God alone wields";
  1733. mes "authority over life and death.";
  1734. mes "But Alchemy does provide";
  1735. mes "a way for the audacious...";
  1736. close;
  1737. }
  1738. lhz_in01,225,122,5 script Skrajjad#qsk_al 754,{
  1739. if (BaseJob == Job_Alchemist && bioeth > 4) {
  1740. mes "[Skrajjad]";
  1741. mes "I've taught you everything";
  1742. mes "I can about the Homunculi.";
  1743. mes "I hope that I've been of some";
  1744. mes "help in your quest for knowledge^FFFFFF ^000000 and understanding of our universe.";
  1745. next;
  1746. mes "[Skrajjad]";
  1747. mes "If you haven't already done";
  1748. mes "so, please visit Keshibien,";
  1749. mes "master of the Call Homunculus";
  1750. mes "skill. He's a kind person who's";
  1751. mes "always willing to go out of his";
  1752. mes "way to help young scientists.";
  1753. close;
  1754. }
  1755. if (BaseJob == Job_Alchemist && bioeth == 4) {
  1756. mes "[Skrajjad]";
  1757. mes "Ah, you're the one";
  1758. mes "who had the courage";
  1759. mes "to ask Kellasus to teach";
  1760. mes "you Alchemy. I must say";
  1761. mes "that I admire your attitude,";
  1762. if (Sex)
  1763. mes "young lad. Now, don't worry...";
  1764. else
  1765. mes "young lass. Now, don't worry...";
  1766. next;
  1767. mes "[Skrajjad]";
  1768. mes "I understand how you";
  1769. mes "must feel after Kellasus";
  1770. mes "refused to teach you his";
  1771. mes "methods, but that does not";
  1772. mes "mean that you'll never learn";
  1773. mes "how to create a Homunculus.";
  1774. next;
  1775. mes "[Skrajjad]";
  1776. mes "I believe you'll be able to learn what you desire if you manage to";
  1777. mes "train under all of the Homunculus experts. When you show how serious";
  1778. mes "you are about this, then Kellasus might change his mind about you.";
  1779. next;
  1780. mes "[Skrajjad]";
  1781. mes "Let give teach you my";
  1782. mes "Homunculus specialty,";
  1783. mes "the ^FF0000Vaporize^000000 skill. Actually,";
  1784. mes "it's useless without Kellasus's";
  1785. mes "technique, but it should be a";
  1786. mes "good enough starting point.";
  1787. next;
  1788. mes "[Skrajjad]";
  1789. mes "The Vaporize skill";
  1790. mes "is an Alchemist skill";
  1791. mes "that deals solely with";
  1792. mes "Homunculi. Vaporize is";
  1793. mes "mastered at Skill Level 1.";
  1794. next;
  1795. mes "[Skrajjad]";
  1796. mes "This skill allows you to";
  1797. mes "reduce your Homunculus";
  1798. mes "to vapor so that it is in an";
  1799. mes "inert chemical state. It's";
  1800. mes "very similar to hibernation";
  1801. mes "when you think about it.";
  1802. next;
  1803. mes "[Skrajjad]";
  1804. mes "Now, if you want to";
  1805. mes "bring back a vaporized";
  1806. mes "Homunculus, you will need";
  1807. mes "to know the ^FF0000Call Homunculus^000000";
  1808. mes "which you can learn from";
  1809. mes "Keshibien. Just remember...";
  1810. next;
  1811. mes "[Skrajjad]";
  1812. mes "Homunculi are living";
  1813. mes "creatures, so don't go";
  1814. mes "and vaporize and recall";
  1815. mes "them recklessly. That sort";
  1816. mes "of behavior would be inhumane.";
  1817. next;
  1818. mes "[Skrajjad]";
  1819. mes "''Show respect for all life";
  1820. mes "forms.'' That's the creed";
  1821. mes "for the Homuculus expert.";
  1822. mes "Now go and find ^FF0000Keshibien^000000";
  1823. mes "so that he can teach you";
  1824. mes "the Call Homunculus skill.";
  1825. next;
  1826. set bioeth,5;
  1827. mes "[Skrajjad]";
  1828. mes "Good luck in";
  1829. mes "your studies";
  1830. mes "and I hope you";
  1831. mes "find the answers";
  1832. mes "that you are seeking.";
  1833. close;
  1834. }
  1835. mes "[Skrajjad]";
  1836. mes "Alchemy is wondrous...";
  1837. mes "It incorporates every";
  1838. mes "science and many other";
  1839. mes "fields of knowledge that";
  1840. mes "it's not enough to be jack";
  1841. mes "of all trades... No...";
  1842. next;
  1843. mes "[Skrajjad]";
  1844. mes "In a sense, you must";
  1845. mes "be a master of all trades";
  1846. mes "to be proficient in Alchemy.";
  1847. mes "But it's incredibly rewarding to those of us who never stop asking";
  1848. mes "how and why our world works.";
  1849. close;
  1850. }
  1851. lhz_in01,204,138,5 script Keshibien#qsk_al 750,{
  1852. if (BaseJob == Job_Alchemist && bioeth > 5) {
  1853. mes "[Keshibien]";
  1854. mes "I hope that you";
  1855. mes "can make good use";
  1856. mes "of what I've taught you.";
  1857. mes "I'm glad that I was able";
  1858. mes "to contribute something to";
  1859. mes "your learning of Alchemy.";
  1860. next;
  1861. mes "[Keshibien]";
  1862. mes "Now, the only person qualified";
  1863. mes "to teach you the Homunculus";
  1864. mes "Resurrection skill is Brocher.";
  1865. mes "He's... He's a character, but";
  1866. mes "he's also a great teacher.";
  1867. next;
  1868. mes "[Keshibien]";
  1869. mes "Now...";
  1870. mes "Where could he be?";
  1871. mes "I know he likes to drink,";
  1872. mes "so maybe you can find him";
  1873. mes "some place where they serve";
  1874. mes "alcohol in Lighthalzen?";
  1875. close;
  1876. }
  1877. if (BaseJob == Job_Alchemist && bioeth == 5) {
  1878. mes "[Keshibien]";
  1879. mes "Oh! You must be the";
  1880. mes "one Skrajjad told me";
  1881. mes "about. So you've come";
  1882. mes "so I can teach you the";
  1883. mes "Call Homunculus skill?";
  1884. next;
  1885. mes "[Keshibien]";
  1886. mes "First of all, it's always";
  1887. mes "a pleasure to meet another";
  1888. mes "colleague. I'm Keshibien, and";
  1889. mes "although I'm an expert on this";
  1890. mes "particular skill, overall I'm just a run of the mill Alchemist.";
  1891. next;
  1892. mes "[Keshibien]";
  1893. mes "Anyway, the Call Homunculus";
  1894. mes "skill requires knowledge of the";
  1895. mes "Vaporize skill and is mastered";
  1896. mes "at Skill Level 1. This skill allows you to summon a Homunculus.";
  1897. mes "Pretty simple so far, right?";
  1898. next;
  1899. mes "[Keshibien]";
  1900. mes "Now, you can summon a";
  1901. mes "vaporized Homunculus if";
  1902. mes "you happen to have one.";
  1903. mes "Otherwise, you can just";
  1904. mes "create one through using";
  1905. mes "this skill and these items...";
  1906. next;
  1907. mes "[Keshibien]";
  1908. mes "^FF00001 Embryo^000000,";
  1909. mes "^FF00001 Glass Tube^000000,";
  1910. mes "^FF00001 Seed of Life^000000 and";
  1911. mes "^FF00001 Morning Dew of Yggdrasil^000000.";
  1912. next;
  1913. mes "[Keshibien]";
  1914. mes "Well, that's all the";
  1915. mes "technical information";
  1916. mes "I have to share with you.";
  1917. mes "Always remember to treat";
  1918. mes "your Homunculus well. Eh,";
  1919. mes "once you summon one, anyway.";
  1920. next;
  1921. mes "[Keshibien]";
  1922. mes "But before you can do";
  1923. mes "that, you need to learn";
  1924. mes "the techniques that only";
  1925. mes "Kellasus can teach you.";
  1926. mes "For now, go to ^FF0000Broncher^000000";
  1927. mes "and learn from him, okay?";
  1928. next;
  1929. mes "[Keshibien]";
  1930. mes "Broncher happens";
  1931. mes "to specialize in the";
  1932. mes "Homunculus Resurrection";
  1933. mes "skill. You should be able to";
  1934. mes "find him somewhere in town,";
  1935. mes "though I'm unsure where...";
  1936. next;
  1937. set bioeth,6;
  1938. mes "[Keshibien]";
  1939. mes "Anyway, it was really";
  1940. mes "nice to meet you. Hopefully,";
  1941. mes "you'll be able to learn how";
  1942. mes "to fully use a Homunculus";
  1943. mes "someday soon. Still, you'll";
  1944. mes "need to convince Kellasus...";
  1945. close;
  1946. }
  1947. mes "[Keshibien]";
  1948. mes "Hello there~";
  1949. mes "You must be from";
  1950. mes "Rune-Midgarts, right?";
  1951. mes "It's nice to meet you.";
  1952. next;
  1953. mes "[Keshibien]";
  1954. mes "I hear that the";
  1955. mes "Alchemists from";
  1956. mes "over there are pretty";
  1957. mes "skilled. I wonder if I'll";
  1958. mes "ever get the chance to";
  1959. mes "collaborate with any of them...";
  1960. close;
  1961. }
  1962. lhz_in02,278,273,3 script Broncher#qsk_al 709,{
  1963. if (BaseJob == Job_Alchemist && bioeth > 6) {
  1964. mes "[Broncher]";
  1965. mes "You again? Didn't I already";
  1966. mes "teach you the Homunculus";
  1967. mes "Resurrection skill? Come";
  1968. mes "on, there's nothing else";
  1969. mes "I can do for you. Lemme";
  1970. mes "enjoy myself here...";
  1971. next;
  1972. mes "[Broncher]";
  1973. mes "If you didn't already,";
  1974. mes "go and bother Kellasus";
  1975. mes "and get him to teach you the";
  1976. mes "basic Homunculus techniques.";
  1977. mes "Now go away, you're sobering";
  1978. mes "me up! Go on, get outta here!";
  1979. close;
  1980. }
  1981. if (BaseJob == Job_Alchemist && bioeth == 6) {
  1982. mes "[Broncher]";
  1983. mes "^333333*Hiccup!*^000000";
  1984. mes "Oh man...";
  1985. mes "Oh man, this stuff";
  1986. mes "is great! Yeah. Yeah,";
  1987. mes "this really hits the spot.";
  1988. next;
  1989. mes "[Brocher]";
  1990. mes "Holy crap! Y-you're that";
  1991. mes "Alchemist that Skrajjad";
  1992. mes "told me to expect! Wha--?";
  1993. mes "You already visited Keshibien?";
  1994. mes "Crap! I thought you wouldn't";
  1995. mes "get here for another... Hour!";
  1996. next;
  1997. mes "[Broncher]";
  1998. mes "Oh, forget sobering.";
  1999. mes "I'll just teach you the";
  2000. mes "^FF0000Homunculus Resurrection^000000";
  2001. mes "skill. It's one of the last";
  2002. mes "skills you need to learn";
  2003. mes "for Homunculi, anyway.";
  2004. next;
  2005. mes "[Broncher]";
  2006. mes "Yes, you can literally";
  2007. mes "bring Homunculi back";
  2008. mes "from the dead. Oh, and you";
  2009. mes "should know that this skill is";
  2010. mes "mastered at Skill Level 5.";
  2011. next;
  2012. mes "[Broncher]";
  2013. mes "To bring your";
  2014. mes "Homunculus back from";
  2015. mes "the dead, you just push";
  2016. mes "this button, the one that's";
  2017. mes "labeled, ''Homunculus";
  2018. mes "Resurrection.'' Easy, right?";
  2019. next;
  2020. mes "[Broncher]";
  2021. mes "Well, lesson's over.";
  2022. mes "You know everything you";
  2023. mes "need to know about using";
  2024. mes "Homunculus Resurrection.";
  2025. mes "But you still need Kellasus";
  2026. mes "to teach you the fundamentals.";
  2027. set bioeth,7;
  2028. next;
  2029. mes "[Broncher]";
  2030. mes "Without those basic";
  2031. mes "techiques, everything";
  2032. mes "you've studied from us";
  2033. mes "will be for nothing. So...";
  2034. mes "Lots of luck convincing";
  2035. mes "Kellasus to teach you.";
  2036. next;
  2037. mes "[Broncher]";
  2038. mes "Now leave alone";
  2039. mes "and let me enjoy";
  2040. mes "all of this alcohol";
  2041. mes "in solitude, alright?";
  2042. close;
  2043. }
  2044. mes "[Broncher]";
  2045. mes "^333333*Hiccup~*^000000";
  2046. mes "Oh yeah, this is";
  2047. mes "the stuff! I call it...";
  2048. mes "My ''Anti-Sobriety''";
  2049. mes "formula! Can't think";
  2050. mes "of a finer thing created...";
  2051. close;
  2052. }
  2053. lhz_in03,106,34,3 script Koring#qsk_al 706,{
  2054. if (BaseJob == Job_Alchemist && bioeth == 8 || bioeth == 9) {
  2055. mes "[Koring]";
  2056. mes "My daddy is the bestest";
  2057. mes "Alchemist! He's sooooo";
  2058. mes "smart, and I never heard";
  2059. mes "him be wrong before!";
  2060. next;
  2061. mes "[Koring]";
  2062. mes "Daddy's been thinking";
  2063. mes "a lot lately and I don't";
  2064. mes "know why. Daddy gets ";
  2065. mes "really serious when he's ";
  2066. mes "worried about something.";
  2067. next;
  2068. mes "[Koring]";
  2069. mes "He's always trying hard";
  2070. mes "to make me happy and to ";
  2071. mes "help me when I have problems.";
  2072. mes "Like the time I was really sick... ^FFFFFF ^000000";
  2073. next;
  2074. mes "[Koring]";
  2075. mes "Daddy did his best to make";
  2076. mes "some medicine to help me, ";
  2077. mes "and he looked all over for any";
  2078. mes "doctor who could cure me. For";
  2079. mes "a while, I was really scared,";
  2080. mes "but my Daddy never gave up.";
  2081. next;
  2082. if (bioeth == 8) set bioeth,9;
  2083. mes "[Koring]";
  2084. mes "He might be a little";
  2085. mes "grumpy now, but my ";
  2086. mes "Daddy is still the best!";
  2087. mes "I hope he feels better soon.";
  2088. close;
  2089. }
  2090. mes "[Koring]";
  2091. mes "How did my Daddy get";
  2092. mes "so smart? I wish I could";
  2093. mes "learn things as fast as";
  2094. mes "him so that I can be an";
  2095. mes "Alchemist too when I grow up!";
  2096. close;
  2097. }
  2098. lhz_in03,109,31,5 script Beninne#qsk_al 90,{
  2099. if (BaseJob == Job_Alchemist && bioeth == 8 || bioeth == 9) {
  2100. mes "[Beninne]";
  2101. mes "You've met my husband,";
  2102. mes "Kellasus? He's either a";
  2103. mes "very stubborn or determined";
  2104. mes "man, depending on how you";
  2105. mes "want to look at it. Once his";
  2106. mes "mind's made up, he won't budge!";
  2107. next;
  2108. mes "[Beninne]";
  2109. mes "He's a very good husband";
  2110. mes "and father, but I feel like it";
  2111. mes "takes the entire world to";
  2112. mes "change his mind once he's ";
  2113. mes "convinced that he's right";
  2114. mes "about something.";
  2115. next;
  2116. mes "[Beninne]";
  2117. mes "Of course, if you manage";
  2118. mes "to prove him wrong, he will";
  2119. mes "do everything he can to make";
  2120. mes "up for it. Kellasus has been";
  2121. mes "like that since I first met him.";
  2122. next;
  2123. mes "[Beninne]";
  2124. mes "It feels so nice to";
  2125. mes "have someone like that";
  2126. mes "to be protective of you.";
  2127. mes "Kellasus loves his work,";
  2128. mes "but he loves his family even";
  2129. mes "more. Amazing, isn't it?";
  2130. close;
  2131. }
  2132. mes "[Beninne]";
  2133. mes "Most people think that";
  2134. mes "being a scientist's wife";
  2135. mes "would be so difficult. I must";
  2136. mes "be lucky that my husband is";
  2137. mes "such a good family man, even";
  2138. mes "though he may be an Alchemist.";
  2139. close;
  2140. }
  2141. lighthalzen,226,210,3 script Nannan#qsk_al 86,{
  2142. mes "[Nannan]";
  2143. mes "You know, I always thought^FFFFFF ^000000 that all Alchemists were bookish,";
  2144. mes "scholarly types, their faces always buried in books and studying. But";
  2145. mes "I managed to find one who doesn't fit that nerdy stereotype at all.";
  2146. next;
  2147. mes "[Nannan]";
  2148. mes "This guy, what's-his-face,";
  2149. mes "Broncher, is always wasting";
  2150. mes "his time drinking. I guess he^FFFFFF ^000000 discovered the secret of turning";
  2151. mes "water into Grade A booze. But^FFFFFF ^000000 at least he's not the stuffy type.";
  2152. next;
  2153. mes "[Nannan]";
  2154. mes "I don't know how much";
  2155. mes "help he'd be to an aspiring";
  2156. mes "Alchemist, but in my opinion,";
  2157. mes "the man is a fully fledged";
  2158. mes "genius! At least, compared";
  2159. mes "to a street guy like me...";
  2160. close;
  2161. }
  2162. lhz_in01,218,141,7 script Alchemist#qsk_al 98,{
  2163. mes "[Alchemist]";
  2164. mes "Out of all humans,";
  2165. mes "I believe Kellasus is";
  2166. mes "the one who has come";
  2167. mes "closest to discovering";
  2168. mes "the secrets of life. He";
  2169. mes "never fails to amaze me...";
  2170. next;
  2171. mes "[Alchemist]";
  2172. mes "I'm also impressed by the";
  2173. mes "fact that he doesn't let his";
  2174. mes "work keep him from being the";
  2175. mes "best father and husband that";
  2176. mes "he can for his family. He's";
  2177. mes "an example for all of us.";
  2178. next;
  2179. mes "[Alchemist]";
  2180. mes "Kellasus really is";
  2181. mes "an amazing person.";
  2182. mes "There isn't one Alchemist";
  2183. mes "that I know who doesn't look";
  2184. mes "up to him in the realms of";
  2185. mes "both science and personal life.";
  2186. close;
  2187. }
  2188. //============================================================
  2189. // Old changelog
  2190. //============================================================
  2191. //= 1.0 for fully working skills only [Lupus]
  2192. //= 1.1 Added more new skill quests for more classes [Lupus]
  2193. //= Somehow eA engine doesn't let you keep learn't skill V_V'
  2194. //= 1.2 Added to correct locations, correct NPC's, fixed
  2195. //= some of the items required and made them into real
  2196. //= quests. [Reddozen]
  2197. //= 1.3 Fixed bugs and minor typos. Optimized [Lupus]
  2198. //= 1.3a fixed an item ID typo, thx 2Spiritual Kid
  2199. //= 1.3b Splitted into different files [DracoRPG]
  2200. //= 1.4 Added Creators + Baby Alchemists can pass Bio Ethics
  2201. //= Quest too [Lupus]
  2202. //= 1.5 Removed duplicates [Toms] 1.5a fixed typo [Lupus]
  2203. //= 1.6 Moved some NPCs related to Lighthalzen quests. [SinSloth]
  2204. //= 1.7 Updated "Elemental Potion Creation Quest" to the official one. [Samuray22]
  2205. //= 1.8 Added some missing NPCs from the Laboratory. [Samuray22]
  2206. //= 1.8a replaced item "names" with item id [Lupus]
  2207. //============================================================