summaryrefslogtreecommitdiff
path: root/npc/other/books.txt
blob: ece0e4d63f2a4edf6f33a537a0d56c2bfc59711c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
// $Id: books.txt,v 1.1.1.1 2004/09/10 17:26:42 MagicalTux Exp $
// Changed Mage Guild Book to the correct one (now located in mage.txt)
//<--------------- NPCs BOOKS [Update: July. 27, 2004] --------------->\\

//<=========== Library - Begin ==========>\\
prt_in.gat,159,56,4	script	Monster Encyclopedia	111,{
	mes "^FF0000[Monster Encyclopedia]^000000";
	mes "This is a Monster Encyclopedia including information of Earth,Fire,Neutral Monsters!";
	next;
	menu "Monsters of Earth Property",MonEarPro,"Monsters of Fire Property",MonFirPro,"Monsters of Neutral Property",MonNeuPro,"Cancel",Cancel;
			
	MonEarPro:
		menu "Small Size Monster",SmaMonEarPro,"Medium Size Monster",MedMonEarPro,"Great Size Monster",GrMonEarPro,"Cancel",EndMonEarPro;
				
		SmaMonEarPro:
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "1.Fabre";
			mes "Larva of Creamy. It is cute when it wiggles,even though it is a weak and small monster,";
			mes "People often tend to slay Fabres,only for the reason they can get `Feather's,one of required items for `Bunny Band'.";
			mes "^0099FFFound Items^000000: Feather.Fluff .Green Herb.Clover";
			next;
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "2.Pupa";
			mes "Monster on the Fabre's pupal stage. It deosn't attack at all, so easy to kill for Novice people.";
			mes "^0099FFFound Items^000000: Chrysalis,Sticky Muscus";
			next;
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "3.Martin";
			mes "Funny looking Mole wearing a Safety Helmet on the head,which is always busy to walk around.";
			mes "^0099FFFound Items^000000: Mole Whiskers,Mole Claw";
			next;
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "3.Savage Bebe";
			mes "Tiny Pink baby of Savage.Unlike its small size, It is running about fields making annoying noise.";
			mes "^0099FFFound Items^000000: Leather,Meat,Arrow,Feather";
			next;
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "4.Andre";
			mes "A kind of Worker Ants,they are very diligent in their work.They gather everything to save a sufficient stock and are well-cooperative,you need to be careful.";
			mes "^0099FFFound Items^000000: Worm Peeling,Garlet,Sticky Muscus,Shell";
			next;
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "5.Coco";
			mes "Little but fierce-looking eyed Creature carrying an Acorn on both hands. It is very unpleasant when it gives a dirty look,let's give it a lesson.";
			mes "^0099FFFound Items^000000: Acorn,Fluff,Leather,Sweet Potato";
			next;
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "6.Piere";
			mes "A kind of Work Ants,seems to be very diligent.Its appearance is similar with other Ants,but you can easily distinguish them from others as they only gather in a same kind.";
			mes "^0099FFFound Items^000000: Worm Peeling,Garlet,Sticky Muscus,Shell";
			next;
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "7.Smokie";
			mes "It's working out all the time.Often tries to shapeshift with Raccon Leaves,but always failed. Back then, it tended to gather stuffs diligently, now it seems to give up.";
			mes "^0099FFFound Items^000000: Raccon Leaf,Leather,Sweet Potato";
			next;
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "8.Deniro";
			mes "A kind of Work Ants, tend to group in a same kind as well as other ants.";
			mes "^0099FFFound Items^000000: Worm Peeling,Garlet,Sticky Muscus,Shell";
			next;
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "9.Yoyo";
			mes "Pink coloured Monkey.Not only they pick up every stuff dropped on the gound outrageously, but they are nimble and cooperative, you must be cautious of being attacked by a group.";
			mes "^0099FFFound Items^000000: Yoyo Tail,Banana,Yellow Herb,Leather";
			next;
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "10.Vitata";
			mes "Work Ants in charge of storing honey inside the body for emergency.It is a little pathetic to see their chubby tummy filled with Honey.";
			mes "^0099FFFound Items^000000: Worm Peeling,Scell,Honey";
			next;
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "11.Caramel";
			mes "Cute porcupine with tiny spiky quills.But don't ever touch it without intention,it will get mad immeduately.";
			mes "^0099FFFound Items^000000: Porcupine Quill,Leather";
			next;
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "12.Giearth";
			mes "Little Grampa Pixie. Usually lives in Caves to gather Ores.Even though he is short, but actually an adult.Show your manners.";
			mes "^0099FFFound Items^000000: Old Pixie's Moustache";
			next;
			goto MonEarPro;
			close;
		MedMonEarPro:
			mes "^FF0000[Earth,Medium Monster Encyclopedia]^000000";
			mes "1.Willow";
			mes "Creature reborn from a Gigantic Old Tree.Everything like the feagure or the sound to related it is eerie.";
			mes "^0099FFFound Items^000000: Tree Root,Trunk,Red Herb,Sweet Potato";
			next;
			mes "^FF0000[Earth,Medium Monster Encyclopedia]^000000";
			mes "2.Rocker";
			mes "Lazy Grasshpper which loves playing Violin.";
			mes "^0099FFFound Items^000000: Grasshopper's Leg,Jellopy";
			next;
			mes "^FF0000[Earth,Medium Monster Encyclopedia]^000000";
			mes "3.Madragora";
			mes "Stays the same but attacks passengers using Stalks under the ground. Look so Horrible,also attacks Very annoyingly.";
			mes "^0099FFFound Items^000000: Stem,Green Herb,Shoot";
			next;
			mes "^FF0000[Earth,Medium Monster Encyclopedia]^000000";
			mes "4.Wolf";
			mes "Wanderers having Blue Manes.They are cooperative,so attack in a group when one got attacked.Let's just let them mind their business and watch.";
			mes "^0099FFFound Items^000000: Wolf Claw,Meat,Monster's Feed,Leather";
			next;
			mes "^FF0000[Earth,Medium Monster Encyclopedia]^000000";
			mes "5.Snake";
			mes "Green Cloloured Snake living in the Forest or Desert.Not poisonous but be careful.";
			mes "^0099FFFound Items^000000: Snake Scale,Red Herb";
			next;
			mes "^FF0000[Earth,Medium Monster Encyclopedia]^000000";
			mes "6.Horn";
			mes "Compliant Insect unlike its offensive appearance.It's wandering about the field making some crunching sound.";
			mes "^0099FFFound Items^000000: Horn,Shell,Solid Shell";
			next;
			mes "^FF0000[Earth,Medium Monster Encyclopedia]^000000";
			mes "7.Orc Warrior";
			mes "Self-Confident Warrior of the Orc Tribe.";
			mes "^0099FFFound Items^000000:Orcish Voucher";
			next;
			mes "^FF0000[Earth,Medium Monster Encyclopedia]^000000";
			mes "8.Hode";
			mes "Huge earthworm without any more description.Huge earthworm!Usually conceals itself under the ground,commonly found in the Desert.";
			mes "^0099FFFound Items^000000: Earthworm Peeling,Sticky Muscus";
			next;
			mes "^FF0000[Earth,Medium Monster Encyclopedia]^000000";
			mes "9.Mantis";
			mes "It wanders about the field waving a tiny fan.";
			mes "^0099FFFound Items^000000: Mantis Scythe,Scell,Solid Shell,Red Potion";
			next;
			mes "^FF0000[Earth,Medium Monster Encyclopedia]^000000";
			mes "10.Savage";
			mes "Wild Boar always walking around restlessly,making some noise. It has Big fangs and looks different from the young one.";
			mes "^0099FFFound Items^000000: Mane,Leather";
			next;
			mes "^FF0000[Earth,Medium Monster Encyclopedia]^000000";
			mes "11.Petite";
			mes "Tiny little Walking Dragon.It seems like there exists 2 different kinds of Petite, flying one and walking one and this is the 2nd one.";
			mes "^0099FFFound Items^000000: Dragon Canine,Dragon Tail,Zargon";
			next;
			goto MonEarPro;
			close;
		GrMonEarPro:
			mes "^FF0000[Earth,Great Monster Encyclopedia]^000000";
			mes "1.Worm Tail";
			mes "Tiny little creature of light green which has a spiky,thin and long stick on the back.Usually it is very gentle but attacks using the stick on the back when got attacked,so be careful!";
			mes "^0099FFFound Items^000000: Pointed Scale,Yellow Herb";
			next;
			mes "^FF0000[Earth,Great Monster Encyclopedia]^000000";
			mes "2.Muka";
			mes "Cute Cactus commonly found in the Desert.It tries to threaten passengers with some funny sound but always failed.";
			mes "^0099FFFound Items^000000: Cactus Needle,Empty Bottle,Green Herb,Red Herb";
			next;
			mes "^FF0000[Earth,Great Monster Encyclopedia]^000000";
			mes "3.Big Foot";
			mes "Dull-Looking Bear with a huge build.Although it looks dumb but you will realise how it can be fast after you provoke it.";
			mes "^0099FFFound Items^000000: Bear's Foot Skin,Leather,Sweet Potato";
			next;
			mes "^FF0000[Earth,Great Monster Encyclopedia]^000000";
			mes "4.Flora";
			mes "Maneater with a big mouth.It pretends just a simple plant but anybody coming near,it rushes into him fiercely.";
			mes "^0099FFFound Items^000000: Maneater Blossom,Stem";
			next;
			goto MonEarPro;
			close;
		EndMonEarPro:
			close;
		close;
	MonFirPro:
		menu "Small Size Monster",SmaMonFirPro,"Medium Size Monster",MedMonFirPro,"Great Size Monster",GrMonFirPro,"Cancel",EndMonFirPro;
			
		SmaMonFirPro:
			mes "^FF0000[Fire,Small Monster Encyclopedia]^000000";
			mes "1.Picky";
			mes "Cute little chick before Peco Peco. It can't be realised that this little creature grows into a Peco Peco the big,strong bird.";
			mes "Sometimes you can find a picky with an egg shell which is a bit stronger than a normal picky.";
			mes "^0099FFFound Items^000000: Feather of Birds.Feather.Red Herb.Milk.";
			next;
			mes "^FF0000[Fire,Small Monster Encyclopedia]^000000";
			mes "2.Baby Desert Wolf";
			mes "Baby of Desert Wolf,trying to threaten passengers with a big bay.";
			mes "If you want to pat one of them,because you think it is pretty,don't do that before taking a look around enough.Not babies come to rush you but their parents will assault you at the same time.Parents don't want thier babies being harmed.";
			mes "^0099FFFound Items^000000: Leather,Meat";
			next;
			mes "^FF0000[Fire,Small Monster Encyclopedia]^000000";
			mes "3.Horong";
			mes "Eerie-looking fireball of violet colour.Recognises the living when gets near.";
			mes "^0099FFFound Items^000000: Stone Heart,Zargon,Fire Arrow";
			next;
			goto MonFirPro;
			close;
		MedMonFirPro:
			mes "^FF0000[Fire,Medium Monster Encyclopedia]^000000";
			mes "1.Drops";
			mes "A kind of Poring,but commonly found in the Desert and colors in Pale Orange.It eats everything just like Poring does.";
			mes "However it seems to be a bit stronger than Poring anyway.";
			mes "^0099FFFound Items^000000: Jellopy,Sticky Muscus,Apple,Empty Bottle,Red Herb";
			next;
			mes "^FF0000[Fire,Medium Monster Encyclopedia]^000000";
			mes "2.Elder Willow";
			mes "A kind of Willow but it looks older and colors in red. Frightening as much as Willow.";

			mes "^0099FFFound Items^000000: Resin,Trunk,Sweet Potato";
			next;
			mes "^FF0000[Fire,Medium Monster Encyclopedia]^000000";
			mes "3.Metaller";
			mes "Evolved one of Rocker.It is dim brown and lives in the Desert.Lazy equally to Rocker,but it steals stuffs on the ground.";
			mes "^0099FFFound Items^000000: Red Blood,Grasshopper's Leg,Scell,Shell";
			next;
			mes "^FF0000[Fire,Medium Monster Encyclopedia]^000000";
			mes "4.Zerom";
			mes "Undead Slave who had been extremely abused before he died.He is wandering in the Sphinx,carrying a big box on the back..";
			mes "^0099FFFound Items^000000: Panties";
			next;
			mes "^FF0000[Fire,Medium Monster Encyclopedia]^000000";
			mes "5.Scorpion";
			mes "Scorpion spreaded over the Desert.It is dangerous as much as its beautiful colour.Watch out its sharp tail.";
			mes "^0099FFFound Items^000000: Scorpion Tail,Green Herb,Yellow Herb";
			next;
			mes "^FF0000[Fire,Medium Monster Encyclopedia]^000000";
			mes "6.Desert Wolf";
			mes "Wolf commonly found in the desert,which is stronger than a Forest one.Take a look around before doing attacks,because Wolf tends to be cooperative each other!";
			mes "^0099FFFound Items^000000: Leather,Mink Coat,Meat,Wolf Claw";
			next;
			mes "^FF0000[Fire,Medium Monster Encyclopedia]^000000";
			mes "7.Frilldora";
			mes "Lizard which has a Unique neck.Looks a bit funny but is very Strong unlike its appearance.";
			mes "^0099FFFound Items^000000: Frill,Reptile Tongue,Red Potion,Zargon";
			next;
			mes "^FF0000[Fire,Medium Monster Encyclopedia]^000000";
			mes "8.Cobold the 3rd";
			mes "Small monster looks like a Wolf but it is smart enough to handle several tools. It is hostile and strong unlike its appearance. All Cobolds seem to be brothers.";
			mes "^0099FFFound Items^000000: Blue Hair,Zargon,Orange Potion";
			next;
			mes "^FF0000[Fire,Medium Monster Encyclopedia]^000000";
			mes "9.Jakk";
			mes "Quite Odd monster in a nice suit,but with a pumpkin head.It looks funny but changes the attitude fiercely when attacks someone.";
			mes "^0099FFFound Items^000000: Jack'o'Pumpkin,Zargon";
			next;
			goto MonFirPro;
			close;
		GrMonFirPro:
			mes "^FF0000[Fire,Great Monster Encyclopedia]^000000";
			mes "1.Peco Peco";
			mes "Nowadays peco peco is popular as vehicle for knights. They lives in the Desert or Forest and also cooperative.";
			mes "^0099FFFound Items^000000: Bill of Birds,Yellow Herb,Red Herb";
			next;
			mes "^FF0000[Fire,Great Monster Encyclopedia]^000000";
			mes "2.Marduk";
			mes "Unknown monster wearing Catholic uniform and looking serious.";
			mes "^0099FFFound Items^000000: Flame Heart";
			next;
			goto MonFirPro;
         		close;
         	EndMonFirPro:
         		close;
		close;
         MonNeuPro:		
		menu "Small Size Monster",SmaMonNeuPro,"Medium Size Monster",MedMonNeuPro,"Great Size Monster",GrMonNeuPro,"Cancel",EndMonNeuPro;
		
		SmaMonNeuPro:
			mes "^FF0000[Neutral,Small Monster Encyclopedia]^000000";
			mes "1.Lunatic";
			mes "Plump and shaggy monster shaped in Rabbit.However it won't give you a `Bunny Band'.";
			mes "^0099FFFound Items^000000: Clover,Feather,Carrot,Red Herb";
			next;
			mes "^FF0000[Neutral,Small Monster Encyclopedia]^000000";
			mes "2.Peco Peco Egg";
			mes "Egg of Peco Peco.It is so tiny that doesn't look like an egg of Big Bird.Novice people love to Crack it because it doesn't attack at all.";
			mes "^0099FFFound Items^000000: Shell,Red Potion,Empty Bottle";
			next;
			mes "^FF0000[Neutral,Small Monster Encyclopedia]^000000";
			mes "3.Ant Egg";
			mes "Simple Ant Egg.";
			mes "^0099FFFound Items^000000: Shell,Jellopy,Sticky Muscus,Empty Bottle";
			next;
			mes "^FF0000[Neutral,Small Monster Encyclopedia]^000000";
			mes "2.Baby Thief Bug";
			mes "Dirty and filthy Creatures having a strong solidarity with the same kind, eat everything on the ground as well.They are sorted into 3 kinds by the Size and Colour.";
			mes "^0099FFFound Items^000000: Worm Peeling,Red Herb,Jellopy";
			next;
			goto MonNeuPro;
			close;
		MedMonNeuPro:
			mes "^FF0000[Neutral,Medium Monster Encyclopedia]^000000";
			mes "Unfortunately there is no medium monster of Neutral property which has been discovered so far.";
			next;
        		goto MonNeuPro;
        		close;
		GrMonNeuPro:
			mes "^FF0000[Neutral,Great Monster Encyclopedia]^000000";
			mes "1.Golem";
			mes "Living Stone wich has spell-bound by Black Magic.Its gigantic body makes its moving slow.Recognises Magic Spell Casting.";
			mes "^0099FFFound Items^000000: Scell";
			next;
        		goto MonNeuPro;
        		close;
        	EndMonNeuPro:
			close;
		close;
	Cancel:
		close;
}

