summaryrefslogtreecommitdiff
path: root/db/Changelog.txt
blob: 6aacd58cf0c0585b1886ec9447fdb52b1a7c9fe0 (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
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
========================= Items that need fixing/implementing

	5126 Morpheus's Hood:	Magic spells cannot be dispelled!?

	2653 Sacrifice Ring:		NO INFO. Item not implemented....
				[Vicious] On your death it breaks (BS can fix it), you drop all Equipment (equipped, even the ring).
					  And revive with 1 HP / 1 SP at the place of your death.
				[Komurka] From where this info is? ... Mine: On your death you'll loose this ring and get 50% HP.
				[Poki#3]  Theres no official desc! <.< Although you might wanna make it a custom item or something...
	1475 Cavalry Lance:		NEED INFO.
	1475 Equestrian's Spear:	NEED INFO.
	13005 Angelic Wing Dagger:	NEED INFO.
	1308 Golden Axe:		NEED INFO.
	13160, 13161 Destroyer:	Can break target's armor when fired at close range.
	-----
	4296 Cramp Card:	Temp Plug: 10z per mob-level on a 3% chance.
	7458 Fortune Horn:	It's a custom name ^^;
	12017 Speed Decreasing Potion: A potion which decreases the moving speed of a character for a duration.
	-----

========================

01/21
	* Fixed equip location of Father's Mustaches and Father's Sunglasses [Lupus]
01/18
	* Fixed Ulle's Cap + Odin's Blessing Combo, thanks to happylight [Lupus]
01/06
	* Fixed Succubus/Incubus combo not doing regen correctly [ultramage]
	  Read why at http://www.eathena.ws/board/index.php?showtopic=129814
12/30
	* Fixed typo in mob_skill_db [Playtester]
12/28
	* Added some history books [Playtester]
12/27
	* Cleaned up item_misc.txt [Skotlex]
12/23
	* Fixed some autospell bonuses thanks to NLZ [Playtester]
12/21
	* Fixed Mutant Dragonoid Card [Playtester]
	* Updated Bows [Playtester]
	* Raised range of Gatling and Grenade Launcher to 9 [Playtester]
	* Updated two handed weapons [Playtester]
12/20
	* NPC_CHANGEUNDEAD is now "target" for all mobs [Playtester]
	- all other NPC_CHANGE skills stay "self"
	* Commented some items that seem to crash the kRO client [Playtester]
	* Made NPC_CHANGE self targetted for all mobs [Playtester]
	- it should either be self or target for all but not mixed up	
12/19
	* Now Peach Tree can move, Parasite can't [Playtester]
	- fixed up their AI
12/18
	* Fixed some swords [Playtester]
12/17
	* Fixed Owl Duke and Owl Baron losing boss mode on NPC_EMOTION [Playtester]
12/16
	* Updated some weapons and view ids [Playtester]
	* Fixed prices of arrows [Playtester]
	* Update remaining headgears [Playtester]
12/15
	* Reverted price of Mink Coat [Playtester]
	* Updated some more headgears [Playtester]
12/14
	* Added some new headgears [Playtester]
	* Updated various headgears [Playtester]
	* Capped Dex to 255 in the mob_db [Playtester]
	* Old Purple Box now drops Assassin_Mask_ instead of the old one [Playtester]
	- the old one got removed and will now crash the client
12/13
	* Added two new pet eggs [Playtester]
	* Added boss mode (0x20) to a few mobs that were missing it. [Skotlex]
12/12
	* Added full status recovery to some healing items [Playtester]
12/11
	* Readded removed mobs in a commented form [Playtester]
	- also commented all invalid and missing sprite mobs
12/09
	* Implemented Frus Card [Playtester]
12/07
	* Updated mob_skill_db to account for the updated mob modes on NPC_EMOTION
	  skills. [Skotlex]
	* Updated cards according to latest kRO patch [Playtester]
12/06
	* Fixed mode of guardians [Playtester]
	* Updated mob modes [Playtester]
	- they are now in hex format
	* Updated accessoires [Playtester]
12/04
	* Almost official HP values for Ninja/Gunslinger [Playtester]
	* Updated garments [Playtester]
12/03
	* Updated shoes [Playtester]
12/02
	* Updated armors [Playtester]
	* Updated shields [Playtester]
12/01
	* Removed some mobs that aren't used anymore [Playtester]
	* Updated various mob stats thanks to Soukosa [Playtester]
11/30
	* Fixed some mob names thanks to Soukosa [Playtester]
11/29
	* More drop updates [Playtester]
	* Updated various drops [Playtester]
11/28
	* Fixed Alchemist combo's autospell casting on target instead of self [Playtester]
11/27
	* Fixed up healing items [Playtester]
	* Updated Rachel mob drops [Playtester]
	* Updated Rachel mob stats [Playtester]
	* Corrected KiriKage's range so it works correctly when used by non-players
	  or when use weapon's range is used. [Skotlex]
	* Changed service for you's flags so it affects all players on range.
	  [Skotlex]
11/26
	* Updated Rachel Field mob stats and drops [Playtester]
	* Updated selling price for some common drops [Playtester]
11/25
	* Fixed Sphinx Helm, Coif and Orc Hero Helm [Playtester]
	* Fixed selling price of Fine Grit 10z -> 60z [Playtester]
11/24
	* Heaven's drive no longer targets traps. [Skotlex]
11/23
	* Fixed sp cost of RG_RAID [Playtester]
	* Official skills for remaining Thanatos mobs [Playtester]
	- this completes the X.3 and X.4 mob skill updates
	- removed various skills from G_mobs
11/21
	* All coin related skills can be used with any weapon. Those that require
	  ammo can be used with any ammo. [Skotlex]
	* Fixed all cast times and delays of Gunslinger skills [Playtester]
	- cast time of Dust is reduced by dex
	- Tracking cast time cannot be reduced by anything
	- Increase Accuracy requires 4 coins instead of 2
	* Updated healing values of Ketupat and Red Thorn Fruit [Playtester]
11/20
	* Official skill for Ancient Mimic, Death Word and Angels [Playtester]
	- also made NPC_DEFENDER self targeted
	- Shelter now has angry mode
	* The max level of NPC_SPLASHATTACK is now 1. [Skotlex]
	* Flywing and Butterfly Wing will now use the teleport skill [Playtester]
	* Official skills for Breeze and Plasma [Playtester]
	* Official X.4 skills thanks to Tharis [Playtester]
	- also set MVP skills to MVP skill level
11/19
	* Official skills for Abyss Lake mobs [Playtester]
	- G_Acidus, G_Ferus and Green Iguana don't have skills
	- someone should test if all skills are working
	- Green Iguana is now a looter
11/18
	* Official skills for Bacsojin and Orc Baby [Playtester]
	- yes Bacsojin's skills are interuptable despite MVP status
	* Updated X.1 mob stats [Playtester]
	* Official skills for Detale and Thanatos [Playtester]
	- pm me if you want to help converting the mob skills
11/17
	* Updated remaining X.2 mob stats [Playtester]
	* Updated Bio Lab and Juperos mob stats [Playtester]
	* Fixed some sprite mob names [Playtester]
11/16
	* Fixed the misleading description of what item_avail does. [Skotlex]
	* Updated X.3 mob stats [Playtester]
	* Updated Kiel dungeon mob stats [Playtester]
	* Changed type of unimplemented cards to "Card" [Playtester]
11/15
	* Updated Odin Temple mob stats [Playtester]
	* Fixed Gonryun mob stats [Playtester]
	- also fixed Bacsojin and Chung E
11/13
	* Changed bAtk to bBaseAtk [Playtester]
11/10
	* Fully official GS/NJ Job Exp [Playtester]
	* Removed the inf2 = TRAP of FirePillar and Spider Web so they are blocked
	  by Land Protector. [Skotlex]
11/09
	* More accurate Max HP values for TK/SG/SL/GS/NJ [Playtester]
	- TK/SG/SL are official up to level 70
	* Reduced the check area of hermod to 3x3, you now have to literally stand
	  next to a warp for it to work. [Skotlex]
	* Official Weight and Max SP values for TK/SG/SL/GS/NJ [Playtester]
	- why were ours so far off the official ones?
11/08
	* Reduced Wand of Hermod's splash range (max distance from a portal) from 3 to
	  2. Should it really be 1? (that is, be so close that moving a single cell
	  warps you?) [Skotlex]
11/07
	* Kiel now summons 6 slaves instead of 5 [Playtester]
11/06
	* Added Bull's Eye 0.5 sec cast time [Skotlex]
	* Ganbantein's delay is now 2 secs. [Skotlex]
	* Removed the time2 value of NJ_NEN since it has no use. [Skotlex]
11/05
	* Raised the chance to get an OPB from an OPB [Playtester]
	* Official NJ/GS job exp for level 51+52 [Playtester]
11/03
	* Official X.4 MVP rewards [Playtester]
	* Official NJ/GS job exp up to joblevel 50 [Playtester]
	* Remaining official X.4 drop updates [Playtester]
	- updated related item names
11/02
	* Official Gunslinger/Ninja weapon drops [Playtester]
	- updated other mob drops A-M
	- updated related item names
	* Official X.4 mob drops [Playtester]
	* Fixed Aliot's Rebirth skill [Playtester]
11/01
	* Reverted LK_Berserk HP requirement [Vicious]
10/30
	* Added some official X.4 drop rates [Playtester]
	* Corrected GS skill ranges using Aegis data. All their targetted skills
	  have a base range of 9, and Dust (Choke) has a range of 2. [Skotlex]
	* Gave Grounddrift a knockback of 3 for the fire-elemental effect (value
	  totally custom)
	* Set the inf2 to encore skills of Wand of Hermode [Skotlex]
10/29
	* Official NJ/GS exp chart for level 1-48 [Playtester]
	* Added Shinobi Sash to Shinobi drops [Playtester]
	* Fixed const.txt, thanks to flaviojs [Vicious]
	* Fixed homunculus's growth, according to Aegis [Vicious]
10/27
	* Made Thief Clothes and Ninja Suit being equippable by Ninja [Playtester]
	* More Odin/Kiel fixes [Playtester]
10/26
	* Fixed Constant's explode not working as it should [Playtester]
10/25
	* More Kiel Mob updates [Playtester]
	* Changed order of Aliza drops to prevent steal exploit [Playtester]
	* MG_STONECURSE and NPC_PETRIFYATTACK now use time1 to specify the
	  "petrifying time". This value has been set to 5 seconds. [Skotlex]
	* Fixed view ids of some headgears [Playtester]
10/24
	* Kiel Mob updates [Playtester]
	* Reverted Lupus' map_index update. map_index should NOT be touched. [Vicious]
	* Updated map index accordingly [Lupus]
10/23
	* Adjusted LK_BERSERK so you can only use it when you have 20% or less
	  life. [Skotlex]
10/20
	* Official Muscipular drops [Playtester]
10/19
	* Added the actual skill delay of 1000ms to Triple Attack and Chain combo
	  in skill_cast_db. Added Combo Finish and TigerFist as well with a delay of
	  700ms. [Skotlex]
	* Added the Monk combos to skill_castnodex so their delay is not decreased
	  by skills. [Skotlex]
10/18
	* Updated the packetdb for the 2006-10-17a client. [Zephiris]
10/16
	* Corrected issen's range to 5, as per the login packet information.
	  [Skotlex]
	* Applied most of Mpeg's work on Ninja Skills. For information see:
	  http://gpegon.free.fr/ea/ninja_10-15-06_mpeg.txt [Skotlex]
	* Small Kiel MVP drop rate increase [Playtester]
10/14
	* Fixed Bacsojin's and Chung E's stats [Playtester]
10/12
	* Reverted GS/NJ Job Exp [Playtester]
	- better too high than too low
	* Corrected Caprice cast info. No cast time, delay time equal to the bolt
	  spells. [Skotlex]
	* Probably official GS/NJ Job Exp [Playtester]
10/09
	* Fixed High Quality Sandals not being refinable [Playtester]
10/08
	* Probably final drop rate increase [Playtester]
10/06
	* Reverted size fix for Guns and Shuriken [Playtester]
	- it appears they are 100% to all after all
10/05
	* Selling price of Broken Pieces 10z -> 400z [Playtester]
	* Raised the drop rates of most combo equips [Playtester]
10/04
	* Raised level of Kiel MVP skills [Playtester]
10/01
	* Adjusted drop rates thanks to info from Tharis [Playtester]
	* Updated view ids of some headgears [Playtester]
	- beware of crashes when your client is too old
09/29
	* Fully official Ktullanux stats [Playtester]
	* Official X.4 item scripts [Playtester]
	* Fixed Gunslinger job bonus [Playtester]
	* Official X.4 aspd values for GS, NJ and SG [Playtester] 
09/28
	* Raised drop rate of some MVP drops [Playtester]
	- also added Morrigan's Manteau to Thanatos drops
09/27
	* Raised skill casting rate for Rachel mobs [Playtester]
09/25
	* Fixed item group 35 (lottobox) in item_misc.txt [Skotlex]
	* Added Ninja/Gunslinger job exp as separate exp chart [Playtester]
	* Immaterial Sword now has a 3% chance of reducing target's sp by 30% [Playtester]
09/23
	* Now Valkyrie Randgris will only resummon when she has less than 3 slaves [Playtester]
09/21
	* Implemented Rachel Sanctuary mob skills [Playtester]
09/18
	* Corrected Ki Explosion to have range 1 and to take your weapon's element.
	  [Skotlex]
	* Fixing Holden combo not draining sp correctly [Playtester]
	* Added official Rachel Sanctuary mob stats [Playtester]
	* Fixed the order of mob skills thanks to [Leon] [Playtester]
	* Changed NPC_CHANGEUNDEAD from a self skill to a targetted skill. Changed
	  it's duration to 30 secs. [Skotlex]
09/17
	* Updated some item names according to info from Haplo [Playtester]
	* Fixed some Thanatos mob names [Playtester]
09/16
	* Added NPC_CHANGEUNDEAD to the skill_cast_db, fixes it apparently doing
	  "nothing". [Skotlex]
09/15
	* Added the remaining drop changes which I missed before [Playtester]
09/14
	* Fixed X.3 Cooking drop rates [Playtester]
	- also updated related aegis item names
	- now our db is official up to X.3
	* Corrected Smokie's pet script to use petskillbonus instead of "bonus"
	  [Skotlex]
	* Fixed Abyss Lake drop rates [Playtester]
	- also updated related aegis item names
	* Fixed Thanatos Tower drop rates [Playtester]
	- also updated some related aegis item names
09/13
	* Started fixing up X.3 drop rates [Playtester]
09/12
	* Fixed NPC_ATTRICHANGE being targeted rather than self [Playtester]
	* Fixed Vesper's summoning behavior [Playtester]
09/11
	* CG_MOONLIT is no longer castable in WoE grounds. [Skotlex]
09/10
	* Removed NPC_Powerup from Dimik [Playtester]
	* More accurate guess on Strouf's dex [Playtester]
	* Doubled Strouf's dex [Playtester]
	* Guard is now equippable by every job [Playtester]
09/08
	* Adjusted various Rachel mob stats and skills [Playtester]
	* Added missing Ice Dungeon mob skills [Playtester]
	* Added missing Rachel mob skills [Playtester]
	* Removed dMotion from Iceicle [Playtester]
	* Official Rachel mob stats [Playtester]
	- progress 30%
09/07
	* Merged some of mpeg's work on NJ skills [Skotlex]
09/06
	* Changed all bCriticalRate to bCritical [Playtester]
	* Updated skill_require_db's entry for Abracadabra, it requires yellow 2
	  gemstones (there's no such hardcoded yellow gemstone requirement anymore)
	  [Skotlex]
	* Corrected db/const.txt entry bMagicSubRace -> bMagicAddSize [Skotlex]

	* Updated attack power of Unholy Touch [Playtester]
	- also moved combo bonuses to non-accessoire parts
09/05
	* Updated comments on Arrow Crafting thanks to Haplo [Playtester]
09/04
	* Updated Shinobi Sash and Exorcising Ring [Playtester]
09/02
	* Applied Vicious's ranges on guns [Playtester]
	- Rifle & Shotgun = 9, others = 7
	* Updated various item names thanks to Haplo [Playtester]
	- please update all the quests that use these item names
09/01
	* Added some new items thanks to Haplo [Playtester]
08/30
	* Updated ingredients for Smooth Noodle [Playtester]
	* Updated mob iRO names and mob stats [Playtester]
08/29
	* Applied Mpeg's work on GS [Toms]
	  ( http://gpegon.free.fr/ea/gunslinger_08-29-06_mpeg.txt )
08/26
	* Reduced weapon range of all guns by 1 [Playtester]
08/25
	* Shinobi Belt combo now also works with slotted Ninja Suit [Playtester]
08/24
	* Updated X.3 iRO mob names [Playtester]
08/23
	* Corrected the healing value of novice pots. [MasterOfMuppets]
08/22
	* Fixed SP usage of some Gunslinger skills [Playtester]
	* Added a duration to Disarm [Playtester]
	* Final fix on Grand Cross weapon [Playtester]
	* Some fixes on Grand Cross weapon, might need more fixes [Playtester]
	* Removed event bonus on Celebration Ring [Playtester]
	* Applied Mpeg's fix on GS according to kRO's values [Toms]
	* Updated Embryo creation, put "Potion Creation Guide" instead of "Embryo Creation Guide"
	  according to RockmanEXE's & iRO info [Toms]
	* Updated range of guns according to RockmanEXE's info [Playtester]
	* Updated some items thanks to Haplo [Playtester]
08/21
	* Increased splash range of HVAN_EXPLOSION to 4. [Skotlex]
	* Added delay to HLIF_AVOID [Toms]
08/20
	* Fixed Fling not reducing DEF for 30 seconds [Playtester]
	* Updates Zeny givers (Red Pouch) [Lupus]
08/19
	* Removed event bonus of 4 year anniversary hat [Playtester]
	* Added HAMI_CASTLE block time [Toms]
	* Updated NJ_BAKUENRYU skill tree [Toms]
	* Updated HLIF_CHANGE skill [Toms]
	* Updated Kouenka, removed aftercast delay [Toms]
	* Fixed some Ninja weapons (1Hand Sword -> Dagger) [Toms]
08/18
	* Made HLIF_HEAL a self skill that auto-selects target to caster's master.
	  [Skotlex]
	* Fixed Kouenka not having an aftercast delay on levels greater 1 [Playtester]
08/17
	* Gospel can't stack anymore [Playtester]
08/16
	* Added WE_CALLBABY to Gunslinger and Ninja [Playtester]
	* Fixed various bullets, spheres and kunais [Playtester]
	* NJ_NEN now requires a Fang [Playtester]
08/15
	* Fixed disarm not working [Playtester]
	- also fixed duration of Gatling Fever
	* Made Kiel MVP's skills non-cancelable [Playtester]
	* Fixed Masamune and Kamaitachi using bAspd rather than bAspdRate [Playtester]
08/14
	* Updated mob stats according to official kRO website [Playtester]
	* Fixed attack power of Dusk [Playtester]
	* Added official Gunslinger ASPD values according to Ragnarok Monthly [Playtester]
08/13
	* Gave elemental -1 to some GS skills. [Vicious]
08/12
	* Destroyer now has a 1% chance on breaking armor rather than Hit-10 [Playtester]
	* Fixed Fling requiring unknown amunition [Playtester]
	* Changed the aftercast delay of Envenom to 100ms [Playtester]
	- this will cause that you can cast Envenom as fast as aMotion
	* Reduced weight of Thanatos Tower quest items to 0 [Playtester]
08/10
	* Updated the Packet DB up to the 2006-08-07aSakexe client. [Zephiris]
	* Reverted Tracking being affected by dex [Playtester]
	* Aloevera and Anodyne now cast on self [Playtester]
	* Fixed view id of some new headgears [Playtester]
	* Added two missing braces to Yellow Novus card script [Playtester]
	* Removed cast time on Flip Coin, Tracking is now affected by dex [Playtester]
08/09
	* Removed cast time of AM_REST & AM_CALLHOMUNCULUS [Toms]
	* Hopefully fixed Green Ferus card combo [Playtester]
	* Removed bonus range on some bows (there is a range column for that) [Playtester]
	- also reverted sidewinder card, chance is handled in the code
	* Fixed Royal Tea requiring Sweet Sauce rather than Yellow Spice [Playtester]
	* Fixed Rapid Shower only using 1 bullet rather than 5 [Playtester]
08/08
	* Item name update [Vicious]
	* Made PF_FOGWALL a targetted skill. [Skotlex]
08/07
	* Slightly increased drop rate of some low-level guns [Playtester]
	- also lowered drop rate of Armor Charm to 0.01% again
08/06
	* Fixed selling price of Sharp Leaf [Playtester]
08/05
	* Added temporary size fixes for GS/NJ weapons [Playtester]
	* Raised NJ/GS item MVP drop rates a little [Playtester]
08/04
	* Fixed Boots not equipable by Gunslingers [Playtester]
	* Added the remaining official item drop bonus rates [Playtester]
	- note that some bugs might have appeared, please test!
	* Added some official item drop bonus rates [Playtester]
	- also replaced IG_Jellopy with IG_Resist
	* reverted 13202,Shell_of_Blood back [Lupus]
	* Fixed 13202,Shell_of_Blood type to 4 = SHELL for shotgun (not a bullet) [Lupus]
08/03
	* Hydro is no longer an MVP [Playtester]
	* Changed the inf2 value of SA_DISPEL so it can be casted on party/guild
	  mates, but not yourself. [Skotlex]
	* Updated some monsters [Playtester]
	- Gig and Deleter are now Fire 2 element
	- reduced attack power of Skeggiolds
	* Finally updated stats of the monsters that got their exp updated a month ago [Playtester]
	* Fixed some items I added yesterday [Playtester]
08/02
	* Added a dummy blind duration of 10 secs to FullBuster. [Skotlex]
	* Updated the mob skills so that the marine sphere casts self-destruction
	  with 3 second cast after it starts walking. [Skotlex]
	* Updated Create Arrow to X.4 [Playtester]
	* Gold Lux now makes you autocast Flip Coin on attack [Playtester]
	- also Gunslinger can use Berserk Potion now
	* Changed Scream and Hammerfall's stun duration to 5 seconds. [Skotlex]
	* Converted NJ_HYOUSYOURAKU from jAthena since our version was lacking a time2 [Playtester]
	* Reverted LOD card changes as well [Playtester]
	* Reverted some changes. [MasterOfMuppets]
	* Reduced overrefine bonus of level 4 weapons to 13 [Playtester]
	* Added the new items and fixed selling price of Dark Mask [Playtester]
08/01
	* Changed Solace's and Retribution's skills so they feel like on official servers [Playtester]
	* Fire Pillar's aftercast delay is 1 second now [Playtester]
	* Updated Abyss Lake and Rachel mobs [Playtester]
	* Some minor monster skill changes [Playtester]
	* Made Deluge/volcano/v. gale be castable on top of each other again
	  [Skotlex]
	* Cleaned up some of the db files. [Skotlex]
	* Fixed name of Freya's Shoes [Playtester]
	* Small item update from Haplo [Playtester]
07/31
	* Updated Awakening Potion, Note Headphone and High Quality Sandals [Playtester]
07/30
	* Corrected the defense of puppy band [MasterOfMuppets]
	* Adjusted some drop rates and removed Yoyo's Animal Skin drop [Playtester]
	* Fixed element of Abyss Lake monsters [Playtester]
07/29
	* Memorize cast time now can't be reduced by status changes neither.
	  [Skotlex]
	* Large mob_db update [Playtester]
	- added most of the missing X.4 / 11.1 drops
	- adjusted the drop rates of Odin Temple and Kiel's Mechanical Doll Factory
	- removed beret drop
	* Reverted the Combat Knife (wrong translated description) [Playtester]
	* Shockwave, Flasher and Freezing Trap now consume 2 trap items [Playtester]
	- this is correct according to info from RagnaInfo and some guides
	* Reverted the Hellion Revenant change. He IS supposed to be undead 3. [MasterOfMuppets]
	- And yes, he can still heal himself even though he is undead...
	- Note by Playtester: On eA right now he can't...
07/28
	* Fixed some summon skills [Playtester]
07/27
	* Hellion Revenant is now dark element so he can heal himself [Playtester]
	* Fixed Teddy Bear card [Playtester]
	* Hopefully fixed Solace card [Playtester]
	* Corrected Combat Knife reducing damage from DemiHumans by 10% instead of
	  increasing damage against them. [Skotlex]
	* Fixed Independence Memorial Hat weight, set to 0 [Toms]
07/25
	* Added rudeattacked teleport to Rachel MVPs [Playtester]
	* Added some NPC_Emotions for the Rachel mobs [Playtester]
	* Fixed Grandcross not being self-targeted for mobs [Playtester]
	* Final cooking drop rate adjustment [Playtester]
	* Fixed a bug in the item_db thanks to Toms [Playtester]
	* Fixed G_Kraben and G_Biolab3 mobs [Playtester]
	* Item updates by Haplo [Playtester]
07/24
	* Raised drop rate of cook books and sets a little [Playtester]
	* Raised drop rate of food a little [Playtester]
	* Raised drop rate of Kiel's and Valkyrie's drops a little [Playtester]
	* updated def on 2006 helms in preparation for the 2006 headgears quest. [Reddozen]
	* Added flag 0x002 (no reiteration) to Deluge/Volcano/Violent Gale
	  (skill_unit_db) [Skotlex]
	* Edited Rachel mobs a little and added Beret to Turtle General drops [Playtester]
	* Changed Land Protector's range back to 3. [Skotlex]
07/23
	* Added some new items thanks to Haplo [Playtester]
	* Added Holy Quiver to IG_Quiver [Playtester]
	* Added the skills of the Rachel + Ice Dungeon mobs [Playtester]
	- I made it so that the monsters are safe to use
	- the skills are official, but some skills are missing
	- the stats are only 50% official
	- drops are official, but various are missing
 	* Completed the temporary Rachel + Ice Dungeon mob stats [Playtester]
07/22
	* More Rachel mobs [Playtester]
	* Raised the chance of Holden Card Combo dropping a stem [Playtester]
	* Started to implement the Rachel mobs [Playtester]
07/21
	* Updated Speed/Delay of Juperos mobs [Playtester]
	- all the official Aegis delays we have are implemented now
	* Updated Speed/Delays of Lighthalzen mobs [Playtester]
	* Updated Speed/Delays of Einbech mobs [Playtester]
	* Replaced race numbers with constants RC_(race) in the item_db [Playtester]
	- also changed some success rates of gaining item bonuses
	* Updated Speed/Delays of Louyang and Ayothaya mobs [Playtester]
	* Fixed Lord of Death Card's Status Change chances [Playtester]
	* Added G_ L_ and XMAS_ mobs to the race2 races [Playtester]
	- also added Rotar Zairo to 'Goblins'
	* Fixed Anonymity Request and Erende Ebecee Card [Playtester]
07/20
	* Added a skill_unit_db entry for NJ_HYOUSYOURAKU, thanks to Eus for the
	  data. [Skotlex]
	* Updated Speed/Delays of Niflheim mobs [Playtester]
	* Updated Speed/Delays of Umbala mobs [Playtester]
	* Updated Speed/Delays of Kunlun mobs [Playtester]
	* Updated aDelay of some mobs to Aegis [Playtester]
	- the code now solves the aDelay bug, so we can fully use Aegis values
	- Alice and Zherlthsh finally attack like on official servers
	- please don't merge the mob_db until the code is merged
	- Ancient Mimic now drops Freyr's Shoes
	* Updated the sell price of Serin's ring [MasterOfMuppets]
	* Made Bacsojin's skills uninteruptable [Playtester]
07/19
	* Put the newly implemented cards into the old card album list. [MasterOfMuppets]
	* Fixed mob skills for G_INCUBUS and G_WRAITH_DEAD [MasterOfMuppets]
	- Someone needs to implement all of the G_MONSTER skills.
	* Raised drop rate of Electric Wire and Undershirt [Playtester]
	* Some speed and aDelay adjustments on Fur_Seal, Metaling, Increase Soil
	- Incantation Samurai is now moving much faster
07/18
	* Updated speed and delay values of Amatsu mobs [Playtester]
	* Added more of the X.4 and 11.1 drops [Playtester]
	- attention: All Stone of Sage (etc) drops have been changed to
	  Stone of Sage (usable) drops, the etc item is not used anymore!
	* Speed updates for Anolian and Merman [Playtester]
07/17
	* Speed/Delay updates for Pasana, Rybio and Phendark [Playtester]
	* Ooops, forgot to update packet_db [DracoRPG]
07/16
	* Updated Speed, aDelay, aMotion, dMotion of some mobs to Aegis [Playtester]
	* Raised speed of Kiel mobs until we know official values [Playtester]
	* Added Angel's Kiss drop to Toad [Playtester]
	* Valkyrie drops slotted helm again, Valkyrie Helm requires a quest [Playtester]
07/15
	* Hydro's drop change... [Playtester]
	* Adjusted attack speed of Thanatos Tower mobs [Playtester]
	* Adjusted move- and attack-speed of all Abyss Lake mobs [Playtester]
	- also fixed Novus dropping the correct card
	- added Detale's Reflect Shield skill
07/14
	* Added more X.4 and 11.1 item drops [Playtester]
	- we don't know about the others yet
	* Adjusted Odin Temple drops and drop rates with help from Tharis [Playtester]
	- note: I'm working on adding the X.4 and 11.1 drops now
07/13
	* Fixed the Kaensin info in skill_db/skill_unit_db... before the skill was
	  overpowered. Now... I think it's underpowered :D [Skotlex]
07/12
	* Tao Gunga will now summon G_Megalith's. [Poki#3]
	* Updated the new Rachel mob names and the new G_ mobs stats & skills. Also removed there poring drops. [Poki#3]
	* Updated Detale's Skills [Playtester]
	* Fixed element, mode and attack speed of some monsters [Playtester]
07/11
	* Fixed Nurse Cap, Memory Book and Dagger of Counter [Playtester]
	* Marionette now drops "Marionette Doll" [Playtester]
07/10
	* Corrected Frost Nova's splash range and Land Protector's cast range.
	  Thanks to Haplo.  [Skotlex]
	* Fixed Beast Strafing not having inf2 = 512 (to make it a
	  target-auto-select skill) [Skotlex]
	* Fixed the duration of Land Protector, removed unused time2 value from
	  their entries in skill_cast_db. Thanks to Haplo. [Skotlex]
	* Corrected skill require entry from the Twilight Pharmacy skills.
	  [Skotlex]
	* Removed Frost Nova's skill_unit_db entry. [Skotlex]
07/09
	* Added Guillontine's SP Drain per attack [Playtester]
	* More item updates thanks to Haplo [Playtester]
	* Added various items and fixed armor charm [Playtester]
07/05
	* Added Thanatos Tower Quest items to item_trade.txt [Playtester]
	* Added correct card effects for "Status Effect on both" [Playtester]
07/04
	* Added temp plugs for new headgears. [Vicious]
	- I only added this for VIEW ID. so someone needs to update everything else.
	* Updated item_trade.txt to Aegis X.2 ItemMoveInfo.txt [Vicious]
	* Updated the cooking items so they are ready for official implementation [Playtester]
	- also slightly raised drop rates of Cooking Sets
	* Silver Tiara's bonus is Int AGAIN (Gravity can't decide) [Playtester]
07/03
	* Fixed the UF * flags of Songs/Dances in skill_unit_db. [Skotlex]
07/02
	* Added the Mercenary Summon Scrolls [Playtester]
	* Fixed two books in the item_db [Playtester]
07/01
	* Added Silence Effect to the Lord of the Dead Card [Playtester]
06/30
	* Applied some mob_db changes according to the 27/06/2006 patch [Playtester]
	* Updated skill_unit_db to use the correct values of
	  UF_ENSEMBLE/UF_DANCE/UF_SONG as applicable. [Skotlex]
	* Added the new X.4 headgears [Playtester]
	* Fixed various items and sorted the item_db [Playtester]
	* Reverted back Vulcan Arrow. It's fine now. Player can move after the attack animation end [Lupus]
	* Raised attack power of Strouf according to X.4 updates [Playtester]
06/29
	* Updated Freyr's Shoes and Vidar's Boots [Playtester]
	* [Again] Added back walkdelay to Sonic Blow(thx@rkit), Arrow Vulcan [Lupus]
	  Walk delay lasts as attack does. In ARROW VULCAN fixed CONSTANT delay to the list
06/28
	* Updated Soul Change to use inf2 4096 (INF2_ALLOW_ENEMY). [Skotlex]
	* Updated Morpheus's Hood and Freyr's Shoes [Playtester]
	* Fixed the SP usage of AS_SPLASHER. Thanks to Belle. [MasterOfMuppets]
06/27
	* Added the remaining Ninja/Gunslinger drops [Playtester]
	* Raised autocast chance of Owl Duke card to Aegis x.2 [Playtester]
	* Some small item_db fixes [Playtester]
06/26
	* Mob name/sprite name update, thanks to Saycyber21 [Vicious]
	* Updated/Added some items [Playtester]
	* Corrected unit id of desperado and Ground Drift using jA's info. [Skotlex]
06/25
	* Added two new gunslinger weapon drops, thanks to RockmanEXE. [MasterOfMuppets]
06/23
	* Fixed SP Drain rates of items [Playtester]
	* Updated BD_INTOABYSS's unit flag to not affect mobs. [Skotlex]
	* Rogue Card Combo now removes Intimidate autospell [Playtester]
	* Sorted in the new cards and fixed some equips [Playtester]
06/22
	* Fixed the remaining 2006 Cards [Playtester]
	* Fixed some equipment fields that caused warnings [Playtester]
06/21
	* Fixed the equipment fields of the new cards [Playtester]
06/20
	* Reduced Stone Buckler's natural Def to 3 [Playtester]
	* Started fixing some of the cards [Playtester]
06/19
	* Some more item updates [Playtester]
	- Valkyrie Shield and Survivor's Manteau have their complete bonus script now, please test it
	- Slotted Ice Pick and Iron Shackle Combo are weaker now
	* Some updates to the item_db [Playtester]
	- updated Survivor's Manteau, Valkyrie Shield, Stone Buckler, etc.
06/18
	* Added Exp to some Thief Bug versions [Playtester]
06/17
	* Fixed the scripts for the Lotto Boxes [Playtester]
	* Changed Hellion Revenant to heal for 9999. [MasterOfMuppets]
	- Also put in some item restrictions related to the eye of hellion quest.
06/16
	- Updated GTB's card script to be "bonus bNoMagicDamage,100;" [Skotlex]
06/14
	* Fixed the awfully coded Baseball Cap script [Playtester]
	- please use CONSTANTS!
	- please use RC_Nonboss and RC_Boss for "all mobs" instead of listing all the races!
	- please don't stack RC_Nonboss with RC_(some race)!
06/13
	* Detale only summons one Hydro [Playtester]
	* Fixed the names of the Lotto items [Playtester]
	* Garm Claw now has 152 Attack Power rather than 115 [Playtester]
06/12
	* SL_STIN/SL_STUN have dex-reducable casting times now. [Skotlex]
	* Temp sprite names for Rachel/Ice Dungeon monsters, thanks to Saycyber21. [Vicious]
	- Chung E = temp sprites.
	* Fixed the mode of Monemus [MasterOfMuppets]
06/11
	* Commented some unused mobs in the mob_db [Playtester]
	* Goggles are worth 10k now [Playtester]
06/10
	* Slotted Crown and Tiara only have +1 int [Playtester]
	* Added the new cards to the drops [Playtester]
06/08
	* Implemented Electric Wire [Playtester]
06/07
	* Stormy Knight card now freezes when attack rather then when hit [Playtester]
06/06
	* Fixed Owl Duke not having boss mode [Playtester]
	* Fixed Osiris's slaves [Playtester]
	* Hopefully fixed all the Unbreakable bonuses [Playtester]
	* Fixed Valkyrie skills and Magnum Break of all mobs [Playtester]
	* Sunflower Hairpin now can't be refined anymore [Playtester]
06/05
	* Added some sign quest related item restrictions. [MasterOfMuppets]
	* Fixed the item bonus of baseball cap. [MasterOfMuppets]
	* A typo fix, thanks to DracoRPG. [MasterOfMuppets]
06/03
	* Fixed Archdam Card [Playtester]
	* Fixed Skeggiold's drops [Playtester]
	* MVP Jupitel now does 30 Hits [Playtester]
06/02
	* Removed the job bonuses of High Novice and Baby Novice [Playtester]
	* Updated Holy Cross, Investigate and Finger Offensive to be usable by all
	  weapons. [Skotlex]
	* Gave several MVPs their MVP skill versions [Playtester]
	* Made Grandcross usable with all weapons. Thanks to Khersai for digging it
	  up. [Skotlex]
	* Added Can Attack to various G_mobs [Playtester]
	* Removed the Novice Job bonuses again [Playtester]
	- http://www.eathena.ws/board/index.php?showtopic=93893
	* Small adjustments of the Orc Lord and Valkyrie Randgris drops [Playtester]
06/01
	* Readded Novice Job bonusses [Poki#3]
	- Just why where they removed? http://guide.ragnarok.co.kr/JobNovicestatus.asp still lists them...

05/31
	* Fixed mode of G_Whisper_Boss [Playtester]
	* Gave Rafflesia Can_Move and Aggressive mode [Playtester]
	- who removed it?
	* Fixed Arrow Crafting, now using the official X.2 values [Playtester]
	* Updated item_db according to info provided by Haplo [Playtester]
	* Changed the range of Rotar Zairo to 7, as it should be. [MasterOfMuppets]
05/30
	* Fixed the mode of Monemus to prevent it from getting knocked back. [MasterOfMuppets]
	* Updated the modes of Gremlin and Beholder according to iRO [MasterOfMuppets]
05/29
	* "Massive" item update [Vicious]
	- Updated the cards' effects. Old effects are commented at the end.
	-- Slots are NOT checked, so someone needs to do it. shouldn't be hard.
	- New items, by Landarma.
	- New "slotted" items.
	* Fixed Green Ale's effect, thanks to NLZ. [MasterOfMuppets]
05/28
	* Updated ASC_BREAKER's range to 9. [Skotlex]
05/28
	* Readded some aDelay fixes which were accidentaly reverted [Playtester]
05/26
	* Added Red Chile drop to Kraben & small aMotion fix [Playtester]
	* Added missing Odin drops (guessed) [Playtester]
	* Updated Kiel and added Odin mob drops [Playtester]
	- low drop rates as long as not known
	- still missing Makeup Kit, Angel Hairband and not sure which Survivor's Rod
	* Fixed 12106,Jeweled_Box. Now giving an accessory [Lupus]
05/25
	* Modified some drops and added drops to Ferus and Dragon Egg [Playtester]
	* Updated the Exp of some mobs accordings to the last kRO patch thanks to Muad_Dib [Playtester]
	* More fixes on MVP exp and changed some mob modes [Playtester]
	* Fixed Sidewinder card to raise the chance of Double Attack if you have mastered it [Playtester]
	* MVP Exp is now 1/2 of the Base Exp as pointed out by Tharis [Playtester]
	- Removed MVP drops of Hydro and Event Kiel as they are supposely no MVPs
05/24
	* Added cooking drops to the mob_db [Playtester]
	* Final Aegis X.2 update [Playtester]
	- added mob_db_a.txt in case someone wants to use 100% official X.2 drop rates
	- now starting to add after-X.2 drops
05/23
	* Amon Ra now uses Meteor Storm on self until we find out how it really works [Playtester]
05/21
	* Incantation Samurai Card now ignores def of all non-boss races [Playtester]
	- should include players now
05/19
	* Major fix to the mob_skill_db [Playtester]
	- traps are now placed around2 rather than self
	- all idle skills should work now
	* More fixes on Amon Ra [Playtester]
	* Fixed Bascojin's mob summoning [Playtester]
	* Fixed some SPRITE names of mobs [Playtester]
	* Fixed item names of new items thanks to Haplo [Playtester]
05/18
	* Amon Ra's and Dark Lord's Fire Pillar & Meteor Storm now have Level 11 rather than 30 [Playtester]
	* Fixed MVP Fire Pillar --> 12 hits, 5x5 range [Playtester]
	* Corrected LoV's effect range for levels 11+ to range 8. [Skotlex]
	* Added new items 2006-04-25 ... 2006-05-16. Thanks to Landarma [Lupus]
05/16
	* More Aegis X.2 drop updates [Playtester]
	- progress 50%
05/15
	* More Amon Ra related changes [Playtester]
	- Dark Blessing and Blood Sucker now have a range of 9 tiles
	- Small fixes on his skills again
	- G_Khalitzburg is a bit slower now
	* Fixed implementation of MVP Meteor Storm [Playtester]
	- Dark Lord and Amon Ra use it
	- Meteors drop in an area of 31x31 tiles
	- each Meteor has 7x7 tiles splash damage
	- each Meteor does 15 hits
	* Spirit skills now have 500ms delay. [Skotlex]
	* Changed speed of G_Khalitzburg (very fast now) [Playtester]
	* Improved some skills of Amon Ra [Playtester]
05/14
	* More Aegis X.2 drop updates [Playtester]
	- progress 45%
05/13
	* Hopefully fixed Skeggiolds summon endless slaves [Playtester]
	* Added a hopefully better implementation of Amon Ra thanks to Tharis [Playtester]
	- also fixed name of Apocalypse
	* Uncommented Summon skill of Katrinn and Shecil [Playtester]  
	* Some more drop updates [Playtester]
	- progress 40%
	* Fixed Medusa drops and updated Treasure Box drops [Playtester]
05/12
	* Updated cast times of Kaupe and Kaahi. [Skotlex]
	* SMA has dex reducable casttime now. [Skotlex]
	* Updating drops to Aegis X.2 [Playtester]
	- progress 35%
05/11
	* Moved TK_DOWNKICK's stun time from time to time2 [Skotlex]
	* Added TK_TURNKICK's stun time in skill_cast_db (2secs in time2) [Skotlex]
05/09
	* More Aegis X.2 drop updates [Playtester]
05/08
	* Corrected Stun Duration for Meteor assault to 3 secs. [Skotlex]
	* Reduced Stun duration of multiple skills to 3 secs. Skills affected:
	  Meteor Storm, Land Mine, Bash (fatal blow), Throw Stone, NPC_LICK, Raid,
	  shield Charge, Cart Termination. [Skotlex]
	* Reduced stun duration of most skills to 3 secs. [Skotlex]
05/07
	* Updating drops to Aegis X.2 [Playtester]
	- progress 25%
05/06
	* Replaced every "if(!cond) end; cmd1; cmd2;" with "if(cond) { cmd1; cmd2; }"
	  in item scripts, reads better for the eyes and for PHP scripts [DracoRPG]
	* Changed Doppelganger Card's attack delay reduction bonus to non-stackable
	  (bAspdRate instead of bAspdAddRate) as every other such bonus is [DracoRPG]
05/05
	* Hammer fall's stun duration is now 1+lv seconds. [Skotlex]
	* Removed drops from Bio Lab mobs than are not in X.2 [Playtester]
05/04
	* All KA-spells are interruptable. [Skotlex]
	* Modified NPC_STUNATTACK: Max level is 5, stun duration is 1+lv seconds
	  (these duration values are guessed, but they are better than the previous
	  5+lv seconds) [Skotlex]
05/03
	* Fusion's cast time reduced to 0. [Skotlex]
	* Removed all Novice Job bonusses [Playtester]
	* Reverted the changes to Killer Mantis and Demon Pungus card [Playtester]
	- the base effect rate is 20%, but target's defense can lower the rate
	* Fixed bugs in every New Card with getrefine() check [Lupus]
	- optimized some IF() conditions of the new cards
	- temp fix of getrefine bonus 4379,Blue_Acidus_Card (probably item desc is wrong)
05/02
	* Corrected Desperado ammo consumption (should be 10) [Skotlex]
	* Lowered all card drop rates to 0.01% as they are in Aegis X.2 [Playtester]
	* Updating old/wrong mob drops to Aegis X.2 drops [Playtester]
	- progress 10%
	* Changed the prices of the ninja stones according to official. [erKURITA]
	* Linking skills now have their cast-time reduced by dex. [Skotlex]
	* Lowered the duration of Speed Potion to 5 seconds [Playtester]
	- now it's doubled speed for 5 seconds
05/01
	* Fixed Jump Kick's range to 9. [Skotlex]
	* Modified the AM_TWILIGHT* skills to require 200 medicine bowls. [Skotlex]
	* Added effect of Speed Potion [Playtester]
	* Removed Kraben Card drop from G_Kraben [Playtester]
	* Fixed a typo in the Armeyer Dinze card thanks to theultramage [Playtester]
04/30
	* Changed TK_RUN's state from none to move_enable. [Skotlex]
	* Added Hellion Revenant [Playtester]
	- his skills are still missing
	* Changed chance of Demon Pungus Card and Killer Mantis Card to 10% [Playtester]
	* Final updates for Bio Lab drop rates thanks to Muad_Dib [Playtester]
	- they should be official to 99% now
	* Updated Bio Lab drop rates to Aegis X.2 thanks to Muad_Dib [Playtester]
	* Fixed the name of Wind Demon = "Fuuma" shurikens [Playtester]
04/29
	* Item ID 7344 is now called "Shinokas Case File" [Playtester]
	- when someone is making the quest please make sure the guy is called Shinokas
	* Updated drops of Bio Lab 3 MVPs [Playtester]
	- drop rate is 1/10 of the guessed values (until skills/delays are finished)
	- also fixed a typo in the item db
	* Updated drops of Bio Lab 3 mobs [Playtester]
	* Updated mob delays to current info [Playtester]
	* More fixes in the mob db [Playtester]
	- fixed more drops
	- kRO name for Goblin Steamrider is "Steam Goblin"
	* Started fixing the drops of mobs with more than 8 different items [Playtester]
	* Added new hats ViewID, thanks to Lost_Kakashi [Lupus]
	* Added new cards set 4332-4407. Thanks to virpyre,vicious_pucca,reddozen and the others ^_-
	- Fixed some bugs and typos in the new cards effects. Probably there are more [Lupus]
	  Note: ON finishing adjusting STEAL skill, we'd start adding cards into MOBs drops.
04/28
	* Fixed the "stun" typo that has been in eAthena for ages [Playtester]
	- SC_STAN --> SC_STUN
	- Eff_Stan --> Eff_Stun
	* Storm Kick's range increased to 2. [Skotlex]
	* Lowered drop rates of Bio Lab 3 normal mobs [Playtester]
	- not finished yet, need 12 item drop slots...
	* Range of Flying Sidekick 10->8 cells [Lupus]
	* Updated drop rates of the Bio Lab 1&2 mobs [Playtester]
	- using 1/2 of the guessed values again
04/27
	* Corrected the hit value of the TK kicks (from single hit "6" to multi-hit
	  "8") [Skotlex]
	* All TK kicks do 3 hits now. [Skotlex]
04/26
	* Updated drop rates of Remover/Gemini with help of Tharis [Playtester]
	- droprate is now 1/2 of the guessed values
04/25
	* Updated OBB/OCA/etc [Vicious]
	* Re-enabled Biolab's summon summmoning [Vicious]
04/25
	* Fixed price of yummy fish 150z -> 250z [Playtester]
	* Updated Mode and Delays of Odin Temple mobs(using Frus delays for now) [Playtester]
	* Fixed Element, Race, aDelay, aMotion and Range of Plasma and Breeze [Playtester]
	* Updated the remaining mob names [Playtester]
	* Updated the iRO and kRO mob names [Playtester]
	- mob names done up to ID 1491, working on the rest now
	* Updated the header in the mob db text files [Playtester]
	- the order is now SpriteName,kROName,iROName
04/24
	* Updated OBB, OCA, Cookie Bag, Giftbox, OVB drops to X.2(X.3?)
	  ItemSummonList provided by Peter [Vicious]
	* Fixed Running's cast time [Playtester]
	* Fixed Item 2520 and Item 662 according to info from Haplo [Playtester]
04/23
	* Updated mob_skill_db: all idle and walk skills had their rate up x10. [Skotlex]
	* Put in most of the Kiel Hyre monster drops, at temporary low rates. [MasterOfMuppets]
	* Updated some loot sell prices for the Kiel Hyre/Odin Temple monsters [MasterOfMuppets]
	* NPC_CHANGE<property> should be self, not target [Vicious]
	* Increased all chase/follow skill rates by 10 since their trigger rate has
	  been decreased by that much due to the unit-data update. [Skotlex]
04/22
	* Updated Kiel/Odin mob stat to kRO official guidebook [Vicious]
	* Major fix to the Einbroch mobs [Playtester]
	- stats and drops should now be to 99% official
04/21
	* Fixed stats of Chung E / Green Maiden [Playtester]
	* Set NPC_INVISIBLE's duration to 30 secs. [Skotlex]
	* Finally implemented Dragon Egg thanks to Tharis [Playtester]
	* Fixed some mob skills that where missing an [Enter]... (Windows format... AGAIN!) [Poki#3]
	  ...why co we have uncommented Attack skills under an iddle state? Oo
	* Added a lot of G_Mobs and changed some slave spawns to them. Please use the newest exe release. [Poki#3]
	* Fixed selling price of research chart(ID 7347) thanks to Muad_Dib [Playtester]
	* Fixed some drops of the Bio Lab 1&2 mobs [Playtester]
	* Fixed more elements of Bio Lab mobs [Playtester]
04/20
	* Changed item_db2.txt to new format thanks to joshuaali [Playtester]
	* Fixed range of meteor (from 14x14 to 7x7) [Skotlex]
	* Fixed Nile Rose bonus [Playtester]
	* Fixed Violy's Arc Wand drop [Playtester]
	* Changed "Event Hat" to "Brazil Event Hat" [Playtester]
04/19
	* Fixed a zeny exploit by lowering price of fire cracker [Playtester]
	* Fixed Attack of Niflheim Mobs being way too low [Playtester]
	* Reverted the delay for Arrow Shower and Double Strafe to 100ms [Skotlex]
	* Reverted the cast time for pick stone to 500ms, no delay. [Skotlex]
	* Fixed Roguemaster's Bow being equipable by Rogues [Playtester]
04/18
	* Some more fixes on the Bio Lab mobs [Playtester]
	* Fixed Laurell's mode [Playtester]
	* Updated Juperos Mobs, they now have correct kRO Sakray stats [Playtester]
	* Fixed elements/race/size of all Juperos mobs [Playtester]
	- still working on the correct stats
	* Fixed element of Gemini and Monemus [Playtester]
	* Fixed Butcher's weapon level thanks to gyunwoo23 [Playtester]
	- also fixed Event Nile Rose missing a slot
	* Fixed new healing items not being usuable by new classes [Playtester]
04/16
	* Fixed knives being equipable by Taekwon and Star Gladiator [Playtester]
	* Fixed jname of Photon Cannon [Playtester]
	* Fixed slots of Butcher thanks to gyunwoo23 [Playtester]
	* Fixed some item names in the item_db thanks to Haplo [Playtester]
	* Fixed Mjolnir's ASPD bonus [Playtester]
	* Fixed moving speed of Bio Lab 3 mobs [Playtester]
	* Corrected Venom Knife's requiring two knives per use. [Skotlex]
	* Adjusted more delays/speed of Lighthalzen mobs thanks to Tharis [Playtester]
	* Fixed Job_Equip values for all one-handed-swords thanks to Haplo [Playtester]
	* Fixed wrong effect 4175,Poisonous_Toad_Card [Lupus]
04/15
	* Fixed Vesper's HP and implemented Monemus properly [Playtester]
	* Renamed Mastersmith Howard to Whitesmith Howard [Playtester]
	* Fixed Halo(id 2282) having 10% resistance instead of 15% thanks to KarLaeda [Playtester]
	* Fixed movement and attack speed of Lighthalzen Mobs thanks to Tharis [Playtester]
	* Fixed names of Lighthalzen Mobs, using iRO names now [Playtester]
04/14
	* Fixed various Job Fields in the item_db.txt thanks to Haplo and KarLaeda [Playtester]
	- they should all fit to the descriptions now
04/13
	- fixed pick stone ID [Lupus]
	* Updated 1675,VENATU (some columns were shifted) [Lupus]
	* Updated items weight, names. Thanks 2 Haplo [Lupus]
	- 12142,Book_of_Magic effect updated +20 Agi for 30 min (d0n't list it in the items desc)
		Stopped updating Stable Item Db till the merge ^_-
04/12
	* Fixed the price of empty scrolls, thanks to rockmanEXE [MasterOfMuppets]
	  for the info. He doesn't pwnz0rz so much :(
	* Some Lighthalzen mob updates [MasterOfMuppets]
	* Added cast time to pick stone of 3 secs and 500ms delay. [Skotlex]
	* Fixed produce_db for Halberd 3-->12 Oridecons [Playtester]
	* Fixed Violy's Violin[4] drop rate. It is 2%. [Playtester]
	* Fixed a typo and sorted skill_cast_db by skill id. [Playtester]
04/11
	* Corrected some items bonus, weight. Thanks 2 Haplo [Lupus]
	* Modified Mastela Fruit price to 8500, according to RockmanEXE. [erKURITA]
	* Modified Goggles and Goggles_ price to... 20z, according to RockmanEXE. [erKURITA]
	* Made Anopheles aggressive [erKURITA]
04/07
	* Modified the equip_job field in the item_db to be a hexadecimal value for
	  easier handling. [Skotlex]
	* Modified/optimized the distribution of the values for jobs in the
	  job_equip field; added doc/item_db.txt to explain each of the fields in
	  db/item_db.txt as well as the possible values for them. [Skotlex]
04/06
	* Added some Landarma's new items plugs [Lupus]
	* Lowered min zeny amount that give Red Envelopes, thanks to kyoki [Lupus]
	* Removed mapflag noreturn from pvp maps. [Skotlex]
	* Fixed HP/SP requirements for WE_MALE/WE_FEMALE [Skotlex]
04/05
	* Modified the item_db and added view_types to ammo: 1 arrows, 2 dagger
	  (venom knife), 3 bullets, 4 shells, 5 grenades, 6 shurikens, 7 kunais.
	  [Skotlex]
	* Updated skill_require_db to specify the ammo types required for GS/NJ
	  skills (as best as I could understand them) [Skotlex]
	* Updated item givers with ACTUAL items. ~10 Ep [Lupus]
	  item_cookie_bag.txt,item_cardalbum.txt,item_violetbox.txt,item_giftbox.txt,item_bluebox.txt
03/31
	* Changed the look field of all arrows to 1. [Skotlex]
	* Added column "RequiredArrowType" to skill_require_db, set to 1 all
	  arrow-based skills. The rest of skills need to be set up! For example,
	  let's say that throwable knives are type 2. On the item_db set up the
	  item's look/view to be 2, and then in skill_require_db for the skill
	  AS_VENOMKNIFE, set the required Arrow to 2 as well. This needs be done for
	  all GS/NJ skills with throwable type requirements (bullets/darts/etc). I
	  don't do it because I don't really know how many types there really are (I
	  could have just added bullet/dagger and leave it at that, but I do not know
	  if different skills require different types of "ammo". [Skotlex]

	* Adjusted the range of Wall of Fog to 9 and Spider Web to 7 [Skotlex]
03/30
	* Fixed a lot of Jnames [Poki#3]
03/29
	* Updated FULL BUSTER aftercast delays, thanks to Haplo [Lupus]
	- Fixed Rose Nile bonus
	* Updated changed weight of some items according to Haplo's note [Lupus]
	* Updated some SP cost of some skills. Added SP COST info for Homunculi skills. Thanks to Haplo [Lupus]
	* Fixed inf2 of Jump-Kick to make it a "combo-skill" so that it may do a
	  BCT_ENEMY check. [Skotlex]
03/28
	* Changed droprate of Einbroch/Lighthalzen monsters. [Vicious]
03/27	* Removed EVENT bonuses from event items: [Lupus]
	  2646,Bunch_of_Carnations, 2647,Nile_Rose, 2668,Woman_Glory, 5097,2_Years_Anniversary_Hat
	  NOTE: If you want to use these or other EVENT BONUSES, set them via 'setitemscript' command
		in your scripts. Check X-Mas Rings Event as example.
	  Poki#3, please, update the item desc. Or explain that the bonuses are gone just after the events
03/26
	* 5136,Louise's Santa_Hat lost its EVENT autocast bonus. [Lupus]
	* Added missing slots to Alice Doll, Marionette Doll, Kabuki Mask & Kawaii_Ribbon [Lupus]
03/24
	* Fixed 5123,Ulle's_Cap bug [Lupus]
03/22
	* Changed preserve's cost to 30 sp. [Skotlex]
	* Changed Soul Breaker's cast time to 700ms. [Skotlex]
	* Updated Elemental Converter ingredients. Thanks2 Haplo [Lupus]
03/21
	* Fixed the inf2 for BA_DISSONANCE to be dance-skill. [Skotlex]
	* Myst Case Card will drop GB even if the card combo's on [Lupus]
03/20
	* Fixed splash area of Ganbantein [Skotlex]
	* Updated atk,def,mdef of NJ/GS items, thanks to Haplo [Lupus]
	- also re-fixed few blackhole89 (def, atk) values
	* Uploaded Kargha's updated item_db.txt with the Gunslinger/Ninja usage bits set.
	  Looked correct to me, if there should still be errors, feel free to revert. [blackhole89]
03/18
	* Updated price and such for NJ/SG weapons
	* Fixed tons of wrong weight, wep lvlm req level items. Big thanks to KarLaeda and Haplo [Lupus]
03/15
	* Alice Doll hat fixed effect, thanks2 Sir_Loon [Lupus]
	- Fixed Moonlit's inf2 not being set to ensemble skill. Thanks to Haplo.
	  [Skotlex]
03/14
	* Modified skill entries for the Wedding recall skills. Updated their
	  splash value to signal the area around the caster where the warp will be
	  placed. [Skotlex]
03/13
	* Changed the mode of the crystals to 193 (can move, can attack, plants)
	  [Skotlex]
	* Devotion won't work on guildmates now (only party-members) [Skotlex]
	* Changed Gravity Field's element to earth so that it may hit hidden chars.
	  [Skotlex]
	* Added missing mob skills to G_HYDRA, G_PARASITE [Lupus]
	* Fixed TK and Soul Linker's position of their job entry in exp2.txt,
	  thanks to Coltaro. [Skotlex]
	* Fixed NPC_GRANDDARKNESS targetting the enemy instead of yourself in
	  mob_skill_db. [Skotlex]
	* Fixed Grandcross's hit and range entries in the skill_db (it had hit 5?
	  that wasn't even a valid value from the description) [Skotlex]
03/11
	* Update the buy/sell prices of four daggers(1247-1249 & 13000) [MasterOfMuppets]
	* Adjusted bonus items drop rates at Mimic Card and Myst Case Card [Lupus]
03/10
	* Added a few dummy duration values on skill_cast_db for some GS skills
	  (better than leaving them on 0...) [Skotlex]
	* Updated div of LoV, Combo Skills and other such skills whose damage
	  equation does not really scales well with the number of hits. [Skotlex]
	* Made G_Giant_Hornet Agressive, thanks to Blackgatomon [Lupus]
	* Doppel's drops fix Lance 1411 -> Lance 1410 [Lupus]
03/08
	* Updated skill tree for Ninja/GS [Vicious]
	* More work on Ninja/GS. They have joblvl 70, according to status
	  on kRO site, so using adv. classes' job exp chart. [Vicious]
	* Updated stat bonus, given by Muad_Dib.  [Vicious]
	* Added more columns to size_fix and job_db1.txt with temp value. [Vicious]
	* Fixed cooldown time for ASC_CDP, according to description [Foruken]
03/07
	* Temp ninja/gs skill tree. [Vicious]
	* Temp plug on Ninja in Skill_db. Ninja is correct on skill ID,
	  not sure about gunslinger, so they're commented out. [Vicious]
03/06
	* Stave Crasher's element is now -1 (take weapon's element) [Skotlex]
03/03
	* Fixed missing baby-dancer job in exp2.txt [Skotlex]
	* Added GrandCross's can't move delay of 900ms to skill_cast_db and Finger
	  Offensive's can't move delay of 200ms/lv to skill_cast_db (values taken
	  from the code) [Skotlex]
	* Updated skill_cast_db time info for some skills: [Skotlex]
	- Magnum's time2 is skill-block time
	- St. Recovery/ Cure's time2 is the confuse/blind duration
	- added NPC_POWERUP/NPC_AGIUP durations
	- Napalm Vulcan's time2 is curse length
	- Most of Tarot Card's effects last time2
	* Adjusted SC durations for Meteor Assault [Skotlex]
03/02
	* Temp Plugs for NJ and GS items [Poki#3]
	* Fixed some skill warnings. [Poki#3]
	* Added back mob "Mime Monkey". [Poki#3]

03/01
	* Added temp Green Iguana skills [Lupus]

02/27
	* Temp plug: 2620,Rogue's_Treasure steal rate -> 1 (have to fix formula) [Lupus]
	- Fixed all Vesper Acessories (removed doubled DEF bonus), thanks to Irmin
	- Rearranged Stone Buckler: normally it gives +4 DEF, with CARD COMBO it gives +5 DEF, and with CARD COMBO+SWORDMAN CLASS it would give +10 DEF
	- Removed DOUBLED combo bonus from some items. Also fixed missing brackets
		Chnaged:	2115,Valkyrie's_Shield, 2114,Stone_Buckler, 2353,Odin's_Blessing,
					5122,Magni's_Cap, 5123,Ulle's_Cap, 5124,Fricca's_Circlet
02/24
	* Changed bosses slaves in Bio Labs level 3 - they will spawn only once now [Komurka]

02/22
	* Fixed Summon skills, among others. [Poki#3]
	* Fixed G_GOBLINE_XMAS mode (aggresive ~~) [Komurka]
	* Made G_DARK_ILLUSION more ... aggressive [Komurka]

02/21
	* Changed a bunch of item names according to the upcoming iRO Lighthalzen Patch. [Poki#3]

02/20
	* Some mob_skill_db fixes [Komurka]
	* Fixed a small typo I found while browsing through the mob skill database [MasterOfMuppets]
	* Reverted back all 'status change' cards back to 10/20/30% (kRO website have full descs ~~) [Komurka]
	* Updated item_bluebox.txt, item_giftbox.txt, item_violetbox.txt, item_db.txt, mob_db.txt, [Komurka]
	  added item_cookie_bag.txt
	- new databases from Aegis 10.2
	- implemented Cookie Bag item
	- added missing mobs
	- note: yes, I know that random item databases can be shorter (item_bluebox.txt, item_violetbox.txt,
	  item_cookie_bag.txt, but not with current implementation of item randomizing
	  for expamle:
		- there are 9285 items in item_bluebox.txt, and 1000000/9285 = real value
		- so line with Red Potion would contain rate = 1000000/9285*12 = real value (can't be)
	  I think it's better to have bigger db, and do ONE rand check, than shorter and check it even 1000 times ~~
	  (in function itemdb_searchrandomid) so please, don't mess with them, or change them
	* Updated mobs mode (ID 1001-1691) according to Aegis 10.2 [Komurka]
	* 2nd part (status % chances, coma) of item_db.txt update according to Aegis 10.2 file [Komurka]
	- all cards, that had 20% on status change now have 6%
	- all cards, that had 10%+20% on status change now have 3%+3%
	- all bAddEff and bResEff updated
	- some small fixes
	- fixed Assaulter slaves thanks to Poki#3
	* 1st part (autospells) of item_db.txt update according to Aegis 10.2 file [Komurka]
	- (to transtation devs) I suggest to update item descriptions
	* New mob skill database from Aegis 10.2 (mobs 1001-1691) [Komurka]
	* Fixed some names in mob_db.txt ('Name', not 'JName') [Komurka]

02/18
	* Updated Chung_E's drops a bit according to recent info, it had the same [MasterOfMuppets]
	  drops as Sohees before.
	* Violy Card fix [Komurka]
	* Updated effects of 585,Brusti, 1263 Unholy Touch, 12133 McDonald's Ice Cone [Lupus]
		& 12136 Women's Bundle 
02/17
	- Updated skill_unit_db to use range 1 for all mines. The actual splash
	range is now taken from skill_db. [Skotlex]
	- Updated some skills who's NK should now be 3. Updated some splash ranges.
	  [Skotlex]
02/16
	* Added a new column in the skill_db to specify the
	  splash-range/area-of-effect of skills. [Skotlex]
02/14
	* Part 1 of Gravitys "Zeny Inflation Control Update" [Poki#3]
	- All potion type drops from monsters are changed with Herbs (Excluding MvP Monsters).
		Red Potions -> Red Herb
		Orange Potion -> Yellow Herb
		Yellow Potion -> Yellow Herb
		White Potion -> White Herb
		Green Potion -> Green Herb
	- 'Mastela Fruit', dropped by 'Enchanted Peach Tree' monster, will be deleted.
	   You can buy it in Hugel.
	- All Awakening Potions replaced with Grapes.
	- All Berserk Potions replaced by Lemon.
	* Jump Kick and High Jump now depend on the skill state ST_MOVE_ENABLE
	  [Skotlex]
02/13
	* Updated most mobs Summon Skills to use "OnSpawn" conditions. [Poki#3]
	* Fixed exp.txt for Baby Dancer, thanks to Gepard [Komurka]

02/10
	* Enchanted Peach Tree supposed to move, thanks to Persian69 [Vicious]
	* Clock's attack range is 2, thanks to Persian69 [Vicious]
	* Fixed Valkyrie armors having no effect for Aco class, thanks to
	  a user from em-24.com [Vicious]
	* Changed the max level of the NPC_BREAK skills to 10. Changed their
	  element to 0 and made them no damage skills. [Skotlex]
	* Weapon Repair update. SP cost 30, Cast time 7.5 secs, interruptable. [Skotlex]
02/09
	* Modified Magnum break's delay to 0, time1 to 2 secs, time2 to 10 secs.
	  Time 1 is for the skill reuse delay, and time2 the weapon fire bonus time.
	  [Skotlex]
02/06
	* Changed Serin's Gold Ring Weight to 0 [Poki#3]

02/05
	* Merged most of the 'plug' items into the main item_db. [Skotlex]
02/04
	* Added monster skills and drops to Plasma(all types), Orc baby, green iguana. Thanks [MasterOfMuppets]
	  to Tharis for providing the info.
02/02
	* Added Playtester's Odin and Kiel Mobs. Added Valkyrie and missing Honunies. [Poki#3]
02/01
	* Falcon Assault only does one hit now. [Skotlex]
01/31
	* Changed Lady Tany's skills a bit and removed the CANWALK from her mode [MasterOfMuppets]
	* Changed Vesper's mode to boss [MasterOfMuppets]
01/30
	* Revised the Thanatos Tower and Abyss Lakes monster's skills [MasterOfMuppets]
	* Added monster drops to the Thanatos Tower and Abyss lake monsters [MasterOfMuppets]
	* Fixed a lot of item names in item_db ;] [Poki#3]
	* Fixed Dark Priest Card [Komurka]
01/29
	* Updated drops of Vesper [MasterOfMuppets]
	* Changed the range of NPC_PETRIFYATTACK from 1 to 7 [MasterOfMuppets]
	* Added monster skills to the odin temple monsters [MasterOfMuppets]
	* Updated Vesper's and orc baby's monster skills [MasterOfMuppets]
	* Vesper will now spawn Apocalypses as slaves [MasterOfMuppets]
	* Lowered the drop rate of peridots by apocalypses, they are no longer minibosses. [MasterOfMuppets]
	* Updated some cards according to tests: Icreased a bit chance of Gift Box / OBB /OVB drops [Lupus]
		Raggler Card Combo(2x), Mimic Card(2x), Mystcase Card(8x)
	* Updated Mystcase Card: When Raggler Card Cmbo is set, it stops dropping Gift Boxes [Lupus]
		Because it starts dropping OVBs
	* Updated the stats, exp, jexp, hp, def, mdef, atk of all the Thanatos tower [MasterOfMuppets]
	  & Abyss lake monsters and Banana Lady Tanee using information from the official
	  kRO guide book. Thanks to saycyber21 for the scans. However FERUS and FERUS_ was missing =(
	* Updated Vesper a bit and changed some drops for the venatus [MasterOfMuppets]
01/28
	* Added two missing zeros to Pharaoh's database line, thanks to Persian69 [MasterOfMuppets]
	* Removed the looting modes of all the Lighthalzen monsters, why were [MasterOfMuppets]
	  they there anyway o_0
	* Changed Apocalips_H's jname to Vesper [MasterOfMuppets]
	- Switched two dimik drops with eachother
01/27
	* Updated Branches [Poki#3]
	* Fixed mob skill entries of AL_PNEUMA for Kiel. [Skotlex]
	* Updated EXP,JEXP and ATK of the Kiel dungeon monsters. [MasterOfMuppets]
	* Removed emperium from Pharaoh's drop list. [Kayla]
	* Added monster skills to the kiel dungeon monsters [MasterOfMuppets]
	* Changed SKEGGIOLD monster #1755 to SKEGGIOLD_ so you can separate them [MasterOfMuppets]

01/26
	* Changed Sunflower Pin's DEF from 0 do 1 (27/01 kRO Patch) [Poki#3]
	* Rearanged the new items in item_db. they should be chacked and placed in the right spot [Poki#3]
	* Cleared up some Custom Mobs and their skills. [Poki#3]
	* Changed Fire Poring's ID to 1239 and moved him to mob_db2. [Poki#3]
	* Changed some Mob Names, based on kRO. [Poki#3]
	* Ygnizem (Boss) now summons the G_ mobs. This should be done to all MvP's [Poki#3]
	* Changed Kavac's Range to 9 and Katrinn and Magaleta's Range to 1. [Poki#3]
	* Added the missing Bazerald drop to Pharaoh at 0.8% [MasterOfMuppets]
	* Changed ASC_BREAKER range from 9 to 5 cells, according to skill
	  description available in translation project [Foruken]

01/25
	* TK_RUN's cast time is now 1 sec (it was previously 5:4:3:2:1 ms, the
	  heck? someone refix it if it was supposed to be 5000:4000:3000:2000:1000)
	  [Skotlex]
	* Fixed a few item scripts (SC_ATKPOT -> SC_ATKPOTION) [Skotlex]
	* checked mob_skill_db.txt and mob_skill_db2.txt under DOS, removed strange ASCII chars
	 - hope it's fixed now [Komurka]

01/24
	* removed unneeded comma in produce_db.txt (someday I'm gonna write parser for eA scripts ~~) [Komurka]
	* card fix (>77 changed to >=77) thanks to Poki#3 [Komurka]

01/21
	* Added/removed some commas in mob_skill_db.txt [Komurka]
	- Added mob_skill_db2.txt
	* Fixed Chase Walk SP usage (40->10) thanks to poorboy [Komurka]
	* Fixed Crab Card's Combo Bonus: Wind Element -> Water, thanks to Irmin [Lupus]
	* Fixed 'Box of Heavy Rain' [Komurka]

01/20
	* Changed Double Strafe, Arrow Shower and Beast Strafing's delay to be
	  100ms on top of the normal attack delay. [Skotlex]
01/19
	* Updated db/const.txt to contain all SC_ effects as defined in status.h.
	  Thanks to Ancyker. [Skotlex]
	- Updated item_db.txt as a few SC_ have had their names changed.
	- It may be necessary to remove a few entries which make no sense to add,
	  but that can be done later.
01/16
	* Corrected Roundkick's knockback? [Vicious]
01/14
	* Mode change on some monsters [Vicious]
	* Updated Packet DB a bit [Vicious]
	* Updated the race, size, HP and modes of the Kiel monsters [MasterOfMuppets]
01/12
	* Fixed Baby Leopard by.. ppl. [Vicious]
	* Temp Odin monsters, by Azazel [Vicious]
	* Zipper Bear Card and Baby Leopard Card do not protect against stripping.
	  Done by DracoRPG [Vicious]
01/10
	* Fixed Mighty Staff to drain 2SP per attack rather than 2% [Skotlex]
01/09
	* Refixed GrandCross's script (bonus2->bonus) [Skotlex
01/08
	* Changed Grand Cross's script to drain 1 sp per hit rather than 1% [Skotlex]
	* Added the Kiel dungeon monsters, they have no stats yet though [MasterOfMuppets]
	* Changed the name of Chung E to Green Maiden [MasterOfMuppets]
	* Changed the name of Zherlthsh to Zealotus as in iRO, [MasterOfMuppets]
	  you should thank me for that ;D
	* Now Mammonite is usable by all weapons. [Skotlex]
01/07
	* Santa's Bag type 0->2, some potions type 2->0 [Lupus]
	* Item DB correction. [Vicious]
01/05
	* Fixed item updates by jsk225. [Vicious]
	* Item updates by Landarma. Need updates. [Vicious]
01/03
	* SL_KAUPE skill times info to skill_cast_db. [Skotlex]
	* Added SL_SWOO, SL_SKE, SL_SKA skill times information to skill_cast_db.
	  [Skotlex]
	* Set nk to 2 (splash damage) to Meteor Assault and Raging Thrust [Skotlex]
01/02
	* Added active guild skills to skill_castnodex_db [Skotlex]
01/01
	* Corrected char name filter? [Vicious]
12/31
	* Updated Absorb spirit spheres to be interruptible. [Skotlex]
	* Updated some mobskills for the einbroch monsters [MasterOfMuppets]
12/30
	* Removed some maps from mapflag that were not in either maps_athena nor map_index. [Vicious]
	* Updated the active guild skill cast times to 5 secs. Now their time2 is
	  used as cool-down (300000 -> 5 mins). Also made them interruptable. [Skotlex]
12/28
	* Added Kahai and Kaite spell times to skill_cast_db [Skotlex]
	* Removed Guilds Glory from guild skill tree [Komurka]
	* Moved some THQ items [Komurka]
	* Fixed duplicate the_sign [DracoRPG]
	* Fixed 2 name inconstitencies in item_db, thanks to Haplo [DracoRPG]
	* Added SC_Intravision to Sunshine Box and const list [DracoRPG]
	* Cleaned up even further, no conflict should occur now [DracoRPG]
12/27
	* Reverted Draco's cleanup [Komurka]
	* Small cleanup in item names [DracoRPG]
12/24
	* Changed Dokkaebi to Dokebi, by Harbin [Vicious]
	* Removed the item requirements for Twilight Pharmacy from
	  skill_require_db, since the requirements are acquired from produce_db.txt
	  [Skotlex]
	* Moved the sell price of the Tuxedo to the buy column (21500->43000) [Skotlex]
12/23
	* Corrected the Critical Race bonus of the Sabbath and cleaned up the
	  script of Morphicious' Hood. [Skotlex]
	* Added 1 sec cast time to Stone Curse [Komurka]
	* Added missing Amon Ra skills (he won't be so lame anymore) [Komurka]
	* Some fixes thx to Poki#3 [Komurka]
	* Desert Wolf Babe -> Baby Desert Wolf (iRO), thx to Poki#3 [Komurka]
	* Fixed the drops of RSX 0806, thanks to Poki#3 [MasterOfMuppets]
12/22
	* Added back the changebase script to Tuxedo. [Skotlex]
	* Changed the autospell chance of Lude card from 2% to 20%. [MasterOfMuppets]
	* Changed pest card to get its additional bonus if you have 77 int or [MasterOfMuppets]
	  higher instead of 77 and higher.
12/21
	* Item_DB update for Tuesday's kRO sakray update. Temp plugs. [Vicious]
	  - THQ Quest Items needs new item number!!!!

12/20
	* Set up some basic skill info for SKA/SKE/SWOO [Skotlex]
	* Moved item requirements for Aqua Benedicta to produce_db. [Skotlex]
	* A small fix to sucsamad [MasterOfMuppets]
	* Moved item requirements for Create Deadly Poison from skill_require_db to
	  produce_db [Skotlex]
12/19
	* Jewel sword will now drop jewels as intended, fixed a typo in sucsamad, [MasterOfMuppets]
	  thanks to Ishizu-chan.
	* Fixed 1613,Mighty Staff to give 10 str instead of 15. [Kayla]
12/18
	* Updated 1725,Wondering Bard's Bow applicable jobs and item bonus [Lupus]
12/17
	* Removed 10% Neutral Damage Resistance from Golden Gear [Komurka]
12/16
	* Added effects to 12112,Tropical_Sograt and 12113,Vermilion_the_Beach. Thanks to persian69 [Lupus]
	* Fixed Treasure Box 30 (Payon Castle 5) drops Mage Hat (the green one), where it should drop Magician Hat instead (the cylinder hat), thanks 2Ishuzu-chan
12/13
	* Modified a bit a few skills in skill_db to enable mobs to properly use
	  them. [Skotlex]
	* Fixed G_BAPHOMET_ to show up as "Baphomet" instead of "Baphomet Jr." [MasterOfMuppets]
12/12
	* Slotted Elemental Armors can be worn by anyone except novice. [Vicious]
	* Updated packet_db for /taekwon [Vicious]
	* Added SL_KAIZEL data to skill_cast_db.txt/skill_cast_nodex_db.txt [Skotlex]
	* Updated some KA skill info in skill_db, thanks to Reddozen. [Skotlex]
	* Fixed some items, such as Kafra Ring. Also updated accessaries.
	  Novices/Super Novices are not allowed to wear lots of accessaries. [Vicious]
	* Changed available jobs for some items. If it is wrong job...
	  Blame Item'o'luper since I used it. XD Doubt it is wrong though. [Vicious]
	* Changed Marionette's blowcount to 0 rather than 1... [Skotlex]
	* Added EOL before '//SG_FUSION#Union of the Sun, Moon and Stars#' in skill_tree.txt [Komurka]
	  Dunno what's wrong but ... before server hasn't been reading SG_FUSION skill at all -.-
12/11
	* Corrected again the mvp exp percent of Lighthalzen bosses (max is 10000
	  = 100%, why was it set to 700000? Made 7000 = 70%) [Skotlex]
	* TKs, SGs and SLs should now be able to use berserk potions. [MasterOfMuppets]
	* Added missing quantity value to Herb Tea With Grape Juice and Barbecue, thanks to Haplo [Lupus]
12/10
	* Removed V_poring from dead branch, it's a boss monster >.> [MasterOfMuppets]
	* Added slot to angel's kiss [Kayla]
	* Updated some items to allow soullinkers wear them, thanks to lunaus [MasterOfMuppets]
	  for all the work.
	* Fixed the aftercast delay of lex divina, thanks to marquis007. [MasterOfMuppets]
	* Updated the sell/buy price of some Homunculus related items [MasterOfMuppets]
12/09
	* Made Berserk Pitcher Potion-Pitcher-like. [Vicious]
	* Fixed 5125, Angel's Kiss. Should be novice only. Good eye Kholdstare! [Kayla]
	* Updated skill_db and skill_require_db info for Soul Linker skills, thanks
	  to Reddozen to provide the information. [Skotlex]
	* Updated skill_db SL skills pl to -2 where appropiate (-2 = take
	  status-change's element, but not weapon's one -> For Warm Wind) [Skotlex]
	* Added in skill data for SL_STIN/SL_STUN/SL_SMA [Skotlex]
	* Updated skill_require_db to enable songs/dances to be performed with
	  either whips/musical instruments. [Skotlex]
	* Added a bunch of Soul Linker skills to skill_castnodex_db.txt [Skotlex]
12/08
	* View ID changed for Luise's Santa's Hat from 208 to 20 (standard santa's hat) 
	  because 208 isn't supported yet
	* Corrected HT_POWER's number of hits (1->2) [Skotlex]
	* Corrected G_Mobster's element, thanks to Haplo [Skotlex]
	* Corrected Treasure Box element, now they are Neutral 1. [Skotlex]
	* Modified Beast Strafing's inf to be a self skill (since it's a combo, it
	  auto selects target) [Skotlex]
	* Updated Volet / Blue Box items lists [Lupus]
	* Fixed 5131,Close_Helmet jobs [Lupus]
	* Updated Warmth of the Sun / Warmth of the Moon / Warmth of the Star sp usage (20/20/10) [Komurka]
	* Implemented the script of a few items. Need clarification of a few others
	  that need implementing (see above comments). [Skotlex]
	* Updated the element of all treasure boxes to 21 (neutral 1) [Skotlex]
12/07
	* Updated inf2 to 2 (NPC skills) to the Abracadabra skills to prevent them
	  from displaying on the GM-all-skills menu. [Skotlex]
	* Updated SG_*_WARM skills to have range 1. [Skotlex]
	* Updated SG skills [Komurka]
12/06
	* Updated Berserk Pitcher in skill_require_db and Full Adrenaline Rush in
	  skill_db as per Reddozen's info. [Skotlex]
	* Made Garm's Claw shadow property [Harbin]
	* Added Thanatos to boss list [Harbin]
12/05
	* Fixed Succub+Incub Cards combo bonus -> +1 INT, thanks to Playtester [Lupus]
	* Fixed Wings of Eagle Script (bSpeed no longer exists, it should be
	  bSpeedRate) [Skotlex]
	* Fixed Meteor Storm (Was not requiring thunderstorm level 1) [Kayla]
12/04
	* Updated SL_SOULLINKER to have inf2 = 512 (cant' cast on self) [Skotlex]
12/02
	* Fixed Items according to Taekwon / Soul Linker / Star Gladiator [Lupus]
	* Changed the requirment of Vulture's Eye for Falcon Assault [MasterOfMuppets]
	  from 10 to 5, thanks to Haplo.
	* Fixed two typos in the mob_skill_db, thanks to Zubasa [MasterOfMuppets]
	* Casting time for soul link [Vicious]
	* Updated Marine Sphere skills in hopes to make it work correctly.
12/01
	* Changed TK_JUMPKICK's inf to self skill (to make it behave like extremity
	  fist) [Skotlex]
	* Set Ki Explosion's stun time as time2 in skill_cast_db. [Skotlex]
	* Lowered the MVP exp bonus from the bio lab dungeon bosses [MasterOfMuppets]
	- fixed a typo in Erend's exp
	* Corrected Venom Splasher's countdown duration. [Skotlex]
	* Implementation of Reddozen's Soul Linker's DB [Vicious]
11/30
	* Added the last drops of the Bio lab dungeon bosses [MasterOfMuppets]
	* Changed the attack range of Rafflesias to 7 [MasterOfMuppets]
	* Cleaned up the item_db, checked and added the items previously added and
	  commented by Viccious. [Skotlex]
	* Cleaned up the mob_db, corrected Lighthalzen Bosses MVP exp rate (the max
	  is 100%, why did you guys set 70000%? I changed that to 70%) [Skotlex]
	* Cleaned up job_db2.txt by removing the unnecessary trailing 0's. [Skotlex]
	* Fixed Antonio's defense (was 100, should be 99) [Kayla]
	* Fixed CTM card affecting after-cast delay instead of castrate [Vicious]
	* Fixed phen card affecting your after-cast delay instead of castrate, [MasterOfMuppets]
	  thanks to andz for pointing it out
	* Mob_db update, added some more G_mobs and Xmas_Orc, thanks to [MasterOfMuppets]
	  Muad_dib
	* Changed the range of NPC_CURSEATTACK and NPC_BLINDATTACK to 7, [MasterOfMuppets]
	  not sure whether it's supposed to be 7 or 9...
	* Updated elemental-resist potions in produce_db, thanks to jsk225 [Vicious]
	* Updated two-handed sword's weapon level in produce_db, thanks to piroJOKE. [Vicious]
11/29
	* Updated range of Phantasmic and Charge Arrow. [Skotlex]
	* Correct ViewID for Cyclops Eye, Updated to-do [Vicious]
	* Temp plug on new items. Someone check please. :D [Vicious]
	* Updated skill ranges so that the range specified is always the skill
	  range regardless of sign. Those with negative range are now used for the
	  battle_config option skillrange_from_weapon [Skotlex]
	* Updated Earth Elemental Convertor, thanks to reddozen [Vicious]
	* Added temp skills to Ayothaya MVP Lady Tany. [Lupus]
	  Also added her real slaves, thanks to MasterOfMuppets for info
	* Update produce_db.txt with cooking items coments, thanks to battousai90 [Lupus]
11/28
	* Lighthalzen MVP drop update done by MasterOfMuppets - Still need more work. [Vicious]
	* Reduced the range of Focused Arrow Strike by 10, that range should be
	  added via the Vulture skill. [Skotlex]
	* Updated skill ranges for Alchemist and Monk, thanks to Komurka. [Skotlex]
11/27
	* Added Sonic Blow to skill_castnodex so that the skill delay applies to
	  walking as well. [Skotlex]
	* Fixed Adrenaline2 and Berserk Pitcher's inf2 (were not set to spirit
	  skill) [Skotlex]
	* Reverted Ruwach's range to 2. [Skotlex]
	* Updated skill_db to make all ranged skills with range 8 become 9. Also
	  explained wtf is "maxcount" in skill_db. [Skotlex]
	* Fixed SA skills showing up. wtf is "maxcount" in skill_db??? [Vicious]
11/26
	* Updated effect boxes, according to RO Magazine [Vicious]
	* Updated Redemptio(no target, not dex-effected) [Vicious]
	* Updated blowcount on 2nd class quest skills [Vicious]
	* Updated sell prices on new items [Vicious]
	* Updated Great Axe to give +5 skillblown to Mammonite, and BonGun card +5
	  knockback to Bash [Skotlex]
	* Changed the range of Blitz Beat and Falcon Assault to 5 [Skotlex]
	  (Vulture Eye bonus is now applied to these skills)
11/25
	* Updated skill ranges of Rogue and Priest skills, thanks to Komurka
	  for the information. [Skotlex]
	* Updated skill ranges of Assassin and Crusader skills, thanks to Komurka
	  for the information. [Skotlex]
11/24
	* Updated skill ranges of Hunter and Knight skills, thanks to Komurka for
	  the packet information. [Skotlex]
11/22
	* Lowered the required ammount of oridecon needed to craft gladiuses by 4, [MasterOfMuppets]
	  thanks to andz for pointing it out.
	* Updated the Range of Provoke, Bowling Bash. Retouched the range of Spear
	  Stab to be +2 of current weapon rather than 4. [Skotlex]
	* Reupdated the mob skill db (some mobs had mode change-target which is
	  obsolete now) [Skotlex]
	* Merged in Komurka's latest update to the mob_skill_db.txt [Skotlex]
	* Updated Firewall's knockback to 2. [Skotlex]
	* Updated the job bonuses for a bunch of jobs, thanks to Haplo for going
	  through the kRO job bonus db. [Skotlex]
	* Fixed g_bloody_butterfly - 1526, thanks to Zoc for finding it [Kayla]
11/21
	* Changed a Coma effect. Thanks to Luna. [Nexon]
	* Updated joblevel stat bonuses of Soullinker and Star Gladiator, thanks to reddozen [MasterOfMuppets]
	* Massive Reddozen's update of mix-food recipes, also made all Cooking Sets Produce 11; [Lupus]
	* Made more food/Potion items type 0, fixed typo [Lupus]
	* Updated rafflesia's mode to make it change-target. [Skotlex]
11/20
	* Changed all mixed food type to 0 - FOOD (healing items) [Lupus]
	* Updated mob_db with the mode data from Kyoki and added mob entries 1521
	  1581. [Skotlex]
	* Added that bonus INT to Sage/Baby Sage on Job Level 38 [Skotlex]
	* Updated the monster DB to use all the new modes, all credits to Kyoki [MasterOfMuppets]
	* Adjusted drops/speed of the Einbroch monsters according to iRO [MasterOfMuppets]
	* Fixed Skeleton Manteau not having it's bonuses, thanks to reddozen & vicious_pucca [MasterOfMuppets]
	* Mjolnir can now only be used by merchant/swordsman classes [MasterOfMuppets]
11/18
	* Fixed Tao Gunka's Slaves -> Megaliths again [Lupus]
	* Fixed the Elemental Resist potions. [Skotlex]
11/17
	* Updated the mob skill database to use the new conditions angry and follow [MasterOfMuppets]
	  now it also changed the modes of monsters using emotes, all credits goes
	  to Komurka for the database work.
	* Added 5135,Cyclops_Eye with temp view ID [Lupus]
	* Changed the drop rate of house auger from lord of death to 0.8% [MasterOfMuppets]
	* Made Brooch of cursed fortune give +6 crit instead of +6% crit, [MasterOfMuppets]
	  thanks to vicious_pucca.
11/15
	* Replaced all Cards' bAtk bonuses with bBaseAtk, thanks to Vicious_Pucca for pointing it out [Lupus]
	* Taekwon skill updates [DracoRPG]
	* Fixed bonus of 2356,Holy_Cloth_of_Benefit, thx to vicious_pucca [Lupus]
	* Made Arrow Shower a land-based skill. [Skotlex]
	* Changed Moonlight Petal's range to 3, this is used for the sheltering
	  range of the skill. [Skotlex]
	* Updated 2356,Holy_Cloth_of_Benefit effect [Lupus]
11/14
	* Added sell price to pot and fixed the shop, thanks to vicious_pucca [MasterOfMuppets]
	* Updated some more food prices [MasterOfMuppets]
	- Also added a few of the shops selling food items, pot isn't sold atm though
	  I'll try to find it's price tomorrow.
	* Made Ruwach's element Holy as pointed out by k3dt. [Skotlex]
11/13
	* Updated some buy prices to food items, thanks to reddozen and vicious_pucca [MasterOfMuppets]
11/12
	* Fixed pumpkin hat. Halloween is over, so is the item's status boosts. [Nexon]
11/09
	* Fixed alice and zherlths(whatever)s taming items which were swaped [MasterOfMuppets]
	  thanks to Poki#3 for fixing it.  
	* Updated metalings drop rates, based on 100 killed metalings [MasterOfMuppets]
	  in iRO, I will kill more some other time to get more accurate results
	mob_db.txt update:  [Lupus]
	- Added Solid Trunks into Willow drops (fixed % rate of other trunks)
	- Removed ALL slaves cards drops from mini-boss drops
	- Removed Zorro Mask from goblins drops (added it into Wrapped Masks Box)
	- Updated some Goblins drops: Added Surprized Mask, Annoyed Mask, Gangsters Mask
	- all the rest masks you could get from Wrapped Masks Box
	* Updated the drops of the normal advanced class monsters in lighthalzen. [MasterOfMuppets]
	  Thanks to reddozen for fine tuning them
	* Made Maya Purple card to compound on headgear isntead of accessory, [MasterOfMuppets]
	  thanks to reddozen.
	- Added red chili to Kraben's monster drops.
	* Corrected Venom Knife's poison duration. [Skotlex]
	* Fixed dumpling child card dropping meat and giving an additional heal effect to meat
	  instead of candy, thanks to Komurka. [MasterOfMuppets]
	* Added a few monster drops related to cooking, thanks to reddozen and vicious_pucca [MasterOfMuppets]
	- Cook books 6~10, various ingredients for cooking and legendary cooking set.
	* Updated db/const.txt as per the new SC changes, thanks to Silent. [Skotlex]
11/08
	* Added cook books, lvl 1~5 to item_trade.txt to prevent exploits [MasterOfMuppets]
	* Updated job_db1.txt information for Taekwon/Star Gladiator and Soul
	  Linker. Thanks to... Reddozen, I think (data was taken from the Taekwon
	  Thread) [Skotlex]
	* Fixed Mobster Card bonus, thanks to tattatheng [Lupus]
11/07
	* Copied skills from Jakk to Christmas Jakk which was missing monster skills [MasterOfMuppets]
	* Added Metaling to mob_poring.txt [MasterOfMuppets]
	* Updated Mimic Card & Mystcase Card bonuses & Raggler Card [Combo bonus = OVB Drop] chances: [Lupus]
	  according to kRO formula (found by real tests): chance = 1 * (killed_mob_level/10) + 1
		PS I've killed tons of mobs and tested these cards [Lupus]
11/06
	* Fixed Marse and Rocker cards missing effects [MasterOfMuppets]
	* Updated item_db2.txt (new format), thanks to Justin84 [Lupus]
11/05
	* Changed some item names for preparing the sign quest [MasterOfMuppets]
	* Reverted Doppelganger's aspd value to 10, it is the correct value [MasterOfMuppets]
	  do not change it again.
	* Updated alot of weapons, thanks to reddozen and vicious_pucca [MasterOfMuppets]
11/04
	* Added the enchant effect to Cursed water [MasterOfMuppets]
	- Changed fake angels droprate of cursed water to 3% and added cursed water to
	  drop from violys at 10%
	* Added Angel wing to old blue boxes and old violet boxes [MasterOfMuppets]
11/03
	* Added slots to Garm's claw, hard covered book and wool cap, thanks to Gyunwoo23
	- Made shoes unequipable for novices and a small update for the skill DB.
	* Added Venom Knife requirement to the skill Venom Knife. Still won't check
	  for a Venom Knife to be equipped as arrow, but it will consume it at least.
	  [Skotlex]
	* Made Ki Translation usable on party-mates only (inf2&1024) [Skotlex]
	* Added empty bottles to the Elemental-resist potions recipes, thanks to reddozen [MasterOfMuppets]
10/31
	* More updates to new quest skills. [DracoRPG]
	* Added Elemental-resist Potions recipe, thanks to RockManEXE. [DracoRPG]
	* Added Embryo recipe, updated Homonculus skill tree. [DracoRPG]
	* Many updates about new quest skills. [DracoRPG]
	* Added missing ()s to Sage's Diary script. [DracoRPG]
10/30
	* Updated Venom Knife price -> 50z [Lupus]
	* Updated const.txt to reflect changes in source, thanks to Silent. [DracoRPG]
10/29
	* Added 2nd jobs quest skills to skill_tree. [DracoRPG]
	* Updated current food recipes and added more of them, at the moment
	  we'll keep all of them as itemlv 11. [DracoRPG]
10/28
	* Changed pole axe's dex bonus to 1, thanks to Maxsia for pointing it out [MasterOfMuppets]
	* Added apple drop to Ancient mimic to prevent steal exploiting, thanks to Irmin [MasterOfMuppets]
	* Added a few missing loot sell prices [MasterOfMuppets]
	* Thanx to Justin84, added misssing names of 2 skills in skill_tree.txt (HW_GANBANTEIN,HW_GRAVITATION) [Lupus]
10/27
	* Fixed the ammount of guild exp beeing given by Tribal Solidarity, credits goes to irmin [MasterOfMuppets]
	* Fixed Glittering Clothes' script. [Skotlex]
10/24
	* Added cursed water to be dropped by fake angel [MasterOfMuppets]
	* Reverted the inf 32 mode for Heaven's Drive and Arrow Shower [Skotlex]
	* Added Thanatos/Abyss MOb skills and changed some thanatos/abyss mob stats.
	  Thanks to Vicious_Pucca, Poki#3 and erKURITA. [Nexon]
	* Added inf 32 (can target traps) to Arrow Shower and Heaven's Drive. I
	  hope it doesn't messes up the client... but this is how it should be since
	  those skills CAN hit traps [Skotlex]
	* Fixed Poison Toad Card - Now equips on Accessory [Kayla]
	* Changed Investigate's range to 2. [Skotlex]
	* Added GrimTooth to skill_cast_db, time2 is the duration of the stop
	effect. [Skotlex]
10/23
	* Fixed the Weapon coma rate script of Lord of Death Card [Skotlex]
	* Fixed type in Moonlight Dagger script. [Skotlex]
	* Updated Mini Furnace to be produce 21 since that's the new index for
	   rough material refinements. [Skotlex]
	* Changed Moonlight dagger to be steal 3 sp per hit, not 3% [Skotlex]
	* Added healing effect to mixed foods, added produce effect to cooking sets [DracoRPG]
	* Updated Poring V's mode, thanks to Vicious Pucca. [Skotlex]
	* Updated castle_db.txt for correct work on /guildbreak [Lupus]
10/22
	* Changed Extremity Fist and Investigate's range to 3. [Skotlex]
	* Bumped Magaleta's heal levels to 9 and 10. [Skotlex]
10/19
	* Corrected a bunch of spells that should be "no overlap" in skill_unit_db.
	  [Skotlex]
	* Added Arrow Vulcan to skill_castnodex.txt to specify you shouldn't be
	  able to walk during the skill's delay. [Skotlex]
	* Gave normal Magaleta a stronger heal (Lv1 is kinda sad...), also made her
	  cast heal 10 on nearby friends when their HP drops below 60% [Skotlex]
	* Double bug fix: 4303,Whisper_Boss_Card [Lupus]
	- Fixed wrong Poki's card desc.. and found.. that we weren't adding 3% MaxHP... but +3
	* Added new item. Thanks to Landarma. And Fixed an old item stat. [Nexon]
	* Added a few more loot sell prices to the einbroch items [MasterOfMuppets] 
	* Corrected NPC_STOP, it should have at least range 1 (currently range 8
	  for lack of better info) and inf should be 1 (attack skill) not 4
	  (used on self). Also changed it's time to 10secs as 2sec is really too
	  low. [Skotlex]
	* Fixed constants for Karma and Manner in db/const.txt, thanks to orn. [Skotlex]
10/18
	* More translations for japanese comments, again thanks to sighel. [MasterOfMuppets]
	* Updated Thanatos' mode to include boss-type (Thanatos and several of the
	  mobs in the same dungeon are supposed to be looters? That's what I read
	  from here). [Skotlex]
	* Changed DEF of Guard to 3, according to Komurka and andz report
	  [Foruken]

10/17
	* Re-fixed Gravition's range to 8. [Skotlex]
	* Some mob skill updates regarding the advanced classes in Lighthalzen. [Skotlex]
	- Removed Sanctuary from Magaleta, removed advanced skills from mobs.
	- Raised Frost Diver's rate for Katrinn, reduced rate of Sight Trasher.
	* Updated the item_db to use BaseClass comparisons rather than those
	  callfunc("is class") functions. [Skotlex]
	* Updated some items so that Atk and Matk potions specify their duration in
	  ms rather than seconds (standarizes with all other sc_start items) [Skotlex]
	* Added translations for japanese comments, thanks to sighel. [MasterOfMuppets]
	  The following files had translations added:
	- abra_db.txt
	- attr_fix.txt
	- exp_guild.txt
	- skill_cast_db.txt
	- skill_db.txt
10/16
	* Updated some stats of Lady Tanee, thanks to gyunwoo23 [MasterOfMuppets]
10/15
	* Fixed 2 mobs having wrong stats. [Nexon]
10/14
	* Some changes to Katrinn's mobskills as pointed out by Viccious and
	  Lonyaph, also changed her mode to aggressive + assist. [Skotlex]
	* Updated Gravitation's range to 8. [Skotlex]
	* Corrected mob skill name for Lighthalzen bosses (do not call
	  NPC_CALLSLAVE 'NPC_SUMMONSLAVE' they are different things) [Skotlex]
	* Changed Envenom's element to poison... [Skotlex]
	* Updated Envenom: Range 3, number of hits 1. [Skotlex]
10/13
	* Updated the monster skills of the lighthalzen dungeon bosses [MasterOfMuppets]
	* Updated monsters drops [Lupus]
	-Evil Snake Lord <- Hellfire,
	-Inc.Samurai <- Azoth,
	- Garm <- MVP drop% fix
	* Lowered ancient mimic's droprate of bloody branch to 0.01% to prevent exploits [MasterOfMuppets]
	- Fixed Elder's drops a bit
	* Updated Call Partner's time to 20 secs (after which time the partner is
	  recalled), also set the skill's unit target to 'noone'. [Skotlex]
	* Fixed Lude card casting endure on enemies instead of self [MasterOfMuppets]
10/12
	* Updated defense, mode, element, speed and attack speed of some Lighthalzen mobs,
	  per info provided ny Viccious. [Skotlex]
	* Updated a bit the Lighthalzen mob stats using data provided by Viccious
	  Pucca [Skotlex]
	* Updated item_db: Added books to equipable weapons of Star Gladiator,
	  added Staffs as equipables for Soul Linker, and added to SG the armor they
	  can wear (boots, manteau, spiky headband and Goat helm, I think). Also made
	  the Vesper Core accesories equippable only by advanced classes. [Skotlex]
	* Added Reverse Orcish to skill_cast_db.txt, upkeep time is the orc curse
	  duration. Set to 20 mins for now. [Skotlex]
	* Fixed typo AllStat -> Allstats,  thanx 2L0wFlea_sq [Lupus]
	* Fixed: LunarBow[1]->[2], Coif Req/Jobs, Cinquedia Req/Equip Lvl thanx 2 persian69 [Lupus]
	* Corrected g_katrinn and g_shecil's element. [Skotlex]
10/11
	* Fixed Zherlthsh + Injustice Combo bonus (was giving that bonus 2 times... +1 more bug V_V ) [Lupus]
	- Checked all combo cards bonuses: There's no similiar bug! ^_-
	* Updated Ancient Mummy card effect, thanks to irmin for info [Lupus]
	* Changed Envenom's range to 2. [Skotlex]
	* Fixed Awakening Potion's usable jobs, I think. [Skotlex]
	* Updated the whole item_db to allow TaekWon, Star Gladiator and Soul
	  Linker to use items. [Skotlex]
	- Weapons were not touched.
	- The following job_codes were updated to include all 3 new classes:
	- All Jobs but Novice (2088958 -> 119529470)
	- All Jobs but novice+acolyte class (2055918 -> 119496430)
	- All Jobs (10477567 -> 127918079)
	- All Jobs but acolyte class (10444527 -> 127885039)
	- Also added them to awakening potion's job listing.
	- Lupus's previous updated had to be reverted so this replacement worked :P
	- Someone tell me which weapons these classes could use so I can update that too?
	* Fixed some item classes restrictions, fixed Concentration Potion, Awakening Potion, thanks to andz [Lupus]
	- there's one prob left: Cap and Cap_ headgears
	* Added new items [Landarma]
10/10
	* Enabled Poring V and commented out Fire Poring in the mob db. [Skotlex]
	* Added Poring V to the mob db, altough it is currently commented as it
	  collides with Fire Poring's ID. [Skotlex]
	* Corrected ArchAngeling card (needing 78 instead of 77 luk), Maya Card
	  (magic damage return 30->50%) and Grand Cross (HP Drain -> SP Drain)
	  [Skotlex]
	* Changed Mirror Shield's mdef to 5. [Skotlex]
	* Changed GrandCross's duration to 900ms (changes nothing as the three hits
	  still happen at 0, 400 and 800ms) [Skotlex]
10/09
	* Fixed a few mob skills and mob stats. Thanks to MasterOfMuppets. [Nexon]
	* Fixed a few items having wrong stats. Thanks to Maud Dib. [Nexon]
10/08
	* Added missing ; at Bunny Slippers in item_db.txt. [Mass Zero]
	* Made a small change to Item_db. [Nexon]
	* Added Magic Scrolls drops, updated walkspeed of Kaho thanks to  MasterOfMuppets [Lupus]
10/07
	* Fixed a small error in Rawrel's stats. [Nexon]
	* Added a small change to Whikebain's drops. [Nexon]
	* Updated Mob drops and Lighthalzen exp gain. Thanks to MasterOfMuppets and Viccious_Pucca [Nexon]
	* Updated Item sell/buy price. [Nexon]
	* Added a new skill to a mob. [Nexon]
10/06
	* Updated the HP level of the normal second class mobs (as per info
	  provided through Viccious Pucca) [Skotlex]
	* Added "The Sign" to item_trade.txt (as per info provided through
	  Viccious), also made it add +5% atk. [Skotlex]
	* Corrected the item_trade.txt restrictions for Novice Potion (why you
	  couldn't place it in your cart, or sell it? o.O) [Skotlex]
	* Corrected G_Magaleta's elemental mode. [Skotlex]
	* Corrected Envenom's max skill level (7->10), and changed the attribute to
	  poison. [Skotlex]
	* Corrected Bloody Butterfly card so it doesn't makes spells
	  uninterruptable in WoE. [Skotlex]
	* Added skill data for various skills (second class quest skills and
	  several Tae-Kwon related jobs. All the info was acquired by Draco from
	  jA's information. [Skotlex]
	* Made Spiral Pierce non-interruptable. [Skotlex]
	* Implemented 4198,Maya_Purple_Card effect. Thanks to jA team! [Lupus]
	- There's a special Intravision timer also. So that "Box to see hidden mobs" could be implemented now
10/05
	* Updated new items from kRO. Thanks to Landarma. [Nexon]
	* Fixed 2 Mobs, thanks to MasterOfMuppets [Nexon]
	* Added back Grandcross's 20% HP cost. [Skotlex]
	* Updated Grandcross's Casting time, and Blast Mine's duration. [Skotlex]
	* Updated meltdown's cast time to 0.5 at lv1, 1.0 secs at lv 10. Still
	  unconfirmed, but it's much more likely than the alleged 0.05~0.10secs.
	  [Skotlex]
	* Updated #2415,Bunny_Slippers. Thanx to noobs [Lupus]
10/04
	* Fixed some items with wrong weight/ stats. Thanks to mrmagoo [Nexon]
	* Changed Savage Babe Card and Savage Babe to Savage Bebe Card and Savage Bebe. [Nexon]
	* Removed the flags from Spider Web, now it can be stacked and placed
	  underneath characters. [Skotlex]
10/03
	* Updated Thanatos/Abyss monster info. Still in need of stats. [Nexon]
	* Updated the skill info on NPC_DARKCROSS [Skotlex]
	* Updated Lighthalzen mobs and mob skills as per Master of Muppets provided
	  info. [Skotlex]
	* Updated Ygnizem's slaves to be the other 5 first classes. [Skotlex]
10/02
	* PVP drop item - 7420 Skull... costs 0z. Replaced exploitable bone drop with skull drop [Lupus]
	* Fixed effect of #5092,Coif (aka Blue Coif) (removed +100 SP) and set its sell price (it's sold in Pront.church) [Lupus]
10/01
	* Fixed Effect of #2614,Eye of Dullahan (100% Poison Protection) according to some FAQ and tests [Lupus]
	- Don't add it into the item desc (that should remain as '....')
	* Added Orc Baby to Orcs in mob_race2_db [DracoRPG]
09/30
	* Changed Acid Terror's bleed time to 120 secs (seems to be the official
	  value) [Skotlex]
	* Updated Meteor Assaults upkeep time2. Lv1 is the duration of blind, Lv2
	  is the duration of stun, and Lv3 is the duration of bleeding. However, the
	  true duration for these stats is as of yet unknown. [Skotlex]
09/27
	* Changed lord of vermillion times to make it hit four times at times 0,
	  1250ms, 2500ms and 3750ms. [Skotlex]
	* Fixed Thanatos Mobs. Thanks to andz [Nexon]
	* Added missing bonus +5 Int to Excalibur [Lupus]
	* Fixed drop rate of Emperium: [Lupus]
		Pharaoh 5.5% (there was a typo), Abyss Knight 0.3%, Zherlthsh 0.15%, Gryphon 0.25%
09/26
	* Restored sell prices of Feather&Sticky Webfoot, thx to Dr.Evil for note [Lupus]
	* Updated some Lighthalzen mobs drops and skills, thanks to MasterOfMuppets
	* Updated Einbroch mobs drops, thanks to MasterOfMuppets
	* Fixed Tengu Drops (removed 2nd Mr.Smile) [Lupus]
09/23
	* Updated Lighthalzen mobs.[Nexon]
	- Some still need to be implemented.
	* Updated const.txt with new emotes.[Nexon]
	- Skotlex told me to.
09/22
	* Updated the item_db file, now the sell column is used. Those items that
	  had buy price 20 and sell price blank now have buy price blanka nd sell
	  price sell. Likewise, all etc items got their buy price removed and placed
	  in the sell price column (price halved, obviously) [Skotlex]
	- I recommend following this new recommendation unless someone comes up
	  with a better idea (well someone had to use the sell column eventually :P)
	* Corrected 1562#Textbook on Battlefield: Chance of Bless = 1% [Lupus]
	- Fixed Banana Hat: Now 3% chance of Provoke lvl3
	- Bow Thimble doesn't work as it should (core issue, to be revised soon)
	* Added 2 new items (thanks to Landarma) [Lupus]
	* According to Einbroch updates, changed Emperium drops: [Lupus]
		(Mob name, Mob Lvl, Chance%) '-' = Removed drop, '+' = added drop
		Angelring, 20 0.4		Baphomet, 81 5%		Ghostring, 18 0.3%
		Orc Zombie, 24 0.01		Requiem, 35 0.01	Shining Plant, 1 0.01
		+ Abyss Knight, 79 3%	+ Gryphon, 72 2%	+ Maya, 81 4%
		+ Orc Lord, 74 2.5%		+ Osiris, 78, 3%		+ Pharaoh, 93, 5.5%
		+ Zherlthsh. 63, 1%
		- Golden Thief Bug		- Mimic				- Werewolf
	* Fixed drops of Abyss Knight (2 kinds of Broad Swords) [Lupus]
	* Added some notes to Lighthalzen Monsters. Should be revised, thanks to persian69 for the info [Lupus]
09/21
	* Fixed a few cards having wrong setting. Doppelganger, Mobster, Zherlthsh Cards and others all work correctly now.[Nexon]
	* Fixed weapons not having correct attributes and status boosters.[Nexon]
	* Added a few new items, thanks to Landarma.[Nexon]
	* Added Mr.Smile to 1405#Tengu drops. Also!!! Removed Mr.Smile Quest! [Lupus]
	* Added Assassin Mask into Inc.Samurai drops (0.4%) [Lupus]
09/19
	* Thanks to MasterOfMuppets: Fixed drop rate of minerals [Lupus]
	- Fixed some Niflheim mobs range and speed, re-fixed Increase Soil walk speed, Kind of Beetle mode.
	* Thanx to mrmagoo: item #1356, fixed weight. #5126 delayrate change applies to Advanced Classes only [Lupus]
	- It could be also interpreted as "For Advanced Classes Magic Scills". But then we'd have to add a special flag....
	* Removed Whisper Card drop from Giant Whisper. Only mini-bosses could carry 2 cards. Now Giant Whisper has its own card [Lupus]
	- Why Giant Whisper's size - SMALL ? Any info?
	* Thx2MasterOfMuppets: Fixed some items prices [Lupus]
	- Sorry, Skotlex, we can't merge OpenOffice Sheets, let's switch them in some TXT format for SVN merging [Lupus]
09/18
	* produce_db.txt corrected Halberd / Damascus ingredients [Lupus]
	  according to 13th Sept kRO desc, thanks to andz
	* Corrected range of Hunter's Detect skill
	* Removed Apple-Plugs (512,0%) drops from the monsters [Lupus]
	* Updated Leaf Cat's walkspeed (now faster, thx2 MasterOfMuppets) [Lupus]
09/16
	* Corrected the duration of the resist potions. [Skotlex]
	* Added constants to const.txt to identify Elements and Race. [Skotlex]
		^^^^ they are pretty fine [Lupus]
	* Added effects for Resist Element items. Temporal duration: 3 mins. [Skotlex]
09/15
	* Removed inf2 128 (trap) from Quagmire, Sphere Mine and Demonstration as
	  they are not really traps (all ground based skills with trap mode can be
	  targetted) [Skotlex]
	* Updated WE_BABY to cost 10% of Baby's max SP (thanks again to Viccious
	  Pucca). [Skotlex]
	* Updated Venom Knife's stats, has the stats of an arrow now and is
	  equippable only by Assassin. It probably won't work right yet as
	  eA will demand the sin to use a bow. [Skotlex]
	* Corrected the base exp requirement for level 99 advanced classes (it's
	  supposed to be 343210000 exp), thanks to Viccious Pucca. [Skotlex]
	* Changed uptime2 of dance/song skills, these are now used to determine how
	  long the effect lasts after you've walked out of the skill's area of
	  effect, so they were all set to 20 secs. [Skotlex]
	* Updated 1617,Wand_of_Survival and 1619,Wand_of_Survival__ to give 2 instead of 3 (to DEX and INT) [Lupus]
09/13
	* Updated mobs stats (mostly Einbroch) thanks to MasterOfMuppets,Viccious Pucca [Lupus]
	* Multiplied all drain rates x10 (100% leech rate is now 1000) [Skotlex]
	* Immaterial sword now drains 30% of target's sp on a 0.1% rate (info from
	  Viccious Pucca). [Skotlex]
	* Updated bDrainValue bonuses to be bonus2/bonus3 (they don't take a "rate"
	  parameter anymore) [Skotlex]
	* Multiplied all autospell rates x10 (100% casting rate is now 1000) [Skotlex]
	* Weapons that had autospell rates of 25% have been reduced to 9% (seems to
	  be that way from the data gathered by Viccious) [Skotlex]
	* Added Range of Devotion/Sacrifice to skill_db, likewise, added the
	  effect's duration to skill_cast_db [Skotlex]
	* Added new monsters with poring stats, thanks to Freya [Lupus]
	* Added skill_unit flag 0x80 (UF_DUALMODE) for skills that trigger both
	  interval effects and onout/onplace events (by default, if a skill has a
	  interval such as Apple of Idun, then the routines when you step in/out of
	  the skill cells won't be called). Applied flag to Apple of Idun and
	  Gravitation. [Skotlex]
	* Changed Basilica's interval to -1. [Skotlex]
	* Added new items, thanks to Landarma [Lupus]
09/12
	* Corrected job_db1 hp-factor for Advanced Classes. [Skotlex]
	* Updated drops of Myst,Bloody Butterfly,Disguise,Goblin Leader (All thanks to MasterOfMuppets) [Lupus]
	- Updated items prices
	- Lighthalzen monsters call up to 5 slaves now, added their drops with temp rates (thanks to Azazel)
09/11
	* Fixed target of NPC_KEEPING skills. [Skotlex]
	* Changed Wand of Hermod's target to ally (party+guildmates) [Skotlex]
	* Added/Updated some items sell prices (All thanks to MasterOfMuppets) [Lupus]
	- Added missing slot to Coif_(ex Nuns Hat). Dark Lord now has it as a MVP drop 10%
	- 1072#KAHO drops burning hearts instead of stone hearts
	- Added common weapons of Bard/Dancer into OBB/OVVB
	* Added temp mob skills to all Lighthalzen mobs by Azazel [Lupus]
	* Increased movement speed of 1516,INCREASE_SOIL (checked it on the official servers) [MasterOfMuppets]
	* Drooping Cat now can be upgradeable (proved by some official servers) [Lupus]
	* Temporary made Lighthalzen (Juperos) mobs aggressive to prevent abuse. Till we get their real stats/skills [Lupus]
	* Fixed some monsters names to Aegis compatible format (should be useful for some spawn/ mobs skills convertors) [Lupus]
09/10
	* 2647,Nile_Rose now gives only +10 MaxHP (each event item loses its bonuses after awhile) [Lupus]
	* Added missing official prices to Louyang (mostly) items. Thanks to MasterOfMuppets [Lupus]
09/09
	* Added some of the missing mob skills that Komurka claims don't work on eA
	  yet. These will be tested and debugged at a later date. [Skotlex]
	* Small fix to the self-destruction skill of Marine Sphere as pointed out
	  by Komurka [Skotlex]
	* Fixed the alchemist related skills for marine sphere from rate 10% to
	  rate 100% [Skotlex]
09/08
	* Fixed some songs/dances's target (changed it from "all  " to "all") [Skotlex]
	* Readded the mob skills NPC_RANDOMMOVE and NPC_SELFDESTRUCTION to the
	  Marine Sphere (which were lost on Komurka's last update to mob_skill_db)
	  [Skotlex]
	* Since the Lighthalzen mobs don't have accurate stats, but accurate
	  HP/Atk/Exp, their stats have been bumped to 75 all (and luk 99) to avoid
	  abusers until their correct stats can be figured out. [Skotlex]
	* Updated/corrected the header information of skill_db.txt
	* Reverted LoV and Storm Gust's range to 6 and 5 respectively as
	  empirically tested by Ishizu [Skotlex]
09/07
	* Added new flags to ground units: UF_NOPC, UF_NOMOB, adjusted accordingly
	  on song/dances that affect everyone except mobs. [Skotlex]
09/06
	* Changed in the skill_tree the mysterious value 4 that somehow slipped in
	  as a skillrequirement for WE_CALLBABY. [Skotlex]
	* Changed Magic Crasher and Pressure's nk to 0 [Skotlex]
	  NOTE: nk=2 is for splash damage skills and 1 for "no damage" skills. This
	  info is never sent to the client, so there's no reason we should deviate
	  from that convention.
	* Added effects to new items: [Lupus]
	  - #12107,Wrapped Mask: You get 1 random mask (Mr.Smile,Mr.Scream,Phantom Opera Mask,all set of Expressionless,Surprised,etc masks)
	  - #12106,Jewel Case: You get 1 random accessory (Ring,Clip,etc. Rogue's Treasure, Bow Timble, Fashion Hipsack. Excluding some overpowered and quests accessories)
	  - TEMP PLUG: #12111 Warpped Food: (You get 1 meat, 1 raw fish, 1 fruit)
	* Added new items, thanks to Landarma [Lupus]
09/04
	* Changed B.Something Sacramenti's range from 1 to 9. [Skotlex]
	  (9 is what I have in the descriptions, and it can't be more wrong than 1
	  anyway)
	* Added missing +60 SP bonus to the Quve+Lude Card Combo [Lupus]
	* Changed Rich Man Kim's target from party to enemy. [Skotlex]
	  (it is now a SC that inflicts the mob, and when it dies applies on the
	  exp it gives)
09/02
	* Changed Firewall's knockback to 1. [Skotlex]
09/01
	* Fixed Taekwon's Fighting Chant max level, thanks to  [DracoRPG]
	* Added specific status changes for cooked foods' stats bonuses [DracoRPG]
08/31
	* Reverted traps to target "enemy", hardcoded to become "all" on gvg
	  grounds. [Skotlex]
	* Changed all traps to have target "all" (data from Viccious Pucca) [Skotlex]
	* Updated SP costs and durations of Assumptio (thanks to Viccious Pucca)
	  [Skotlex]
	* Updated range of Lord of Vermillion (changed to 5->11x11) and Storm Gust
	  (changed to 4->9x9) [Skotlex]
08/30
	* Added item groups for Taming Items, Quivers and Scrolls [Skotlex]
	* Implemented Taming_Item_Giftset, Bundle_of_Spells, First_Aid_Box [Skotlex]
	* 'Fixed' Cramp Card. Gives +10z per mob level on a 3% success chance. [Skotlex]
	* Added Violin[4] #1902 into OVB, into Violy Drops (0.1%). Probably some of new drops
		have chance more than 0.01%, too [Lupus]
	* Fixed some items names spelling. Thx2Erpirata [Lupus]
	* Added new items thx 2Landarma. I've made Venom Knife as a ETC item atm. [Lupus]
08/28
	* Added job bonuses for Taekwon, thanks to RockmanEXE [DracoRPG]
	* Changed appearance of some DBs, now they have more friendly (and ENGLISH) headers, this
	  was initiated by Vedurin whose redesigned and updated skill_cast_db, produce_db and
	  create_arrow_db are also included in this change, thanks to him ^^ [DracoRPG]
	* Changed Acid Demonstration's element from fire to neutral. [Skotlex]
08/27
	* Cleaned up the item_db.txt file, moved item comments to this file [Skotlex]
	* Updated const.txt with correct Taekwon-class job IDs [DracoRPG]
08/25
	* Updated slots in Sage's diary to 2. [Skotlex]
	* Updated Mobs drops: Dancing Dragon, Civil Servant, Tao Gunka, Kraben by
	  MasterOfMuppets [Lupus]
	* Changed Acid Demonstration from a "weapon" type skill to "misc". [Skotlex]
	* Updated Demonstration to not stack and not be placeable near enemies. [Skotlex]
	* Updated max number of spider webs to 3. [Skotlex]
	* Updated Full Strip's casting time to 0. [Skotlex]
08/24
	* Updated Shield Chain's cool-down to 1 sec. [Skotlex]
	* Updated summon spirit sphere's casting time to 1sec (all over the place
	it says Zen's casting is twice SSS, and everywhere we also read that Zen's
	cast is 2 secs, so add both together...) [Skotlex]
08/23
	* Fixed Sacrificial Ritual requiring Endure LV5 instead of LV1 [Skotlex]
	* Updated the mob skill database. When specifying Metamorphosis/Transformation, 
	  use the skilllv to indicate how many alternatives there are (for example, an
	  ant egg would use metamorphosis level 3 as it can convert to Andre, Deniro or 
	  Pierre) [Skotlex]
	* Set the permilliage (use rate) of Metamorphosis to 50 (0.5%) on all mobs
	  that had it specified at 0.
	* Updated the skill delay from Breaker (thanks to Vicious Pucca) [Skotlex]
	* Lowered Elder Willow's trunk drop rate from 35% to 3.5% [Skotlex]
	* Changed Ghoul's race from 11 (unknown?) to 1 (undead). [Skotlex]
	* Updated Deviling's mode to make him count as a boss/miniboss. [Skotlex]
	* Corrected Spring Rabbit card improving candy-type item healing rates [Skotlex]
	  (should be meat type since that's what it makes mobs drop)
	* Updated buy/sell prices of some Louyang Drops (thanks to Ishizu) [Skotlex]
08/22
	* Reverted magnum break... it is supposed to be fire element :/ [Skotlex]
	* Updated casting times and delays of Soul Strike & Napalm Beat, range of
	  Ruwach/Sight (thanks to Vicious Pucca) [Skotlex]
	* Updated Magnum Break's element (takes weapon), the fire part is hardcoded. [Skotlex]
	* Removed the temp plug from Cramp Card as it seems it's way too powerful [DracoRPG]
	* Updated skill_tree,job_db1 and job_db2 for new system and Taekwon support [DracoRPG]
	* Moved MVPs from mob_branch.txt to mob_boss.txt (those that had yet to be
	  moved, that is) [Skotlex]
	* Added target flag "ally" to skill_unit_db [Skotlex]
	* Added 0.5 sec delay to Aid Potion, 1 sec casting time & delay to Aid Condensed Potion
	  (from kRO website, thanks to reddozen and vicious_pucca) [DracoRPG]
	* Removed UF_NOFOOTSET from Ice Wall (I have several sources for that) [DracoRPG]
	* Removed slot from nile_rose (All stats +5, event version), added slot to nile_rose_
	  (MaxHP +10, permanent version) [DracoRPG]
	* Added complete (except TK_MISSION) Taekwon skill tree & skill DBs entries [DracoRPG]
08/19
	* Fixed Double Attack's pl not being -1 (take weapon's element) [Skotlex]
08/18
	* Changed sell price of unknown test tube to 0 as it can be abused for a
	  zeny exploit (thanks to Kayla for pointing it out) [Skotlex]
	* Changes to Immaterial Sword (drain 1SP, not 1%SP per attack)
	* Fixed Battleground Textbook, Greatest General Card to cast on yourself
	  (again) [Skotlex]
	* Changed Emperium to Holy 1 / Angel [DracoRPG]
	* Changed (again!) Gloria Domini to 'misc' [DracoRPG]
	* Changed pl of all 'weapon' attack skills that take weapon's element from '0' to '-1',
	  according to the new system. Also changed type of various skills. [DracoRPG]
	* Bah, refixed Owl Duke Card/Enchanted Peach Tree. [Skotlex]
	  The last value of bonus4 bAutoSpell defines target (0 = self, 1 = enemy)
	* Added new items, thanks to Landarma [Lupus
08/17
	* Changed back Soul Collect/Zen's casting time to 2 sec... [Skotlex]
	* Changed Gloria Domini & Martyr's Reckogning from 'magic' to 'weapon', Battle Chant from
	  'magic' to 'misc' [DracoRPG]
	* Added IDs of Taekwon and its 2nd jobs to const.txt [DracoRPG]
	* Added and fixed effects of some boxes [DracoRPG]
	* Changed Heirozoist Card to have same chance as Azoth (3%), seems better [DracoRPG]
	* Dropped Kobold Archer's Hat drop to 0.01% (it was left to 1% by an accident) [Lupus]
08/16
	* Reverted Magnum Break to be self-centered... [Skotlex]
	* Corrected Teleport cost (thanks to k3dt) [Skotlex]
	* Updated Heirozoist card to have a 0.1% chance of converting mob class
	  instead of 0.01% [Skotlex]
08/15
	* Changed Magnum break's inf to 1 (normal targetted skill) [Skotlex]
	* Made Kraben agressive and much faster [Skotlex]
	  (info from Ishizu)
	* Updated some Ayothaya loot prices [Skotlex]
	  (thanks to Ishizu)
	* Corrected the uptime for SA_AUTOSPELL [Skotlex]
	  (thanks to HarmonySong)
08/11
	* Updated refine items for Damascus (thanks to Ishizu) [Skotlex]
	* Updated Zen's (Hyper Spirit Sphere) casting time to 3 secs as per the kro
	  skilldesctable.txt file. [Skotlex]
	* Updated Guardians to be BOSS types (their mode was changed to 165 from 133) [Skotlex]
	  Report any problems from this (just make sure you have some sort of
	  source to rely on).
08/09
	* Updated Enchanted Peach Tree, Owl Duke and Greatest General
	  to have their auto-spell casted on themselves rather than the enemy [Skotlex]
	  (I don't have the data at hand, so if any of these should actually cast
	  on the enemy, please correct it).
	* Updated Battlefield Textbook to cast Bless on yourself, not the enemy. [Skotlex]
	* Added new mobs, thanks to Death Dealer [Lupus]
	* Added new items, thanx to Landarma [Lupus]
	* Fixed Lunar Bow bonus [Lupus]
	* Added effect to Novice Hood [Lupus]
	* Fixed Freezer Card combo (was doing Weapon Perfection on the enemy) [Skotlex]
08/05
	* Fixed price of Ghost Doll (from Freya)
	* Reverted Earth Deleter Card to 10SP [Lupus]
	  HINT! HINT! HINT!
	  How to check false items/cards bonuses reports? Just open latest korean idnum2itemdesctable.txt
	  And check numbers in the item desc 8)))
	* Updated Fireball cast times and delay [Skotlex]
	* Updated SP cost of Stone Curae [Skotlex]
08/04
	* Updated mobs 1006 (Thief Bug Larva), 1393 (G Mummy), 1394 (G Zombie), and
	  1407 (Dokebi) to be Level 1 and have max HP 1, otherwise the new mob db
	  loading system will complain about them. [Skotlex]
	* Added new mobs: Green Iguana, Orc Baby, updated and added some items. Thanks to Landarma [Lupus]
	  Thanks to Erpirata for pointing me some tiny typos.
08/02
	* Reduced Soul Burn's after cast to 0 (the 15sec delay for reusing the
	  skill is already hardcoded) [Skotlex]
07/31
	* Updated throw stone's range to 7, delay 100ms [Skotlex]
	* Updated Steel Body to require 50% sp [Skotlex]
07/29
	* Removed Poison Bottle (item lv256) from produce_db [DracoRPG]
	* Changed NPC_CURSEATTACK and NPC_ENERGYDRAIN to Dark attribute [DracoRPG]
	* Changed mobs with NPC_STOP to cast it on target [DracoRPG]
	* Changed Cart Termination to use "cartboost" state in skill_require_db [DracoRPG]
	* Modified Hip Shaker/Ugly Dance's unit data to make it work every 3 secs [Skotlex]
	* Okay, reduced the Call Partner's uptime from 10 secs to 0. [Skotlex]
	* Changed Soul Collect/Summon Spirit Sphere type from weapon to none. [Skotlex]
07/28
	* Added baby skills delays, added them into nocastdex.txt [Lupus]
	* Updated the Wedding skills: They cost 10% HP/SP and grand 10% HP/SP of
	  their partner's sp. Also the recall partner skill has a casttime of 20secs
	  not diminishable by dex. [Skotlex]
	* Massive skills update (from now updated kRO website) [DracoRPG]
	  - Blitz Beat : casting time changed to 1.5 sec
	  - Falcon Assault : casting time / after-cast delay changed to 1 sec / 3 sec
	  - Focused Arrow Strike : after-cast delay changed to 1.5 sec
	  - Wind Walker : after-cast delay changed to 2 sec, casting time can be reduced by DEX
	  - Meteor Assault : casting time / after-cast delay changed to 0.5 sec / 0.5 sec
	  - Gloria Domini : after-cast delay changed to 2~4 sec
	* Fixed "Greatest General Card" now casts the correct skill level [Fredzilla]
07/26
	* Changed the inf2 of Marionette Control to 512 + 1024 (can't cast on self
	  + party only) [Skotlex]
	* Changed the inf2 of Providence/Resistant Souls to 512 (can't cast on self) [Skotlex]
	* Changed the inf2 of Devotion/Sacrifice to 3524 (512 -can't cast on self- 
	  + 1024+2048 (party/guild only)) [Skotlex]
	* Reverted Palm Strike's cast-time to 0 (the skill's code has been updated
	  so it is not needed now) [Skotlex]
	* Fixed skill-tree requirements of Soul Burn and Mind Breaker as described
	  by Ishizu. [Skotlex]
	* Fixed drop rates of all god-equipment-quest items from Treasure Boxes, they were 10x
	  too high!! (lowered from '80'=0.8% to '8'=0.08%) [DracoRPG]
	* Changed Weapon Repair to targetted with range 2 [DracoRPG]
	* Made real effect of Textbook on Battlefield. Fixed skill ID.[Lupus]
	* New Items. Thanx to Landarma & Erpirata [Lupus]
07/25
	* New items. Thanx to Landarma [Lupus]
	* Few item names have been fixed. Added drops to Evil Snake Lord, Injustice.
	  thanks to MasterOfMuppets [Lupus]
07/24
	* Changed the endow spell's inf2 to 3072 (party only/guild only) [Skotlex]
07/20
	* Changed Bow Thimble damage bonus to 3% (trustworthy-looking ragnainfo source) [DracoRPG]
	* Removed job_db2-2 and rewritten + UPDATED job_db2 for the new system [DracoRPG]
07/18
	* A silly me, Palm Strike's delay before taking effect is 1s, not 1.5 ^^' [Skotlex]
	* Changed Double Attack's list_num (div) to 2. [Skotlex]
	* Added Palm Strike to the "skill_castnodex" file. [Skotlex]
	* Changed Palm Strike's casting time to 1500ms (this value is used as the
	  delay between doing the skill and the damage taking effect) [Skotlex]
	* Updated Gospel's uptime2 to 60 secs (that's how long the bonuses should
	  affect) [Skotlex]
07/13
	* Changed Wand of Hermod's skill_unit_setting from 'friend' to 'party' [Skotlex]
	  (this should make the skill affect only party (and guild?) mates instead
	  of all players in normal maps)
07/11
	* Reduced Einbroch mobs (RSX,Ungoliatnt) call-slave skill chance from 10000 (100%) to (10%) [Lupus]
	* Added the Loli Ruri card to the magician set [Skotlex]
	* Changed Guild Castles' names to iRO [DracoRPG]
07/10
	* Fixed Lord of Death mob (added house auger), added correct MVP exp to Tao Gunka,
	  RSX 0806, thanks to MasterOfMuppets [Lupus]
	* Reduced drop chance of Galapago, Banana Hat, etc hats (acc. the patch) [Lupus]
	* Due to adding (thanx to Muad_dib) Lighthalzen fields mobs spawn. I had to change
	  temp Mole stats to Martin. But Mole has its own hat drop [Lupus]
	* Lighthalzen fields mobs spawn. thanx to Muad_dib
	* Edited skill_castnodex_db [DracoRPG]
	  - Enabled DEX-reduced casting time on Blitz Beat, Falcon Assault and Sharp Shooting
	    (Lupus told me to do, so blame him, not me :p)
	  - Removed the skills that only had a non-DEX-reduced after-cast delay since DEX
	    shouldn't reduce after-cast delays anyway (only useful for custom servers who want to
	    enable delay_dependon_dex but it's not our matter)
07/09
	* Fixed SP usage of PALMSTRIKE, SPIRAL PIERCE [Lupus]
	  I do always open the latest korean patch and get ACTUAL numbers from there ^^
	* Added delays to Falcon Assault (1 sec for 1lvl,2,3,4,5sec for 5lvl)
	  according to desc.
	* Fixed Aura Blade (now requires Magnum Break LV 5) [Lupus]
	* Updated Palm Strike's sp cost and sphere requirement [Skotlex]
	  (info provided by ZeroXell)
	* Fixed Apocalypse (guild) mob id. [Skotlex]
	* Awakening Potions now cure 'Sleep' [Skotlex]

07/08
	* Wedding/Adoption skill's inf2 has been changed to 4 (Wedding Skills) [Skotlex]
	  (Deja vu? Somehow I did not do it last time I said I did)
	* Added the Adoption skills to the skill_require_db [Skotlex]
	  They use basic stats for now and sp cost 1 so you can cast it.
	* Reverted the wedding rings behaviour. [Skotlex]
	* Wedding/Adoption skill's inf2 has been changed to 4 (Wedding Skills) [Skotlex]
	* Added the adoption skills to the tree of all classes [Skotlex]
	  (WE_CALLPARENT, WE_BABY to baby classes, WE_CALLBABY to all others)
	* Updated the Wedding Rings to give the adoption parent skill. [Skotlex]
	* Einbroch monsters obtained some new drops, thanx to MasterOfMuppet [Lupus]
	* Added drops: Super Novice Hat[1]->Mole 0.1%, Soldier Felt Hat[1]->Removal 0.1% [Lupus]
	* MasterOfMuppet's fixes. According to kRO's website fixed: [Lupus]
	  ayothaya mobs with elemental attributes, race, size, temp speed and temp modes(ie aggressive, loot e.t.c)
	  einbroch mobs with elemental attributes, race, size, adjusted atk dmg,def,mdef,exp,jexp
	* Added Lighthalzen monsters (with poring stats) and Homuculuses(as monsters), thanks to Muad Dib of Fusion.
	  I've added common stats to Bascojin&Chung_E monsters tough [Lupus]
	* Fixed Bloody Roar item effect, thanks to Landarma [Lupus]
	* Fixed Enchanted Peach Tree (Live Tree) Card to autocast Heal on self [DracoRPG]
	* Added new effect to Winter Cap. thanks to Landarma [Lupus]
07/07
	* Changed Marionette's inf2 to 1024 (use only on party) [Skotlex]
	* Changed Marionette's inf to 16 (targetted support skill) [Skotlex]
	* Changed Soul-Change's inf2 to 3072 (use on party/guild only) [Skotlex]
	  Still not sure what's the proper way to enable it on pvp/gvg grounds, though...
	* Fixed small typo with grandpa_beared thanks to N0_0N3. [massdriller]
07/06
	* Made Arrow Vulcan be affected by dex, delay unaffected by dex. [Skotlex]
	  (from what I read around on the forums, it seems that's how it is)
	* Made Double Strafe, Arrow Shower cast time be affected by dex, and delay
	  be unaffected by dex. [Skotlex]
	  (hey, these two had 0 cast times already, so it was a waste the way it was)
	* Changed Tao Gunka's mode to 163 (131+32) to make it a boss type mob [Skotlex]
	* Changed Spider Web's inf to 2 so that it becomes ground-targeted [Skotlex]
	* Added Novice Red Potion into item_trade.txt db. (can't be traded, etc) [Lupus]
	* Removed Zealotus Mask drop from Zherlthsh (could be3 made as a quest only. And goes with Player's name prefix) [Lupus]
	* Added missing Horns of Succubus drop (thx 2Lorky), added Angry Teeth drops to Teddy Bear + Hylozoist [Lupus]
	* Few fixes in the new_hats_0625.txt quests [Lupus]
	* Re-Fixed few mobs drops, thanks to MasterOfMuppets [Lupus]
	* Added missing bonusrate = 1 into Bon Gun's petskillattack2 params [Lupus]
07/04
	* Added Marine Card effect,added minerals drops to various monsters (need for official lvl4 weapon quest!) thanks to MasterOfMuppets [Lupus]
	* Fixed BonGun's pet script. [Skotlex]
	* Fixed Li Me Mang Ryang Not Equipable bug thanks to vicious_pucca [massdriller]
07/02
	* Added missing ';' in Incubus Card script [DracoRPG]
	* Updated mapflags. Added new hats drops to Kobold Archer, Wootan Fighter, Galapago [Lupus]
	* Added Li Me Mang Ryang Card to OCA and to the drops [Lupus]
	* Updated tons of cards, thanx to Landarma
	  Also fixed misplaced IDs od 4269 Incubus and 4268 Injustice cards [Lupus]
		(everywhere, including card album, mobs drops, cards-combo bonus)
!!!!WARNING!!!! check your servers for those cards. Remove them. They have different placements and could cause exploits!
	* Fixed Succubus+Incubus card-combo bonus exploit. Thx 2DracoRPG [Lupus]
	* Implemented Increase Soil card (compound to Armor) -50% DMG by Guardians [Lupus]
	* Added temp plug to Cramp Card (on a mob kill now it gives you 1 zeny) [Lupus]
	* Added packet_ver 18 by Sara-chan [Lupus]

06/28
	* Added "gld_dun01.gat  5" to water_height.txt as reported by Manipulator [Skotlex]
	* Added Dryad Card effect, thx to MasterOfMuppets [Lupus]
	* Fixed Land Protector's Range to be 7x7,7x7,9x9,9x9,11x11 [Skotlex]
	* Made Lemon consumable (previous equip_jobs was 0), that was not on
	  purpose, right? [Skotlex]
	* Added 2-sec aftercast-delay to sonic blows. Too many complains about double
	  casting it, and I really don't think it was meant to be doble-castable
	  either. [Skotlex]
	* Added effects to new boxes (thanks to Landarma), added these boxes
	  as drops to new cards (thanks to MasterOfMuppets), fixed Taoist Card
	  placement [Lupus] TODO: revise all the cards
06/23
	* Corrected 3 of the new headgears in item DB, thanks to Ishizu-chan [celest]
06/20
	* Fixed some item_db typos [celest]
	* Updated Thunderstorm range to 2 [celest]

06/18
	* Reverted Skotlex's work. [Lupus]
	  all 3 Lances differ by their ID (for quests purposes!)
	  There are 2 assassin masks: 5054 and 5096. They don't have any slots.
	  But they differ by applicable jobs: 5054 for Assassins + Priest Class
		and 5096 is for ANY Thief Class (Thief,Assassin,Roug) + Priest Class
		Plz, if you want, use ITEM_DB2.TXT for made-up items 8)
	-- I can't argue on the assassin mask, and it's good that it was fixed. But
	  which quest uses the Lance (1411)? It must be a quest that is not
	  currently shipped with eA, because items 1411 and 1412 are NOT used
	  anywhere inside the NPC directory, and 1410 is only on some shops. I am
	  curious to know which Quest uses the 1411 lance... 
	  Plus it doesn't seems to make any sense from a client-side view. "You
	  need the Lance that Doppel Drops, not another" (even thought they all
	  look and work exactly the same for the player x.X) [Skotlex]
	* Changed slot-count for item 1411 (Lance_) from 0 to 1. [Skotlex]
	  I am not going to believe 0 is the real number for it considering that:
	  1: You can't get it from any shop. (that id is nowhere in the npc files)
	  2: Only DoppelGanger drops it, with a 5.5% chance.
	* Added some new items (by Landarma), fixed recently added ones. [Lupus]
06/11
	* Changed Ungoliatnt Assumption skill's target to self from target [Skotlex]
	* Updated skill_cast_db: Soul-Strike's casting time, Stone Curse's upkeep
	  time as per the information provided by Midas	[Skotlex]
	* Changed Sprinkle's Sand range from 8 to 1 (8??? o.O) [Skotlex]
	* Changed Dark Illusion Card's bonus bDelayrate -> bonus bCastrate [DracoRPG]
	* Added the new headgears and garments [DracoRPG]
06/09
	* Added inf2=64 to Benedictio. 64 now actually stands for "skill needs
	  other nearby support characters", or as the battle_config calls it
	  "ensemble skills". [Skotlex]
	* Removed inf2 of Extremity Fist, it is harcoded for now. Inf2 values 4 and
	  8 are free for the taking. What should they be for? Partner/Baby skills? [Skotlex]
	* Added inf2 values: 32 (Dance/Song skills) & 64 (Encore skills).
	  (Encore skills don't need to be set as 96) [Skotlex]:
	  - Bard Skills set to inf2 32: BA_WHISTLE, BA_ASSASSINCROSS, BA_POEMBRAGI, BA_APPLEIDUN
	  - Dancer Skills set to inf2 32: DC_HUMMING, DC_DONTFORGETME,
	  DC_SERVICEFORYOU, DC_UGLYDANCE
	  - Encore Skills set to inf2 64: BD_LULLABY, BD_RICHMANKIM,
	  BD_DRUMBATTLEFIELD, BD_RINGNIBELUL, BD_INTOABYSS, BD_SIEGFRIED
	  - If I missed any skill, help me correct it, these inf2 values are not yet
	  used in the code, but that'll change soon.
	* Added inf2 value 16 for Guild Skills, set all guild skills to have inf2
	* Readded skills to items Electric Guitar, Firebrand & Ice Falchion [Skotlex]
	* Some corrections to the skill_db.txt's nk value. [Skotlex]
	  - Storm Gust: 1->0
	  - Blitz-Beat: 1->2
	* Removed magnum break's inf2=16 since it ain't used anywhere. [Skotlex]
	* Fixed Ayothaya monsters drops and names thx 2 MasterOfMuppets [Lupus]
06/06
	* Corrected Ice Falchion, Firebrand, Electric Guitar [Skotlex]
	  These should not give you a skill-tree, only auto-cast the skill.
	  Ice Falc also has a 1% chance of freezing yourself.
	* Removed the 20% HP cost of casting GrandCross.
06/05
	* Changed Grandcross/DarkCross's Interval from 300ms to 400ms [Skotlex]
	  This fixes GX doing 4 hits instead of 3.
	* Added tons of new items, thanks to Landarma [DracoRPG]
06/03
	* Fixed 'Keeping' in the mob skill DB to be cast on self [celest]
06/01
	* Optimized a lot of new cards scripts [DracoRPG]
	* Changed Deviling to receive 50% more damage from ALL elements but neutral, and not only Fire/Earth/Water/Wind [DracoRPG]
	* Changed doppelganger card aspd bonus to 10% as it should be. [massdriller]
	* Changed DoppelGanger card's attack speed increase to 30%. [Skotlex]
	  This card current does not stacks. If anyone knows of a valid source that
	  says otherwise, open a bug-report so it can be corrected.
05/29
	* Moved the card-status listing from item_db.txt to this file [Skotlex]
	* Added the new column to item_db: refineable to specify which items can be refined. [Skotlex]
	* Fixed Novices able to wear all "Every class except Novice" headgears, thanks to duduc [DracoRPG]
05/28
	* Added emotion constants to const.txt	[Skotlex - R1853]
	  The constants mirror their command counter part (ie: /meh -> e_meh),
	  for the most part, except for the following:
	  e_gasp (/!), e_what (/?), e_cash (/$), e_dots (/...), e_no (/??),
	  e_hp (need HP), e_hlp (/hp, help emotion),
	  e_scissors (ctrl+-), e_rock (ctrl+=), e_paper (ctrl+\)
	  And the following flag-emotions are available:
	  e_korea, e_indonesia, e_philippines, e_usa, e_brazil
	  The whole point is being able to do in scripts "emotion e_wah;" instead
	  of "emotion 16;"
05/25
	* Fixed Peach Tree card, thanks to Komurka
05/20
	* Updated mob skill DB, thanks to Komurka
05/17
	* Corrected typo for sweet potato, thanks to maeki
	* Switched Tirfing and Mystelltain card effects, thanks to starlon [DracoRPG]
05/15
	* Changed Hylozoist's race to demon, thanks to Dino9021
	* Fixed Gajomart Card, thanks to starlon [DracoRPG]
	* Added missing 'amount input' packet for Sakexe 05-09 [celest]
05/12
	* Added missing 'close storage' packet for Sakexe 05-09 [celest]
05/11
	* Updated item_db (all items with use_script "pet" or "itemskill") to use
	  the new type of item (11: delay-consumed usables) [Skotlex]
	* Added the new G_ mobs with poring stats, thanks to Komurka
05/10
	* Changed 2005-05-09Sakexe's packet version to 17 [celest]
	* Fixed Merchant Class Card Combo Set bug (it was always ON) [Lupus]
	* Merchant Class Card Combo Set: added 0.1% Old Purple Box drop [Lupus]
	* Archer Class Card Combo Set: added +5% EXP bonus on killing Brute [Lupus]
	* Holy Class Card Combo Set: added +5% EXP bonus on killing Undead/Demon [Lupus]

05/09
	* Added INT +2 and Unbreakable to Crown of Mistress [DracoRPG]
	* added Sara-chan's 18th packets update [Lupus]
	* Added FULLY updated mobs skills DB by Komurka (up to Aegis Zone 8.5) [Lupus]
	* Fixed drops of Antique Firelock (thanx 2 Freya) [Lupus]
	* Added skills to Beetle King thanks to MasterOfMuppets [Lupus]
	* Started updating monsters skills according to the recent servers
	  thanks to MasterOfMuppets [Lupus]
05/08
	* Fixed Whisper Boss card, thanks to sbilly
	* Updated the packet db (removed some duplicates, corrected some packets),
	  thanks to glucose
	* Removed Sword Mastery from Alchemist's skill tree :o [DracoRPG]
05/06
	* Fixed some genders for some FOOD. Added some new items into item_db. Thanks 2 Landarma [Lupus]
05/04
	* Added 1% Horse Crest drops to Greatest General, Sohee monsters [Lupus]
	* Added implemented cards into card albums and to mobs drops [Lupus]
	* Set Mimic Card, Mystcase Card bonus to 0.1% (it was 0.01%, they has been increased to 0.1% due recent patch)
	  But it isn't 1% for sure
	? Greatest General Card semms having wrong effect, tough 8) [Lupus]
05/03
	* Added missing item drop effects for some new cards [celest]
	* Fixed Heater Card and Freezer Card [celest]
05/02
	* Fixed # of Deviling's slaves [Lupus]
	* Fixed cards that use getrefine [celest]
05/01
	* Fixed skill tree entry for Potion Synthesis, thanks to shadow
04/30
	* fixed cards that required bExpAddRace,bSPGainRace,bLoseSPWhenUnequip by MasterOfMuppets [Lupus]
04/29
	* Re-added Spiral Pierce to Lord knight's skill tree
	* Added missing Shield Chain to the skill tree, thanks to Komurka
	* Fixed Harpy Card and Freezer Card, thanks to Komurka
04/28
	* Added effect for Dumpling Child and Hermit Plant card
	* Changed Crab card to use 'isequipped' and fixed Rideword card
04/27
	* Added effect for Solar Sword
04/26
	* Fixed some items, thanks to Komurka and shadow
	* Applied new advanced skills changes from 4/26 patch [DracoRPG]
	* Reverted Arrow Shower / Double back to 0.1. Sorry! [Lupus]
	* Started implementing missing card effects [Lupus]
	* Added more mobs skills, thanx to MasterOfMuppets [Lupus]
04/25
	* Fixed Durian and Ramadan, thanks to rollopop
04/23
	* Fixed Red Scarf name, thanks to Sasuke [DracoRPG]
	* Removed some extra 0's in the item_db, thanks to Zoc
	* Added monsters skills to all Niflheim / Louyang monsters,
	  changed Garm slaves to Garm Bebe. Thanx to MasterOfMuppets
	* Fixed Owl Duke Card, now casting IMPOSITIO on the card holder [Lupus]
	* Panacea,Royal Jelly now remove Hallucination Effect. accord.to 10 May patch [Lupus]
	* Hallucination Pills (Pellet) cause Hallucination Effect [Lupus]

04/22
	* Updated effects for Ahura Mazda, Gaia Sword, Freezer Card
	* Added 4 items of THQ -> item_avail.txt [Lupus]
	* Removed the Stun effect ????? on Sweet Potato, fixed Assulter Card script not in correct field [DracoRPG]
	* Minor cards sets fixes [DracoRPG]
	  - Reverted some wrong Codemaster's if(callfunc("Is_xx_Class"))) => if(callfunc("Is_xx_Class"))==0) changes
	  - Fixed Thief cards set checking for Merchant class instead of Thief class
04/20
	* Added Thief cards set and fixed other ones, now they should all work [DracoRPG]
	* Added Intravision item bonus [DracoRPG]
	* Adding supported map cell types to const.txt [celest]
	* Added summoned Geographers can heal their masters [celest]
04/19
	* Corrected skill tree entry for Peco lord knight's Berserk [celest]
04/17
	* Fixed "Every job except Novice" armors wearable by Novices [DracoRPG]
04/16
	* Corrected job bonuses for novice, super novice and dancer [celest]
04/15
	* Removed Raid not allowed in GvG (never seen it anywhere...) [DracoRPG]
	* Added new items, thanx to Landarma [Lupus]
04/12
	* Added monsters skills and slaves to all Einbrook monsters, thx4info2 Landarma [Lupus]
	* fixed Deviling and Lou-Yang monsters drops, thx2 MasterOfMuppets [Lupus]
	* Added missing summon slaves to Deviling, Tao Gunka (correct # and type) [Lupus]
	* Made Deviling, Tao Gunka aggressive (st - according to most DBs, 2nd - it's MVP)
	* Corrected 1 wrong entry in the create arrow DB, thanks to Komurka
04/08
	* Corrected wrong entries in the create arrow DB, thanks to Komurka
04/07
	* Fixed materials for forging Lance : 1 Evil Horn -> 2 [DracoRPG]
	* Fixed Sphinx Hat equip location [DracoRPG]
04/06
	* Added Einbrook monsters and drops, thanx to Landarma [Lupus]
04/05
	* Some items fixes [DracoRPG]
	  - added missing "Neko Mimi" hat #5099, thanks to Neko2
	  - fixed Wedding Rings item types, thank to nimrod
	* Removed Evil Wings drops from Mini Demon,Deviruchi,Archangeling and put it into Deviling [Lupus]
	  according to kRO "Evil Wings" are dropped by Deviling only
	  Deviling items drop chances aren't correct yet
	* Fixed skill tree entries for Vulcan Arrow, and Throw Arrow for gypsies,
	  thanks to Hekate
04/04
	* Removed required skills for Berserk (only job level 50 is needed) [DracoRPG]
	* Re-added MDEF +15 to Resting Cat [DracoRPG]
	* Added Sunglasses & Glasses into OBB, added slotted Sunglasses & Glasses into OVB [Lupus]
04/03
	* Doppelganger Card gives only 10% ASPD bonus (from Aegis) [DracoRPG]
04/02
	* More new cards and fixes [DracoRPG]
	  - added Acolyte, Archer and Merchant sets effects
	  - added Turtle General Card effect
	  - corrected Job_Super_Novice -> Job_SuperNovice for Lude and Quve Cards
	  - autospell weapons (except Fireblend, Ice Falchion and Electric Guitar)
	    give no more the skill so it can't be used when you want
04/01
	* New cards updates and additions [DracoRPG]
	  - added Mage and Swordman sets effects
	  - added Whisper Boss Card (not found the ID -> commented out)
	  - activated Turtle General Card but effect not yet scripted
	  - updated some effects from 3/17 patch
03/31
	* Updated/added some new card effects [DracoRPG]
	* Reverted Berzebub card to reduce casting rate
	* Corrected some item effects, thanks to digigp and htm
	* Updated some cards effects from 3/25 patch [DracoRPG]
	* Updated freeze time for Frost Diver and Frost Nova
	* Updated cast time for Preserve, thanks to Neko2
03/29
	* Some optimizatons, added missing skill to Electric Guitar [Lupus]
	* Added new items (thanx to Landarma) [Lupus]
	* Added effects to Spring Rabbit, Galapago, Sea Otter Cards [Lupus]
	  It seems that item heal rate doesn't work yet
03/27
	* Re-Updated MOB DB with correct file now 8) [Lupus]
	* Added all released cards into monsters drops and OCA [Lupus]
	* Minor Items, Monsters fixes [Lupus]
03/26
	* Fixed some incorrect create arrow entries, thanks to boredpoo

03/25
	* Added Einbrook's mobs, thanks to RodneyJ for their IDs [Lupus]
	* Removed some extra 0's in the item_db, thanks to Zoc
	* Corrected some item effects according to the mentoned earlier doc [Lupus]
03/24
	* Corrected exp table entries for level 11 and 99, thanks to Dino9021
	* Corrected some item effects according to the newly found Aegis Zone Server [DracoRPG]

03/22
	* Corrected some typos in the items DB, thanks to Zoc [celest]
	* Added new items. Thanks to Landarma [Lupus]
	* skill CANNIBALIZE: fixed its upkeep time [Lupus]
        * Added Rafflesia into Dead Branch monsters list, removen all MVPs from there [Lupus]
	  DBs never supposed to call MVPs!!! Only Sages Hocus Pocus could make
	  a MVP from Alchemyst's Floras. (eA Hocus implementation doesn't support it yet)
03/21
        * Corrected exp table entries for Super Novice, thanks to Dino9021 [celest]

03/19
	* changed all cards to 'getrefine' function [Lupus]
	* used 'cardscnt' instead of 'isequipped' in Crab Card.
		  It's a weapon compunding card. So it used to give up to
		  6 bonuses! on Assassin with 4 4-slotted weapons.
		  Now it lets you get up to 2x bonuses per hand.
		  Should be fixed more. already got idea 8)
		All the similar cards should be fixed in the same way.
        * Fixed missing END; in new cards, some optimizatons [Lupus]
03/18
        * Updated item prices for Niflheim drops [celest]
        * Updated some Ayothaya mob stats [celest]
        * Fixed Incantation Samurai card reducing HP too quickly - the time should
          be in milliseconds ^^; [celest]
	* Added ~86 new cards. Fixed, optimized [Lupus]
		Thanks to Indiona,Landarma. Gosh, I had to fix some bugz ^_-
03/16
	* Added new items. Thanks to Landarma [Lupus]
03/15
        * Fixed pricing for Claw, thanks to Dino9021 [celest]
03/09
	* Added new items. Thanks to Landarma [Lupus]
02/23
	* New Cards: Some fixes, revisions, additions [Lupus]
	  According to the latest news:
	  Fixed Tirfing, Mysteltainn (swapped enemy sizes of the cards bonuses)
	  Added bonus: Munak+Bongun+Hyegun Cards -> +1 Allstats
	  Added Alice Card placement. (also added it for Spring Rabbit, Galapago, Otter) And put Alice Card into OCA 
		can't add new effects for 22 Fed Update Cards yet.
	  All the cards by 22Feb have been revised, but not all tested.
02/21
	* Added new item: Takius' Blindfold. thanks to Landarma [Lupus]
	* Revised New Cards, added missing effects, fixed bugs [Lupus]
	  ~20 cards to check left 8) But in 22 Feb some new cards have been announced T__T'
	* Added actual item_db.sql into sql-files. [Lupus]
	* item_db.txt: Added missing fields / removed extra fields from some new items V__V' [Lupus]
	* More monsters name fixes (GIANT_HONET -> GIANT_HORNET , etc) [Lupus]
	* Added actual mob_db.sql into sql-files. If you use SQL Mob DB then update it [Lupus]

02/19
	* Added released cards into the monsters drops. Fixed couple card names [Lupus]
	  (Arc Angeling -> Archangeling)

02/18
        * Added more new cards effects (thanks to DracoRPG at this time) [Lupus]
	  added missing bonus 'bAllStats' into doc/item_bonus.txt
        * Changed Goblin Leader Card to using bAddRace2 -- each player can only save
          10 AddDamageClass, so this would save some space for other cards ^^ [celest]
	* Started adding new cards effects. Also big thanks to Landarma [Lupus]

02/17
	* Added 4 columns into mob_db.txt & mob_db2.txt [Lupus]
	  If you were using SQL MOB DB, then update your SQL DB and import all data
	  from mob_db.txt mob_db2.txt
	* Fixed some mobs drops Whisper + Boss Whissper had wrong drops %%  [Lupus]
	  and Whisper had 0% Card drop...Also fixed all MVP mobs (MVP bonuses were shifted...
	  MVP EXP was missing, etc)
        * Corrected Parrying lasting time, thanks to p14333 and krc2k for pointing it
          out [celest]

02/11
	NOTE: Get rid of old cards on your server!!! IDs: 4149-4332
	  before using of this item_db.txt (some cards have changed their IDs)
	  and it could cause ALIEN cards in your players equipment 8))
		i.g. a weapon compounding CARDS inserted in armor, etc...
        * item_db.txt Massive update: [Lupus]
	  - Added all new missing items (up to st.Valentine's Day Event)
	  - Added new cards 4149-4332, sorted them and set their sripts.
	  - Fixed some names, typos, weigths and prices
	* Commented out old custom cards from Old_Card_Album.txt till we brush them up [Lupus]
	* Removed old custom cards from MOBs drops [Lupus]
	  thanks to Landarma(new items templates) Poki#3(removing cards from drops)
        * Updated Soul Breaker cast and delay time, thanks to matthias [celest]
        * Updated Chain Crush to require level 2 Tiger Fist, thanks to matthias for
          pointing it out [celest]

02/05
        * item_db.txt Added prices to all Magic Scrolls and to Horse Crest,
	  added +100-1000 Zeny effect to Gold Coin (it's used in st.Patric event)
	  not sure in Zeny amount, tough. [Lupus]
	* mob_db.txt Kind of Beetle -> Beetle King. [Lupus]

01/26
        * Updated Counter dagger's attack, thanks to Poki#3
        * Added ayo_fild02 to nomemo mapflag list

01/13
        * Fixed drops of Taoist Hermit, added drops rates to JOKER (all rates were 0%)
	  Removed 0.01% Chances of all Apple drops plugs
	  Tided up mob_db/mob_db2, removed extra tail delimiters (,,,,,,) [Lupus]
01/07
        * Added midas' fix for Hammerfall and Adrenaline Rush [celest]
        * Added 'bDelayrate' and changed Phen card, Marduk Card and Berzebub Card's
          effects to use this instead of bCastrate (which was reducing casting time,
          not delay time) [celest]
01/05
        * Added DracoRPG's changes [celest]
          - changed Gungnir to wind element
          - changed Damascus to cannot be broken
01/04
        * item name fix Daydric Card -> Raydric Card [Lupus]
	  Changed weight of Durian,Ramadan,Realgar Wine.
	  Added effect to Durian fruit
01/01
        * Included Mages and Wizards to be able to use berserk potions [celest]
	* Changed some create arrow outputs for new kRO 12/21/04 patch [Aria]

12/29
        * Corrected Bloody Axe's weight - 400 > 4000 [celest]
        * Removed Bandit's Beard from item_avail.txt [celest]
12/28
        * Removed Roguemaster's Bow adding steal chance, thanks Draco [celest]

12/26
        * Added item_db2.txt - would be more convenient to store custom items in a
          separate db [celest]

12/21
        * Added prices to Arrow Quviers ( = 500* arrow price), fixed few item names
	  (removed '_' from jNAME column), fixed HP amount in Novices Red Potion [Lupus]
12/21
        * Added the new Quivers, updated Horse Crest [celest]
12/20
        * removed extra {},,,,,,, from each tailing [Lupus]
        * Corrected job requirements for some garments [celest]
        * Corrected skill tree requirements for 3 Peco Lord knight skills [celest]
        * Updated item 569 -> it's a Red potion given to novices if they pass the
          training grounds test [celest]
12/18
	* Lord Knight's Concentration can now be used with any weapon [Aria]
	* Changed few God-items to fit kRO 12/7/04 Patch [Aria]
          - Reverted by Celest (sorry, but it's already updated ^^;)
	* Fixed screwed drops of Kapha (someone removed one number and all data was shifted) [Lupus]
	* Found one missing item N 569, looks like red Potion. Added a temp plug
	  fixed typo bolt -> Bolt in one scroll [Lupus]
	BTW I made a TXT Resources merger (it helps merge clients resources itemdesc,etc)
	so if u need it just tell me

12/17   * Added effect for Deadly poison bottle and Ice cream [celest]

12/15   * Updated Steel Body, Thunderstorm, Investigate and Magic Crasher, thanks
          to midas
        * Removed elunium and oridecon from produce_db, thanks to Draco

12/14   * Changed 'Parasite' to non-moving [celest]

12/12   * Removed unuseable skills from skill_tree.txt [celest]

12/11   * Corrected item_db - Wedding rings should give all 3 skills [celest]

12/9    * Removed some unused skills from skill_tree.txt [celest]

12/8    * Capitalised horn_Card in item_db [celest]

12/7    * Fixed some item names (and swpped names of Alarm Mask and Expressionless Mask) [Lupus]
	* Added effect for Bow Thimble, Archer Skeleton Card and Tribal Solidarity [celest]
        * Updated Sleipnir, Brisingamen, Mjolnir, Megingord, Counter Dagger,
          Poison Knife [celest]
        * Updated SP requirements for Full Strip, Full Chemical Protection, Cannibalize [celest]
        * Corrected some item_db typos, thanks to DracoRPG

12/6    * Changed spiritball requirements for Chain Crush to 1, thanks to MaoMao of cAthena

12/5    * Edited skill_nocast_db - the skills should be useable outside GvG maps even
          if woe is on [celest]

12/3    * corrected Spider Web's maximum level [celest]
        * Removed Soul Drain from Professor's skill tree [celest]
        * Updated Stunner's job - Acolytes and monks should be able to use it too! [celest]

12/2    * Updated skill tree prerequisites for the new kRO skills [celest]

12/1    * Updated Poison React, Soul Change, Soul Burn [celest]

11/30   * Corrected bUnbreakable value in const.txt [celest]
        * updated skill_cast_db for Meltdown and Tiger Knuckle Fist [celest]

11/29   * Updated skill_db for Quagmire, Fog Wall [celest]

11/28	* Fixed Wedding rings placement 2->136 [Lupus]
	* Fixed mob Amon Ra stats/drops [shadow]

11/27	* Fixed some drain rates, fixed Balmung, Mjolnir, fixed all maces (for right jobs) [shadow]

11/26	* Fixed Abrakadabra (3 Yellow Gemstones -> Yellow Gemstones 2).
	  And of course it would still use 1 Yellow even if you have Mistress Card, etc. [Lupus]
	  TODO: Abrakadabra should also summon Monsters and even MVP by chance...
	* Lowered max level of Oridecon Research skill from 10 to 5 [Lupus]

11/25   * Added element effects to const.txt. [celest]
          Usage example: sc_start SC_Frost,30000,0;
          to change the weapon element to Water for 30 seconds.

11/23   * Added temporary requirements for the new guild skills [celest]

11/22
        * Changed weapon requirements for Sharp Shooting [celest]
	* fixed job_db2.txt (,, -> ,) [Lupus]
        * Adding 11/23 kRO's new skills [celest]
	* Slim Potions requires empty test tube, not empty potion bottle *fixed* [shadow]

11/21
	* added bClassChange to const.txt and added bClassChange,50; to azoth (.5% chance to transform monster into another.) [Valaris]
	* added mob stats: 1027,Raptice [Lupus]

11/20
	- Added deadly poison bottle to produce_db.txt [celest]
        - Edited ASC_CDP in skill_require_db.txt
        - Edited ASC_EDP in skill_cast_db.txt

11/17
	- Corrected max level for cloaking in skill_tree.txt [celest]

11/16
	- Item 7110 fixed name -> Broken Sword (part of Bongun quest) [Lupus]
	
11/16   
	- Added BaseJob to const.txt [celest]

11/15
	- Minor fix on wedding skills, to use 15% of SP/HP . [shadowlady]
	-  ?

11/14
	- Fixed Golden Thief Bug Mode!(+detects hidden) [Lupus]