[1] | 1 | //===== eAthena Script ======================================= |
---|
| 2 | //= Juno Monster Museum |
---|
| 3 | //===== By: ================================================== |
---|
| 4 | //= Muad_Dib (The Prometheus Project) |
---|
| 5 | //= L0ne_W0lf |
---|
| 6 | //===== Current Version: ===================================== |
---|
| 7 | //= 1.4 |
---|
| 8 | //===== Compatible With: ===================================== |
---|
| 9 | //= eAthena SVN |
---|
| 10 | //===== Description: ========================================= |
---|
| 11 | //= [Aegis Conversion] |
---|
| 12 | //= Juno Monster Museum - Non Player Character Locations |
---|
| 13 | //= - Information about various monsters |
---|
| 14 | //===== Additional Comments: ================================= |
---|
| 15 | // 07/06/05 : Added 1st Version. [Muad_Dib] |
---|
| 16 | //= Adapted to eAthena Scripting Language by [Lance] |
---|
| 17 | //= 1.1a Fixed typos [Haplo] |
---|
| 18 | //= 1.2 Rescripted to Aegis 10.3 standards. [L0ne_W0lf] |
---|
| 19 | //= 1.3 Added a Missing "case 1:". [Samuray22] |
---|
| 20 | // -Thanks to Dr.Evil |
---|
| 21 | //= 1.4 Corrected a few typos. (bugreport:1077) [L0ne_W0lf] |
---|
| 22 | //============================================================ |
---|
| 23 | |
---|
| 24 | yuno_in03,32,15,3 script Museum Guide 67,{ |
---|
| 25 | mes "[Cenia]"; |
---|
| 26 | mes "Welcome to the Monster Museum."; |
---|
| 27 | next; |
---|
| 28 | switch(select("Monster Museum?:Tips")) { |
---|
| 29 | case 1: |
---|
| 30 | mes "[Cenia]"; |
---|
| 31 | mes "The Monster Museum was founded by"; |
---|
| 32 | mes "the Sages of the Schweicherbil"; |
---|
| 33 | mes "Magic Academy after researching"; |
---|
| 34 | mes "every creature dwelling in the"; |
---|
| 35 | mes "Rune-Midgard continent."; |
---|
| 36 | next; |
---|
| 37 | mes "[Cenia]"; |
---|
| 38 | mes "In this museum, you can see every"; |
---|
| 39 | mes "single monster in Rune-Midgard,"; |
---|
| 40 | mes "even the ones you hardly ever encounter."; |
---|
| 41 | next; |
---|
| 42 | mes "[Cenia]"; |
---|
| 43 | mes "The glass tubes holding monsters"; |
---|
| 44 | mes "was developed with the latest"; |
---|
| 45 | mes "technology as a part of the"; |
---|
| 46 | mes "Schwartz Project. Rest assured,"; |
---|
| 47 | mes "you'll be well protected."; |
---|
| 48 | next; |
---|
| 49 | break; |
---|
| 50 | case 2: |
---|
| 51 | mes "[Cenia]"; |
---|
| 52 | mes "Please check on the Opaque option"; |
---|
| 53 | mes "on your option windows by"; |
---|
| 54 | mes "pressing ALT + O, if you want to"; |
---|
| 55 | mes "see the monsters better."; |
---|
| 56 | next; |
---|
| 57 | break; |
---|
| 58 | } |
---|
| 59 | mes "[Cenia]"; |
---|
| 60 | mes "Feel free to talk to me anytime."; |
---|
| 61 | close; |
---|
| 62 | } |
---|
| 63 | |
---|
| 64 | yuno_in03,36,21,3 script Deviace#yuno 1108,{ |
---|
| 65 | end; |
---|
| 66 | } |
---|
| 67 | yuno_in03,33,21,1 script #DEVIACE 111,{ |
---|
| 68 | mes " "; |
---|
| 69 | mes "Scientific name : Deviace"; |
---|
| 70 | mes "Size : Medium"; |
---|
| 71 | mes "Attribute : Water"; |
---|
| 72 | next; |
---|
| 73 | mes "Explanation :"; |
---|
| 74 | mes "This monster dwells under the deep"; |
---|
| 75 | mes "sea and has a round body with a"; |
---|
| 76 | mes "acetabulum on its dorsal side."; |
---|
| 77 | mes "Although its sharp teeth are"; |
---|
| 78 | mes "intimidating, it has a very mellow"; |
---|
| 79 | mes "character."; |
---|
| 80 | next; |
---|
| 81 | mes "Therefore, it never initiates"; |
---|
| 82 | mes "attack on an undersea traveler"; |
---|
| 83 | mes "unless it's attacked first."; |
---|
| 84 | mes "However, once it becomes upset, it"; |
---|
| 85 | mes "uses high level magic skills. So"; |
---|
| 86 | mes "it's better to be careful with this monster."; |
---|
| 87 | close; |
---|
| 88 | } |
---|
| 89 | |
---|
| 90 | yuno_in03,36,27,3 script Seal#yuno 1317,{ |
---|
| 91 | end; |
---|
| 92 | } |
---|
| 93 | yuno_in03,33,27,1 script #FUR_SEAL 111,{ |
---|
| 94 | mes " "; |
---|
| 95 | mes "Scientific name : Seal"; |
---|
| 96 | mes "Size : Medium"; |
---|
| 97 | mes "Attribute : Water"; |
---|
| 98 | next; |
---|
| 99 | mes "Explanation :"; |
---|
| 100 | mes "When you take a look at this"; |
---|
| 101 | mes "monster carefully, you will find"; |
---|
| 102 | mes "that it's not actually a seal but"; |
---|
| 103 | mes "an unidentified monster hiding"; |
---|
| 104 | mes "inside the seal-like leather"; |
---|
| 105 | mes "clothing."; |
---|
| 106 | next; |
---|
| 107 | mes "It is rumored that the monster"; |
---|
| 108 | mes "wears this clothing in order"; |
---|
| 109 | mes "to protect its sensitive skin"; |
---|
| 110 | mes "from the weather. The Seal's"; |
---|
| 111 | mes "clothing is a very good material"; |
---|
| 112 | mes "for people to produce winter coats."; |
---|
| 113 | close; |
---|
| 114 | } |
---|
| 115 | |
---|
| 116 | yuno_in03,36,33,3 script Sage Worm#yuno 1281,{ |
---|
| 117 | end; |
---|
| 118 | } |
---|
| 119 | yuno_in03,33,33,1 script #SAGEWORM 111,{ |
---|
| 120 | mes " "; |
---|
| 121 | mes "Scientific name : Sage Worm"; |
---|
| 122 | mes "Size : Small"; |
---|
| 123 | mes "Attribute : Neutral"; |
---|
| 124 | next; |
---|
| 125 | mes "Explanation :"; |
---|
| 126 | mes "A strange beast with the head of"; |
---|
| 127 | mes "an old scholar and the tail of a"; |
---|
| 128 | mes "worm. Although it is physically"; |
---|
| 129 | mes "weak, it has the intelligence"; |
---|
| 130 | mes "to support its comrades with"; |
---|
| 131 | mes "magic skills."; |
---|
| 132 | next; |
---|
| 133 | mes "As its scholarly appearance"; |
---|
| 134 | mes "indicates, it's usually seen near books or book shelves."; |
---|
| 135 | close; |
---|
| 136 | } |
---|
| 137 | |
---|
| 138 | yuno_in03,39,39,3 script Penomena#yuno 1216,{ |
---|
| 139 | end; |
---|
| 140 | } |
---|
| 141 | yuno_in03,38,39,1 script #PENOMANA 111,{ |
---|
| 142 | mes " "; |
---|
| 143 | mes "Scientific name : Penomena"; |
---|
| 144 | mes "Size : Medium"; |
---|
| 145 | mes "Attribute : Poison"; |
---|
| 146 | next; |
---|
| 147 | mes "Explanation :"; |
---|
| 148 | mes "This monster dwells inside the"; |
---|
| 149 | mes "deepest part of caves where there"; |
---|
| 150 | mes "is enough moisture to keep it from"; |
---|
| 151 | mes "getting dried up."; |
---|
| 152 | next; |
---|
| 153 | mes "Unlike Hydra, a similar looking"; |
---|
| 154 | mes "creature, it can move itself"; |
---|
| 155 | mes "towards its enemy using many"; |
---|
| 156 | mes "small appendixes on its acetabulum."; |
---|
| 157 | next; |
---|
| 158 | mes "The long, thin tentacles on the"; |
---|
| 159 | mes "body shoot deadly poison which is"; |
---|
| 160 | mes "enough to kill its enemy at once."; |
---|
| 161 | close; |
---|
| 162 | } |
---|
| 163 | |
---|
| 164 | yuno_in03,39,44,3 script Galapago#yuno 1391,{ |
---|
| 165 | end; |
---|
| 166 | } |
---|
| 167 | yuno_in03,37,44,3 script #GALAPAGO 111,{ |
---|
| 168 | mes " "; |
---|
| 169 | mes "Scientific name : Galapago"; |
---|
| 170 | mes "Size : Small"; |
---|
| 171 | mes "Attribute : Earth"; |
---|
| 172 | next; |
---|
| 173 | mes "Explanation :"; |
---|
| 174 | mes "It's a kind of bird, but sadly, its body is too heavy to fly."; |
---|
| 175 | mes "It's very sensitive to sunlight so it carries a water bottle and wears sunglasses all the time."; |
---|
| 176 | next; |
---|
| 177 | mes "Although gluttonous, it will"; |
---|
| 178 | mes "always cooperate to attack"; |
---|
| 179 | mes "prey, as well as predators."; |
---|
| 180 | mes "Otherwise, Galapago is a"; |
---|
| 181 | mes "generally laid back monster."; |
---|
| 182 | close; |
---|
| 183 | } |
---|
| 184 | |
---|
| 185 | yuno_in03,15,21,5 script Raydric#yuno 1163,{ |
---|
| 186 | end; |
---|
| 187 | } |
---|
| 188 | yuno_in03,19,21,1 script #RAYDRIC 111,{ |
---|
| 189 | mes " "; |
---|
| 190 | mes "Scientific name : Raydric"; |
---|
| 191 | mes "Size : Large"; |
---|
| 192 | mes "Attribute : Shadow"; |
---|
| 193 | next; |
---|
| 194 | mes "Explanation :"; |
---|
| 195 | mes "A suit of armor animated by the"; |
---|
| 196 | mes "spirit of a castle guard. The"; |
---|
| 197 | mes "spirit is bound to this armor by"; |
---|
| 198 | mes "a powerful curse."; |
---|
| 199 | next; |
---|
| 200 | mes "Since Raydric used to be a castle"; |
---|
| 201 | mes "guard, it possesses fast movements"; |
---|
| 202 | mes "and powerful attack strength."; |
---|
| 203 | close; |
---|
| 204 | } |
---|
| 205 | |
---|
| 206 | yuno_in03,15,27,5 script Chepet#yuno 1250,{ |
---|
| 207 | end; |
---|
| 208 | } |
---|
| 209 | yuno_in03,19,27,1 script #CHEPET 111,{ |
---|
| 210 | mes " "; |
---|
| 211 | mes " Scientific name : Chepet"; |
---|
| 212 | mes " Size : Medium"; |
---|
| 213 | mes " Attribute : Fire"; |
---|
| 214 | next; |
---|
| 215 | mes "Explanation :"; |
---|
| 216 | mes "An evil creature hiding in a"; |
---|
| 217 | mes "pretty doll. It attacks passersby"; |
---|
| 218 | mes "by striking matchsticks held in"; |
---|
| 219 | mes "the doll's hand. A very rare"; |
---|
| 220 | mes "monster since it dwells in"; |
---|
| 221 | mes "only a few places."; |
---|
| 222 | close; |
---|
| 223 | } |
---|
| 224 | |
---|
| 225 | yuno_in03,15,33,5 script Violy#yuno 1390,{ |
---|
| 226 | end; |
---|
| 227 | } |
---|
| 228 | yuno_in03,19,33,1 script #VIOLY 111,{ |
---|
| 229 | mes " "; |
---|
| 230 | mes " Scientific name : Violy"; |
---|
| 231 | mes " Size : Medium"; |
---|
| 232 | mes " Attribute : Neutral"; |
---|
| 233 | next; |
---|
| 234 | mes "Explanation :"; |
---|
| 235 | mes "A pretty doll looking creature with beautiful golden hair."; |
---|
| 236 | mes "Since It plays violin all the time with a peaceful look on its face, people don't realize at first that it's a monster."; |
---|
| 237 | next; |
---|
| 238 | mes "Exercise extreme caution upon encountering a Violy. Otherwise, it will snatch your soul in no time with its charming song."; |
---|
| 239 | close; |
---|
| 240 | } |
---|
| 241 | |
---|
| 242 | yuno_in03,10,39,5 script Alice#yuno 1275,{ |
---|
| 243 | end; |
---|
| 244 | } |
---|
| 245 | yuno_in03,12,39,1 script #ALICE 111,{ |
---|
| 246 | mes " "; |
---|
| 247 | mes " Scientific name : Alice "; |
---|
| 248 | mes " Size : Medium"; |
---|
| 249 | mes " Attribute : Neutral"; |
---|
| 250 | next; |
---|
| 251 | mes "Explanation :"; |
---|
| 252 | mes "Alice is a robot made to assist as"; |
---|
| 253 | mes "a castle housemaid. They've been"; |
---|
| 254 | mes "known to remain and automatically"; |
---|
| 255 | mes "do their tasks long after the"; |
---|
| 256 | mes "castle has been abandoned."; |
---|
| 257 | next; |
---|
| 258 | mes "Without any discernable power"; |
---|
| 259 | mes "source, how it moves and operates"; |
---|
| 260 | mes "is still a scientific mystery."; |
---|
| 261 | close; |
---|
| 262 | } |
---|
| 263 | |
---|
| 264 | yuno_in03,10,45,5 script Assulter#yuno 1315,{ |
---|
| 265 | end; |
---|
| 266 | } |
---|
| 267 | yuno_in03,12,45,1 script #ASSULTER 111,{ |
---|
| 268 | mes " "; |
---|
| 269 | mes " Scientific name : Assulter"; |
---|
| 270 | mes " Size : Medium"; |
---|
| 271 | mes " Attribute : Wind"; |
---|
| 272 | next; |
---|
| 273 | mes "Explanation :"; |
---|
| 274 | mes "Unlike other turtles on Turtle"; |
---|
| 275 | mes "Island, this turtle stands on two"; |
---|
| 276 | mes "legs and attacks passersby with"; |
---|
| 277 | mes "the other two legs, wielding a"; |
---|
| 278 | mes "big shuriken from its back."; |
---|
| 279 | next; |
---|
| 280 | mes "Interestingly, it creates a clone"; |
---|
| 281 | mes "to do more damage when it"; |
---|
| 282 | mes "encounters dangerous enemies."; |
---|
| 283 | mes "It does very powerful damage using"; |
---|
| 284 | mes "its shuriken, but its nail attack"; |
---|
| 285 | mes "is more threatening."; |
---|
| 286 | close; |
---|
| 287 | } |
---|
| 288 | |
---|
| 289 | yuno_in03,38,50,3 script PecoPeco Egg#yuno 1047,{ |
---|
| 290 | end; |
---|
| 291 | } |
---|
| 292 | yuno_in03,34,54,3 script Thief Bug Egg#yuno 1048,{ |
---|
| 293 | end; |
---|
| 294 | } |
---|
| 295 | yuno_in03,12,50,3 script Ant Egg#yuno 1097,{ |
---|
| 296 | end; |
---|
| 297 | } |
---|
| 298 | |
---|
| 299 | yuno_in03,18,96,5 script Wanderer#yuno 1208,{ |
---|
| 300 | end; |
---|
| 301 | } |
---|
| 302 | yuno_in03,20,96,1 script #WANDER_MAN 111,{ |
---|
| 303 | mes " "; |
---|
| 304 | mes " Scientific name : Wanderer"; |
---|
| 305 | mes " Size : Medium"; |
---|
| 306 | mes " Attribute : Wind"; |
---|
| 307 | next; |
---|
| 308 | mes "Explanation :"; |
---|
| 309 | mes "Undead warrior who came back to"; |
---|
| 310 | mes "life through a curse. Considering"; |
---|
| 311 | mes "its technical fencing skill, he"; |
---|
| 312 | mes "must have been a very honorable"; |
---|
| 313 | mes "warrior as a living human."; |
---|
| 314 | next; |
---|
| 315 | mes "Wanderer can move amazingly fast"; |
---|
| 316 | mes "and can slay enemies with a single"; |
---|
| 317 | mes "stroke of its sword."; |
---|
| 318 | close; |
---|
| 319 | } |
---|
| 320 | |
---|
| 321 | yuno_in03,16,100,5 script Caterpillar#yuno 1300,{ |
---|
| 322 | end; |
---|
| 323 | } |
---|
| 324 | yuno_in03,18,100,1 script #CATERPILLAR 111,{ |
---|
| 325 | mes " "; |
---|
| 326 | mes " Scientific name : Caterpillar"; |
---|
| 327 | mes " Size : Small"; |
---|
| 328 | mes " Attribute : Earth"; |
---|
| 329 | next; |
---|
| 330 | mes "Explanation :"; |
---|
| 331 | mes "Although the eyes of this creature"; |
---|
| 332 | mes "have atrophied due to living under"; |
---|
| 333 | mes "the earth, it uses a feeler and"; |
---|
| 334 | mes "appendices on its body to sense"; |
---|
| 335 | mes "objects in its dark surroundings."; |
---|
| 336 | next; |
---|
| 337 | mes "Caterpillar is rumored to be the"; |
---|
| 338 | mes "larva of Creamy Fear, the advanced"; |
---|
| 339 | mes "Creamy."; |
---|
| 340 | close; |
---|
| 341 | } |
---|
| 342 | |
---|
| 343 | yuno_in03,16,104,5 script Male Thiefbug#yuno 1054,{ |
---|
| 344 | end; |
---|
| 345 | } |
---|
| 346 | yuno_in03,18,104,1 script #THIEF_BUG__ 111,{ |
---|
| 347 | mes " "; |
---|
| 348 | mes " Scientific name : Thief Bug"; |
---|
| 349 | mes " ^FFFFFFScientific name :^000000 (Male)"; |
---|
| 350 | mes " Size : Medium"; |
---|
| 351 | mes " Attribute : Shadow"; |
---|
| 352 | next; |
---|
| 353 | mes "Explanation :"; |
---|
| 354 | mes "Although it has a big blue body,"; |
---|
| 355 | mes "it's also fast and voracious, just like other Thief Bugs."; |
---|
| 356 | next; |
---|
| 357 | mes "However, it is stronger than other Thief Bugs because it's designated to protect the females and babies from danger."; |
---|
| 358 | close; |
---|
| 359 | } |
---|
| 360 | |
---|
| 361 | yuno_in03,16,108,5 script Tri Joint#yuno 1279,{ |
---|
| 362 | end; |
---|
| 363 | } |
---|
| 364 | yuno_in03,18,108,1 script #TRI_JOINT 111,{ |
---|
| 365 | mes " "; |
---|
| 366 | mes " Scientific name : Tri Joint"; |
---|
| 367 | mes " Size : Small"; |
---|
| 368 | mes " Attribute : Earth"; |
---|
| 369 | next; |
---|
| 370 | mes "Explanation :"; |
---|
| 371 | mes "Tri Joint is a prehistoric"; |
---|
| 372 | mes "monster that is covered with"; |
---|
| 373 | mes "a hard shell, and uses a feeler"; |
---|
| 374 | mes "instead of eyes so that it can"; |
---|
| 375 | mes "live in dark places."; |
---|
| 376 | next; |
---|
| 377 | mes "Recently, since many Tri Joints have been discovered inside many caves, Sages are very excited to study them to learn more about the evolution of monsters in Rune-Midgard."; |
---|
| 378 | close; |
---|
| 379 | } |
---|
| 380 | |
---|
| 381 | yuno_in03,16,111,5 script Arclouz#yuno 1194,{ |
---|
| 382 | end; |
---|
| 383 | } |
---|
| 384 | yuno_in03,18,111,1 script #ARCLOUSE 111,{ |
---|
| 385 | mes " "; |
---|
| 386 | mes " Scientific name : Arclouz"; |
---|
| 387 | mes " Size : Medium"; |
---|
| 388 | mes " Attribute : Earth"; |
---|
| 389 | next; |
---|
| 390 | mes "Explanation :"; |
---|
| 391 | mes "Hard shelled monster that coils"; |
---|
| 392 | mes "its body to attack its enemy."; |
---|
| 393 | mes "Arclouz tend to stay in groups"; |
---|
| 394 | mes "and are very aggressive"; |
---|
| 395 | mes "creatures."; |
---|
| 396 | next; |
---|
| 397 | mes "They have incredibly fast"; |
---|
| 398 | mes "movement speed, contrary to"; |
---|
| 399 | mes "their looks, and are often"; |
---|
| 400 | mes "compared to PecoPecos."; |
---|
| 401 | close; |
---|
| 402 | } |
---|
| 403 | |
---|
| 404 | yuno_in03,16,117,5 script Dragon Tail#yuno 1321,{ |
---|
| 405 | end; |
---|
| 406 | } |
---|
| 407 | yuno_in03,18,116,1 script #DRAGON_TAIL 111,{ |
---|
| 408 | mes " "; |
---|
| 409 | mes " Scientific name : Dragon Tail"; |
---|
| 410 | mes " Size : Medium"; |
---|
| 411 | mes " Attribute : Wind"; |
---|
| 412 | next; |
---|
| 413 | mes "Explanation :"; |
---|
| 414 | mes "An insect which is considered as"; |
---|
| 415 | mes "a Libelluidae, or Dragon Fly. It"; |
---|
| 416 | mes "uses its strong tail to suck the"; |
---|
| 417 | mes "blood out of an enemy, or to put"; |
---|
| 418 | mes "the enemy to sleep by shooting"; |
---|
| 419 | mes "a sleeping poison."; |
---|
| 420 | close; |
---|
| 421 | } |
---|
| 422 | |
---|
| 423 | yuno_in03,46,96,3 script Owl Duke#yuno 1320,{ |
---|
| 424 | end; |
---|
| 425 | } |
---|
| 426 | yuno_in03,44,96,1 script #OWL_DUKE 111,{ |
---|
| 427 | mes " "; |
---|
| 428 | mes " Scientific name : Owl Duke"; |
---|
| 429 | mes " Size : Large"; |
---|
| 430 | mes " Attribute : Neutral "; |
---|
| 431 | next; |
---|
| 432 | mes "Explanation:"; |
---|
| 433 | mes "An owl that wears a count costume."; |
---|
| 434 | mes "It's very intimidating looking"; |
---|
| 435 | mes "with its dark, yet suave look."; |
---|
| 436 | mes "Owl Duke is not actually an owl,"; |
---|
| 437 | mes "but a devil with very sharp claws"; |
---|
| 438 | mes "on its big feet."; |
---|
| 439 | next; |
---|
| 440 | mes "It's skillful at using many"; |
---|
| 441 | mes "lightning magic spells. When"; |
---|
| 442 | mes "you see it attacking an enemy,"; |
---|
| 443 | mes "you can sense the Owl Duke's"; |
---|
| 444 | mes "aristocratic pompousness."; |
---|
| 445 | close; |
---|
| 446 | } |
---|
| 447 | |
---|
| 448 | yuno_in03,48,100,3 script Marine Sphere#yuno 1142,{ |
---|
| 449 | end; |
---|
| 450 | } |
---|
| 451 | yuno_in03,46,101,1 script #MARINE_SPHERE 111,{ |
---|
| 452 | mes " "; |
---|
| 453 | mes " Scientific name : Marine Sphere"; |
---|
| 454 | mes " Size : Small"; |
---|
| 455 | mes " Attribute : Water"; |
---|
| 456 | next; |
---|
| 457 | mes "Explanation :"; |
---|
| 458 | mes "A strange creature that wanders"; |
---|
| 459 | mes "in the deep oceans. It explodes"; |
---|
| 460 | mes "with great power when it's"; |
---|
| 461 | mes "touched, earning it the name"; |
---|
| 462 | mes "'The Sea Bomb.'"; |
---|
| 463 | next; |
---|
| 464 | mes "If there is a Marine Sphere"; |
---|
| 465 | mes "caught in the explosion of"; |
---|
| 466 | mes "another, a trigger explosion"; |
---|
| 467 | mes "will result, and can lead to"; |
---|
| 468 | mes "a dangerous chain reaction."; |
---|
| 469 | close; |
---|
| 470 | } |
---|
| 471 | |
---|
| 472 | yuno_in03,48,104,3 script Mandragora#yuno 1020,{ |
---|
| 473 | end; |
---|
| 474 | } |
---|
| 475 | yuno_in03,46,105,1 script #MANDRAGORA 111,{ |
---|
| 476 | mes " "; |
---|
| 477 | mes " Scientific name : Mandragora"; |
---|
| 478 | mes " Size : Medium"; |
---|
| 479 | mes " Attribute : Earth"; |
---|
| 480 | next; |
---|
| 481 | mes "Explanation :"; |
---|
| 482 | mes "An insectivore that swallows"; |
---|
| 483 | mes "anything alive. When it finds"; |
---|
| 484 | mes "its prey, it strikes it first"; |
---|
| 485 | mes "with a long tentacle to"; |
---|
| 486 | mes "to paralyze it."; |
---|
| 487 | next; |
---|
| 488 | mes "Once paralyzed, its prey is"; |
---|
| 489 | mes "put in a large tube attached"; |
---|
| 490 | mes "to its body where it is slowly"; |
---|
| 491 | mes "digested. Although this tube"; |
---|
| 492 | mes "has a skull mark, Mandragora"; |
---|
| 493 | mes "does not actually contain any"; |
---|
| 494 | mes "poison."; |
---|
| 495 | next; |
---|
| 496 | mes "This digestive tube"; |
---|
| 497 | mes "apparatus also has a very unique,"; |
---|
| 498 | mes "but disgusting smell that is far"; |
---|
| 499 | mes "from useful in attracting prey."; |
---|
| 500 | close; |
---|
| 501 | } |
---|
| 502 | |
---|
| 503 | yuno_in03,48,108,3 script Geographer#yuno 1368,{ |
---|
| 504 | end; |
---|
| 505 | } |
---|
| 506 | yuno_in03,46,108,1 script #GEOGRAPHER 111,{ |
---|
| 507 | mes " "; |
---|
| 508 | mes " Scientific name : Geographer"; |
---|
| 509 | mes " Size : Medium"; |
---|
| 510 | mes " Attribute : Earth"; |
---|
| 511 | next; |
---|
| 512 | mes "Explanation :"; |
---|
| 513 | mes "An insectivore that looks like"; |
---|
| 514 | mes "a sunflower. It uses the petal"; |
---|
| 515 | mes "like tentacles around its"; |
---|
| 516 | mes "mouth to attract and snare"; |
---|
| 517 | mes "its prey."; |
---|
| 518 | next; |
---|
| 519 | mes "Unlike Mandragora, Geographer"; |
---|
| 520 | mes "does not have a tube to"; |
---|
| 521 | mes "store its prey. So it slowly"; |
---|
| 522 | mes "eats it's prey, little by little."; |
---|
| 523 | next; |
---|
| 524 | mes "Although Geographer has small"; |
---|
| 525 | mes "and short roots, the roots are"; |
---|
| 526 | mes "tough and strong enough to"; |
---|
| 527 | mes "bear the weight of the upper body."; |
---|
| 528 | next; |
---|
| 529 | mes "The namesake of this monster, a"; |
---|
| 530 | mes "human geographer that was"; |
---|
| 531 | mes "promptly eaten upon discovering"; |
---|
| 532 | mes "this species of beast, will"; |
---|
| 533 | mes "never be forgotten..."; |
---|
| 534 | close; |
---|
| 535 | } |
---|
| 536 | |
---|
| 537 | yuno_in03,48,112,3 script Rafflesia#yuno 1162,{ |
---|
| 538 | end; |
---|
| 539 | } |
---|
| 540 | yuno_in03,46,112,1 script #RAFFLESIA 111,{ |
---|
| 541 | mes " "; |
---|
| 542 | mes " Scientific name : Rafflesia"; |
---|
| 543 | mes " Size : Small"; |
---|
| 544 | mes " Attribute : Earth"; |
---|
| 545 | next; |
---|
| 546 | mes "Explanation :"; |
---|
| 547 | mes "A puffy, leafy monster"; |
---|
| 548 | mes "threatened with extinction."; |
---|
| 549 | mes "Rafflesia is the rarest"; |
---|
| 550 | mes "monster in Rune-Midgard and"; |
---|
| 551 | mes "is thus protected by law."; |
---|
| 552 | next; |
---|
| 553 | mes "Due to this situation, most Sages"; |
---|
| 554 | mes "are having a hard time to"; |
---|
| 555 | mes "research this monster."; |
---|
| 556 | mes "However, a few Sages are"; |
---|
| 557 | mes "currently seeking methods to"; |
---|
| 558 | mes "cultivate and save the Rafflesias."; |
---|
| 559 | close; |
---|
| 560 | } |
---|
| 561 | |
---|
| 562 | yuno_in03,48,116,3 script Stem Worm#yuno 1215,{ |
---|
| 563 | end; |
---|
| 564 | } |
---|
| 565 | yuno_in03,45,116,1 script #STEM_WORM 111,{ |
---|
| 566 | mes " "; |
---|
| 567 | mes " Scientific name : Stem Worm"; |
---|
| 568 | mes " Size : Medium"; |
---|
| 569 | mes " Attribute : Wind"; |
---|
| 570 | next; |
---|
| 571 | mes "Explanation :"; |
---|
| 572 | mes "A mutated Worm Tail that has a"; |
---|
| 573 | mes "round, brownish grey body with"; |
---|
| 574 | mes "a small head. It is covered"; |
---|
| 575 | mes "with scales and has a long"; |
---|
| 576 | mes "stem-like tail which is used"; |
---|
| 577 | mes "as a whip in attacks."; |
---|
| 578 | close; |
---|
| 579 | } |
---|
| 580 | |
---|
| 581 | yuno_in03,24,124,3 script Blazzer#yuno 1367,{ |
---|
| 582 | end; |
---|
| 583 | } |
---|
| 584 | yuno_in03,24,122,1 script #BLAZZER 111,{ |
---|
| 585 | mes " "; |
---|
| 586 | mes " Scientific name : Blazzer"; |
---|
| 587 | mes " Size : Medium"; |
---|
| 588 | mes " Attribute : Fire"; |
---|
| 589 | next; |
---|
| 590 | mes "Explanation :"; |
---|
| 591 | mes "This is a fire ball that has been"; |
---|
| 592 | mes "seen near volcanic zones."; |
---|
| 593 | mes "Because of this monster's sudden"; |
---|
| 594 | mes "appearance, Sages believe that"; |
---|
| 595 | mes "volcanic activity may occur"; |
---|
| 596 | mes "sooner or later near Juno."; |
---|
| 597 | next; |
---|
| 598 | mes "Blazzer blows out noxious gas"; |
---|
| 599 | mes "which harm passersby. It is"; |
---|
| 600 | mes "unknown whether or not these"; |
---|
| 601 | mes "are attacks or the Blazzer's"; |
---|
| 602 | mes "form of communication."; |
---|
| 603 | close; |
---|
| 604 | } |
---|
| 605 | |
---|
| 606 | yuno_in03,28,124,5 script Ride Word#yuno 1195,{ |
---|
| 607 | end; |
---|
| 608 | } |
---|
| 609 | yuno_in03,28,122,1 script #RIDEWORD 111,{ |
---|
| 610 | mes " "; |
---|
| 611 | mes " Scientific name : Ride Word"; |
---|
| 612 | mes " Size : Small"; |
---|
| 613 | mes " Attribute : Neutral"; |
---|
| 614 | next; |
---|
| 615 | mes "Explanation :"; |
---|
| 616 | mes "It's a cursed magic book with"; |
---|
| 617 | mes "sharp teeth. It exists to attack any living thing nearby."; |
---|
| 618 | close; |
---|
| 619 | } |
---|
| 620 | |
---|
| 621 | yuno_in03,31,124,3 script Megalodon#yuno 1064,{ |
---|
| 622 | end; |
---|
| 623 | } |
---|
| 624 | yuno_in03,31,122,1 script #MEGALODON 111,{ |
---|
| 625 | mes " "; |
---|
| 626 | mes " Scientific name : Megalodon"; |
---|
| 627 | mes " Size : Medium"; |
---|
| 628 | mes " Attribute : Undead"; |
---|
| 629 | next; |
---|
| 630 | mes "Explanation :"; |
---|
| 631 | mes "A skeleton fish that was brought"; |
---|
| 632 | mes "back to life by a curse. Although"; |
---|
| 633 | mes "It looks very threatening, it's"; |
---|
| 634 | mes "benign and will not attack"; |
---|
| 635 | mes "undersea travellers outright."; |
---|
| 636 | close; |
---|
| 637 | } |
---|
| 638 | |
---|
| 639 | yuno_in03,35,124,3 script Sleeper#yuno 1386,{ |
---|
| 640 | end; |
---|
| 641 | } |
---|
| 642 | yuno_in03,35,122,1 script #SLEEPER 111,{ |
---|
| 643 | mes " "; |
---|
| 644 | mes " Scientific name : Sleeper"; |
---|
| 645 | mes " Size : Medium"; |
---|
| 646 | mes " Attribute : Earth"; |
---|
| 647 | next; |
---|
| 648 | mes "Explanation :"; |
---|
| 649 | mes "Unidentified sand creature."; |
---|
| 650 | mes "Usually it stays under the earth,"; |
---|
| 651 | mes "but when travellers step on the"; |
---|
| 652 | mes "sand, it may abruptly"; |
---|
| 653 | mes "appear to attack them."; |
---|
| 654 | next; |
---|
| 655 | mes "It's smaller than Sandman and can"; |
---|
| 656 | mes "cause indirect attacks by causing a sand storm."; |
---|
| 657 | close; |
---|
| 658 | } |
---|
| 659 | |
---|
| 660 | yuno_in03,39,124,3 script Ancient Mummy#yuno 1297,{ |
---|
| 661 | end; |
---|
| 662 | } |
---|
| 663 | yuno_in03,39,122,1 script #ANCIENT_MUMMY 111,{ |
---|
| 664 | mes " "; |
---|
| 665 | mes " Scientific name : Ancient Mummy"; |
---|
| 666 | mes " Size : Medium"; |
---|
| 667 | mes " Attribute : Undead"; |
---|
| 668 | next; |
---|
| 669 | mes "Explanation :"; |
---|
| 670 | mes "A mummy cursed with eternal life."; |
---|
| 671 | mes "Although wrapped in decaying"; |
---|
| 672 | mes "bandages, Ancient Mummy also"; |
---|
| 673 | mes "wears a splendid hair ornament"; |
---|
| 674 | mes "adorned with a snake."; |
---|
| 675 | next; |
---|
| 676 | mes "This kind of head ornament"; |
---|
| 677 | mes "indicates that the Ancient"; |
---|
| 678 | mes "Mummy was a person of high rank"; |
---|
| 679 | mes "while he was still alive."; |
---|
| 680 | next; |
---|
| 681 | mes "Since Ancient Mummy has"; |
---|
| 682 | mes "been wandering the underworld"; |
---|
| 683 | mes "for a long time, it does not have"; |
---|
| 684 | mes "any consciousness and will"; |
---|
| 685 | mes "attack any living thing nearby."; |
---|
| 686 | close; |
---|
| 687 | } |
---|
| 688 | |
---|
| 689 | yuno_in03,18,122,5 script Incubus#yuno 1374,{ |
---|
| 690 | end; |
---|
| 691 | } |
---|
| 692 | yuno_in03,19,120,1 script #INCUBUS 111,{ |
---|
| 693 | mes " "; |
---|
| 694 | mes " Scientific name : Incubus"; |
---|
| 695 | mes " Size : Medium"; |
---|
| 696 | mes " Attribute : Shadow"; |
---|
| 697 | next; |
---|
| 698 | mes "Explanation :"; |
---|
| 699 | mes "This demon attracts humans"; |
---|
| 700 | mes "with its stunningly beautiful"; |
---|
| 701 | mes "appearance. When it poses as a"; |
---|
| 702 | mes "male human, we call it Incubus."; |
---|
| 703 | mes "As a female, we call it Succubus."; |
---|
| 704 | next; |
---|
| 705 | mes "This devil targets people with"; |
---|
| 706 | mes "mental vulnerabilities so that"; |
---|
| 707 | mes "it can eventually take them to hell."; |
---|
| 708 | close; |
---|
| 709 | } |
---|
| 710 | |
---|
| 711 | yuno_in03,44,120,3 script Succubus#yuno 1370,{ |
---|
| 712 | end; |
---|
| 713 | } |
---|
| 714 | yuno_in03,42,120,1 script #SUCCUBUS 111,{ |
---|
| 715 | mes " "; |
---|
| 716 | mes " Scientific name : Succubus"; |
---|
| 717 | mes " Size : Medium"; |
---|
| 718 | mes " Attribute : Shadow"; |
---|
| 719 | next; |
---|
| 720 | mes "Explanation :"; |
---|
| 721 | mes "This demon attracts humans"; |
---|
| 722 | mes "with its stunningly beautiful"; |
---|
| 723 | mes "appearance. When it poses as a"; |
---|
| 724 | mes "female human, we call it Succubus."; |
---|
| 725 | mes "As a male, we call it Incubus."; |
---|
| 726 | next; |
---|
| 727 | mes "This devil targets people with"; |
---|
| 728 | mes "mental vulnerabilities so that"; |
---|
| 729 | mes "it can eventually take them to hell."; |
---|
| 730 | close; |
---|
| 731 | } |
---|