prt_in.gat,161,50,4	script	Monster Encyclopedia	111,{
	mes "^FF0000[Monster Encyclopedia]^000000";
	mes "This is a Monster Encyclopedia including Monsters of Dark,Poison and Undead Property!";
	next;
	menu "Monster of Dark Property",MonDrkPro,"Monster of Poison Property",MonPsoPro,"Monster of Undead Property",MonUndPro,"Cancel",Cancel;
		
	MonDrkPro:
		menu "Small Size Monster",SmaMonDrkPro,"Medium Size Monster",MedMonDrkPro,"Great Size Monster",GrMonDrkPro,"Cancel",EndMonDrkPro;
			
		SmaMonDrkPro:
			mes "^FF0000[Dark,Small Monster Encyclopedia]^000000";
			mes "1.Thief Bug Egg";
			mes "Egg of Filthy Bug.Let's cut off the evil at its root.";
			mes "^0099FFFound Items^000000: Chrysalis,Sticky Muscus";
			next;
			mes "^FF0000[Dark,Small Monster Encyclopedia]^000000";
			mes "2.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;
			mes "^FF0000[Dark,Small Monster Encyclopedia]^000000";
			mes "3.Tarou";
			mes "Little mouse of white colour. It is squicking very loudly in the Dead Pit or the Prontera Culvert.";
			mes "^0099FFFound Items^000000: Rat Tail,Leather,Feather,Monster's Feed";
			next;
			mes "^FF0000[Dark,Small Monster Encyclopedia]^000000";
			mes "4.Drainliar";
			mes "Freaking Bloody bat with a might.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Red Herb";
			next;
			mes "^FF0000[Dark,Small Monster Encyclopedia]^000000";
			mes "5.Dokkaebi";
			mes "Korean Traditional Ghost with Dark Skin. It looks so cute and has a small horn on the head.";
			mes "^0099FFFound Items^000000: Dokkaebi Horn";
			next;
			mes "^FF0000[Dark,Small Monster Encyclopedia]^000000";
			mes "6.Deviruchi";
			mes "Little evil creature,which carries a cute fork with.";
			mes "^0099FFFound Items^000000: Little Evil Horn,Little Evil Wing,Zargon";
			next;	
			goto MonDrkPro;
			close;
		MedMonDrkPro:
			mes "^FF0000[Dark,Medium Monster Encyclopedia]^000000";
			mes "1.Female Thief Bug";
			mes "Dirty and filthy Creatures having a strong solidarity with the same kind, eat everything on the ground as well.They are sorted into 3 kinds by the Size and Colour.";
			mes "^0099FFFound Items^000000: Worm Peeling,Red Herb,Jellopy,Garlet.Insect Feeler";
			next;
			mes "^FF0000[Dark,Medium Monster Encyclopedia]^000000";
			mes "2.Male Thief Bug";
			mes "Dirty and filthy Creatures having a strong solidarity with the same kind, eat everything on the ground as well.They are sorted into 3 kinds by the Size and Colour.";
			mes "^0099FFFound Items^000000: Worm Peeling,Red Herb,Jellopy,Garlet.Insect Feeler,Yellow Herb";
			next;						
			mes "^FF0000[Dark,Medium Monster Encyclopedia]^000000";
			mes "3.Matyr";
			mes "Creature shaped in Black Dog.";
			mes "^0099FFFound Items^000000: Monster's Feed,Leather";
			next;
			mes "^FF0000[Dark,Medium Monster Encyclopedia]^000000";
			mes "4.Zenorc";
			mes "Mutent Orc with a small and short build.It moves around using both hands and feet. It owns High AGI stat,so that it passes off almost every attack.";
			mes "^0099FFFound Items^000000: Znorc's Fang,Sticky Muscus,Yellow Potion";
			next;
			mes "^FF0000[Dark,Medium Monster Encyclopedia]^000000";
			mes "5.Requiem";
			mes "It seems like an Ancient Slave,carrying a heavy Coffin on the back.";
			mes "^0099FFFound Items^000000: Mystic Blue Box";
			next;
			mes "^FF0000[Dark,Medium Monster Encyclopedia]^000000";
			mes "6.Bathory";
			mes "Witch with a big wen on the nose.She rides on her magic broom flying around in the air.";
			mes "^0099FFFound Items^000000: Witched Starsand";
			next;
			goto MonDrkPro;
			close;
		GrMonDrkPro:
			mes "^FF0000[Dark,Great Monster Encyclopedia]^000000";
			mes "1.Isis.";
			mes "Creature having the head and upper body of a woman and the tail of a snake.Her nail is quite a menace.";
			mes "^0099FFFound Items^000000: Scale Skin,Shining Scale";
			next;
			mes "^FF0000[Dark,Great Monster Encyclopedia]^000000";
			mes "3.Raydric";
			mes "Ghost Knight of misfortune.";
			mes "^0099FFFound Items^000000: Elunium,Chivarly Emblem";
			next;	
			goto MonDrkPro;
			close;
		EndMonDrkPro:
			close;
		close;
	MonPsoPro:						
		menu "Small Size Monster",SmaMonPsoPro,"Medium Size Monster",MedMonPsoPro,"Great Size Monster",GrMonPsoPro,"Cancel",EndMonPsoPro;

		SmaMonPsoPro:
			mes "^FF0000[Poison,Small Monster Encyclopedia]^000000";
			mes "Unfortunately there is no small monster of Poison Property which has been discovered so far.";
			next;
			goto MonPsoPro;
			close;
		MedMonPsoPro:
			mes "^FF0000[Poison,Medium Monster Encyclopedia]^000000";
			mes "1.Poporing";
			mes "Poisonous Poring in light green.Every character is the same as poring,but much more stronger.";
			mes "^0099FFFound Items^000000: Sticky Muscus,Garlet,Green Herb";
			next;
			mes "^FF0000[Poison,Medium Monster Encyclopedia]^000000";
			mes "2.Poison Spore";
			mes "Poisonous Spore in Violet.Besides,it tends to attack haphazardly if anybody gets near.";
			mes "^0099FFFound Items^000000: Spore,Green Herb";
			next;
			mes "^FF0000[Poison,Medium Monster Encyclopedia]^000000";
			mes "3.Cobold the 2nd";
			mes "Small monster looks like a Wolf but it is smart enough to handle several tools. It is hostile and strong unlike its appearance. All Cobolds seem to be brothers.";
			mes "^0099FFFound Items^000000: Blue Hair,Zargon,Orange Potion";
			next;
			mes "^FF0000[Poison,Medium Monster Encyclopedia]^000000";
			mes "4.Side Winder";
			mes "Horrendous Snake of Dark colour.";
			mes "^0099FFFound Items^000000: Shining Scale,Zargon,Poisonous Canine,Snake Scale";
			next;
			goto MonPsoPro;
			close;
		GrMonPsoPro:
			mes "^FF0000[Poison,Great Monster Encyclopedia]^000000";
			mes "1.Argos";
			mes "Big Spider of Dark colour.It often invades passangers who intend to go over Mt.Mjornir. Be cautious of Argos,if you are the one of those passangers.";
			mes "^0099FFFound Items^000000: Cobweb,Scell,Bug Leg,Green Herb,Yellow Herb";
			next;
			mes "^FF0000[Poison,Great Monster Encyclopedia]^000000";
			mes "2.Argiope";
			mes "Monster crawling around with several articular legs.";
			mes "^0099FFFound Items^000000: Bug Leg,Zargon,Green Herb";
			next;
			mes "^FF0000[Poison,Great Monster Encyclopedia]^000000";
			mes "4.Myst";
			mes "Mist-like Monster.";
			mes "^0099FFFound Items^000000: Trunk.Gas Mask";
			next;
			goto MonPsoPro;
			close;
		EndMonPsoPro:
			close;
		close;
	MonUndPro:
		menu "Small Size Monster",SmaMonUndPro,"Medium Size Monster",MedMonUndPro,"Great Size Monster",GrMonUndPro,"Cancel",EndMonUndPro;

		SmaMonUndPro:
			mes "^FF0000[Undead,Small Monster Encyclopedia]^000000";
			mes "Unfortunately there is no small monster of Undead Property which has been discovered so far.";
			next;
			goto MonUndPro;
			close;
		MedMonUndPro:
			mes "^FF0000[Undead,Medium Monster Encyclopedia]^000000";
			mes "1.Zombie";
			mes "Bad Case of the Dead which has been reborn as a Walking Corpse by Back magic.Let's lead it to Nirvana.";
			mes "^0099FFFound Items^000000: Decayed Nail,Sticky Muscus,Horrendous Mouth";
			next;
			mes "^FF0000[Undead,Medium Monster Encyclopedia]^000000";
			mes "2.Megalodon";
			mes "Skeleton Fish having spooky empty eye-holes.";
			mes "^0099FFFound Items^000000: Stinky Scale,Skel-Bone";
			next;
			mes "^FF0000[Undead,Medium Monster Encyclopedia]^000000";
			mes "3.Orc Zombie";
			mes "Corpes of the Orc which has been given a new life by Black magic.";
			mes "^0099FFFound Items^000000: Orc Claw,Sticky Muscus";
			next;
			mes "^FF0000[Undead,Medium Monster Encyclopedia]^000000";
			mes "4.Pirate Skel";
			mes "Walking Corpse of a Pirate which had ordered all over the Sea.";
			mes "^0099FFFound Items^000000: Skel-Bone";
			next;
			mes "^FF0000[Undead,Medium Monster Encyclopedia]^000000";
			mes "5.Orc Skeleton";
			mes "Ancient Living Skeleton of the Orc which had been buried for a long time.It has Great Power as well as the period of being buried.";
			mes "^0099FFFound Items^000000: Orc's Fang,Green Potion";
			next;
			mes "^FF0000[Undead,Medium Monster Encyclopedia]^000000";
			mes "6.Soldier Skeleton";
			mes "Skeleton holding 2 swords on both grips,attacks fast.One of the dangerous monsters in the Cave.";
			mes "^0099FFFound Items^000000: Skel-Bone,Red Potion";
			next;
			mes "^FF0000[Undead,Medium Monster Encyclopedia]^000000";
			mes "7.Munak";
			mes "Pretty-looking Female corpse which had been frozen for a long time.She looks like holding a long story deep inside, the story people want to know about.Anyway Don't give her a break,she'll give strong damages on you.";
			mes "^0099FFFound Items^000000: Daenggie ,Munak Turban";
			next;
			mes "^FF0000[Undead,Medium Monster Encyclopedia]^000000";
			mes "8.Skel Worker";
			mes "Walking Skeletion which was dead in a mine.";
			mes "^0099FFFound Items^000000: Iron,Lantern";
			next;
			mes "^FF0000[Undead,Medium Monster Encyclopedia]^000000";
			mes "9.Archer Skeleton";
			mes "It seems to be an expert of bow when it was alive.It'll come to attack in no time when somebody gets inside of its range.";
			mes "^0099FFFound Items^000000: Skel-Bone,Fire Arrow,Red Potion";
			next;
			mes "^FF0000[Undead,Medium Monster Encyclopedia]^000000";
			mes "10.Mummy";
			mes "Walking Corpse with a bandage all around the body.It smells so bad because its body is still on the decomposed stage.";
			mes "^0099FFFound Items^000000: Rotten Bandage";
			next;
			mes "^FF0000[Undead,Medium Monster Encyclopedia]^000000";
			mes "11.Verit";
			mes "Dog with a bandage all around the body which was dead once before.It tends to eat everything dropped on the ground.";
			mes "^0099FFFound Items^000000: Immortal Heart,Zargon,Rotten Bandage";
			next;
			mes "^FF0000[Undead,Medium Monster Encyclopedia]^000000";
			mes "12.Ghoul";
			mes "Similar as Zombie but much more stronger. Yet very slow, you'd better run for your life when happen to meet this thing.";
			mes "^0099FFFound Items^000000: Horrendous Mouth";
			next;
			goto MonUndPro;
			close;
		GrMonUndPro:
			mes "^FF0000[Undead,Great Monster Encyclopedia]^000000";
			mes "3.Evil Druid";
			mes "You'll shudder even once looking at it.";
			mes "^0099FFFound Items^000000: Amulet,White Herb";
			next;
			goto MonUndPro;
			close;
		EndMonUndPro:
			close;
		close;
	Cancel:
		close;
}

prt_in.gat,162,68,4	script	`Merchant Guideline' for Dummies	111,{
	mes "^FF0000[`Merchant Guideline' for Dummies]^000000";
	mes "Please go over the next page if you want to check `Vending'.";
	next;
	menu "Go over the next page",NextPage,"Close the book",CloseB;
			
	NextPage:
		mes "^FF0000[Vending Guide for Dummies]^000000";
		mes "To Vend a Shop,first you must equip a ^0099FFCart^000000.";
		mes "You can rent a cart from Kafra.When equipped once,it won't be disappeared as long as you don't take off.";
		next;
		mes "^FF0000[Vending Guide for Dummies]^000000";
		mes "However,this cart diminishes moving speed.You can recover moving speed after learning `Push Cart' the skill.";
		next;
		mes "^FF0000[Vending Guide for Dummies]^000000";
		mes "When learn `Push Cart' over 3 points,it will allow you to learn `Vending'.You can display 3 kinds of item on your shop with Vending at first.";
		mes "As Vending skill goes higher, it will allow you to display more items.";
		next;
		mes "^FF0000[Vending Guide for Dummies]^000000";
		mes "Let's store things you want to sell in the Cart.";
		mes "To open Cart Window,Use ^0099FFalt+W^000000 as hotkey.Or it will be open when you click `Item' icon on equipment(alt+Q) window.";
		next;
		mes "^FF0000[Vending Guide for Dummies]^000000";
		mes "Now Use `Vending' skill.2 kinds of Window-`Item Shop' and `Item you want to sell'- will pop up.";
		next;
		mes "^FF0000[Vending Guide for Dummies]^000000";
		mes "On `Item Shop' window,name your shop.Then Drag items onto `Item you want to sell' window and Fix the price.";
		next;
		mes "^FF0000[Vending Guide for Dummies]^000000";
		mes "When close `My Shop' window,your shop will be closed.You can check each price of items with a mouse on the items. Meanwhile it keeps being recorded on Chat window how many items or which kind have been sold.";
		next;
		mes "^FF0000[Vending Guide for Dummies]^000000";
		mes "When everything's sold out,the shop will be closed automatically.";
		close;
	CloseB:
		close;
}

