[1] | 1 | //===== eAthena Script ======================================= |
---|
| 2 | //= Amatsu Script |
---|
| 3 | //===== By: ================================================== |
---|
| 4 | //= Some people & eAthena Dev Team |
---|
| 5 | //===== Current Version: ===================================== |
---|
| 6 | //= 1.3 |
---|
| 7 | //===== Compatible With: ===================================== |
---|
| 8 | //= eAthena SVN |
---|
| 9 | //===== Description: ========================================= |
---|
| 10 | //= [Aegis Conversion] |
---|
| 11 | //= Amatsu Town Script |
---|
| 12 | //===== Additional Comments: ================================= |
---|
| 13 | //= 1.3 Rescripted to Aegis 10.3 Standards. [L0ne_W0lf] |
---|
| 14 | //= Moved elemental stone trader to 'elemental_trader.txt' |
---|
| 15 | //============================================================ |
---|
| 16 | |
---|
| 17 | // Amatsu Transportation |
---|
| 18 | //===================================================== |
---|
| 19 | alberta,245,93,3 script Sea Captain#ama1 709,{ |
---|
| 20 | mes "[Walter Moers]"; |
---|
| 21 | mes "Hey, there."; |
---|
| 22 | mes "Have you ever heard that there"; |
---|
| 23 | mes "are totally different countries"; |
---|
| 24 | mes "than the Rune-Midgard Kingdom?"; |
---|
| 25 | next; |
---|
| 26 | switch(select("About Amatsu...:Go to Amatsu:Cancel")) { |
---|
| 27 | case 1: |
---|
| 28 | mes "[Walter Moers]"; |
---|
| 29 | mes "I heard that a drifting ship"; |
---|
| 30 | mes "accidentally discovered it..."; |
---|
| 31 | mes "The ship was totally destroyed"; |
---|
| 32 | mes "by a raging storm in heavy fog."; |
---|
| 33 | mes " "; |
---|
| 34 | next; |
---|
| 35 | mes "[Walter Moers]"; |
---|
| 36 | mes "Anyway, the ship was wrecked"; |
---|
| 37 | mes "on the beach. It was there"; |
---|
| 38 | mes "he arrived at a town called Amatsu."; |
---|
| 39 | next; |
---|
| 40 | mes "[Walter Moers]"; |
---|
| 41 | mes "The towners took pity on him"; |
---|
| 42 | mes "and took care of his wounds."; |
---|
| 43 | mes "He lived there until he finished making a map."; |
---|
| 44 | next; |
---|
| 45 | mes "[Walter Moers]"; |
---|
| 46 | mes "He passed away when he returned"; |
---|
| 47 | mes "to Rune-Midgard. Fortunately,"; |
---|
| 48 | mes "the map was given to our king, Tristan III."; |
---|
| 49 | next; |
---|
| 50 | mes "[Walter Moers]"; |
---|
| 51 | mes "King Tristan III announced"; |
---|
| 52 | mes "that he would reward any"; |
---|
| 53 | mes "person brave enough to venture to Amatsu, and spread copies of this map."; |
---|
| 54 | next; |
---|
| 55 | mes "[Walter Moers]"; |
---|
| 56 | mes "Many brave and adventurous"; |
---|
| 57 | mes "sea captains took the"; |
---|
| 58 | mes "challenge. Great fortune could"; |
---|
| 59 | mes "be made in trade with Amatsu, as well as the rewards from King Tristan III..."; |
---|
| 60 | next; |
---|
| 61 | mes "[Walter Moers]"; |
---|
| 62 | mes "However, they all failed!"; |
---|
| 63 | mes "To overcome various currents"; |
---|
| 64 | mes "and bad weather, lots of"; |
---|
| 65 | mes "experience is required. But they were all blinded by their greed..."; |
---|
| 66 | next; |
---|
| 67 | mes "[Walter Moers]"; |
---|
| 68 | mes "Finally, a great man discovered"; |
---|
| 69 | mes "the perfect sealane to Amatsu..."; |
---|
| 70 | mes "Right! That is me. Sir Walter"; |
---|
| 71 | mes "Moers. I started the trade with Amatsu! Hahaha! Well, that's all about Amatsu."; |
---|
| 72 | next; |
---|
| 73 | mes "[Walter Moers]"; |
---|
| 74 | mes "I made good money from trades"; |
---|
| 75 | mes "for years, and now I'm interested"; |
---|
| 76 | mes "in tourism. If you want to go to Amatsu, let me know~!"; |
---|
| 77 | close; |
---|
| 78 | case 2: |
---|
| 79 | mes "[Walter Moers]"; |
---|
| 80 | mes "Oh yeah? It's a long way to"; |
---|
| 81 | mes "Amatsu. That's why we are"; |
---|
| 82 | mes "charging a fare. You don't think that crossing oceans and currents is easy, do you?"; |
---|
| 83 | next; |
---|
| 84 | mes "[Walter Moers]"; |
---|
| 85 | mes "10,000 zeny for a round-trip! I've"; |
---|
| 86 | mes "got a stately room in a sturdy and"; |
---|
| 87 | mes "safe trade ship for you. It is a "; |
---|
| 88 | mes "reasonable fare when you consider"; |
---|
| 89 | mes "that this isn't a one way trip."; |
---|
| 90 | next; |
---|
| 91 | mes "[Walter Moers]"; |
---|
| 92 | mes "Shall we go now? You didn't forget"; |
---|
| 93 | mes "the fare, right? Let's go."; |
---|
| 94 | next; |
---|
| 95 | if (select("All Aboard!:Cancel") == 1) { |
---|
| 96 | if (Zeny > 9999) { |
---|
| 97 | mes "[Walter Moers]"; |
---|
| 98 | mes "Alright, I will start the engine!"; |
---|
| 99 | close2; |
---|
| 100 | set zeny,zeny-10000; |
---|
| 101 | warp "amatsu",197,83; |
---|
| 102 | end; |
---|
| 103 | } |
---|
| 104 | mes "[Walter Moers]"; |
---|
| 105 | mes "Were you even listening to me?"; |
---|
| 106 | mes "10,000 zeny. If you got"; |
---|
| 107 | mes "nothing, find some treasure"; |
---|
| 108 | mes "somewhere, like in a wrecked ship...Show me the money!"; |
---|
| 109 | close; |
---|
| 110 | } |
---|
| 111 | mes "[Walter Moers]"; |
---|
| 112 | mes "If you are an adventurer,"; |
---|
| 113 | mes "this is a great chance"; |
---|
| 114 | mes "to experience a different culture...Well, it is up to you."; |
---|
| 115 | close; |
---|
| 116 | case 3: |
---|
| 117 | mes "[Walter Moers]"; |
---|
| 118 | mes "If you are tired of your daily"; |
---|
| 119 | mes "life, take a trip to a distant"; |
---|
| 120 | mes "country across the ocean."; |
---|
| 121 | mes "Someplace like, oh I don't know, Amatsu~"; |
---|
| 122 | close; |
---|
| 123 | } |
---|
| 124 | } |
---|
| 125 | |
---|
| 126 | amatsu,194,79,5 script Sea Captain#ama2 709,{ |
---|
| 127 | mes "[Walter Moers]"; |
---|
| 128 | mes "You came... Did you enjoy"; |
---|
| 129 | mes "your trip to Amatsu...?"; |
---|
| 130 | mes "Alright, I will take you"; |
---|
| 131 | mes "back to Alberta."; |
---|
| 132 | next; |
---|
| 133 | if (select("Back to Alberta:Cancel") == 1) { |
---|
| 134 | mes "[Walter Moers]"; |
---|
| 135 | mes "Let's go then. You must have"; |
---|
| 136 | mes "so many things to talk about,"; |
---|
| 137 | mes "right? All aboard now."; |
---|
| 138 | close2; |
---|
| 139 | warp "alberta",243,91; |
---|
| 140 | end; |
---|
| 141 | } |
---|
| 142 | mes "[Walter Moers]"; |
---|
| 143 | mes "Well, take your time."; |
---|
| 144 | mes "The ship to Alberta is"; |
---|
| 145 | mes "always ready to depart..."; |
---|
| 146 | close; |
---|
| 147 | } |
---|
| 148 | |
---|
| 149 | // Generic Amatsu NPCs |
---|
| 150 | //===================================================== |
---|
| 151 | amatsu,230,160,3 script Well-side Maiden#ama 757,{ |
---|
| 152 | mes "[Yuuko]"; |
---|
| 153 | mes "I usually come to this well to"; |
---|
| 154 | mes "draw water, but never when it's"; |
---|
| 155 | mes "foggy or rainy. For some reason"; |
---|
| 156 | mes "whenever the weather is a"; |
---|
| 157 | mes "certain way, I feel like..."; |
---|
| 158 | next; |
---|
| 159 | mes "[Yuuko]"; |
---|
| 160 | mes "...someone...or some thing is"; |
---|
| 161 | mes "struggling to crawl out from"; |
---|
| 162 | mes "the bottom of this well..."; |
---|
| 163 | mes "It really gives me the creeps."; |
---|
| 164 | close; |
---|
| 165 | } |
---|
| 166 | |
---|
| 167 | amatsu,179,107,4 script John#ama 86,{ |
---|
| 168 | mes "[John]"; |
---|
| 169 | mes "Yo~"; |
---|
| 170 | mes "You're not from around here."; |
---|
| 171 | mes "Heh, another outsider."; |
---|
| 172 | mes "Just like me..."; |
---|
| 173 | next; |
---|
| 174 | mes "[John]"; |
---|
| 175 | mes "It's been five long years"; |
---|
| 176 | mes "since I've started doing"; |
---|
| 177 | mes "business here..."; |
---|
| 178 | next; |
---|
| 179 | mes "[John]"; |
---|
| 180 | mes "Af first, I thought, 'What"; |
---|
| 181 | mes "a great chance!' when the"; |
---|
| 182 | mes "trade between the Rune-Midgard"; |
---|
| 183 | mes "Kingdom and Amatsu started."; |
---|
| 184 | next; |
---|
| 185 | mes "[John]"; |
---|
| 186 | mes "I wanted to do something great"; |
---|
| 187 | mes "and make the most of this"; |
---|
| 188 | mes "new opportunity."; |
---|
| 189 | next; |
---|
| 190 | mes "[John]"; |
---|
| 191 | mes "And so, I decided to go to"; |
---|
| 192 | mes "Amatsu so I could learn to make"; |
---|
| 193 | mes "Amatsu cuisine. Then, I could"; |
---|
| 194 | mes "return to my hometown and make"; |
---|
| 195 | mes "this exotic food for everyone."; |
---|
| 196 | next; |
---|
| 197 | mes "[John]"; |
---|
| 198 | mes "But, I fell in love with Amatsu"; |
---|
| 199 | mes "and I ended up sticking around"; |
---|
| 200 | mes "here for the last five years."; |
---|
| 201 | mes "During all that time, I've"; |
---|
| 202 | mes "been learning Amatsu cuisine,"; |
---|
| 203 | next; |
---|
| 204 | mes "[John]"; |
---|
| 205 | mes "and cooking these dishes for"; |
---|
| 206 | mes "the towners, and enjoying myself"; |
---|
| 207 | mes "by talking to the locals,"; |
---|
| 208 | mes "transfixed in this very spot."; |
---|
| 209 | next; |
---|
| 210 | mes "[John]"; |
---|
| 211 | mes "But recently, across the street,"; |
---|
| 212 | mes "the Sushi Master opened his shop."; |
---|
| 213 | mes "..."; |
---|
| 214 | mes "Now, my only customers are flies."; |
---|
| 215 | next; |
---|
| 216 | mes "[John]"; |
---|
| 217 | mes "I was hoping to fulfill my"; |
---|
| 218 | mes "dream of becoming a renowned chef"; |
---|
| 219 | mes "in Amatsu, but..."; |
---|
| 220 | mes "I guess it's over..."; |
---|
| 221 | close; |
---|
| 222 | } |
---|
| 223 | |
---|
| 224 | amatsu,205,163,3 script Mimi#ama 759,{ |
---|
| 225 | mes "[Mimi]"; |
---|
| 226 | mes "Puhuhu~!"; |
---|
| 227 | mes "Did you see Miss Amatsu near"; |
---|
| 228 | mes "the Harbor? Isn't she"; |
---|
| 229 | mes "preeeetty?"; |
---|
| 230 | next; |
---|
| 231 | mes "[Mimi]"; |
---|
| 232 | mes "I'm going to enter the Miss"; |
---|
| 233 | mes "Amatsu Contest when I'm older."; |
---|
| 234 | next; |
---|
| 235 | mes "[Mimi]"; |
---|
| 236 | mes "I'm sure that I'm the prettiest"; |
---|
| 237 | mes "in this town but..."; |
---|
| 238 | mes "A lady can always use a little more makeup."; |
---|
| 239 | close; |
---|
| 240 | } |
---|
| 241 | |
---|
| 242 | amatsu,185,115,3 script Drunken Man#ama 765,{ |
---|
| 243 | mes "[Kosake]"; |
---|
| 244 | mes "*Hiccup*...My wife is just like,"; |
---|
| 245 | mes "...like a man...*Hiccup*..."; |
---|
| 246 | mes "I'm going to really...*Hiccup*...not go home this time...Hiccup"; |
---|
| 247 | next; |
---|
| 248 | if (select("Stop drinking and go home:Let's drink together") == 1) { |
---|
| 249 | mes "[Kosake]"; |
---|
| 250 | mes "What?! Do you want me to get"; |
---|
| 251 | mes "hit by my wife's big fist?"; |
---|
| 252 | mes "That's right! I said 'big fist!'"; |
---|
| 253 | next; |
---|
| 254 | mes "[Kosake]"; |
---|
| 255 | mes "Sad to say, I married a woman"; |
---|
| 256 | mes "with man hands..."; |
---|
| 257 | mes "Big, strong hands that can kill a tiger."; |
---|
| 258 | next; |
---|
| 259 | mes "[Druken Man]"; |
---|
| 260 | mes "It was in Ko...Koko-something"; |
---|
| 261 | mes "town. She hit me because I"; |
---|
| 262 | mes "lost some money...*Hiccup*"; |
---|
| 263 | next; |
---|
| 264 | mes "[Druken Man]"; |
---|
| 265 | mes "Life~~ is~~ nothing~~~"; |
---|
| 266 | mes "What is zeny~~~~ "; |
---|
| 267 | mes "*Hiccup*...... *Hiccup*......."; |
---|
| 268 | mes "......................."; |
---|
| 269 | mes "........Z.z..z...zzz..."; |
---|
| 270 | close; |
---|
| 271 | } |
---|
| 272 | mes "[Kosake]"; |
---|
| 273 | mes "Heh heh... nice lad..."; |
---|
| 274 | mes "But you know *Hiccup*"; |
---|
| 275 | mes "I can't give you any of mine! Heheheh..."; |
---|
| 276 | next; |
---|
| 277 | mes "[Kosake]"; |
---|
| 278 | mes "If you buy me a drink, I will think about it...Hehehe...*Hiccup*.."; |
---|
| 279 | close; |
---|
| 280 | } |
---|
| 281 | |
---|
| 282 | amatsu,217,179,1 script Grandma#ama 760,{ |
---|
| 283 | mes "[Hatsue]"; |
---|
| 284 | mes "I'm worried about my husband."; |
---|
| 285 | mes "He lost a lot of money in some distant town today."; |
---|
| 286 | next; |
---|
| 287 | mes "[Hatsue]"; |
---|
| 288 | mes "I got so mad at him, he ran off in"; |
---|
| 289 | mes "fear! I'm worried...what if he"; |
---|
| 290 | mes "went to the bar and starts drinking again? The man just doesn't have any backbone. *Phew*"; |
---|
| 291 | close; |
---|
| 292 | } |
---|
| 293 | |
---|
| 294 | amatsu,287,266,3 script Jyaburo#ama 766,{ |
---|
| 295 | mes "[Jyaburo]"; |
---|
| 296 | mes "This place is special to me."; |
---|
| 297 | mes "It's filled with memories of my wife."; |
---|
| 298 | next; |
---|
| 299 | mes "[Jyaburo]"; |
---|
| 300 | mes "It was under that big tree where"; |
---|
| 301 | mes "I first told her I loved her. At"; |
---|
| 302 | mes "the time, I really didn't know that she also had feelings for me."; |
---|
| 303 | next; |
---|
| 304 | mes "[Jyaburo]"; |
---|
| 305 | mes "After that day, we had many"; |
---|
| 306 | mes "conversations here. Quiet"; |
---|
| 307 | mes "and peaceful, this was our"; |
---|
| 308 | mes "favorite place to be together."; |
---|
| 309 | next; |
---|
| 310 | mes "[Jyaburo]"; |
---|
| 311 | mes "When I close my eyes here, I"; |
---|
| 312 | mes "can picture our good times,"; |
---|
| 313 | mes "and it feels like it all happened yesterday."; |
---|
| 314 | mes "..."; |
---|
| 315 | next; |
---|
| 316 | mes "[Jyaburo]"; |
---|
| 317 | mes "My wife passed away..."; |
---|
| 318 | mes "So now I only come here by"; |
---|
| 319 | mes "myself...But I feel like I'm with her whenever I'm here."; |
---|
| 320 | next; |
---|
| 321 | mes "[Jyaburo]"; |
---|
| 322 | mes "Do you have anyone that you"; |
---|
| 323 | mes "think about? If you have a"; |
---|
| 324 | mes "special someone, don't hesitate"; |
---|
| 325 | mes "or hold back. Be sure to treat"; |
---|
| 326 | mes "that person specially."; |
---|
| 327 | next; |
---|
| 328 | mes "[Jyaburo]"; |
---|
| 329 | mes "Human beings live such short"; |
---|
| 330 | mes "lives. But we're able to laugh"; |
---|
| 331 | mes "throughout life and forget the"; |
---|
| 332 | mes "sadness."; |
---|
| 333 | mes "...Always be happy."; |
---|
| 334 | close; |
---|
| 335 | } |
---|
| 336 | |
---|
| 337 | // Legendary Tree |
---|
| 338 | //===================================================== |
---|
| 339 | amatsu,269,221,1 script Propose Girl#ama 758,{ |
---|
| 340 | set jap_tree,1; |
---|
| 341 | mes "[Hutari Shioko]"; |
---|
| 342 | mes "It is a pleasure to meet you."; |
---|
| 343 | mes "My name is Hutari Shioko."; |
---|
| 344 | mes "My hobby is listening to music."; |
---|
| 345 | mes "I'm an avid fan of classical music."; |
---|
| 346 | next; |
---|
| 347 | mes "[Hutari Shioko]"; |
---|
| 348 | mes "There is an old story about"; |
---|
| 349 | mes "the hill in our town."; |
---|
| 350 | mes "Have you heard this story before?"; |
---|
| 351 | next; |
---|
| 352 | mes "[Hutari Shioko]"; |
---|
| 353 | mes "It is said that if you propose"; |
---|
| 354 | mes "under that tree, you and your"; |
---|
| 355 | mes "lover will live a happy life for all eternity."; |
---|
| 356 | next; |
---|
| 357 | mes "[Hutari Shioko]"; |
---|
| 358 | mes "However, the proposal can not be"; |
---|
| 359 | mes "done at any given time. The legend states that it can only be done on Saturday evenings."; |
---|
| 360 | next; |
---|
| 361 | mes "[Hutari Shioko]"; |
---|
| 362 | mes "After the proposal, the reply must"; |
---|
| 363 | mes "be answered before Sunday evening. This is the most crucial part of it."; |
---|
| 364 | next; |
---|
| 365 | emotion e_lv2; |
---|
| 366 | mes "[Hutari Shioko]"; |
---|
| 367 | mes "If you like someone..."; |
---|
| 368 | mes "You should try proposing"; |
---|
| 369 | mes "under that tree. I'm sure "; |
---|
| 370 | mes "happy things will happen, if you do."; |
---|
| 371 | close; |
---|
| 372 | } |
---|
| 373 | |
---|
| 374 | amatsu,243,202,3 script Drama Teacher#ama 760,{ |
---|
| 375 | set jap_tree,2; |
---|
| 376 | mes "[Garakame sensei]"; |
---|
| 377 | mes "This is a beautiful place"; |
---|
| 378 | mes "with everlasting cherry blossoms."; |
---|
| 379 | mes "Also, this town is the origin of"; |
---|
| 380 | mes "legendary play, 'White Dryad.' "; |
---|
| 381 | next; |
---|
| 382 | if (Sex) { |
---|
| 383 | mes "[Garakame sensei]"; |
---|
| 384 | mes "If you know a girl who is"; |
---|
| 385 | mes "talented in acting, please"; |
---|
| 386 | mes "bring her to me. I have been"; |
---|
| 387 | mes "searching for a girl who could"; |
---|
| 388 | mes "play the role as the 'White Dryad.'"; |
---|
| 389 | next; |
---|
| 390 | mes "[Garakame sensei]"; |
---|
| 391 | mes "The 'White Dryad' is a nymph of"; |
---|
| 392 | mes "cherry tree... It has been hard to"; |
---|
| 393 | mes "find a girl who can perform"; |
---|
| 394 | mes "as the 'White Drayd...'"; |
---|
| 395 | close; |
---|
| 396 | } |
---|
| 397 | emotion e_gasp; |
---|
| 398 | mes "[Garakame sensei]"; |
---|
| 399 | mes "Are you interested in acting?"; |
---|
| 400 | mes "I need someone who sees"; |
---|
| 401 | mes "the passion in acting and"; |
---|
| 402 | mes "can understand my vision."; |
---|
| 403 | next; |
---|
| 404 | mes "[Garakame sensei]"; |
---|
| 405 | mes "When you stand on the stage,"; |
---|
| 406 | mes "you need to become the"; |
---|
| 407 | mes "character. Your acting needs"; |
---|
| 408 | mes "to touch the hearts of the"; |
---|
| 409 | mes "audience and touch their souls."; |
---|
| 410 | next; |
---|
| 411 | mes "[Garakame sensei]"; |
---|
| 412 | mes "Everyone's life is like a "; |
---|
| 413 | mes "drama, right? Enjoy your life"; |
---|
| 414 | mes "as what you are and find me"; |
---|
| 415 | mes "someday when you are ready."; |
---|
| 416 | close; |
---|
| 417 | } |
---|
| 418 | |
---|
| 419 | amatsu,283,203,1 script Bonubonu#ama1 1323,{ |
---|
| 420 | end; |
---|
| 421 | } |
---|
| 422 | |
---|
| 423 | amatsu,283,203,1 script Bonubonu#ama2 111,{ |
---|
| 424 | set jap_tree,3; |
---|
| 425 | emotion e_swt2; |
---|
| 426 | mes "[Bonubonu]"; |
---|
| 427 | mes "That tree on the hill is"; |
---|
| 428 | mes "a very old tree. It is a big"; |
---|
| 429 | mes "cherry tree with everlasting blossoms."; |
---|
| 430 | next; |
---|
| 431 | emotion e_swt2; |
---|
| 432 | mes "[Bonubonu]"; |
---|
| 433 | mes "There is something about this"; |
---|
| 434 | mes "tree that makes me forget about"; |
---|
| 435 | mes "all the troubles in my life when I sit under it."; |
---|
| 436 | next; |
---|
| 437 | emotion e_swt2; |
---|
| 438 | mes "[Bonubonu]"; |
---|
| 439 | mes "Everything about this tree is"; |
---|
| 440 | mes "simply wonderful..."; |
---|
| 441 | mes "I can't really describe how"; |
---|
| 442 | mes "I feel when I look at it..."; |
---|
| 443 | mes "It just leaves me breathless..."; |
---|
| 444 | next; |
---|
| 445 | emotion e_swt2; |
---|
| 446 | mes "[Bonubonu]"; |
---|
| 447 | mes "You should visit the tree and"; |
---|
| 448 | mes "spend some time there."; |
---|
| 449 | mes "It is really a miraculous and gracious tree..."; |
---|
| 450 | close; |
---|
| 451 | } |
---|
| 452 | |
---|
| 453 | amatsu,274,178,7 script Veterinarian#ama 735,{ |
---|
| 454 | set jap_tree,4; |
---|
| 455 | mes "[Sakura Seiichi]"; |
---|
| 456 | mes "Ah... I'm not a weirdo so"; |
---|
| 457 | mes "don't panic. I'm just an ordinary"; |
---|
| 458 | mes "veterinarian. My job is curing"; |
---|
| 459 | mes "sick animals."; |
---|
| 460 | mes " "; |
---|
| 461 | next; |
---|
| 462 | mes "[Sakura Seiichi]"; |
---|
| 463 | mes "By the way... Do you know?"; |
---|
| 464 | mes "The story about the cherry tree"; |
---|
| 465 | mes "on the hill...I guess you haven't heard about it..."; |
---|
| 466 | next; |
---|
| 467 | mes "[Sakura Seiichi]"; |
---|
| 468 | mes "That tree has a secret of"; |
---|
| 469 | mes "keeping its beauty and whiteness."; |
---|
| 470 | mes "The secret is..."; |
---|
| 471 | mes "There are corpses buried under..."; |
---|
| 472 | mes "that tree..."; |
---|
| 473 | next; |
---|
| 474 | if (select("How horrible!:You have got to be kidding.") == 1) { |
---|
| 475 | mes "[Sakura Seiichi]"; |
---|
| 476 | mes "Kuhuhu... They could be..."; |
---|
| 477 | mes "By the way, do you want"; |
---|
| 478 | mes "make a bet on it...?"; |
---|
| 479 | next; |
---|
| 480 | emotion e_dots; |
---|
| 481 | mes "[Sakura Seiichi]"; |
---|
| 482 | mes "If I.........."; |
---|
| 483 | mes "............"; |
---|
| 484 | mes "........."; |
---|
| 485 | next; |
---|
| 486 | mes "^3355FFHis voice was getting lower"; |
---|
| 487 | mes "and lower as the wind blew."; |
---|
| 488 | mes "Finally, I couldn't even hear his voice. I can't even recall what he was trying to tell me...^000000"; |
---|
| 489 | close; |
---|
| 490 | } |
---|
| 491 | mes "[Sakura Seiichi]"; |
---|
| 492 | mes "I can't help it if you think that way. But one day, you too could be buried underneath..."; |
---|
| 493 | next; |
---|
| 494 | emotion e_dots; |
---|
| 495 | mes "[Sakura Seiichi]"; |
---|
| 496 | mes "Haha... Hahaha....."; |
---|
| 497 | mes "..............."; |
---|
| 498 | mes "..........."; |
---|
| 499 | next; |
---|
| 500 | mes "^3355FFHis laugh was getting lower"; |
---|
| 501 | mes "and lower as the wind blew."; |
---|
| 502 | mes "Finally, I couldn't even hear anything. I can't even recall what he was trying to tell me...^000000"; |
---|
| 503 | close; |
---|
| 504 | } |
---|
| 505 | |
---|
| 506 | amatsu,262,197,1 script Legendary Tree 111,{ |
---|
| 507 | if (jap_tree == 1) { |
---|
| 508 | mes "^3355FFAs she mentioned, this tree"; |
---|
| 509 | mes "seems to be a famous place"; |
---|
| 510 | mes "for proposing lovers."; |
---|
| 511 | mes "There were several carved symbols"; |
---|
| 512 | mes "of hearts and initials of lovers"; |
---|
| 513 | mes "on the bark.^000000"; |
---|
| 514 | next; |
---|
| 515 | mes "^3355FFBesides proposals, people"; |
---|
| 516 | mes "gather under this tree when"; |
---|
| 517 | mes "they discuss important"; |
---|
| 518 | mes "matters. I could listen to"; |
---|
| 519 | mes "all kinds of stories"; |
---|
| 520 | mes "in this magnificent place.^000000"; |
---|
| 521 | close; |
---|
| 522 | } |
---|
| 523 | else if (jap_tree == 2) { |
---|
| 524 | mes "^3355FFThe legendary play, 'White Dryad'....."; |
---|
| 525 | mes "I never heard about that title but"; |
---|
| 526 | mes "it sounds familiar."; |
---|
| 527 | mes "Nymph of cherry tree... What would"; |
---|
| 528 | mes "be her position in the play?^000000"; |
---|
| 529 | next; |
---|
| 530 | if (Sex) { |
---|
| 531 | mes "^3355FFI would like to find"; |
---|
| 532 | mes "a person who is talented"; |
---|
| 533 | mes "in acting and help her until"; |
---|
| 534 | mes "she performs the play. However,"; |
---|
| 535 | mes "it seems to be easier said than done.^000000"; |
---|
| 536 | close; |
---|
| 537 | } |
---|
| 538 | mes "^3355FFI might have talent in"; |
---|
| 539 | mes "acting which hasn't been discovered yet. I thought, 'If I dress up, I should perform as the 'White Dryad...'^000000"; |
---|
| 540 | close; |
---|
| 541 | } |
---|
| 542 | else if (jap_tree == 3) { |
---|
| 543 | mes "^3355FFUnlike other cherry trees,"; |
---|
| 544 | mes "this tree has a strong fragnance."; |
---|
| 545 | mes "I just fell into a relaxed"; |
---|
| 546 | mes "mood. The fragnance eased"; |
---|
| 547 | mes "my burdens and I felt"; |
---|
| 548 | mes "very comfortable.^000000"; |
---|
| 549 | next; |
---|
| 550 | mes "^3355FFIt was just for a few moments"; |
---|
| 551 | mes "but I could forget the"; |
---|
| 552 | mes "burdens of life. I wish to"; |
---|
| 553 | mes "come back again and"; |
---|
| 554 | mes "sit under this tree...^000000"; |
---|
| 555 | close; |
---|
| 556 | } |
---|
| 557 | else if (jap_tree == 4) { |
---|
| 558 | mes "^3355FFThis strong fragnance"; |
---|
| 559 | mes "is making me dizzy. Not like"; |
---|
| 560 | mes "other cherry trees, this tree's"; |
---|
| 561 | mes "shimmering white petals"; |
---|
| 562 | mes "felt strange.^000000"; |
---|
| 563 | next; |
---|
| 564 | mes "^3355FFIt feels as if my soul is"; |
---|
| 565 | mes "being drained if I stay here"; |
---|
| 566 | mes "longer. After a glimpse of"; |
---|
| 567 | mes "the cherry tree, I thought to"; |
---|
| 568 | mes "mayself, 'I must get out of here quickly.'^000000"; |
---|
| 569 | close; |
---|
| 570 | } |
---|
| 571 | mes "^3355FFThere was a cherry tree"; |
---|
| 572 | mes "on the hill. It doesn't look"; |
---|
| 573 | mes "like the other trees."; |
---|
| 574 | mes "This tree seems to have"; |
---|
| 575 | mes "a long history...^000000"; |
---|
| 576 | next; |
---|
| 577 | mes "^3355FFAre there any people"; |
---|
| 578 | mes "who live here? I took"; |
---|
| 579 | mes "a look around and found"; |
---|
| 580 | mes "someone down the hill."; |
---|
| 581 | mes "I better ask her about this tree.^000000"; |
---|
| 582 | close; |
---|
| 583 | } |
---|
| 584 | |
---|
| 585 | //============================================================ |
---|
| 586 | // Old changelog |
---|
| 587 | //============================================================ |
---|
| 588 | //= Amatsu Town NPCs : Revision 2 (Fox quest fix) |
---|
| 589 | //= Translated by Makenshi and dj |
---|
| 590 | //= Revisions and edits by Valaris and Darkchild |
---|
| 591 | //= 1.01 event_sushi -> ama_sushi fixed |
---|
| 592 | //= and other fixes, thanks to Shinomori |
---|
| 593 | //= 1.02 Fixed & Spell Checked [massdriller] |
---|
| 594 | //= 1.03 Fixed 2 NPC names, slight optimization [Lupus] |
---|
| 595 | //= 1.04 Fixed a few typos [Nexon] |
---|
| 596 | //= 1.05 Changed all breaks to ends. [Skotlex] |
---|
| 597 | //= 1.06 The Captain now uses iRO dialog [MasterOfMuppets] |
---|
| 598 | //= 1.07 Implemented a missing NPC [MasterOfMuppets] |
---|
| 599 | //= 1.08 Removed Duplicates [Silent] |
---|
| 600 | //= 1.1 Split quests into quests/quests_amatsu.txt [Evera] |
---|
| 601 | //= 1.2 Fixed missing name [Evera] |
---|
| 602 | //============================================================ |
---|