prt_in.gat,164,96,4	script	Monster Encyclopedia	111,{
	mes "^FF0000[Dungeon Monster Encyclopedia]^000000";
	mes "This is an Encyclopedia describing Monsters living in Dungeons.";
	next;
		next;
	menu "Orc Dungeon",OrcDung,"Byalan Cave near Izlude",ByaCave,"Prontera Culvert",PrtCul;
	
	OrcDung:
		menu "F1",OrcDungF1,"F2",OrcDungF2,"Cancel",EndOrcDung;
					
		OrcDungF1:
			mes "^FF0000[Orc Dungeon 1F Monster Encyclopedia]^000000";
			mes "1.Chonchon";
			mes "Flying monsters, they are not strong but make as annoying noises as Roda Frog. Make sure to eliminate them whenever you see.";
			mes "^0099FFFound Items^000000: Shell,Jellopy,Fly Wing";
			next;
			mes "^FF0000[Orc Dungeon 1F Monster Encyclopedia]^000000";
			mes "2.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;
			mes "^FF0000[Orc Dungeon 1F Monster Encyclopedia]^000000";
			mes "3.Orc Zombie";
			mes "Corpes of the Orc which has been given a new life by Black magic.";
			mes "^0099FFFound Items^000000: Orc Claw,Sticky Muscus";
			next;
			mes "^FF0000[Orc Dungeon 1F Monster Encyclopedia]^000000";
			mes "4.Orc Skeleton";
			mes "Ancient Living Skeleton of the Orc which had been buried for a long time.It has Great Power as well as the period of being buried.";
			mes "^0099FFFound Items^000000: Orc's Fang,Green Potion";
			next;
			goto OrcDung;
			close;
		OrcDungF2:
			mes "^FF0000[Orc Dungeon 2F Monster Encyclopedia]^000000";
			mes "1.Chonchon";
			mes "Flying monsters, they are not strong but make as annoying noises as Roda Frog. Make sure to eliminate them whenever you see.";
			mes "^0099FFFound Items^000000: Shell,Jellopy,Fly Wing";
			next;
			mes "^FF0000[Orc Dungeon 2F Monster Encyclopedia]^000000";
			mes "2.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;
			mes "^FF0000[Orc Dungeon 2F Monster Encyclopedia]^000000";
			mes "3.Orc Skeleton";
			mes "Ancient Living Skeleton of the Orc which had been buried for a long time.It has Great Power as well as the period of being buried.";
			mes "^0099FFFound Items^000000: Orc's Fang,Green Potion";
			next;
			mes "^FF0000[Orc Dungeon 2F Monster Encyclopedia]^000000";
			mes "4.Zenorc";
			mes "Mutent Orc with a small and short build.It moves around using both hands and feet. It owns High AGI stat,so that it passes off almost every attack.";
			mes "^0099FFFound Items^000000: Znorc's Fang,Sticky Muscus,Yellow Potion";
			next;
			goto OrcDung;
			close;
		EndOrcDung:
			close;
		close;
	ByaCave:
		menu "1F",ByaCaveF1,"2F",ByaCaveF2,"3F",ByaCaveF3,"4F",ByaCaveF4,"5F",ByaCaveF5,"Cancel",EndByaCave;
				
		ByaCaveF1:
			mes "^FF0000[Byalan Cave 1F Monster Encyclopedia]^000000";
			mes "1.Plankton";
			mes "Even though looks like trifle creatures, they fly into a rage when stepped on. They are light, drifting on the water and attack with several projections.";
			mes "^0099FFFound Items^000000: Single Cell.Garlet.Sticky Muscus.Empty Bottle";
			next;
			mes "^FF0000[Byalan Cave 1F Monster Encyclopedia]^000000";
			mes "2.Kukre";
			mes "Look better than Thief Bugs but basically do the same thing. But luckily they don't attack players in a group.";
			mes "^0099FFFound Items^000000: Worm Peeling.Garlet.Monster's Feed.Red Herb.Insect Feeler";
			next;
			mes "^FF0000[Byalan Cave 1F Monster Encyclopedia]^000000";
			mes "3.Hydra";
			mes "Veggie Monsters which live near water or in the deep sea. Attack using tentacles. When run into them in a group, it will be the pain in the ass. It will be effective to kill one by one before they gather.";
			mes "^0099FFFound Items^000000: Tentacle.Sticky Muscus.Meat";
			next;
			mes "^FF0000[Byalan Cave 1F Monster Encyclopedia]^000000";
			mes "4.Vadon";
			mes "They wear thick shells all around the body and walk around tinkling nippers. Also their red color looks so tempting an appetite.Be careful anyway.";
			mes "^0099FFFound Items^000000: Nipper.Garlet.Solid Shell.Shell";
			next;
			mes "^FF0000[Byalan Cave 1F Monster Encyclopedia]^000000";
			mes "5.Marina";
			mes "Jelly Fishes of transparent white color. Do flexible attacks stretching its body as long as they can. They live in cool places near water.";
			mes "^0099FFFound Items^000000: Single Cell.Sticky Muscus";
			next;
			goto ByaCave;
			close;
		ByaCaveF2:
			mes "^FF0000[Byalan Cave 2F Monster Encyclopedia]^000000";
			mes "1.Plankton";
			mes "Even though looks like trifle creatures, they fly into a rage when stepped on. They are light, drifting on the water and attack with several projections.";
			mes "^0099FFFound Items^000000: Single Cell.Garlet.Sticky Muscus.Empty Bottle";
			next;
			mes "^FF0000[Byalan Cave 2F Monster Encyclopedia]^000000";         					
			mes "2.Kukre";
			mes "Look better than Thief Bugs but basically do the same thing. But luckily they don't attack players in a group.";
			mes "^0099FFFound Items^000000: Worm Peeling.Garlet.Monster's Feed.Red Herb.Insect Feeler";
			next;
			mes "^FF0000[Byalan Cave 2F Monster Encyclopedia]^000000";         					
			mes "3.Hydra";
			mes "Veggie Monsters which live near water or in the deep sea. Attack using tentacles. When run into them in a group, it will be the pain in the ass. It will be effective to kill one by one before they gather.";
			mes "^0099FFFound Items^000000: Tentacle.Sticky Muscus.Meat";
			next;
			mes "^FF0000[Byalan Cave 2F Monster Encyclopedia]^000000";         					
			mes "4.Vadon";
			mes "They wear thick shells all around the body and walk around tinkling nippers. Also their red color looks so tempting an appetite.Be careful anyway.";
			mes "^0099FFFound Items^000000: Nipper.Garlet.Solid Shell.Shell";
			next;
			mes "^FF0000[Byalan Cave 2F Monster Encyclopedia]^000000";         					
			mes "5.Marina";
			mes "Jelly Fishes of transparent white color. Do flexible attacks stretching its body as long as they can. They live in cool places near water.";
			mes "^0099FFFound Items^000000: Single Cell.Sticky Muscus";
			next;	
			mes "^FF0000[Byalan Cave 2F Monster Encyclopedia]^000000";
			mes "6.Thara Frog";
			mes "Frogs of red color, surely stronger than Roda Frogs. However there is obvious one thing in common about them, annoying croaking noise.";
			mes "^0099FFFound Items^000000: Spawn,Scell,Sticky Webfoot";
			next;
			goto ByaCave;
			close;
		ByaCaveF3:
			mes "^FF0000[Byalan Cave 3F Monster Encyclopedia]^000000";
			mes "1.Hydra";
			mes "Veggie Monsters which live near water or in the deep sea. Attack using tentacles. When run into them in a group, it will be the pain in the ass. It will be effective to kill one by one before they gather.";
			mes "^0099FFFound Items^000000: Tentacle.Sticky Muscus.Meat";
			next;
			mes "^FF0000[Byalan Cave 3F Monster Encyclopedia]^000000";	
			mes "2.Thara Frog";
			mes "Frogs of red color, surely stronger than Roda Frogs. However there is obvious one thing in common about them, annoying croaking noise.";
			mes "^0099FFFound Items^000000: Spawn,Scell,Sticky Webfoot";
			next;
			mes "^FF0000[Byalan Cave 3F Monster Encyclopedia]^000000";
			mes "3.Cornutus";
			mes "Some buddies concealing themselves within hard turban shells and try to lead a quiet life.";
			mes "^0099FFFound Items^000000: Conch.Scell.Solid Shell";
			next;
			mes "^FF0000[Byalan Cave 3F Monster Encyclopedia]^000000";
			mes "4.Mars";
			mes "Have many legs, flapping under the water. Do not rush to it because of its tempting look.";
			mes "^0099FFFound Items^000000: Squid Ink,Tentacle";
			next;
			mes "^FF0000[Byalan Cave 3F Monster Encyclopedia]^000000";
			mes "5.Obeaune";
			mes "Female Mermaid. Attacks using long hair, with a grim face.";
			mes "^0099FFFound Items^000000: Heart of Mermaid,Fin";
			next;
			goto ByaCave;
			close;
		ByaCaveF4:
			mes "^FF0000[Byalan Cave 4F Monster Encyclopedia]^000000";	
			mes "1.Hydra";
			mes "Veggie Monsters which live near water or in the deep sea. Attack using tentacles. When run into them in a group, it will be the pain in the ass. It will be effective to kill one by one before they gather.";
			mes "^0099FFFound Items^000000: Tentacle.Sticky Muscus.Meat";
			next;
			mes "^FF0000[Byalan Cave 4F Monster Encyclopedia]^000000";
			mes "2.Mars";
			mes "Have many legs, flapping under the water. Do not rush to it because of its tempting look.";
			mes "^0099FFFound Items^000000: Squid Ink,Tentacle";
			next;
			mes "^FF0000[Byalan Cave 4F Monster Encyclopedia]^000000";
			mes "3.Obeaune";
			mes "Female Mermaid. Attacks using long hair, with a grim face.";
			mes "^0099FFFound Items^000000: Heart of Mermaid,Fin";
			next;
			mes "^FF0000[Byalan Cave 4F Monster Encyclopedia]^000000";
			mes "4.Marine Sphere";
			mes "Strange, round-shaped monsters beating so fast that they seem like they will burst.";
			mes "^0099FFFound Items^000000: Tendon.Detonator";
			next;
			mes "^FF0000[Byalan Cave 4F Monster Encyclopedia]^000000";
			mes "5.Phen";
			mes "Fish of blue color which is kicking and definitely alive.";
			mes "^0099FFFound Items^000000: Fish Tail,Sharp Scale,Meat,Fin";
			next;
			mes "^FF0000[Byalan Cave 4F Monster Encyclopedia]^000000";
			mes "6.Sword Fish";
			mes "Fish Monster with a sharp, thin, and long nose. Goggle eyes are funny but it belongs to one of those dangerous monsters.";
			mes "^0099FFFound Items^000000: Sharp Scale,Gill";
			next;
			goto ByaCave;
			close;
		ByaCaveF5:
			mes "^FF0000[Byalan Cave 5F Monster Encyclopedia]^000000";
			mes "1.Marine Sphere";
			mes "Strange, round-shaped monsters beating so fast that they seem like they will burst.";
			mes "^0099FFFound Items^000000: Tendon.Detonator";
			next;
			mes "^FF0000[Byalan Cave 5F Monster Encyclopedia]^000000";
			mes "2.Sword Fish";
			mes "Fish Monster with a sharp, thin, and long nose. Goggle eyes are funny but it belongs to one of those dangerous monsters.";
			mes "^0099FFFound Items^000000: Sharp Scale,Gill";
			next;
			mes "^FF0000[Byalan Cave 5F Monster Encyclopedia]^000000";
			mes "3.Mars";
			mes "Have many legs, flapping under the water. Do not rush to it because of its tempting look.";
			mes "^0099FFFound Items^000000: Squid Ink,Tentacle";
			next;
			mes "^FF0000[Byalan Cave 5F Monster Encyclopedia]^000000";
			mes "4.Obeaune";
			mes "Female Mermaid. Attacks using long hair, with a grim face.";
			mes "^0099FFFound Items^000000: Heart of Mermaid,Fin";
			next;
			mes "^FF0000[Byalan Cave 5F Monster Encyclopedia]^000000";
			mes "5.Marc";
			mes "Sea Horse. Don't ever think about riding a Sea Horse!";
			mes "^0099FFFound Items^000000: Gill,Fin";
			next;
			mes "^FF0000[Byalan Cave 5F Monster Encyclopedia]^000000";
			mes "6.Strouf";
			mes "Fish rarely seen under the deep sea.";
			mes "^0099FFFound Items^000000: Fin,Feather,Gill";
			next;
			goto ByaCave;
			close;
		EndByaCave:
			close;
		close;
	PrtCul:
		menu "1F",PrtCulF1,"2F",PrtCulF2,"3F",PrtCulF3,"4F",PrtCulF4,"Cancel",EndPrtCul;
         		
		PrtCulF1:
			mes "^FF0000[Prontera Culvert 1F Monster Encyclopedia]^000000";
			mes "1.Thief Bug Egg";
			mes "Egg of Filthy Bug.Let's cut off the evil at its root.";
			mes "^0099FFFound Items^000000: Chrysalis,Sticky Muscus";
			next;
			mes "^FF0000[Prontera Culvert 1F Monster Encyclopedia]^000000";
			mes "2.Thief Bug Baby";
			mes "Dirty and filthy Creatures having a strong solidarity with the same kind, eat everything on the ground as well.They are sorted into 3 kinds by the Size and Colour.";
			mes "^0099FFFound Items^000000: Worm Peeling,Red Herb,Jellopy";
			next;
			mes "^FF0000[Prontera Culvert 1F Monster Encyclopedia]^000000";
			mes "3.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;
			mes "^FF0000[Prontera Culvert 1F Monster Encyclopedia]^000000";
			mes "4.Spore";
			mes "Mushroom-like monsters. Usually live in the Forest or Dungeons. By the way Don't try to eat it!";
			mes "^0099FFFound Items^000000: Spore,Red Herb,Blue Herb";
			next;
			mes "^FF0000[Prontera Culvert 1F Monster Encyclopedia]^000000";
			mes "5.Tarou";
			mes "Little mouse of white colour. It is squicking very loudly in the Dead Pit or the Prontera Culvert.";
			mes "^0099FFFound Items^000000: Rat Tail,Leather,Feather,Monster's Feed";
			next;
			goto PrtCul;
			close;
		PrtCulF2:
			mes "^FF0000[Prontera Culvert 2F Monster Encyclopedia]^000000";
			mes "1.Thief Bug Egg";
			mes "Egg of Filthy Bug.Let's cut off the evil at its root.";
			mes "^0099FFFound Items^000000: Chrysalis,Sticky Muscus";
			next;
			mes "^FF0000[Prontera Culvert 2F Monster Encyclopedia]^000000";
			mes "2.Thief Bug Baby";
			mes "Dirty and filthy Creatures having a strong solidarity with the same kind, eat everything on the ground as well.They are sorted into 3 kinds by the Size and Colour.";
			mes "^0099FFFound Items^000000: Worm Peeling,Red Herb,Jellopy";
			next;
			mes "^FF0000[Prontera Culvert 2F Monster Encyclopedia]^000000";
			mes "3.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;
			mes "^FF0000[Prontera Culvert 2F Monster Encyclopedia]^000000";
			mes "4.Spore";
			mes "Mushroom-like monsters. Usually live in the Forest or Dungeons. By the way Don't try to eat it!";
			mes "^0099FFFound Items^000000: Spore,Red Herb,Blue Herb";
			next;
			mes "^FF0000[Prontera Culvert 2F Monster Encyclopedia]^000000";
			mes "5.Tarou";
			mes "Little mouse of white colour. It is squicking very loudly in the Dead Pit or the Prontera Culvert..";
			mes "^0099FFFound Items^000000: Rat Tail,Leather,Feather,Monster's Feed";
			next;
			mes "^FF0000[Prontera Culvert 2F Monster Encyclopedia]^000000";
			mes "6.Plankton";
			mes "Even though looks like trifle creatures, they fly into a rage when stepped on. They are light, drifting on the water and attack with several projections.";
			mes "^0099FFFound Items^000000: Single Cell.Garlet.Sticky Muscus.Empty Bottle";
			next;
			mes "^FF0000[Prontera Culvert 2F Monster Encyclopedia]^000000";
			mes "7.Hydra";
			mes "Veggie Monsters which live near water or in the deep sea. Attack using tentacles. When run into them in a group, it will be the pain in the ass. It will be effective to kill one by one before they gather.";
			mes "^0099FFFound Items^000000: Tentacle.Sticky Muscus.Meat";
			next;
			mes "^FF0000[Prontera Culvert 2F Monster Encyclopedia]^000000";
			mes "8.Female Thief Bug";
			mes "Dirty and filthy Creatures having a strong solidarity with the same kind, eat everything on the ground as well.They are sorted into 3 kinds by the Size and Colour.";
			mes "^0099FFFound Items^000000: Worm Peeling,Red Herb,Jellopy,Garlet.Insect Feeler";
			next;
			goto PrtCul;
			close;
		PrtCulF3:
			mes "^FF0000[Prontera Culvert 3F Monster Encyclopedia]^000000";
			mes "1.Thief Bug Egg";
			mes "Egg of Filthy Bug.Let's cut off the evil at its root.";
			mes "^0099FFFound Items^000000: Chrysalis,Sticky Muscus";
			next;
			mes "^FF0000[Prontera Culvert 3F Monster Encyclopedia]^000000";
			mes "2.Thief Bug Baby";
			mes "Dirty and filthy Creatures having a strong solidarity with the same kind, eat everything on the ground as well.They are sorted into 3 kinds by the Size and Colour.";
			mes "^0099FFFound Items^000000: Worm Peeling,Red Herb,Jellopy";
			next;
			mes "^FF0000[Prontera Culvert 3F Monster Encyclopedia]^000000";
			mes "3.Female Thief Bug";
			mes "Dirty and filthy Creatures having a strong solidarity with the same kind, eat everything on the ground as well.They are sorted into 3 kinds by the Size and Colour.";
			mes "^0099FFFound Items^000000: Worm Peeling,Red Herb,Jellopy,Garlet.Insect Feeler";
			next;
			mes "^FF0000[Prontera Culvert 3F Monster Encyclopedia]^000000";
			mes "4.Tarou";
			mes "Little mouse of white colour. It is squicking very loudly in the Dead Pit or the Prontera Culvert..";
			mes "^0099FFFound Items^000000: Rat Tail,Leather,Feather,Monster's Feed";
			next;
			mes "^FF0000[Prontera Culvert 3F Monster Encyclopedia]^000000";
			mes "5.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;
			mes "^FF0000[Prontera Culvert 3F Monster Encyclopedia]^000000";
			mes "6.Poporing";
			mes "Poisonous Poring in light green.Every character is the same as poring,but much more stronger.";
			mes "^0099FFFound Items^000000: Sticky Muscus,Garlet,Green Herb";
			next;
			goto PrtCul;
			close;
		PrtCulF4:
			mes "^FF0000[Prontera Culvert 4F Monster Encyclopedia]^000000";
			mes "1.Thief Bug Egg";
			mes "Egg of Filthy Bug.Let's cut off the evil at its root.";
			mes "^0099FFFound Items^000000: Chrysalis,Sticky Muscus";
			next;
			mes "^FF0000[Prontera Culvert 4F Monster Encyclopedia]^000000";
			mes "2.Thief Bug Baby";
			mes "Dirty and filthy Creatures having a strong solidarity with the same kind, eat everything on the ground as well.They are sorted into 3 kinds by the Size and Colour.";
			mes "^0099FFFound Items^000000: Worm Peeling,Red Herb,Jellopy";
			next;
			mes "^FF0000[Prontera Culvert 4F Monster Encyclopedia]^000000";
			mes "3.Female Thief Bug";
			mes "Dirty and filthy Creatures having a strong solidarity with the same kind, eat everything on the ground as well.They are sorted into 3 kinds by the Size and Colour.";
			mes "^0099FFFound Items^000000: Worm Peeling,Red Herb,Jellopy,Garlet.Insect Feeler";
			next;
			mes "^FF0000[Prontera Culvert 4F Monster Encyclopedia]^000000";
			mes "4.Male Thief Bug";
			mes "Dirty and filthy Creatures having a strong solidarity with the same kind, eat everything on the ground as well.They are sorted into 3 kinds by the Size and Colour.";
			mes "^0099FFFound Items^000000: Worm Peeling,Red Herb,Jellopy,Garlet.Insect Feeler,Yellow Herb";
			next;
			mes "^FF0000[Prontera Culvert 4F Monster Encyclopedia]^000000";
			mes "5.Golden Thief Bug";
			mes "Impertinent Thief Bug of Golden Colour,wearing a solid shell all around the body.It's rarely seen by human's eye.";
			mes "^0099FFFound Items^000000: Blue Herb,Gold,Ora Ora,Insect Feeler";
			next;
			goto PrtCul;
			close;
		EndPrtCul:
			close;
		close;
	Cancel:
        	close;
}

prt_in.gat,164,102,4	script	Monster Encyclopedia	111,{
	mes "^FF0000[Dungeon Monster Encyclopedia]^000000";
	mes "The is an Encyclopedia describing Monsters living in Dungeons.";
	next;
	menu "Sunken ship near Alberta",SunkShip,"Prontera Maze",PrtMaze;

	SunkShip:
		menu "F1",SunkShipF1,"F2",SunkShipF2,"Cancel",EndSunkShip;
		
		SunkShipF1:
			mes "^FF0000[Sunken Ship 1F Monster Encyclopedia]^000000";
			mes "1. Plankton";
			mes "Even though looks like trifle creatures, they fly into a rage when stepped on. They are light, drifting on the water and attack with serveral projections.";
			mes "^0099FFFound Items:^000000 Single Cell. Garlet. Sticky Mocus. Empty Bottle";
			next;
			mes "^FF0000[Sunken Ship 1F Monster Encyclopedia]^000000";
			mes "2. Kukre";
			mes "Look better than Thief Bugs but basically do the same thing. But luckily they don't attack players in a group.";
			mes "^0099FFFound Items:^000000 Worm Peeling. Garlet. Monster's Feed. Red Herb. Insect Feeler";
			next;
			mes "^FF0000[Sunken Ship 1F Monster Encyclopedia]^000000";
			mes "3. Hydra";
			mes "Veggie Monsters which live near water or in the deep sea. Attack using tentacles. When run into them in a group, it will be in the ass. It will be effective to kill one by one before they gather.";
			mes "^0099FFFound Items:^000000 Tentacles. Sticky Mocus. Meat";
			next;
			mes "^FF0000[Sunken Ship 1F Monster Encyclopedia]^000000";
			mes "4. Poporing";
			mes "Poisonous Poring in light green. Every character is the same as poring, but much more stronger.";
			mes "^0099FFFound Items:^000000 Skicky Mocus. Garlet. Green Herb";
			next;
			mes "^FF0000[Sunken Ship 1F Monster Encyclopedia]^000000";
			mes "5. Poison Spore";
			mes "Poisonous Spore in Violet. Besides, it tends to attack haphazardly if anybody gets near.";
			mes "^0099FFFound Items:^000000 Spore. Green Herb";
			next;
			mes "^FF0000[Sunken Ship 1F Monster Encyclopedia]^000000";
			mes "6. Pirate Skel";
			mes "Walking Corpse of a Pirate which had ordered all over the Sea.";
			mes "^0099FFFound Items:^000000 Skel-Bone";
			next;
			goto SunkShip;
			close;
		SunkShipF2:
			mes "^FF0000[Sunken Ship 2F Monster Encyclopedia]^000000";
			mes "1. Kukre";
			mes "Look better than Thief Bugs but basically do the same thing. But luckily they don't attack players in a group.";
			mes "^0099FFFound Items:^000000 Worm Peeling. Garlet. Monster's Feed. Red Herb. Insect Feeler";
			next;
			mes "^FF0000[Sunken Ship 2F Monster Encyclopedia]^000000";
			mes "2. Hydra";
			mes "Veggie Monsters which live near water or in the deep sea. Attack using tentacles. When run into them in a group, it will be in the ass. It will be effective to kill one by one before they gather.";
			mes "^0099FFFound Items:^000000 Tentacles. Sticky Mocus. Meat";
			next;
			mes "^FF0000[Sunken Ship 2F Monster Encyclopedia]^000000";
			mes "3. Poporing";
			mes "Poisonous Poring in light green. Every character is the same as poring, but much more stronger.";
			mes "^0099FFFound Items:^000000 Skicky Mocus. Garlet. Green Herb";
			next;
			mes "^FF0000[Sunken Ship 2F Monster Encyclopedia]^000000";
			mes "4. Thara Frogs";
			mes "Frogs of red color, surely stonger than Roda Frogs. However there is obvious one thing in common about them, annoying croaking noise.";
			mes "^0099FFFound Items:^000000 Spawn. Scell. Skicky Webfoot";
			next;
			mes "^FF0000[Sunken Ship 2F Monster Encyclopedia]^000000";
			mes "5. Whisper";
			mes "Living Fabric, which gives spooking feeling.";
			mes "^0099FFFound Items:^000000 Fabric";
			next;
			mes "^FF0000[Sunken Ship 2F Monster Encyclopedia]^000000";
			mes "6. Megalodon";
			mes "Skeleton Fish having spooky empty eye-holes.";
			mes "^0099FFFound Items:^000000 Skinky Scale. Skel-Bone";
			next;
			mes "^FF0000[Sunken Ship 2F Monster Encyclopedia]^000000";
			mes "7. Pirate Skel";
			mes "Walking Corpse of a Pirate which had ordered all over the Sea.";
			mes "^0099FFFound Items:^000000 Skel-Bone";
			next;
			mes "^FF0000[Sunken Ship 2F Monster Encyclopedia]^000000";
			mes "8. Marionette";
			mes "Monster reborn from bewitched Doll, bound to strings on Wooden Sticks.";
			mes "^0099FFFound Items:^000000 Skinky Golden Hair, Trunk";
			next;
			mes "9. Drake";
			mes "Awfully Strong Monster which looks like the Captain of this Sunken Ship.";
			mes "^0099FFFound Items:^000000 Skel-Bone. White";
			next;
			goto SunkShip;
			close;
		EndSunkShip:
			close;
	PrtMaze:
		menu "F1",PrtMazeF1,"F3",PrtMazeF3,"Cancel",EndPrtMaze;
		
		PrtMazeF1:
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "1. Poring";
			mes "Small and circular monsters of transparent pink color. Swallow anything on the ground with sparkling eyes, without any hesitations. No matter what kind of things dropped.";
			mes "They tend to eat first. So be cautious when you put down drop something on the ground. But don't worry. They are not strong, and you will get your back once you kill the monster, which eat your stuff.";
			mes "^0099FFFound Items:^000000 Jellopy. Skicky Mocus. Apple. Empty Bottle. Red Herb";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "2. Lunatic";
			mes "Plump and shaggy monster shaped in Rabbit. However it won't give you `Bunny Band'.";
			mes "^0099FFFound Items:^000000 Clover. Feather. Carrot. Red Herb";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "3. Fabre";
			mes "Larva of Creamy. It is cute when it wiggles, even though it is a weak and small monster,";
			mes "People often tends to slay Fabres, only for the reason they can get `Feather's', one of required items for `Bunny Band'.";
			mes "^0099FFFound Items:^000000 Fluff. Feather. Green Herb. Clover";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "4. Creamy";
			mes "Monster with Beautiful Wings. `Hah~ it's just a buttefly!'. Careless thinking like this will make you bleeding~! It is much stronger then you expect. Be careful!";
			mes "^0099FFFound Items:^000000 Powder of Butterfly. Honey. Butterfly Wing. Flower";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "5. Pupa";
			mes "Monster on the Fabre's pupal stage. It doesn't attack at all, so easy to kill for Novice people.";
			mes "^0099FFFound Items:^000000 Chrysalis. Sticky Mocus";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "6. Poporing";
			mes "Poisonous Poring in light green. Every character is the same as poring, but much more stronger.";
			mes "^0099FFFound Items:^000000 Skicky Mocus. Garlet. Green Herb";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "7. Rocker";
			mes "Lazy Grasshopper which loves playing Violin.";
			mes "^0099FFFound Items:^000000 Grasshopper's Leg. Jellopy";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "8. Big Foot";
			mes "Dull-Looking Bear with a huge build. Although it looks dumb but you will realise how it can be fast after you provoke it.";
			mes "^0099FFFound Items:^000000 Bear's Foot Skin. Leather. Sweet Potato";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "9. Smokie";
			mes "It's working out all the time. Often tries to shapeshift with Raccon Leaves, but always failed. Back then, it tended to gather stuffs diligently, now it seems to give up.";
			mes "^0099FFFound Items:^000000 Raccon Leaf. Leather. Sweet Potato";
			next;
			mes "10. Snake";
			mes "Green Coloured Snake living in the Forest or Desert. Not poisonous but be careful.";
			mes "^0099FFFound Items:^000000 Snake Scale. Red Herb";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "11.Wolf";
			mes "Wanderers having Blue Manes.They are cooperative,so attack in a group when one got attacked.Let's just let them mind their business and watch.";
			mes "^0099FFFound Items^000000: Wolf Claw,Meat,Monster's Feed,Leather";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "12.Argiope";
			mes "Monster crawling around with several articular legs.";
			mes "^0099FFFound Items^000000: Bug Leg,Zargon,Green Herb";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "13.Argos";
			mes "Big Spider of Dark colour.It often invades people lost in the Maze.";
			mes "^0099FFFound Items^000000: Cobweb,Scell,Bug Leg,Green Herb,Yellow Herb";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "14.Chonchon";
			mes "Flying monsters, they are not strong but make as annoying noises as Roda Frog. Make sure to eliminate them whenever you see.";
			mes "^0099FFFound Items^000000: Shell,Jellopy,Fly Wing";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "15.Horn";
			mes "Compliant Insect unlike its offensive appearance.It's wandering about the field making some crunching sound.";
			mes "^0099FFFound Items^000000: Horn,Shell,Solid Shell";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "16.Hunter Fly";
			mes "Winged insect of Blood. It is Strong meanwhile very annoying. Be advised, you'd better flee away if you can.";
			mes "^0099FFFound Items^000000: Solid Shell,Zargon";
			next;						
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "17.Mantis";
			mes "It wanders about the field waving a tiny fan.";
			mes "^0099FFFound Items^000000: Mantis Scythe,Scell,Solid Shell,Red Potion";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "18.Steiner";
			mes "Tiny little insect with a Splendid shell. Don't ever look down upon it. It is stronger than you expect. Besides it recognizes Magical Spell Casting.";
			mes "^0099FFFound Items^000000: Rainbow Shell,Garlet,Shell,Solid Shell";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "19.Side Winder";
			mes "Horrendous Snake of Dark colour.";
			mes "^0099FFFound Items^000000: Shining Scale,Zargon,Poisonous Canine,Snake Scale";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "20.Yoyo";
			mes "Pink coloured Monkey.Not only they pick up every stuff dropped on the gound outrageously, but they are nimble and cooperative,you must be cautious of being attacked by a group.";
			mes "^0099FFFound Items^000000: Yoyo Tail,Banana,Yellow Herb,Leather";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "^FF0000[Earth,Small Monster Encyclopedia]^000000";
			mes "21.Caramel";
			mes "Cute porcupine with tiny spiky quills.But don't ever touch it without intention,it will get mad immeduately.";
			mes "^0099FFFound Items^000000: Porcupine Quill,Leather";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "22.Steel Chonchon";
			mes "This is similar as Chonchon, but in yellow and green. Picks up every stuff on the ground. It is strong and well-cooperative with its fellows, so don't forget to get items before it picks up.";
			mes "^0099FFFound Items^000000: Garlet,Shell,Solid Shell";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "23.Coco";
			mes "Little but fierce-looking eyed Creature carrying an Acorn on both hands. It is very unpleasant when it gives a dirty look,let's give it a lesson.";
			mes "^0099FFFound Items^000000: Acorn,Fluff,Leather,Sweet Potato";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "24.Dustiness";
			mes "This monster owns high dodge rate because it is flying. Need to be attentive if you want to attack.";
			mes "^0099FFFound Items^000000: Moth Dust,Moth Wing,Insect Feeler,Red Herb";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "25.Martin";
			mes "Funny looking Mole wearing a Safety Helmet on the head,which is always busy to walk around.";
			mes "^0099FFFound Items^000000: Mole Whiskers,Mole Claw";
			next;
			mes "^FF0000[Prontera Maze 1F Monster Encyclopedia]^000000";
			mes "26.Savage";
			mes "Wild Boar always walking around restlessly,making some noise. It has Big fangs and looks different from the young one.";
			mes "^0099FFFound Items^000000: Mane,Leather";
			next;
			goto PrtMaze;
			close;
		PrtMazeF3:
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "1.Poring";
			mes "Small and circular monsters of transparent pink color. Swallow anything on the ground with sparkling eyes, without any hesitations. No matter what kind of things dropped,";
			mes "They tend to eat first. So be cautious when you put down drop something on the ground. But don't worry. They are not strong, and you will get yours back once you kill the monster, which eat your stuff.";
			mes "^0099FFFound Items^000000: Jellopy.Sticky Muscus.Apple.Empty Bottle.Red Herb";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "2.Lunatic";
			mes "Plump and shaggy monster shaped in Rabbit.However it won't give you a `Bunny Band'.";
			mes "^0099FFFound Items^000000: Clover,Feather,Carrot,Red Herb";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "3.Fabre";
			mes "Larva of Creamy. It is cute when it wiggles,even though it is a weak and small monster,";
			mes "People often tend to slay Fabres,only for the reason they can get `Feather's,one of required items for `Bunny Band'.";
			mes "^0099FFFound Items^000000: Fluff.Feather.Green Herb.Clover";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "4.Creamy";
			mes "Monster with Beautiful Wings. `Hah~ it's just a butterfly!'. Careless thinking like this will make you bleeding~! It is much stronger than you expect. Be careful!";
			mes "^0099FFFound Items^000000: Powder of Butterfly,Honey,Butterfly Wing,Flower";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "5.Pupa";
			mes "Monster on the Fabre's pupal stage. It deosn't attack at all, so easy to kill for Novice people.";
			mes "^0099FFFound Items^000000: Chrysalis,Sticky Muscus";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "6.Poporing";
			mes "Poisonous Poring in light green.Every character is the same as poring,but much more stronger.";
			mes "^0099FFFound Items^000000: Sticky Muscus,Garlet,Green Herb";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "7.Rocker";
			mes "Lazy Grasshpper which loves playing Violin.";
			mes "^0099FFFound Items^000000: Grasshopper's Leg,Jellopy";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "8.Big Foot";
			mes "Dull-Looking Bear with a huge build.Although it looks dumb but you will realise how it can be fast after you provoke it.";
			mes "^0099FFFound Items^000000: Bear's Foot Skin,Leather,Sweet Potato";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "9.Smokie";
			mes "It's working out all the time.Often tries to shapeshift with Raccon Leaves,but always failed. Back then, it tended to gather stuffs diligently, now it seems to give up.";
			mes "^0099FFFound Items^000000: Raccon Leaf,Leather,Sweet Potato";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "10.Snake";
			mes "Green Cloloured Snake living in the Forest or Desert.Not poisonous but be careful.";
			mes "^0099FFFound Items^000000: Snake Scale,Red Herb";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "11.Wolf";
			mes "Wanderers having Blue Manes.They are cooperative,so attack in a group when one got attacked.Let's just let them mind their business and watch.";
			mes "^0099FFFound Items^000000: Wolf Claw,Meat,Monster's Feed,Leather";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "12.Argiope";
			mes "Monster crawling around with several articular legs.";
			mes "^0099FFFound Items^000000: Bug Leg,Zargon,Green Herb";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "13.Argos";
			mes "Big Spider of Dark colour.It often invades passangers.";
			mes "^0099FFFound Items^000000: Cobweb,Scell,Bug Leg,Green Herb,Yellow Herb";
			next;         				
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "14.Horn";
			mes "Compliant Insect unlike its offensive appearance.It's wandering about the field making some crunching sound.";
			mes "^0099FFFound Items^000000: Horn,Shell,Solid Shell";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "15.Hunter Fly";
			mes "Winged insect of Blood. It is Strong meanwhile very annoying. Be advised, you'd better flee away if you can.";
			mes "^0099FFFound Items^000000: Solid Shell,Zargon";
			next;						
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "16.Mantis";
			mes "It wanders about the field waving a tiny fan.";
			mes "^0099FFFound Items^000000: Mantis Scythe,Scell,Solid Shell,Red Potion";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "17.Steiner";
			mes "Tiny little insect with a Splendid shell. Don't ever look down upon it. It is stronger than you expect. Besides it recognizes Magical Spell Casting.";
			mes "^0099FFFound Items^000000: Rainbow Shell,Garlet,Shell,Solid Shell";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "18.Side Winder";
			mes "Horrendous Snake of Dark colour.";
			mes "^0099FFFound Items^000000: Shining Scale,Zargon,Poisonous Canine,Snake Scale";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "19.Yoyo";
			mes "Pink coloured Monkey.Not only they pick up every stuff dropped on the gound outrageously, but they are nimble and cooperative,you must be cautious of being attacked by a group.";
			mes "^0099FFFound Items^000000: Yoyo Tail,Banana,Yellow Herb,Leather";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "20.Caramel";
			mes "Cute porcupine with tiny spiky quills.But don't ever touch it without intention,it will get mad immeduately.";
			mes "^0099FFFound Items^000000: Porcupine Quill,Leather";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "21.Steel Chonchon";
			mes "This is similar as Chonchon, but in yellow and green. Picks up every stuff on the ground. It is strong and well-cooperative with its fellows, so don't forget to get items before it picks up.";
			mes "^0099FFFound Items^000000: Garlet,Shell,Solid Shell";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "22.Coco";
			mes "Little but fierce-looking eyed Creature carrying an Acorn on both hands. It is very unpleasant when it gives a dirty look,let's give it a lesson.";
			mes "^0099FFFound Items^000000: Acorn,Fluff,Leather,Sweet Potato";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "23.Dustiness";
			mes "This monster owns high dodge rate because it is flying. Need to be attentive if you want to attack.";
			mes "^0099FFFound Items^000000: Moth Dust,Moth Wing,Insect Feeler,Red Herb";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "24.Martin";
			mes "Funny looking Mole wearing a Safety Helmet on the head,which is always busy to walk around.";
			mes "^0099FFFound Items^000000: Mole Whiskers,Mole Claw";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "25.Savage";
			mes "Wild Boar always walking around restlessly,making some noise. It has Big fangs and looks different from the young one.";
			mes "^0099FFFound Items^000000: Mane,Leather";
			next;	
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "26.Savage Bebe";
			mes "Tiny Pink baby of Savage.Unlike its small size, It is running about fields making annoying noise";
			mes "^0099FFFound Items^000000: Leather,Meat,Arrow,Feather";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "27.Mastering";
			mes "Giant Poring rarely seen in the Morroc Desert,Mt.Mjornir or the Prontera Maze.It might be the leader of Porings.Surely stronger than normal Porings but, still it can't be more than a Poring anyway.";
			mes "^0099FFFound Items^000000: Apple,Apple Juice";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "28.Eclipse";
			mes "Giant Lunatic which might be the Boss among Lunatics!It does weak attacks but is highly defensive at the same time.";
			mes "^0099FFFound Items^000000: Carrot,Glass Bead,Milk,Carrot Juice";
			next;
			mes "^FF0000[Prontera Maze 3F Monster Encyclopedia]^000000";
			mes "29.Baphomet";
			mes "Dreadful Monster having huge horns on the head.It uses a Gargantuan Scythe to slay foes,often attacks with bare hands.";
			mes "^0099FFFound Items^000000: Evil Horn,Yggdrasilberry,Leather,Oridecon";
			next;
		EndPrtMaze:
			close;
}

prt_in.gat,168,56,4	script	Monster Encyclopedia	111,{
	mes "^FF0000[Monster Encyclopedia]^000000";
	mes "I am a Monster Encyclopedia, you can check several types of Monster with me.";
	next;
	menu "Monsters of Water Property",MonWatPro,"Monsters of Wind Property",MonWinPro,"Monsters of Spiritual Property",MonSpiPro,"Cancel",Cancel;

	MonWatPro:
		menu "Small Size Monster",SmaMonWatPro,"Medium Size Monster",MidMonWatPro,"Great Size Monster",GrMonWatPro,"Cancel",EndWatPro;

		SmaMonWatPro:
			mes "^FF0000[Water, Small Monster Encyclopedia]^000000";
			mes "1.Plankton";
			mes "Even though looks like trifle creatures, they fly into a rage when stepped on. They are light, drifting on the water and attack with several projections.";
			mes "^0099FFFound Items^000000: Single Cell. Garlet. Sticky Muscus. Empty Bottle";
			next;
			mes "^FF0000[Water, Small Monster Encyclopedia]^000000";
			mes "2.Kukre";
			mes "Look better than Thief Bugs but basically do the same thing. But luckily they don't attack players in a group.";
			mes "^0099FFFound Items^000000: Worm Peeling. Garlet. Monster's Feed. Red Herb. Insect Feeler";
			next;
			mes "^FF0000[Water, Small Monster Encyclopedia]^000000";
			mes "3.Hydra";
			mes "Veggie Monsters which live near water or in the deep sea. Attack using tentacles. When run into them in a group, it will be the pain in the ass.";
			mes "It will be effective to kill one by one before they gather.";
			mes "^0099FFFound Items^000000: Tentacle. Sticky Muscus. Meat";
			next;
			mes "^FF0000[Water, Small Monster Encyclopedia]^000000";
			mes "4.Vadon";
			mes "They wear thick shells all around the body and walk around tinkling nippers. Also their red color looks so tempting an appetite. Be careful anyway.";
			mes "^0099FFFound Items^000000: Nipper.Garlet.Solid Shell.Shell";
			next;
			mes "^FF0000[Water, Small Monster Encyclopedia]^000000";
			mes "5.Marina";
			mes "Jelly Fishes of transparent white color. Do flexible attacks stretching its body as long as they can. They live in cool places near water.";
			mes "^0099FFFound Items^000000: Single Cell.Sticky Muscus";
			next;
			mes "^FF0000[Water, Small Monster Encyclopedia]^000000";
			mes "6.Cornutus";
			mes "Some buddies concealing themselves within hard turban shells and try to lead a quiet life.";
			mes "^0099FFFound Items^000000: Conch. Scell. Solid Shell";
			next;
			mes "^FF0000[Water, Small Monster Encyclopedia]^000000";
			mes "7.Magnolia";
			mes "Creatures shaped in Big Egg Frying Fans. They spank attackers with the Frying Fans without mercy.";
			mes "Don't let your guard down just because they look cute. You will suffer if you do so.";
			mes "^0099FFFound Items^000000: Jellopy. Garlet. Scell";
			next;
			mes "^FF0000[Water, Small Monster Encyclopedia]^000000";
			mes "8.Marine Sphere";
			mes "Strange, round-shaped monsters beating so fast that they seem like they will burst.";
			mes "^0099FFFound Items^000000: Tendon.Detonator";
			next;
			goto MonWatPro;        				
         		close;		
		MidMonWatPro:
			mes "^FF0000[Water,Medium Monster Encyclopedia]^000000";
			mes "1.Poring";
			mes "Small and circular monsters of transparent pink color. Swallow anything on the ground with sparkling eyes, without any hesitations. No matter what kind of things dropped,";
			mes "They tend to eat first. So be cautious when you put down drop something on the ground. But don't worry.";
			mes "They are not strong, and you will get yours back once you kill the monster, which eat your stuff.";
			mes "^0099FFFound Items^000000: Jellopy.Sticky Muscus.Apple.Empty Bottle.Red Herb";
			next;
			mes "^FF0000[Water,Medium Monster Encyclopedia]^000000";
			mes "2.Roda Frog";
			mes "Usually they are hopping around, croaking very annoyingly. Let's stomp on them when found.";
			mes "^0099FFFound Items^000000: Sticky Webfoot,Spawn,Green Herb,Empty Bottle";
			next;
			mes "^FF0000[Water,Medium Monster Encyclopedia]^000000";
			mes "3.Spore";
			mes "Mushroom-like monsters. Usually live in the Forest or Dungeons. By the way Don't try to eat it!";
			mes "^0099FFFound Items^000000: Spore,Red Herb,Blue Herb";
			next;
			mes "^FF0000[Water,Medium Monster Encyclopedia]^000000";
			mes "4.Goblin";
			mes "They are small and attack passengers using different kinds of mace. They always wear Masques, which frighten people more because we can't see what they might look like."; 
			mes "There are all 5 different types, and they seem to be brothers.";
			mes "^0099FFFound Items^000000: Yellow Herb,Red Potion";
			next;
			mes "^FF0000[Water,Medium Monster Encyclopedia]^000000";
			mes "5.Thara Frog";
			mes "Frogs of red color, surely stronger than Roda Frogs. However there is obvious one thing in common about them, annoying croaking noise.";
			mes "^0099FFFound Items^000000: Spawn,Scell,Sticky Webfoot";
			next;
			mes "^FF0000[Water,Medium Monster Encyclopedia]^000000";
			mes "6.Phen";
			mes "Fish of blue color which is kicking and definitely alive.";
			mes "^0099FFFound Items^000000: Fish Tail,Sharp Scale,Meat,Fin";
			next;
			mes "^FF0000[Water,Medium Monster Encyclopedia]^000000";
			mes "7.Mars";
			mes "Have many legs, flapping under the water. Do not rush to it because of its tempting look.";
			mes "^0099FFFound Items^000000: Squid Ink,Tentacle";
			next;
			mes "^FF0000[Water,Medium Monster Encyclopedia]^000000";
			mes "8.Obeaune";
			mes "Female Mermaid. Attacks using long hair, with a grim face.";
			mes "^0099FFFound Items^000000: Heart of Mermaid,Fin";
			next;
			mes "^FF0000[Water,Medium Monster Encyclopedia]^000000";
			mes "9. Sohee";
			mes "Female Ghost which holds grudge deep inside. She is always crying as waving long hair. But when running into the living, she suddenly changes her attitude fiercely.";
			mes "^0099FFFound Items^000000: Black Hair,Red Potion";
			next;
			mes "^FF0000[Water,Medium Monster Encyclopedia]^000000";
			mes "10.Marc";
			mes "Sea Horse. Don't ever think about riding a Sea Horse!";
			mes "^0099FFFound Items^000000: Gill,Fin";
			next;
			mes "^FF0000[Water,Medium Monster Encyclopedia]^000000";
			mes "11.Deviace";
			mes "Fish monster with a big mouth possibly carrying something within. Small but Strong.";
			mes "^0099FFFound Items^000000: Ancient Tooth,Ancient Lips";
			next;
			goto MonWatPro;
			close;
		GrMonWatPro:
			mes "^FF0000[Water,Great Monster Encyclopedia]^000000";
			mes "1.Ambernite";
			mes "Snail shaped monster, it is highly strong and defensive at the same time. Don't you worry though. It is too slow to catch you so that you can run away at ease any time.";
			mes "^0099FFFound Items^000000: Snail's Shell,Garlet,Shell,Solid Shell";
			next;
			mes "^FF0000[Water,Great Monster Encyclopedia]^000000";
			mes "2.Sword Fish";
			mes "Fish Monster with a sharp, thin, and long nose. Goggle eyes are funny but it belongs to one of those dangerous monsters.";
			mes "^0099FFFound Items^000000: Sharp Scale,Gill";
			next;
			goto MonWatPro;
			close;
		EndMonWatPro:
			close;
		close;
	MonWinPro:
         	menu "Small Size Monster",SmaMonWinPro,"Medium Size Monster",MedMonWinPro,"Great Size Monster",GrMonWinPro,"Cancel",EndMonWinPro;
		
		SmaMonWinPro:
			mes "^FF0000[Wind,Small Monster Encyclopedia]^000000";
			mes "1.Chonchon";
			mes "Flying monsters, they are not strong but make as annoying noises as Roda Frog. Make sure to eliminate them whenever you see.";
			mes "^0099FFFound Items^000000: Shell,Jellopy,Fly Wing";
			next;
			mes "^FF0000[Wind,Small Monster Encyclopedia]^000000";
			mes "2.Hornet";
			mes "Usually they are doing their duty but when get harmed, they will group themselves to attack the enemy without mercy!";
			mes "^0099FFFound Items^000000: Bee Sting,Jellopy,Green Herb";
			next;
			mes "^FF0000[Wind,Small Monster Encyclopedia]^000000";
			mes "3.Creamy";
			mes "Monster with Beautiful Wings. `Hah~ it's just a butterfly!'. Careless thinking like this will make you bleeding~! It is much stronger than you expect. Be careful!";
			mes "^0099FFFound Items^000000: Powder of Butterfly,Honey,Butterfly Wing,Flower";
			next;
			mes "^FF0000[Wind,Small Monster Encyclopedia]^000000";
			mes "4.Steiner";
			mes "Tiny little insect with a Splendid shell. Don't ever look down upon it. It is stronger than you expect. Besides it recognizes Magical Spell Casting.";
			mes "^0099FFFound Items^000000: Rainbow Shell,Garlet,Shell,Solid Shell";
			next;
			mes "^FF0000[Wind,Small Monster Encyclopedia]^000000";
			mes "5.Steel Chonchon";
			mes "This is similar as Chonchon, but in yellow and green. Picks up every stuff on the ground. It is strong and well-cooperative with its fellows, so don't forget to get items before it picks up.";
			mes "^0099FFFound Items^000000: Garlet,Shell,Solid Shell";
			next;
			mes "^FF0000[Wind,Small Monster Encyclopedia]^000000";
			mes "6.Dustiness";
			mes "This monster owns high dodge rate because it is flying. Need to be attentive if you want to attack.";
			mes "^0099FFFound Items^000000: Moth Dust,Moth Wing,Insect Feeler,Red Herb";
			next;
			mes "^FF0000[Wind,Small Monster Encyclopedia]^000000";
			mes "7.Hunter Fly";
			mes "Winged insect of Blood. It is Strong meanwhile very annoying. Be advised, you'd better flee away if you can.";
			mes "^0099FFFound Items^000000: Solid Shell,Zargon";
			next;
			goto MonWinPro;
			close;
		MedMonWinPro:
			mes "^FF0000[Wind,Medium Monster Encyclopedia]^000000";
			mes "1.Condor";
			mes "Bald head eagle in funny feature. They tends to be gathered when one gets attacked. So don't look down upon them and think of `I will caress you!'";
			mes "^0099FFFound Items^000000: Talon,Arrow,Meat,Feather of Birds";
			next;
			mes "^FF0000[Wind,Medium Monster Encyclopedia]^000000";
			mes "2.Cobold the 1st";
			mes "Small monster looks like a Wolf but it is smart enough to handle several tools. It is hostile and strong unlike its appearance. All Cobolds seem to be brothers.";
			mes "^0099FFFound Items^000000: Blue Hair,Zargon,Orange Potion";
			next;
			mes "^FF0000[Wind,Medium Monster Encyclopedia]^000000";
			mes "3.Petite";
			mes "Tiny Cute flying Dragon. It seems like there exists 2 different kinds of Petite, flying one and walking one and this is the 1st one.";
			mes "^0099FFFound Items^000000: Dragon Canine,Dragon Tail,Zargon";
			next;
			goto MonWinPro;
			close;
		GrMonWinPro:
			mes "^FF0000[Wind,Great Monster Encyclopedia]^000000";
			mes "4.Joker";
			mes "A big Poker Card with Ugly looking girl printed on both side assaults you.";
			mes "^0099FFFound Items^000000: High Heels";        					
			next;
			goto MonWinPro;
			close;
		EndMonWinPro:
			close;
		close;
	MonSpiPro:
		menu "Small Size Monster",SmaMonSpiPro,"Medium Size Monster",MedMonSpiPro,"Great Size Monster",GrMonSpiPro,"Cancel",EndMonSpiPro;
					
		SmaMonSpiPro:
			mes "^FF0000[Spiritual,Small Monster Encyclopedia]^000000";
			mes "1.Whisper";
			mes "Living Fabric, which gives spooky feeling.";
			mes "^0099FFFound Items^000000: Fabric";
			next;
			mes "^FF0000[Spiritual,Small Monster Encyclopedia]^000000";
			mes "2.Marionette";
			mes "Monster reborn from a bewitched Doll, bound to strings on Wooden Sticks.";
			mes "^0099FFFound Items^000000: Golden Hair,Trunk";
			next;
			goto MonSpiPro;
			close;	
		MedMonSpiPro:
			mes "^FF0000[Spiritual,Medium Monster Encyclopedia]^000000";
			mes "1.Eggyra";
			mes "Hovering here and there, while making a clattering sound. Tough-Looking Face scares people but it is not as strong as it looks.";
			mes "^0099FFFound Items^000000: Scell,Sticky Muscus,Red Herb";
			next;
			goto MonSpiPro;
			close;
		GrMonSpiPro:
			mes "^FF0000[Spiritual,Great Monster Encyclopedia]^000000";
			mes "1.Nightmare";
			mes "Ghost Horse radiating an Aura of Violet all over the body.";
			mes "^0099FFFound Items^000000: Horseshoe,Blue Herb";
			next;
			mes "^FF0000[Spiritual,Great Monster Encyclopedia]^000000";
			mes "3.Medusa";
			mes "Each of her hairs is a snake. It has rumored to turn people into stone when their eyes happen to meet.";
			mes "^0099FFFound Items^000000: Dead Medusa,Horrendous Hair,White Potion";
			next;
			goto MonSpiPro;
			close;
		EndMonSpiPro:
			close;
		close;
	Cancel:
		close;
}

prt_in.gat,168,68,4	script	`Merchant Guideline' for Dummies	111,{
	mes "^FF0000[Blacksmith Guide for Dummies]^000000";	
	mes "You can get the information about how to refine Ores and about Weapon Craft Skills.";
	next;
	menu "Ore Refining.",OreRef,"Weapon Craft.",WeaCra,"Cancel.",Cancel;
			
	OreRef:
		mes "^FF0000[Ore Refining for Dummies]^000000";		
		mes "Please go over the next page if you want to know how to refine Ores.";	
		next;
		menu "Ok",OreRefOk,"Cancel",EndOreRef;
							
		OreRefOk:
			mes "^FF0000[Ore Refining for Dummies]^000000";	
			mes "Rough Ores like Iron Ore or Raw Materials for Enchanted Stones can be polished into High Quality Ones.For that, ^0099FFFurnace^000000 is needed.";
			mes "One High Quality Ore needs several Rough Ones to be refined.";
			next;
			mes "^FF0000[Ore Refining for Dummies]^000000";	
			mes "When enough items are gathered,Double Click `Furnace'.You can use a Furnace only one time for refining.";
			next;
			mes "^FF0000[Ore Refining for Dummies]^000000";	
			mes "Possible ores you can refine will pop up on a new window.You can make Ore with a click the name of Ore you need.";
			next;
			mes "^FF0000[Ore Refining for Dummies]^000000";	
			mes "However it has a possiblity to be failed.";
			close;
		EndOreRef:
			close;
		close;
	WeaCra:
		mes "^FF0000[Weapon Craft for Dummies]^000000";		
		mes "Please go over the next page if you want to learn how to Smith Weapons.";	
		next;
		menu "Ok",WeaCraOk,"Cancel",EndWeaCra;
					
		WeaCraOk:	
			mes "^FF0000[Weapon Craft for Dummies]^000000";	
			mes "Learn a Skill from `Smith Sword,Two-Handed Sword,Spear,Mace,Brassknuckle' which allows you to make the pertinent weapon.";
			next;
			mes "^FF0000[Weapon Craft for Dummies]^000000";	
			mes "Every Weapon needs ^0099FFSteel^000000 and ^0099FFHammer^000000.You can use a Hammer one time and it will be disapeared whenever used.";
			next;
			mes "^FF0000[Weapon Craft for Dummies]^000000";	
			mes "When Double Click on a Hammer,a new window which lists of items you can make will pop up.";				
			mes "Clicking a Weapon on that list will show the required items and their numbers.But they will be exhausted automatically,so just know this.";
			next;
			mes "^FF0000[Weapon Craft for Dummies]^000000";	
			mes "On that list window,there are 3 sockets which enable you to input some special items like Enchanted Stone or Star Crumb.These items amplify the weapon ability";
			next;
			mes "^FF0000[Weapon Craft for Dummies]^000000";	
			mes "And they have different possibility of Success by their characters.";
			close;
		EndWeaCra:
			close;
		close;
	Cancel:
		close;
}

prt_in.gat,172,96,4	script	Monster Encyclopedia	111,{
	mes "^FF0000[Dungeon Monster Encyclopedia]^000000";
	mes "This is an Encyclopedia describing monsters living in Dungeons.";
	next;
	menu "Ant Hell",AntHell,"Geffen Dungeon",GefDung,"Sphinx",Sphinx,"Cancel",Cancel;

	AntHell:	
		menu "1F",AntHellF1,"2F",AntHellF2,"Cancel",EndAntHell;
					
		AntHellF1:
			mes "^FF0000[Ant Hell 1F Monster Encyclopedia]^000000";
			mes "1.Ant Egg";
			mes "Simple Ant Egg.";
			mes "^0099FFFound Items^000000: Shell,Jellopy,Sticky Muscus,Empty Bottle";
			next;
			mes "^FF0000[Ant Hell 1F Monster Encyclopedia]^000000";
			mes "2.Andre";
			mes "A kind of Worker Ants,they are very diligent in their work.They gather everything to save a sufficient stock and are well-cooperative,you need to be careful.";
			mes "^0099FFFound Items^000000: Worm Peeling,Garlet,Sticky Muscus,Shell";
			next;
			mes "^FF0000[Ant Hell 1F Monster Encyclopedia]^000000";
			mes "3.Piere";
			mes "A kind of Work Ants,seems to be very diligent.Its appearance is similar with other Ants,but you can easily distinguish them from others as they only gather in a same kind.";
			mes "^0099FFFound Items^000000: Worm Peeling,Garlet,Sticky Muscus,Shell";
			next;
			mes "^FF0000[Ant Hell 1F Monster Encyclopedia]^000000";
			mes "4.Deniro";
			mes "A kind of Work Ants, tend to group in a same kind as well as other ants.";
			mes "^0099FFFound Items^000000: Worm Peeling,Garlet,Sticky Muscus,Shell";
			next;
			mes "^FF0000[Ant Hell 1F Monster Encyclopedia]^000000";
			mes "5.Vitata";
			mes "Work Ants in charge of storing honey inside the body for emergency.It is a little pathetic to see their chubby tummy filled with Honey.";
			mes "^0099FFFound Items^000000: Worm Peeling,Scell,Honey";
			next;
			mes "^FF0000[Ant Hell 1F Monster Encyclopedia]^000000";
			mes "6.Giearth";
			mes "Little Grampa Pixie. Usually lives in Caves to gather Ores.Even though he is short, but actually an adult.Show your manners.";
			mes "^0099FFFound Items^000000: Old Pixie's Moustache";
			next;
			goto AntHell;
			close;
        	AntHellF2:
			mes "^FF0000[Ant Hell 2F Monster Encyclopedia]^000000";
			mes "1.Ant Egg";
			mes "Simple Ant Egg.";
			mes "^0099FFFound Items^000000: Shell,Jellopy,Sticky Muscus,Empty Bottle";
			next;
			mes "^FF0000[Ant Hell 2F Monster Encyclopedia]^000000";
			mes "2.Andre";
			mes "A kind of Worker Ants,they are very diligent in their work.They gather everything to save a sufficient stock and are well-cooperative,you need to be careful.";
			mes "^0099FFFound Items^000000: Worm Peeling,Garlet,Sticky Muscus,Shell";
			next;
			mes "^FF0000[Ant Hell 2F Monster Encyclopedia]^000000";
			mes "3.Piere";
			mes "A kind of Work Ants,seems to be very diligent.Its appearance is similar with other Ants,but you can easily distinguish them from others as they only gather in a same kind.";
			mes "^0099FFFound Items^000000: Worm Peeling,Garlet,Sticky Muscus,Shell";
			next;
			mes "^FF0000[Ant Hell 2F Monster Encyclopedia]^000000";
			mes "4.Deniro";
			mes "A kind of Work Ants, tend to group in a same kind as well as other ants";
			mes "^0099FFFound Items^000000: Worm Peeling,Garlet,Sticky Muscus,Shell";

			next;
			mes "^FF0000[Ant Hell 2F Monster Encyclopedia]^000000";
			mes "5.Vitata";
			mes "Work Ants in charge of storing honey inside the body for emergency.It is a little pathetic to see their chubby tummy filled with Honey.";
			mes "^0099FFFound Items^000000: Worm Peeling,Scell,Honey";
			next;
			mes "^FF0000[Ant Hell 2F Monster Encyclopedia]^000000";
			mes "6.Giearth";
			mes "Little Grampa Pixie. Usually lives in Caves to gather Ores.Even though he is short, but actually an adult.Show your manners.";
			mes "^0099FFFound Items^000000: Old Pixie's Moustache";
			next;
			mes "^FF0000[Ant Hell 2F Monster Encyclopedia]^000000";
			mes "7.Phreeoni";
			mes "Some bastard with a huge creepy tongue.Extremely strong Monster rarely seen around.";
			mes "^0099FFFound Items^000000: Tongue,Ant Jaw";
			next;
			goto AntHell;
			close;
		EndAntHell:
       			close;
		close;
	GefDung:
		menu "1F",GefDungF1,"2F",GefDungF2,"3F",GefDungF3,"4F",GefDungF4,"Cancel",EndGefDung;

		GefDungF1:
			mes "^FF0000[Geffen Dungeon 1F Monster Encyclopedia]^000000";
			mes "1.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;
			mes "^FF0000[Geffen Dungeon 1F Monster Encyclopedia]^000000";
			mes "2.Poporing";
			mes "Poisonous Poring in light green.Every character is the same as poring,but much more stronger.";
			mes "^0099FFFound Items^000000: Sticky Muscus,Garlet,Green Herb";
			next;
			mes "^FF0000[Geffen Dungeon 1F Monster Encyclopedia]^000000";
			mes "3.Dustiness";
			mes "This monster owns high dodge rate because it is flying. Need to be attentive if you want to attack.";
			mes "^0099FFFound Items^000000: Moth Dust,Moth Wing,Insect Feeler,Red Herb";
			next;
			mes "^FF0000[Geffen Dungeon 1F Monster Encyclopedia]^000000";
			mes "4.Poison Spore";
			mes "Poisonous Spore in Violet.Besides,it tends to attack haphazardly if anybody gets near.";
			mes "^0099FFFound Items^000000: Spore,Green Herb";
			next;
			goto GefDung;
			close;
		GefDungF2:
			mes "^FF0000[Geffen Dungeon 2F Monster Encyclopedia]^000000";
			mes "1.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;
			mes "^FF0000[Geffen Dungeon 2F Monster Encyclopedia]^000000";
			mes "2.Dustiness";
			mes "This monster owns high dodge rate because it is flying. Need to be attentive if you want to attack.";
			mes "^0099FFFound Items^000000: Moth Dust,Moth Wing,Insect Feeler,Red Herb";
			next;
			mes "^FF0000[Geffen Dungeon 2F Monster Encyclopedia]^000000";
			mes "3.Poison Spore";
			mes "Poisonous Spore in Violet.Besides,it tends to attack haphazardly if anybody gets near.";
			mes "^0099FFFound Items^000000: Spore,Green Herb";
			next;
			mes "^FF0000[Geffen Dungeon 2F Monster Encyclopedia]^000000";
			mes "4.Argos";
			mes "Big Spider of Dark colour.It often invades passangers.";
			mes "^0099FFFound Items^000000: Cobweb,Scell,Bug Leg,Green Herb,Yellow Herb";
			next;
			mes "^FF0000[Geffen Dungeon 2F Monster Encyclopedia]^000000";
			mes "5.Whisper";
			mes "Living Fabric, which gives spooky feeling.";
			mes "^0099FFFound Items^000000: Fabric";
			next;
			mes "^FF0000[Geffen Dungeon 2F Monster Encyclopedia]^000000";
			mes "6.Jakk";
			mes "Quite Odd monster in a nice suit,but with a pumpkin head.It looks funny but changes the attitude fiercely when attacks someone.";
			mes "^0099FFFound Items^000000: Jack'o'Pumpkin,Zargon";
			next;
			goto GefDung;
			close;
		GefDungF3:
			mes "^FF0000[Geffen Dungeon 3F Monster Encyclopedia]^000000";
			mes "1.Argos";
			mes "Big Spider of Dark colour.It often invades passangers.";
			mes "^0099FFFound Items^000000: Cobweb,Scell,Bug Leg,Green Herb,Yellow Herb";
			next;
			mes "^FF0000[Geffen Dungeon 3F Monster Encyclopedia]^000000";
			mes "2.Whisper";
			mes "Living Fabric, which gives spooky feeling.";
			mes "^0099FFFound Items^000000: Fabric";
			next;
			mes "^FF0000[Geffen Dungeon 3F Monster Encyclopedia]^000000";
			mes "3.Jakk";
			mes "Quite Odd monster in a nice suit,but with a pumpkin head.It looks funny but changes the attitude fiercely when attacks someone.";
			mes "^0099FFFound Items^000000: Jack'o'Pumpkin,Zargon";
			next;
			mes "^FF0000[Geffen Dungeon 3F Monster Encyclopedia]^000000";
			mes "4.Myst";
			mes "Mist-like Monster.";
			mes "^0099FFFound Items^000000: Trunk.Gas Mask";
			next;
			mes "^FF0000[Geffen Dungeon 3F Monster Encyclopedia]^000000";
			mes "5.Marionette";
			mes "Monster reborn from a bewitched Doll, bound to strings on Wooden Sticks.";
			mes "^0099FFFound Items^000000: Golden Hair,Trunk";
			next;
			mes "^FF0000[Geffen Dungeon 3F Monster Encyclopedia]^000000";
			mes "6.Bathory";
			mes "Witch with a big wen on the nose.She rides on her magic broom flying around in the air..";
			mes "^0099FFFound Items^000000: Witched Starsand";
			next;
			mes "^FF0000[Geffen Dungeon 3F Monster Encyclopedia]^000000";
			mes "7.Nightmare";
			mes "Ghost Horse radiating an Aura of Violet all over the body.";
			mes "^0099FFFound Items^000000: Horseshoe,Blue Herb";
			next;
			goto GefDung;
			close;
		GefDungF4:
			mes "^FF0000[Geffen Dungeon 4F Monster Encyclopedia]^000000";
			mes "1.Myst";
			mes "Mist-like Monster.";
			mes "^0099FFFound Items^000000: Trunk.Gas Mask";
			next;	
			mes "^FF0000[Geffen Dungeon 4F Monster Encyclopedia]^000000";
			mes "2.Deviruchi";
			mes "Little evil creature,which carries a cute fork with.";
			mes "^0099FFFound Items^000000: Little Evil Horn,Little Evil Wing,Zargon";
			next;	
			mes "^FF0000[Geffen Dungeon 4F Monster Encyclopedia]^000000";
			mes "3.Raydric";
			mes "Ghost Knight of misfortune.";
			mes "^0099FFFound Items^000000: Elunium,Chivarly Emblem";
			next;	
			mes "^FF0000[Geffen Dungeon 4F Monster Encyclopedia]^000000";
			mes "4.Joker";
			mes "A big Poker Card with Ugly looking girl printed on both side assaults you.";
			mes "^0099FFFound Items^000000: High Heels";
			next;
			mes "^FF0000[Geffen Dungeon 4F Monster Encyclopedia]^000000";
			mes "5.Doppelganger";
			mes "A ghostly double of a swordman,Spooky and Powerful.";
			mes "^0099FFFound Items^000000: Spiky Band,Blue Potion,Cursed Ruby,Ruby";
			next;
			goto GefDung;
			close;
         	EndGefDung:
			close;
		close;
	Sphinx:
		menu "1F",SphinxF1,"2F",SphinxF2,"3F",SphinxF3,"4F",SphinxF4,"5F",SphinxF5,"Cancel",EndSphinx;

		SphinxF1:
			mes "^FF0000[Sphinx 1F Monster Encyclopedia]^000000";
			mes "1.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;		
			mes "^FF0000[Sphinx 1F Monster Encyclopedia]^000000";
			mes "2.Snake";
			mes "Green Cloloured Snake living in the Forest or Desert.Not poisonous but be careful.";
			mes "^0099FFFound Items^000000: Snake Scale,Red Herb";
			next;
			mes "^FF0000[Sphinx 1F Monster Encyclopedia]^000000";
			mes "3.Zerom";
			mes "Undead Slave who had been extremely abused before he died.He is wandering in the Sphinx,carrying a big box on the back..";
			mes "^0099FFFound Items^000000: Panties";
			next;
			mes "^FF0000[Sphinx 1F Monster Encyclopedia]^000000";
			mes "4.Matyr";
			mes "Creature shaped in Black Dog.";
			mes "^0099FFFound Items^000000: Monster's Feed,Leather";
			next;
			mes "^FF0000[Sphinx 1F Monster Encyclopedia]^000000";
			mes "5.Requiem";
			mes "It seems like an Ancient Slave,carrying a heavy Coffin on the back.";
			mes "^0099FFFound Items^000000: Mystic Blue Box";
			next;
			goto Sphinx;
			close;
		SphinxF2:
			mes "^FF0000[Sphinx 2F Monster Encyclopedia]^000000";
			mes "1.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;			
			mes "^FF0000[Sphinx 2F Monster Encyclopedia]^000000";
			mes "2.Matyr";
			mes "Creature shaped in Black Dog.";
			mes "^0099FFFound Items^000000: Monster's Feed,Leather";
			next;
			mes "^FF0000[Sphinx 2F Monster Encyclopedia]^000000";
			mes "3.Requiem";
			mes "It seems like an Ancient Slave,carrying a heavy Coffin on the back.";
			mes "^0099FFFound Items^000000: Mystic Blue Box";
			next;
			mes "^FF0000[Sphinx 2F Monster Encyclopedia]^000000";
			mes "4.Whisper";
			mes "Living Fabric, which gives spooky feeling.";
			mes "^0099FFFound Items^000000: Fabric";
			next;
			goto Sphinx;
			close;
		SphinxF3:
			mes "^FF0000[Sphinx 3F Monster Encyclopedia]^000000";
			mes "1.Matyr";
			mes "Creature shaped in Black Dog.";
			mes "^0099FFFound Items^000000: Monster's Feed,Leather";
			next;
			mes "^FF0000[Sphinx 3F Monster Encyclopedia]^000000";
			mes "2.Whisper";
			mes "Living Fabric, which gives spooky feeling.";
			mes "^0099FFFound Items^000000: Fabric";
			next;
			mes "^FF0000[Sphinx 3F Monster Encyclopedia]^000000";
			mes "3.Marduk";
			mes "Unknown monster wearing Catholic uniform and looking serious.";
			mes "^0099FFFound Items^000000: Flame Heart";
			next;
			goto Sphinx;
		SphinxF4:
			mes "^FF0000[Sphinx 4F Monster Encyclopedia]^000000";
			mes "1.Whisper";
			mes "Living Fabric, which gives spooky feeling.";
			mes "^0099FFFound Items^000000: Fabric";
			next;
			mes "^FF0000[Sphinx 4F Monster Encyclopedia]^000000";
			mes "2.Marduk";
			mes "Unknown monster wearing Catholic uniform and looking serious.";
			mes "^0099FFFound Items^000000: Flame Heart";
			next;
			mes "^FF0000[Sphinx 4F Monster Encyclopedia]^000000";
			mes "3.Medusa";
			mes "Each of her hairs is a snake. It has rumored to turn people into stone when their eyes happen to meet.";
			mes "^0099FFFound Items^000000: Dead Medusa,Horrendous Snake,White Potion";        				
			next;
			goto Sphinx;
			close;
		SphinxF5:
			mes "^FF0000[Sphinx 5F Monster Encyclopedia]^000000";
			mes "1.Whisper";
			mes "Living Fabric, which gives spooky feeling.";
			mes "^0099FFFound Items^000000: Fabric";
			next;
			mes "^FF0000[Sphinx 5F Monster Encyclopedia]^000000";
			mes "2.Marduk";
			mes "Unknown monster wearing Catholic uniform and looking serious.";
			mes "^0099FFFound Items^000000: Flame Heart";
			next;
			mes "^FF0000[Sphinx 5F Monster Encyclopedia]^000000";
			mes "3.Medusa";
			mes "Each of her hairs is a snake. It has rumored to turn people into stone when their eyes happen to meet.";
			mes "^0099FFFound Items^000000: Dead Medusa,Horrendous Snake,White Potion";        				
			next;
			goto Sphinx;
			close;
		EndSphinx:
			close;
		close;
	Cancel:        			
		close;
}

prt_in.gat,172,102,4	script	Monster Encyclopedia	111,{
	mes "^FF0000[Dungeon Monster Encyclopedia]^000000";
	mes "The is an Encyclopedia describing Monsters living in Dungeons.";
	next;
	menu "Mjornir Dead Pit",MjrDeadPit,"Payon Cave",PayCave,"Pyramid",Pyramid;
	
	MjrDeadPit:
		menu "F1",MjrDeadPitF1,"F2",MjrDeadPitF2,"F3",MjrDeadPitF3,"Cancel",EndMjrDeadPit;
		
		MjrDeadPitF1:
			mes "^FF0000[Dead Pit 1F Monster Encyclopedia]^000000";
			mes "1.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;
			mes "^FF0000[Dead Pit 1F Monster Encyclopedia]^000000";	
			mes "2.Tarou";
			mes "Little mouse of white colour. It is squicking very loudly in the Dead Pit or the Prontera Culvert..";
			mes "^0099FFFound Items^000000: Rat Tail,Leather,Feather,Monster's Feed";
			next;
			mes "^FF0000[Dead Pit 1F Monster Encyclopedia]^000000";
			mes "3.Martin";
			mes "Funny looking Mole wearing a Safety Helmet on the head,which is always busy to walk around.";
			mes "^0099FFFound Items^000000: Mole Whiskers,Mole Claw";
			next;
			mes "^FF0000[Dead Pit 1F Monster Encyclopedia]^000000";
			mes "4.Drainliar";
			mes "Freaking Bloody bat with a might.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Red Herb";
			next;
			goto MjrDeadPit;
			close;	
		MjrDeadPitF2:
			mes "^FF0000[Dead Pit 2F Monster Encyclopedia]^000000";
			mes "1.Martin";
			mes "Funny looking Mole wearing a Safety Helmet on the head,which is always busy to walk around.";
			mes "^0099FFFound Items^000000: Mole Whiskers,Mole Claw";
			next;
			mes "^FF0000[Dead Pit 2F Monster Encyclopedia]^000000";
			mes "2.Drainliar";
			mes "Freaking Bloody bat with a might.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Red Herb";
			next;	
			mes "^FF0000[Dead Pit 2F Monster Encyclopedia]^000000";
			mes "3.Skel Worker";
			mes "Walking Skeletion which was dead in a mine.";
			mes "^0099FFFound Items^000000: Iron,Lantern";
			next;
			mes "^FF0000[Dead Pit 2F Monster Encyclopedia]^000000";		
			mes "4.Myst";
			mes "Mist-like Monster.";
			mes "^0099FFFound Items^000000: Trunk.Gas Mask";
			next;
			goto MjrDeadPit;
			close;
		MjrDeadPitF3:
			mes "^FF0000[Dead Pit 3F Monster Encyclopedia]^000000";
			mes "1.Skel Worker";
			mes "Walking Skeletion which was dead in a mine.";
			mes "^0099FFFound Items^000000: Iron,Lantern";
			next;
			mes "^FF0000[Dead Pit 3F Monster Encyclopedia]^000000";		
			mes "2.Myst";
			mes "Mist-like Monster.";
			mes "^0099FFFound Items^000000: Trunk.Gas Mask";
			next;
			mes "^FF0000[Dead Pit 3F Monster Encyclopedia]^000000";	
			mes "3.Evil Druid";
			mes "You'll shudder even once looking at it.";
			mes "^0099FFFound Items^000000: Amulet,White Herb";
			next;
			goto MjrDeadPit;
			close;
		EndMjrDeadPit:
			close;
		close;
	PayCave:
		menu "1F",PayCaveF1,"2F",PayCaveF2,"3F",PayCaveF3,"4F",PayCaveF4,"5F",PayCaveF5,"Cancel",EndPayCave;
				
		PayCaveF1:
			mes "^FF0000[Payon Cave 1F Monster Encyclopedia]^000000";							
			mes "1.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;
			mes "^FF0000[Payon Cave 1F Monster Encyclopedia]^000000";	
			mes "2.Spore";
			mes "Mushroom-like monsters. Usually live in the Forest or Dungeons. By the way Don't try to eat it!";
			mes "^0099FFFound Items^000000: Spore,Red Herb,Blue Herb";
			next;
			mes "^FF0000[Payon Cave 1F Monster Encyclopedia]^000000";	
			mes "3.Zombie";
			mes "Bad Case of the Dead which has been reborn as a Walking Corpse by Back magic.Let's lead it to Nirvana.";
			mes "^0099FFFound Items^000000: Decayed Nail,Sticky Muscus,Horrendous Mouth";
			next;
			goto PayCave;
			close;
		PayCaveF2:
			mes "^FF0000[Payon Cave 2F Monster Encyclopedia]^000000";							
			mes "1.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;
			mes "^FF0000[Payon Cave 2F Monster Encyclopedia]^000000";
			mes "2.Eggyra";
			mes "Hovering here and there, while making a clattering sound. Tough-Looking Face scares people but it is not as strong as it looks.";
			mes "^0099FFFound Items^000000: Scell,Sticky Muscus,Red Herb";
			next;	
			mes "^FF0000[Payon Cave 2F Monster Encyclopedia]^000000";
			mes "3.Magnolia";
			mes "Creatures shaped in Big Egg Frying Fans. They spank attackers with the Frying Fans without mercy. Don't let your guard down just because they look cute. You will suffer if you do so.";
			mes "^0099FFFound Items^000000: Jellopy.Garlet.Scell";
			next;	
			mes "^FF0000[Payon Cave 2F Monster Encyclopedia]^000000";
			mes "4.Soldier Skeleton";
			mes "Skeleton holding 2 swords on both grips,attacks fast.One of the dangerous monsters in the Cave.";
			mes "^0099FFFound Items^000000: Skel-Bone,Red Potion";
			next;	
			goto PayCave;
			close;
		PayCaveF3:
			mes "^FF0000[Payon Cave 3F Monster Encyclopedia]^000000";						
			mes "1.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;
			mes "^FF0000[Payon Cave 3F Monster Encyclopedia]^000000";
			mes "2.Soldier Skeleton";
			mes "Skeleton holding 2 swords on both grips,attacks fast.One of the dangerous monsters in the Cave.";
			mes "^0099FFFound Items^000000: Skel-Bone,Red Potion";
			next;	
			mes "^FF0000[Payon Cave 3F Monster Encyclopedia]^000000";
			mes "3.Munak";
			mes "Pretty-looking Female corpse which had been frozen for a long time.She looks like holding a long story deep inside, the story people want to know about.Anyway Don't give her a break,she'll give strong damages on you.";
			mes "^0099FFFound Items^000000: Daenggie ,Munak Turban";
			next;	
			mes "^FF0000[Payon Cave 3F Monster Encyclopedia]^000000";	
			mes "4.Archer Skeleton";
			mes "It seems to be an expert of bow when it was alive.It'll come to attack in no time when somebody gets inside of its range.";
			mes "^0099FFFound Items^000000: Skel-Bone,Fire Arrow,Red Potion";
			next;
			goto PayCave;
			close;
		PayCaveF4:
			mes "^FF0000[Payon Cave 4F Monster Encyclopedia]^000000";
			mes "1.Soldier Skeleton";
			mes "Skeleton holding 2 swords on both grips,attacks fast.One of the dangerous monsters in the Cave.";
			mes "^0099FFFound Items^000000: Skel-Bone,Red Potion";
			next;	
			mes "^FF0000[Payon Cave 4F Monster Encyclopedia]^000000";
			mes "2.Archer Skeleton";
			mes "It seems to be an expert of bow when it was alive.It'll come to attack in no time when somebody gets inside of its range.";
			mes "^0099FFFound Items^000000: Skel-Bone,Fire Arrow,Red Potion";
			next;
			mes "^FF0000[Payon Cave 4F Monster Encyclopedia]^000000";
			mes "3.Sohee";
			mes "Female Ghost which holds grudge deep inside. She is always crying as waving long hair. But when running into the living, she suddenly changes her attitude fiercely.";
			mes "^0099FFFound Items^000000: Black Hair,Red Potion";
			next;	
			mes "^FF0000[Payon Cave 4F Monster Encyclopedia]^000000";
			mes "4.Horong";
			mes "Eerie-looking fireball of violet colour.Recognises the living when gets near.";
			mes "^0099FFFound Items^000000: Stone Heart,Zargon,Fire Arrow";
			next;
			goto PayCave;
			close;
		PayCaveF5:
			mes "^FF0000[Payon Cave 5F Monster Encyclopedia]^000000";
			mes "1.Soldier Skeleton";
			mes "Skeleton holding 2 swords on both grips,attacks fast.One of the dangerous monsters in the Cave.";
			mes "^0099FFFound Items^000000: Skel-Bone,Red Potion";
			next;	
			mes "^FF0000[Payon Cave 5F Monster Encyclopedia]^000000";
			mes "2.Archer Skeleton";
			mes "It seems to be an expert of bow when it was alive.It'll come to attack in no time when somebody gets inside of its range.";
			mes "^0099FFFound Items^000000: Skel-Bone,Fire Arrow,Red Potion";
			next;
			mes "^FF0000[Payon Cave 5F Monster Encyclopedia]^000000";
			mes "3.Sohee";
			mes "Female Ghost which holds grudge deep inside. She is always crying as waving long hair. But when running into the living, she suddenly changes her attitude fiercely.";
			mes "^0099FFFound Items^000000: Black Hair,Red Potion";
			next;	
			mes "^FF0000[Payon Cave 5F Monster Encyclopedia]^000000";
			mes "4.Horong";
			mes "Eerie-looking fireball of violet colour.Recognises the living when gets near.";
			mes "^0099FFFound Items^000000: Stone Heart,Zargon,Fire Arrow";
			next;
			mes "^FF0000[Payon Cave 5F Monster Encyclopedia]^000000";
			mes "5.Moonlight";
			mes "Wild Girl having 9 tails of a Fox, and with a Big Bell on the back.";
			mes "^0099FFFound Items^000000: 9 Tails,White Potion,Topaz,Elunium";
			next;
			goto PayCave;
			close;
		EndPayCave:
			close;
		close;
	Pyramid:
		menu "1F",PyramidF1,"2F",PyramidF2,"3F",PyramidF3,"4F",PyramidF4,"5F",PyramidF5,"6F",PyramidF6,"Cancel",EndPyramid;

		PyramidF1:
			mes "^FF0000[Pyramid 1F Monster Encyclopedia]^000000";
			mes "1.Familiar";
			mes "Bat of Violet Colour.Not that strong but really annoying because it attacks very fast and outregeously when somebody gets near it.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Fly Wing,Grape,Red Herb";
			next;
			mes "^FF0000[Pyramid 1F Monster Encyclopedia]^000000";
			mes "2.Spore";
			mes "Mushroom-like monsters. Usually live in the Forest or Dungeons. By the way Don't try to eat it!";
			mes "^0099FFFound Items^000000: Spore,Red Herb,Blue Herb";
			next;
			mes "^FF0000[Pyramid 1F Monster Encyclopedia]^000000";
			mes "3.Poporing";
			mes "Poisonous Poring in light green.Every character is the same as poring,but much more stronger.";
			mes "^0099FFFound Items^000000: Sticky Muscus,Garlet,Green Herb";
			next;
			goto Pyramid;
			close;
		PyramidF2:
			mes "^FF0000[Pyramid 2F Monster Encyclopedia]^000000";
			mes "1.Poporing";
			mes "Poisonous Poring in light green.Every character is the same as poring,but much more stronger.";
			mes "^0099FFFound Items^000000: Sticky Muscus,Garlet,Green Herb";
			next;
			mes "^FF0000[Pyramid 2F Monster Encyclopedia]^000000";
			mes "2.Drainliar";
			mes "Freaking Bloody bat with a might.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Red Herb";

			next;	
			mes "^FF0000[Pyramid 2F Monster Encyclopedia]^000000";
			mes "3.Soldier Skeleton";
			mes "Skeleton holding 2 swords on both grips,attacks fast.One of the dangerous monsters in the Cave.";
			mes "^0099FFFound Items^000000: Skel-Bone,Red Potion";
			next;	
			mes "^FF0000[Pyramid 2F Monster Encyclopedia]^000000";
			mes "4.Archer Skeleton";
			mes "It seems to be an expert of bow when it was alive.It'll come to attack in no time when somebody gets inside of its range.";
			mes "^0099FFFound Items^000000: Skel-Bone,Fire Arrow,Red Potion";
			next;
			goto Pyramid;
			close;
		PyramidF3:
			mes "^FF0000[Pyramid 3F Monster Encyclopedia]^000000";
			mes "1.Drainliar";
			mes "Freaking Bloody bat with a might.";
			mes "^0099FFFound Items^000000: Tooth of Bat,Red Herb";
			next;	
			mes "^FF0000[Pyramid 3F Monster Encyclopedia]^000000";
			mes "2.Soldier Skeleton";
			mes "Skeleton holding 2 swords on both grips,attacks fast.One of the dangerous monsters in the Cave.";
			mes "^0099FFFound Items^000000: Skel-Bone,Red Potion";
			next;	
			mes "^FF0000[Pyramid 3F Monster Encyclopedia]^000000";
			mes "3.Archer Skeleton";
			mes "It seems to be an expert of bow when it was alive.It'll come to attack in no time when somebody gets inside of its range.";
			mes "^0099FFFound Items^000000: Skel-Bone,Fire Arrow,Red Potion";
			next;
			mes "^FF0000[Pyramid 3F Monster Encyclopedia]^000000";
			mes "4.Mummy";
			mes "Walking Corpse with a bandage all around the body.It smells so bad because its body is still on the decomposed stage.";
			mes "^0099FFFound Items^000000: Rotten Bandage";
			next;
			mes "^FF0000[Pyramid 3F Monster Encyclopedia]^000000";
			mes "5.Verit";
			mes "Dog with a bandage all around the body which was dead once before.It tends to eat everything dropped on the ground.";
			mes "^0099FFFound Items^000000: Immortal Heart,Zargon,Rotten Bandage";
			next;
			goto Pyramid;
			close;
		PyramidF4:
			mes "^FF0000[Pyramid 4F Monster Encyclopedia]^000000";
			mes "1.Mummy";
			mes "Walking Corpse with a bandage all around the body.It smells so bad because its body is still on the decomposed stage.";
			mes "^0099FFFound Items^000000: Rotten Bandage";
			next;
			mes "^FF0000[Pyramid 4F Monster Encyclopedia]^000000";
			mes "2.Verit";
			mes "Dog with a bandage all around the body which was dead once before.It tends to eat everything dropped on the ground.";
			mes "^0099FFFound Items^000000: Immortal Heart,Zargon,Rotten Bandage";
			next;
			mes "^FF0000[Pyramid 4F Monster Encyclopedia]^000000";
			mes "3.Ghoul";
			mes "Similar as Zombie but much more stronger. Yet very slow, you'd better run for your life when happen to meet this thing.";
			mes "^0099FFFound Items^000000: Horrendous Mouth";
			next;
			mes "^FF0000[Pyramid 4F Monster Encyclopedia]^000000";
			mes "4.Isis";
			mes "Creature having the head and upper body of a woman and the tail of a snake.Her nail is quite a menace.";
			mes "^0099FFFound Items^000000: Scale Skin,Shining Scale";
			next;
			goto Pyramid;
			close;
		PyramidF5:
			mes "^FF0000[Pyramid 5F Monster Encyclopedia]^000000";
			mes "1.Mummy";
			mes "Walking Corpse with a bandage all around the body.It smells so bad because its body is still on the decomposed stage.";
			mes "^0099FFFound Items^000000: Rotten Bandage";
			next;
			mes "^FF0000[Pyramid 5F Monster Encyclopedia]^000000";
			mes "2.Ghoul";
			mes "Similar as Zombie but much more stronger. Yet very slow, you'd better run for your life when happen to meet this thing.";
			mes "^0099FFFound Items^000000: Horrendous Mouth";
			next;
			mes "^FF0000[Pyramid 5F Monster Encyclopedia]^000000";
			mes "3.Isis";
			mes "Creature having the head and upper body of a woman and the tail of a snake.Her nail is quite a menace.";
			mes "^0099FFFound Items^000000: Scale Skin,Shining Scale";
			next;
			goto Pyramid;
			close;
		PyramidF6:
			mes "^FF0000[Pyramid 6F Monster Encyclopedia]^000000";
			mes "1.Mummy";
			mes "Walking Corpse with a bandage all around the body.It smells so bad because its body is still on the decomposed stage.";
			mes "^0099FFFound Items^000000: Rotten Bandage";
			next;
			mes "^FF0000[Pyramid 6F Monster Encyclopedia]^000000";
			mes "2.Verit";
			mes "Dog with a bandage all around the body which was dead once before.It tends to eat everything dropped on the ground.";
			mes "^0099FFFound Items^000000: Immortal Heart,Zargon,Rotten Bandage";
			next;
			mes "^FF0000[Pyramid 6F Monster Encyclopedia]^000000";
			mes "3.Ghoul";
			mes "Similar as Zombie but much more stronger. Yet very slow, you'd better run for your life when happen to meet this thing.";
			mes "^0099FFFound Items^000000: Horrendous Mouth";
			next;
			mes "^FF0000[Pyramid 6F Monster Encyclopedia]^000000";
			mes "4.Isis";
			mes "Creature having the head and upper body of a woman and the tail of a snake.Her nail is quite a menace.";
			mes "^0099FFFound Items^000000: Scale Skin,Shining Scale";
			next;
			mes "^FF0000[Pyramid 6F Monster Encyclopedia]^000000";
			mes "5.Osiris";
			mes "Mummy King with a rotten bandage all over the body, wearing a Crown on the head.He threatens Adventurers with an incredible might.";
			mes "^0099FFFound Items^000000: Memento,Rotten Bandage,Hand of God,Elunium";
			next;
			goto Pyramid;
			close;
		EndPyramid:				
			close;
		close;
	Cancel:
		close;
}
//<=========== Library - End ==========>\\