summaryrefslogtreecommitdiff
path: root/npc/other/fortune.txt
blob: 23d65e88f8375610cb1abde50a24a8e084888db4 (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
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
//================= Hercules Script =======================================
//=       _   _                     _
//=      | | | |                   | |
//=      | |_| | ___ _ __ ___ _   _| | ___  ___
//=      |  _  |/ _ \ '__/ __| | | | |/ _ \/ __|
//=      | | | |  __/ | | (__| |_| | |  __/\__ \
//=      \_| |_/\___|_|  \___|\__,_|_|\___||___/
//================= License ===============================================
//= This file is part of Hercules.
//= http://herc.ws - http://github.com/HerculesWS/Hercules
//=
//= Copyright (C) 2012-2015  Hercules Dev Team
//= Copyright (C)  L0ne_W0lf
//=
//= Hercules is free software: you can redistribute it and/or modify
//= it under the terms of the GNU General Public License as published by
//= the Free Software Foundation, either version 3 of the License, or
//= (at your option) any later version.
//=
//= This program is distributed in the hope that it will be useful,
//= but WITHOUT ANY WARRANTY; without even the implied warranty of
//= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//= GNU General Public License for more details.
//=
//= You should have received a copy of the GNU General Public License
//= along with this program.  If not, see <http://www.gnu.org/licenses/>.
//=========================================================================
//= Fortune Teller
//================= File Encoding =========================================
//= CP-949 (EUC-KR compatible). Do NOT read/save it as UTF-8.
//= -If the encoding is correct, the next three lines have the same length-
//= ============ �ġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġ� ============
//= ============ ============================================= ============
//= ============ ������������������������������������������������������������������������������������������ ============
//================= Description ===========================================
//= Fortune teller NPC. Displays random Card image.
//================= Current Version =======================================
//= 1.0
//=========================================================================

payon_in03,117,128,5	script	Fortune Teller	4_M_BIBI,{
	mes "[Lhimetorra]";
	mes "You're an adventurer of this world... " +strcharinfo(PC_NAME)+ ", right? So, what can an old person like me do for you?";
	next;
	switch(select("I would like a tarot card reading.", "What's a tarot card reading?")) {
	case 1:
		mes "[Lhimetorra]";
		mes "Is that so...?";
		mes "Well, if you want a monster card reading, you must first show me your faith. Otherwise, the monster spirits will grow angry and place a curse on you.";
		next;
		mes "[Lhimetorra]";
		mes "So, would you like a monster card reading? ";
		next;
		switch(select("Yes.", "I would like to think it over once more.")) {
		case 1:
			mes "[Lhimetorra]";
			mes "Then...";
			mes "Please pay your fee with all of your sincerity.";
			next;
			input .@input;
			if (.@input == 0) {
				mes "[Lhimetorra]";
				mes "Ah...?!";
				mes "You have angered the monster spirits!";
				close;
			}
			else if (.@input > Zeny) {
				mes "[Lhimetorra]";
				mes "There's no need to overdo it. Just give with all your heart... *Tsk tsk*";
				close;
			}
			else {
				mes "[Lhimetorra]";
				mes "I accept your heart and your devotion with my gratitude. Thoughts are more important than the amount when paying a fortune teller.";
				Zeny -= .@input;
			}
			next;
			mes "[Lhimetorra]";
			mes "Then, I will begin to tell the fortune of your wish. Concentrate on yourself...";
			next;
			mes "[Lhimetorra]";
			mes "...";
			mes "Clear your mind... ";
			next;
			mes "[Lhimetorra]";
			mes "...";
			mes "Once you have emptied your mind, think of the thing you most wish to know.";
			next;
			switch(select(" (I would like to know my love fortune.) ", " (How rich will I be?) ", " (I need advice about my future.) ", " (Can I get a warning of any dangers awaiting?) ")) {
			case 1:
				mes "[Lhimetorra]";
				mes " I see it... I see a sign of love... ";
				next;
				.@card_1_love = rand(1,74);
				if (.@card_1_love == 1) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " You are afraid to show yourself working, to your loved one.. ";
					mes " But that is not love. Do not be afraid to show different sides of yourself to your loved one.. ";
					next;
					mes "[Lhimetorra]";
					mes " So do not worry and move on. ";
					next;
				}
				if (.@card_1_love == 2) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " Maybe you are using love as an excuse to work? The card is saying to try observing love from a different perspective. ";
					next;
					mes "[Lhimetorra]";
					mes " Shoveling requires skills as well. ";
					next;
				}
				if (.@card_1_love == 3) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " How about taking a break from love and giving yourself time to relax.. I agree with what the card is saying. ";
					next;
					mes "[Lhimetorra]";
					mes " Love is not meant to be so hard. ";
					next;
				}
				if (.@card_1_love == 4) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " A shovel..? ";
					next;
					mes "[Lhimetorra]";
					mes " Strange that this would come up about love.. bizarre.. You aren't using this shovel to take revenge on someone, are you?? ";
					mes " Don't get malicious thoughts. Keep a kind heart. ";
					next;
					mes "[Lhimetorra]";
					mes " How about taking a break from love and giving yourself time to relax.. I agree with this card. ";
					next;
				}
				if (.@card_1_love == 5) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " Its pure eyes look at a loved one but cannot recognize them, the wings flutter towards the loved one, but it helplessly stays in one place, ";
					mes " it calls its loved one, but they cannot hear.. ";
					next;
					mes "[Lhimetorra]";
					mes " What a sad fortune.. ";
					mes " Indeed, it is sad love... it might be hard to overcome. ";
					next;
				}
				if (.@card_1_love == 6) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " The passion of love like a raging wave... You can't even hide it. ";
					mes " With such passionate love, isn't there only one way..? ";
					next;
					mes "[Lhimetorra]";
					mes " Passionate love is nearby. It is a good sign. ";
					next;
				}
				if (.@card_1_love == 7) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " The teeth of dustiness are very strong. This means.. use your teeth for victory?! ";
					next;
				}
				if (.@card_1_love == 8) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " The card is telling me, 'Fly to your loved one as if you were a butterfly and shoot at it as if you were a star.' ";
					mes "..even though it doesn't sound like something a moth would say. ";
					next;
					mes "[Lhimetorra]";
					mes " The passion of love like a raging wave.. You can't even hide it. ";
					next;
				}
				if (.@card_1_love == 9) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " Perhaps the person you believe to be a butterfly is actually a moth. This fortune is awaiting a prudent judgement. ";
					next;
					mes "[Lhimetorra]";
					mes " Love is indeed a subject to be dealt with prudence. Keep that in mind young one. ";
					next;
				}
				if (.@card_1_love == 10) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " The one you love will give you a kiss of death. ";
					mes " The irresistable kiss.. It is up to you to decide whether to avoid it or not. ";
					next;
					mes "[Lhimetorra]";
					mes " Charisma... is the sweetest poison. ";
					next;
				}
				if (.@card_1_love == 11) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " You are looking at a wonderful person, but their eyes are fixed in darkness. ";
					mes " How about trying to grab their attention? ";
					next;
					mes "[Lhimetorra]";
					mes " If so, you need to try something other than charisma. ";
					next;
				}
				if (.@card_1_love == 12) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " Your love needs fresh blood. Healthy exercises and eating habits are necessary! ";
					mes " You must change your living pattern first. ";
					next;
					mes "[Lhimetorra]";
					mes " Health is the best. ";
					next;
				}
				if (.@card_1_love == 13) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " Don't you think you are infatuated by outer appearance and gambling with love? You might have to be more careful about it this time. ";
					next;
					mes "[Lhimetorra]";
					mes " Beauty is only skin deep. ";
					next;
				}
				if (.@card_1_love == 14) {
					cutin "�巹��ũī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " Become a pirate of love! It is a simple, yet strong fortune! ";
					next;
				}
				if (.@card_1_love == 15) {
					cutin "�巹��ũī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " No matter how romantic and beautiful love is, if it is not rightful, it is undesirable.. ";
					mes " is what this card means. ";
					next;
					mes "[Lhimetorra]";
					mes " I hope you are not disappointed by the moral of this fortune. ";
					next;
				}
				if (.@card_1_love == 16) {
					cutin "�巹��ũī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " In the rough sea called the world, only pirates, the outlaws of love, are the law. ";
					mes " This card supports strong love. ";
					next;
					mes "[Lhimetorra]";
					mes " You must overcome it - no matter how strong the wave is. ";
					next;
				}
				if (.@card_1_love == 17) {
					cutin "�巹��ũī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " It is a warning not to get involved in false love like pirated editions! ";
					mes " You may have to reconsider your love right now. ";
					next;
					mes "[Lhimetorra]";
					mes " Illegal copying is not love! ";
					next;
				}
				if (.@card_1_love == 18) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " This is praising the type of love that is always there, yet barely has a form as if it does not exist. ";
					mes " Are you involved this type of love? ";
					next;
					mes "[Lhimetorra]";
					mes " Love's form is obscure. ";
					next;
				}
				if (.@card_1_love == 19) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " You must be careful. Love is quietly approaching and spreading poison. Be careful of the poison of love. ";
					next;
					mes "[Lhimetorra]";
					mes " There is no cure for this poison! ";
					next;
				}
				if (.@card_1_love == 20) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " Aren't you already caught in love that you cannot run away from? Look around you. ";
					mes " You might be captured inside invisible walls. ";
					next;
					mes "[Lhimetorra]";
					mes " You have been blinded by love and became a prisoner! Shouldn't you escape? ";
					next;
				}
				if (.@card_1_love == 21) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " This fortune is saying that love is.. approaching wobbly and softly~ and then bam~ embracing it. ";
					mes " Very romantic. Hehe. ";
					next;
					mes "[Lhimetorra]";
					mes " Romance is the best part of love~ ";
					next;
				}
				if (.@card_1_love == 22) {
					cutin "��������Ʈī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " This card is warning you to not treat your loved one like a puppet. ";
					mes " You're not doing this, are you? ";
					next;
					mes "[Lhimetorra]";
					mes " Love is not supposed to be about controlling and restraining~ mm~ ";
					next;
				}
				if (.@card_1_love == 23) {
					cutin "��������Ʈī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " Dolls understand a human's heart more than a human. Try treating your loved one as if they were a doll. ";
					next;
					mes "[Lhimetorra]";
					mes " Your loved one can't be worse than a doll, can they? ";
					next;
				}
				if (.@card_1_love == 24) {
					cutin "��������Ʈī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " If you are afraid to look into a doll's eyes, that is because there is a dark shadow covering your love. ";
					mes " Rid yourselves of that shadow. Then the doll will smile as well. ";
					next;
					mes "[Lhimetorra]";
					mes " That is what love is. ";
					next;
				}
				if (.@card_1_love == 25) {
					cutin "��������Ʈī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " Dolls become accustomed to the owner the more they are handled. Give your doll more attention. ";
					mes " The doll is craving attention. A lot of attention. ";
					next;
					mes "[Lhimetorra]";
					mes " Delicate treatment and attention is the best in love. ";
					next;
				}
				if (.@card_1_love == 26) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " Do you fear the snake hair of a Medusa? However, love cannot be achieved with fear. ";
					mes " You must move forward! ";
					next;
					mes "[Lhimetorra]";
					mes " Love must be pushed forward! ";
					next;
				}
				if (.@card_1_love == 27) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " Warriors that hastily attacked the Medusa all failed, but the one hero that used a mirror succeeded. ";
					mes " You cannot succeed in love with brute force. You must use wisdom. ";
					next;
					mes "[Lhimetorra]";
					mes " Do you understand what I mean young one? ";
					next;
				}
				if (.@card_1_love == 28) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " Must you love the one that has hair of snakes? Reconsider this love and think about it earnestly. ";
					next;
					mes "[Lhimetorra]";
					mes " What do you think? Isn't this a great opportunity to ponder about the relationship. ";
					next;
				}
				if (.@card_1_love == 29) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " It is a hint saying that a strong hairstyle is the key to turning over the situation. Change your hairstyle! ";
					next;
					mes "[Lhimetorra]";
					mes " Fashion is in the hands of those who are ahead! ";
					next;
				}
				if (.@card_1_love == 30) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " Love must have two things: great strength and the will to live. Have you thought about whether or not you can overcome this with your current self? ";
					next;
					mes "[Lhimetorra]";
					mes " Know love and know thyself! ";
					next;
				}
				if (.@card_1_love == 31) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " A scythe may seem burdensome but a strong Baphomet can freely use it. ";
					mes " It is the same concept. If you are ready, any type of love is possible. There is no such thing as impossible. ";
					next;
					mes "[Lhimetorra]";
					mes " Love requires preparation as well! ";
					next;
				}
				if (.@card_1_love == 32) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " Love must have two things: great strength and the will to live. Have you thought about whether or not you can overcome this with your current self? ";
					next;
					mes "[Lhimetorra]";
					mes " Know love and know thyself! ";
					next;
				}
				if (.@card_1_love == 33) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " There are those who are born, destined to run into this wall, an obstacle. Your love seems to have reached that wall.. It must be hard. ";
					next;
					mes "[Lhimetorra]";
					mes " What a pity. ";
					next;
				}
				if (.@card_1_love == 34) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " This Baphomet looks as if it is having a hard time. The person must be exhausted even if it may not seem so. ";
					next;
					mes "[Lhimetorra]";
					mes " Approach then with affection. ";
					next;
				}
				if (.@card_1_love == 35) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " Can't you hear the cry of the card? It is suffering. Love is like that.. ";
					next;
					mes "[Lhimetorra]";
					mes " So don't be upset about it! ";
					next;
				}
				if (.@card_1_love == 36) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " Your love right now is so bored that it is yawning. How about trying something fresh and new? ";
					next;
					mes "[Lhimetorra]";
					mes " Try changing your dating style. ";
					next;
				}
				if (.@card_1_love == 37) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " Deep sleep brings happiness and dreams. I think what you need right now is sleep. ";
					next;
					mes "[Lhimetorra]";
					mes " Get some sleep. ";
					next;
				}
				if (.@card_1_love == 38) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " I feel some sort of emptiness.. Maybe there is a gap in your love? ";
					next;
					mes "[Lhimetorra]";
					mes " Take a close look. ";
					next;
				}
				if (.@card_1_love == 39) {
					cutin "����ī��",4; // Sohee Card
					mes "[Lhimetorra]";
					mes " Even a traditional beauty can seem cold to others. Try looking at your loved one from a different point of view. ";
					next;
					mes "[Lhimetorra]";
					mes " Look at love from a different perspective. You never know when you'll be able to discover something. ";
					next;
				}
				if (.@card_1_love == 40) {
					cutin "����ī��",4; // Sohee Card
					mes "[Lhimetorra]";
					mes " They may seem dreary and ominous but their attire is spotless. They show devotion to the other. ";
					mes " Even though you are not satisfied with your love right now, take a look at their attire. ";
					next;
					mes "[Lhimetorra]";
					mes " If it is carefully worn, their heart for you can be seen in it as well.. ";
					next;
				}
				if (.@card_1_love == 41) {
					cutin "����ī��",4; // Sohee Card
					mes "[Lhimetorra]";
					mes " There is a person you must not deal with thoughtlessly nearby. Don't say or do anything carelessly. You must be careful when dealing with this person. ";
					next;
					mes "[Lhimetorra]";
					mes " Bear that in mind. ";
					next;
				}
				if (.@card_1_love == 42) {
					cutin "����ī��",4; // Sohee Card
					mes "[Lhimetorra]";
					mes " Even if the wind blows and the trail of her clothes flutter, her posture never changes. Loving a person with that type of heart will bring goodwill and happiness. ";
					next;
					mes "[Lhimetorra]";
					mes " Keep a righteous heart and mind. ";
					next;
				}
				if (.@card_1_love == 43) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " That lightens and attacks with a pickaxe! You must aggressively move forward. What do you think? Your fortune is a good one. ";
					next;
					mes "[Lhimetorra]";
					mes " Is your heart ready young one? ";
					next;
				}
				if (.@card_1_love == 44) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " The card only shows gaunt bones, but notice how it has all the necessary tools?";
					mes " Even though your love right now may seem as if there is nothing to it, it has everything you need. ";
					next;
					mes "[Lhimetorra]";
					mes " Don't get too greedy about things. ";
					next;
				}
				if (.@card_1_love == 45) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " It has a lantern on its back and even in its hand.. it believes one light is insufficient. ";
					mes " If you are only shining one type of light to your loved one, shining another might help. ";
					next;
					mes "[Lhimetorra]";
					mes " They might be feeling that one is not enough. ";
					next;
				}
				if (.@card_1_love == 46) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " You know the smile of Mona Lisa.. Perhaps the person you are looking at has the same expression? ";
					next;
					mes "[Lhimetorra]";
					mes " Don't try to gaze straight them. Make an effort to approach them. ";
					next;
				}
				if (.@card_1_love == 47) {
					cutin "���̳���Ʈī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " A knight on a horse is a fantasy in every person's heart. Make it so that this fantasy becomes real. ";
					next;
					mes "[Lhimetorra]";
					mes " Then there will surely be progress. ";
					next;
				}
				if (.@card_1_love == 48) {
					cutin "���̳���Ʈī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " Is that soldier waiting to attack? I can feel great tension between the horse and knight. ";
					mes " Don't run forward carelessly. Raise your sword and wait for your chance. ";
					next;
					mes "[Lhimetorra]";
					mes " This means now is a time to wait. How about it, would you like to wait a while? ";
					next;
				}
				if (.@card_1_love == 49) {
					cutin "���̳���Ʈī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " He is falling asleep awaiting a battle. Is it because he is laid back, or simply pathetic? Depends on the situation I suppose. ";
					mes " But you've got to give him credit for his boldness. ";
					next;
					mes "[Lhimetorra]";
					mes " How about becoming a brave warrior in the battle of love? ";
					next;
				}
				if (.@card_1_love == 50) {
					cutin "���̳���Ʈī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " Very favorable. It's to a point that I can feel strong energy from the card. I will give some of this energy to you. ";
					next;
					mes "[Lhimetorra]";
					mes " Devote that energy to love..! ";
					next;
				}
				if (.@card_1_love == 51) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " What does the god of death have to say about love? It is something ominous for sure. ";
					next;
					mes "[Lhimetorra]";
					mes " I think it is trying to give a warning. Be careful. ";
					next;
				}
				if (.@card_1_love == 52) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " Hmm. How about giving a cute puppy as a gift? One with a round nose. Then they will surely be happy. ";
					next;
					mes "[Lhimetorra]";
					mes " But can't help it if they don't like puppies. ";
					next;
				}
				if (.@card_1_love == 53) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " I can tell what it was doing from the way it is crying while holding an axe with blood. It is deeply wounded by love. ";
					next;
					mes "[Lhimetorra]";
					mes " If that wound isn't cured soon, it will become as Anubis wanted. ";
					next;
				}
				if (.@card_1_love == 54) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " The pattern of the clothes symbolizes a warning. It is saying to be careful of love. ";
					next;
					mes "[Lhimetorra]";
					mes "Be cautious. ";
					next;
				}
				if (.@card_1_love == 55) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " He is a warning you not to drool over someone else. ";
					next;
					mes "[Lhimetorra]";
					mes " That's bad! You will be punished! ";
					next;
				}
				if (.@card_1_love == 56) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " Who is he so fiercly gazing at with those grand muscles? He is looking at someone else for sure. ";
					next;
					mes "[Lhimetorra]";
					mes " Don't get sidetracked and look elsewhere! You will be cursed! ";
					next;
				}
				if (.@card_1_love == 57) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " Strengthen your body and observe the target. That is the step to success. ";
					next;
					mes "[Lhimetorra]";
					mes " If you want love as well, why don't you take the card's advice and prepare yourself first? ";
					next;
				}
				if (.@card_1_love == 58) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " His navel is very pretty. You have to meet someone with that type of navel to be happy. ";
					next;
					mes "[Lhimetorra]";
					mes " Ok? Keep that in mind~ ";
					next;
				}
				if (.@card_1_love == 59) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " You'll get hurt if you mess around. This card is giving you a piece of advice. ";
					next;
					mes "[Lhimetorra]";
					mes " You did something wrong to your loved one, didn't you? Make an effort to make up for it~! ";
					next;
				}
				if (.@card_1_love == 60) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " From the way he is massaging its back because of a shoulder cramp, maybe your love is seeking someone to massage them. Love starts from little thoughts.";
					next;
					mes "[Lhimetorra]";
					mes " Next time you meet them, give them a massage. Start with the little things. ";
					next;
				}
				if (.@card_1_love == 61) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " His expression is in awe. When encountering an absurd incident, his face and expression becomes peculiarly distorted. ";
					mes " I think the one you are looking towards has that type of expression. ";
					next;
					mes "[Lhimetorra]";
					mes " Did you do something absurd to that person? Are you sure? Think about it~ ";
					next;
				}
				if (.@card_1_love == 62) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " If the lover does something wrong he pokes them with a needle. How scary.. ";
					next;
				}
				if (.@card_1_love == 63) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " A person's heart is like this card. If you flip it over nobody can tell what is behind it. Try turning the person's card over. ";
					next;
					mes "[Lhimetorra]";
					mes " You must approach their true heart. Understand? ";
					next;
				}
				if (.@card_1_love == 64) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " Jokers are sly, but that is just because it is their habit. ";
					mes " The reason the person may seem capricious or cunning is partially because they are born like that. ";
					next;
					mes "[Lhimetorra]";
					mes " Will you be able to approach them regardless? To do so, you must prepare you heart.. mm.. ";
					next;
				}
				if (.@card_1_love == 65) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " The joker can't use any of his strength because he is tied to a card. Perhaps the person is caught in something and can't show their true merit? ";
					next;
					mes "[Lhimetorra]";
					mes " If you love them, free them from the chains tying them down.. That is consideration.. and love ";
					next;
				}
				if (.@card_1_love == 66) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " Don't get fooled by tricks. They are a person, too. They know how to lie once in a while. Search for the trick calmly and carefully. ";
					next;
					mes "[Lhimetorra]";
					mes " And then search for a different route. That is the wise decision. ";
					next;
				}
				if (.@card_1_love == 67) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " It is saying that daring action is necessary, such as that of the Hode that strikes up from the sand. ";
					next;
					mes "[Lhimetorra]";
					mes " Maybe you are discouraged a little too much right now. Be brave and daring young one. ";
					next;
				}
				if (.@card_1_love == 68) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " Seeing that the Hode spits out sand to those who bother them, you must have done something to bother the person somehow. ";
					next;
					mes "[Lhimetorra]";
					mes " Maybe you are being troublesome? Make an effort to relax a little more. ";
					next;
				}
				if (.@card_1_love == 69) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " The Hode has a very strong will to live. It is to survive in the forest. It is suggesting dating with that kind of will.";
					next;
					mes "[Lhimetorra]";
					mes " Hmm, try love with more spirit. You will get good results. ";
					next;
				}
				if (.@card_1_love == 70) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " Ah.. there is a noble person up north. North it is. This direction will never change. ";
					next;
					mes "[Lhimetorra]";
					mes " Trust me and go for it. ";
					next;
				}
				if (.@card_1_love == 71) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " A walking bull is rare. The person you are looking towards is that rare. Don't let go of them. You may never see them again.. ";
					next;
					mes "[Lhimetorra]";
					mes " The card is saying this. ";
					next;
				}
				if (.@card_1_love == 72) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " Can you see the strong muscles that even arrows cannot pierce? The person is like that, too. ";
					next;
					mes "[Lhimetorra]";
					mes " To attack with love.. you will need a stronger attack.. Mmm.. ";
					next;
				}
				if (.@card_1_love == 73) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " The scariest thing is not the hammer nor horn. It is the massive legs that support its heavy weight. Nobody can survive a hit by those legs. The person is also probably hiding the most dangerous part. ";
					next;
					mes "[Lhimetorra]";
					mes " You must love but be careful at the same time. You never know when you will be hit by the hind legs. ";
					next;
				}
				if (.@card_1_love == 74) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " No matter how fearful the bull may be, if it has a nose ring, it has already been tamed by humans. No matter how astonishing that person may be, taming is your responsibility. ";
					next;
					mes "[Lhimetorra]";
					mes " Approach them with more sincerity and consideration. ";
					next;
				}
				mes "[Lhimetorra]";
				mes " You seeked advice about love. ";
				mes " Even if you may not pleased with it, consider it calmly and make an effort to find true happiness. ";
				cutin "���̾ƽ�ī��",255; // Giearth Card
				next;
				mes "[Lhimetorra]";
				mes " Then... ";
				break;
			//=================================================================Assets? ===
			case 2:
				mes "[Lhimetorra]";
				mes " Ooh... something about your fortune is starting to show... ";
				next;
				.@card_1_money = rand(1,73);
				if (.@card_1_money == 1) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " You must work hard to become wealthy. Don't think of other things.. Focus on and put effort into achieving your goals. ";
					next;
					mes "[Lhimetorra]";
					mes " Then good luck and try your best. ";
					next;
				}
				if (.@card_1_money == 2) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " Something very rare may come your way. A gold mine has been the dream of many since ancient times. You have a gold mine right in front of you. ";
					next;
					mes "[Lhimetorra]";
					mes " All in all, a big fortune is right in front of your eyes. I'll be looking forward to it. ";
					next;
				}
				if (.@card_1_money == 3) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " In the stomach pocket, there must be a secret treasure. There may be something in your pocket as well. ";
					next;
					mes "[Lhimetorra]";
					mes " Are you hiding things from other people? You should get rid of them. They may bring bad luck. ";
					next;
				}
				if (.@card_1_money == 4) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " The card says that you should not be too greedy, for that may cause you to dig your own grave. ";
					next;
					mes "[Lhimetorra]";
					mes " You may not feel good about it, but you should accept the card's advice..! ";
					next;
				}
				if (.@card_1_money == 5) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " Did you know that a moth's wings has infinite amounts of powder on it? A moth symbolizes wealth in the sense that it can gather wealth just as the powder on its wings. ";
					next;
					mes "[Lhimetorra]";
					mes " Young one, you will gather much wealth. ";
					next;
				}
				if (.@card_1_money == 6) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " You must work hard to become wealthy. Don't think of other things. Simply focusing on your goals putting effort into it will help. ";
					next;
					mes "[Lhimetorra]";
					mes " Good luck and try your best. ";
					next;
				}
				if (.@card_1_money == 7) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " There is a common saying that when a moth flaps its wings, wealth will fly away as well. It's not a very good sign. ";
					next;
					mes "[Lhimetorra]";
					mes " Be careful not to lose your assets. Take good care of your wallet. ";
					next;
				}
				if (.@card_1_money == 8) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " Dustiness teeth are very strong. This means.. ";
					next;
					mes "[Lhimetorra]";
					mes " Your tooth will become a gold tooth?! ";
					next;
				}
				if (.@card_1_money == 9) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " When a dustiness flies around, a big expense comes up. You may need to spend some money soon. ";
					next;
					mes "[Lhimetorra]";
					mes " You might want to set up a budget to prepare for this expense. ";
					next;
				}
				if (.@card_1_money == 10) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " Dracula brings in money. Maybe it is the moral influence from when it was a count. It is expensive to be a vampire, but I've never seen a poor one before. ";
					next;
					mes "[Lhimetorra]";
					mes " You don't need to worry about money. ";
					next;
				}
				if (.@card_1_money == 11) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " To Dracula, money is not important. Blood is more valuable. To you, money must not be that important. You don't need to be concerned about money. ";
					next;
					mes "[Lhimetorra]";
					mes " How about it? Try being a little more casual about money. ";
					next;
				}
				if (.@card_1_money == 12) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " Dracula mocks human's money. To him it is worthless. ";
					next;
					mes "[Lhimetorra]";
					mes " You should not be so concerned about money and assets, too. ";
					next;
				}
				if (.@card_1_money == 13) {
					cutin "�巹��ũī��",4; // Drake Card
					mes "[Lhimetorra]";
					mes " No matter what, stealing is wrong! Even if a Drake blesses you in the name of pirates! Stealing is forbidden! ";
					next;
					mes "[Lhimetorra]";
					mes " Noooooooo stealing! ";
					next;
				}
				if (.@card_1_money == 14) {
					cutin "�巹��ũī��",4; // Drake Card
					mes "[Lhimetorra]";
					mes " You will gather good fortune in a secretive and peculiar way.. Although, there seems to be shadows over some parts of your life. ";
					next;
					mes "[Lhimetorra]";
					mes " It's an uneasy fortune. Are you ready? ";
					next;
				}
				if (.@card_1_money == 15) {
					cutin "�巹��ũī��",4; // Drake Card
					mes "[Lhimetorra]";
					mes " The reason pirates indulge in others assets in the vast rough ocean, is because it is the only way to let the people of the land know of their existence. ";
					next;
					mes "[Lhimetorra]";
					mes " But those who live on land do not need to do so. Don't look over other people's belongings. It is the advice of a pirate. ";
					next;
				}
				if (.@card_1_money == 16) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " Marina prefers clean funds. It hates suspicious money. Your possessions should be clean as well. ";
					next;
					mes "[Lhimetorra]";
					mes " Why? The Marina might get rid of it all. ";
					next;
				}
				if (.@card_1_money == 17) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " The Marina gathers money quietly, little by little, and freely roaming at the same time. That's the real way to make money. The Marina is suggesting this method to you. ";
					next;
					mes "[Lhimetorra]";
					mes " You should take a shot at it. You've got nothing to lose. ";
					next;
				}
				if (.@card_1_money == 18) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " The Marina is not interested in money. The card suggests that you will resemble these traits as well. You will enjoy life apart from money. ";
					next;
					mes "[Lhimetorra]";
					mes " That's the fortune from a Marina card. ";
					next;
				}
				if (.@card_1_money == 19) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " You will gather money swiftly and quietly, then boom~ blow it all at once. ";
					next;
					mes "[Lhimetorra]";
					mes " Very witty, hoho. ";
					next;
				}
				if (.@card_1_money == 20) {
					cutin "��������Ʈī��",4; // Marionette Card
					mes "[Lhimetorra]";
					mes " The Marionette treasures art over wealth. Bear that in mind. Honor over assets. ";
					next;
					mes "[Lhimetorra]";
					mes " What an important lesson.. Mmm... ";
					next;
				}
				if (.@card_1_money == 21) {
					cutin "��������Ʈī��",4; // Marionette Card
					mes "[Lhimetorra]";
					mes " The Marionette likes shiny money. Not dull money, but the shiny kind. ";
					next;
					mes "[Lhimetorra]";
					mes " Anyways, search for that type of money. ";
					next;
				}
				if (.@card_1_money == 22) {
					cutin "��������Ʈī��",4; // Marionette Card
					mes "[Lhimetorra]";
					mes " The Marionette requires lots of money. Its expenditures are enormous. You must have many expenditures ahead of you. ";
					next;
					mes "[Lhimetorra]";
					mes " A gloomy fortune. How about being cautious? ";
					next;
				}
				if (.@card_1_money == 23) {
					cutin "��������Ʈī��",4; // Marionette Card
					mes "[Lhimetorra]";
					mes " The Marionette uses a lot of money. There is someone around you that is like that, too. ";
					next;
					mes "[Lhimetorra]";
					mes " There is a person like that for sure. You should watch out. ";
					next;
				}
				if (.@card_1_money == 24) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " The hair of the Medusa symbolizes the amount of wealth. Seems as if something good will happen to you, young one. ";
					next;
					mes "[Lhimetorra]";
					mes " You can look forward to it. ";
					next;
				}
				if (.@card_1_money == 25) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " The hair of the Medusa are all snakes. Snakes symbolize greed and slyness. When gathering things, it seems as if a cunning force will join you. It's not exactly a bright sign.. ";
					next;
					mes "[Lhimetorra]";
					mes " But you surely will get money. Hmm.. ";
					next;
				}
				if (.@card_1_money == 26) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " The Medusa is strongly recommending saving. This card is telling you to save. It says to put many savings accounts in your hair and make yourself resemble its head shape. ";
					next;
					mes "[Lhimetorra]";
					mes " That is what it believes to be wealth. Oooh! ";
					next;
				}
				if (.@card_1_money == 28) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " The Medusa does not enjoy playing with money. If you are attempting to use money other than the way it should be used, you should stop. Why? ";
					next;
					mes "[Lhimetorra]";
					mes " Because there can be a curse of the Medusa. ";
					next;
				}
				if (.@card_1_money == 29) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " The great strength of the Baphomet brings in fortune. It seems as if you will be able to gather much wealth with the aid of the Baphomet's force! ";
					next;
					mes "[Lhimetorra]";
					mes " It's a good sign! Congratulations! ";
					next;
				}
				if (.@card_1_money == 30) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " The scythe of the Baphomet means a strong tool to gather wealth. If you have a strong tool like his, it should be easy to gather wealth. ";
					next;
					mes "[Lhimetorra]";
					mes " What the Baphomet is trying to say is, find a mean that can help you like his tool. ";
					next;
				}
				if (.@card_1_money == 31) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " How about getting involved in raising cattle? It seems like you can gather much wealth through it. ";
					next;
				}
				if (.@card_1_money == 32) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " The Baphomet would like a tribute. He is saying that if you do, he will return great benefits. ";
					next;
					mes "[Lhimetorra]";
					mes " So try offering a part of your assets to the Baphomet. ";
					next;
				}
				if (.@card_1_money == 33) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " The Sandman cries with sadness when money comes up. It is sad because money does not possess love or affection. ";
					next;
					mes "[Lhimetorra]";
					mes " I wonder if the meaning of money will slowly disappear from your life as well. ";
					next;
				}
				if (.@card_1_money == 34) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " The Sandman is screaming because it saw too much money. It saw the money in the hands of your future. I wonder what all that money is? ";
					next;
					mes "[Lhimetorra]";
					mes " I wonder.. Aren't you curious? ";
					next;
				}
				if (.@card_1_money == 35) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " The Sandman's body is empty inside. Your wallet seems to be emtpy, too. You should save up some money. ";
					next;
					mes "[Lhimetorra]";
					mes " The Sandman likes to save, too. Even a monster likes to save, but when a human doesn't... ";
					next;
				}
				if (.@card_1_money == 36) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " Money is like sand. Even if you save it, once the wind blows, it disappears. This card shows the emptiness of money. ";
					next;
					mes "[Lhimetorra]";
					mes " Indeed, money is futile. ";
					next;
				}
				if (.@card_1_money == 37) {
					cutin "����ī��",4; // Sohee Card
					mes "[Lhimetorra]";
					mes " Sohee is wearing a fine article. To wear something like that, you would need plenty of money. Do you know what the secret is? Sohee saved very much when she was once alive. ";
					next;
					mes "[Lhimetorra]";
					mes " So you should start saving, too. ";
					next;
				}
				if (.@card_1_money == 38) {
					cutin "����ī��",4; // Sohee Card
					mes "[Lhimetorra]";
					mes " Sohee hates misers. She believes she has become like that because of a miser. Don't be stingy in front of Sohee! ";
					next;
					mes "[Lhimetorra]";
					mes " That type of stinginess will spite other people. Use money when it is necessary. ";
					next;
				}
				if (.@card_1_money == 39) {
					cutin "����ī��",4; // Sohee Card
					mes "[Lhimetorra]";
					mes " Sohee dislikes the wealthy. They try to gather money, but never use it for others. If you don't want to be cursed by Sohee, you need to learn how to be generous with money. ";
					next;
					mes "[Lhimetorra]";
					mes " So if you have malicious desires, forget them. An ill heart easily gathers misfortune. ";
					next;
				}
				if (.@card_1_money == 40) {
					cutin "����ī��",4; // Sohee Card
					mes "[Lhimetorra]";
					mes " Sohee likes foreign money. They are cute and pretty. If you have foreign currency, Sohee will love you. ";
					next;
					mes "[Lhimetorra]";
					mes " Keep an eye out for foreign currency. It will bring you luck. ";
					next;
				}
				if (.@card_1_money == 41) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " Those who work hard will gather great fortune. The Skeleton says diligent work will help greatly in gathering wealth. ";
					next;
					mes "[Lhimetorra]";
					mes " Hmm~ a ghost is saying strange things. ";
					next;
				}
				if (.@card_1_money == 42) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " Its youth is gone after a lifetime of chasing after gold. It became a monster with only bones left. No matter how much you like money and your work, look after your life as well. ";
					next;
					mes "[Lhimetorra]";
					mes " There is much more to life than wealth. ";
					next;
				}
				if (.@card_1_money == 43) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " To become rich, you must work hard as if you became a skeleton. The Skeleton is saying to work hard until you become a skeleton. ";
					next;
					mes "[Lhimetorra]";
					mes " Then not only the Skeleton, but many people will repay you greatly. ";
					next;
				}
				if (.@card_1_money == 44) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " The Skeleton says that you can make money by going north. Go north. ";
					next;
					mes "[Lhimetorra]";
					mes " There must be great fortune in that direction. ";
					next;
				}
				if (.@card_1_money == 45) {
					cutin "���̳���Ʈī��",4; // Khalitzburg Card
					mes "[Lhimetorra]";
					mes " A knight is a job that requires a lot of money. A hint of a big expense. You might want to tighten your belt. ";
					next;
					mes "[Lhimetorra]";
					mes " That is, if you don't want go to bankrupt. ";
					next;
				}
				if (.@card_1_money == 46) {
					cutin "���̳���Ʈī��",4; // Khalitzburg Card
					mes "[Lhimetorra]";
					mes " Knights do not fight for money. If they did, they would be a mercenary. A knight reaches for something higher. What the knight wants to tell you is the way to live. ";
					next;
					mes "[Lhimetorra]";
					mes " Set a goal higher than money and wealth. Do you understand, young one? ";
					next;
				}
				if (.@card_1_money == 47) {
					cutin "���̳���Ʈī��",4; // Khalitzburg Card
					mes "[Lhimetorra]";
					mes " A knight values honor more than fortune. They consider discussing wealth itself dirty not worthy. How would you be able to ask such a knight a fortune about wealth? ";
					next;
					mes "[Lhimetorra]";
					mes " The knight says that a new road of life will open once you look away from fortune. ";
					next;
				}
				if (.@card_1_money == 48) {
					cutin "���̳���Ʈī��",4; // Khalitzburg Card
					mes "[Lhimetorra]";
					mes " You need to think of an ideal more noble than money. The fortune the knight suggests is this: Knights never speak of ways to make money. ";
					next;
					mes "[Lhimetorra]";
					mes " Compared to life, they believe money is foolish. The knight would like to understand these ideas of life. ";
					next;
				}
				if (.@card_1_money == 49) {
					cutin "���̳���Ʈī��",4; // Khalitzburg Card
					mes "[Lhimetorra]";
					mes " Working hard is the only way to gather wealth; don't get sidetracked and put effort into working will help your fortune. ";
					next;
					mes "[Lhimetorra]";
					mes " So do your best. ";
					next;
				}
				if (.@card_1_money == 50) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " What does the god of death have to say about wealth? It is surely a bad omen. It is trying to warn something. ";
					next;
					mes "[Lhimetorra]";
					mes " Be careful. It is the word of the god of death. ";
					next;
				}
				if (.@card_1_money == 51) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " The Anubis is very interested in the sacrifices offered. The offerings he likes are youth and effort. ";
					next;
					mes "[Lhimetorra]";
					mes " If you offer these two things, the Anubis says he will bring you wealth. ";
					next;
				}
				if (.@card_1_money == 52) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " The Anubis is giving a warning of the west. There is a being there that can break away your wealth. ";
					next;
					mes "[Lhimetorra]";
					mes " If you want to protect your assets, beware of the west. ";
					next;
				}
				if (.@card_1_money == 53) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " The Anubis hates those who try to gather money for his death. He believes it's a waste of money. Don't make the mistake of gathering money for death. ";
					next;
					mes "[Lhimetorra]";
					mes " This is the true advice of a Anubis. ";
					next;
				}
				if (.@card_1_money == 54) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " The Orc Lord possesses much wealth. It's because of greed. Greed is essential in collecting money. The desire and greediness to make money is not something to be ashamed about. Be diligent and go make money. ";
					next;
					mes "[Lhimetorra]";
					mes " But, too much greed is forbidden. ";
					next;
				}
				if (.@card_1_money == 55) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " The Orc Lord starts drooling about anything involving money. He targets anybody with money. ";
					next;
					mes "[Lhimetorra]";
					mes " Therefore, don't speak of money to the Orc Lord. ";
					next;
					mes "[Lhimetorra]";
					mes " Same goes for humans. Be wary of those who are avaricious like the Orc Lord. ";
					next;
				}
				if (.@card_1_money == 56) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " There should be great wealth awaiting in the direction the Orc Lord's horn is pointing. The card is directing towards.. ";
					next;
					mes "[Lhimetorra]";
					mes " The northwest? Would you like to try your luck in that direction? ";
					next;
				}
				if (.@card_1_money == 57) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " The Orc Lord likes gold. Of all the treasures, gold is the best. Closely watch gold. ";
					next;
					mes "[Lhimetorra]";
					mes " Gold is rather peculiar compared to other assets. ";
					next;
				}
				if (.@card_1_money == 58) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " Jack makes money through jokes. Others' happiness is the key to his wealth. ";
					next;
					mes "[Lhimetorra]";
					mes " Why don't you learn how to make others happy? It should be of great help. ";
					next;
				}
				if (.@card_1_money == 59) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " Jack likes fun money. He detests sad and burdensome money. ";
					mes " He always says this. Light-hearted and easy money isn't dangerous even if it piles up. ";
					next;
					mes "[Lhimetorra]";
					mes " As Jack's advice says, stay closer to light money. It is safer and better. ";
					next;
				}
				if (.@card_1_money == 60) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " Jack thinks of money as a foolish item. But somehow he makes that kind of money. ";
					mes " That's why those who are controlled by fools consider the other a fool, too. ";
					next;
					mes "[Lhimetorra]";
					mes " If you don't want to be considered a fool by Jack, don't be controlled by money. ";
					mes " Or else, Jack will attack. ";
					next;
				}
				if (.@card_1_money == 61) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " Jack is asking for money. Don't be stingy about paying those who bring entertainment and fun. ";
					next;
					mes "[Lhimetorra]";
					mes " Then, Jack will reward you in return. ";
					next;
				}
				if (.@card_1_money == 62) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " Do you know what a joker's specialty is? It is tricking others and making money. Be wary of the joker. ";
					next;
					mes "[Lhimetorra]";
					mes " Jokers do not exist in one form. They will aim for your money in several different ways. ";
					next;
				}
				if (.@card_1_money == 63) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " The Joker says if you let him borrow money, he will repay you with more. You're going to refuse, right? But the Joker's temptation does not end after one try. ";
					mes " He will linger around you as a neighbor, or a rare item and ask for money. ";
					next;
					mes "[Lhimetorra]";
					mes " Act wisely! You'll be in trouble if you are tricked easily! ";
					next;
				}
				if (.@card_1_money == 64) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " Even if a joker asks for change, never give any to him. He will ask for change, then end up ask for a big sum of money. ";
					mes " Jokers are like that. They have the ability to turn a small mistake into a big calamity. ";
					next;
					mes "[Lhimetorra]";
					mes " That's why you should be more careful about it. ";
					next;
				}
				if (.@card_1_money == 65) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " There is only one reason a Joker requests money.. to take yours. ";
					mes " His goal is not to become rich. A real foul playful one. ";
					next;
					mes "[Lhimetorra]";
					mes " But losing money isn't a joke now, is it? You should be careful. ";
					next;
				}
				if (.@card_1_money == 66) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " Hodes do not know about money. They just gobble everything up. But that might be the shortcut to gaining great wealth. ";
					next;
					mes "[Lhimetorra]";
					mes " Don't focus too much on money. Just work at it. It's saying that it is the best method. ";
					next;
				}
				if (.@card_1_money == 67) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " Hodes do not know anything about money. But they do not forgive those who have an eye on their things. ";
					mes " Not being greedy and taking care of your share is the wisest way to manage your wealth. ";
					next;
					mes "[Lhimetorra]";
					mes " Indeed, the Hode is right. Do you understand as well? ";
					next;
				}
				if (.@card_1_money == 68) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " The Hode knows nothing about money. But a very rare item drops from a Hode's body. ";
					mes " It has a treasure in it without knowing. ";
					next;
					mes "[Lhimetorra]";
					mes " Take a careful look around you. Treasures are hidden all over. ";
					next;
				}
				if (.@card_1_money == 69) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " Hodes are strong even though they live in the desert. Just because the environment is poor, doesn't mean that you can't gather wealth. ";
					next;
					mes "[Lhimetorra]";
					mes " Don't blame the environment. That excuse is only for whiners. ";
					next;
				}
				if (.@card_1_money == 70) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " Do you know the saying that says those who work like bulls become rich? Working hard is the best way. ";
					next;
					mes "[Lhimetorra]";
					mes " Just like a bull. ";
					next;
				}
				if (.@card_1_money == 71) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " Bulls only know how to work, but the bull itself has a lot to offer. Meat, leather, horn.. ";
					next;
					mes "[Lhimetorra]";
					mes " You, too, should look after yourself and not just work. You have many hidden values. ";
					next;
				}
				if (.@card_1_money == 72) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " Bulls continue to work even on gloomy days. Then they can gather a lot of things. ";
					next;
					mes "[Lhimetorra]";
					mes " Don't be picky about the days you work. You will be able to make more money. ";
					next;
				}
				if (.@card_1_money == 73) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " Bulls do not like working for money. They are disgruntled when others consider labor as money. ";
					mes " Shouldn't you reconsider working against your will just for money? ";
					next;
					mes "[Lhimetorra]";
					mes " It is a serious problem. It is your life, so ponder about it young one. ";
				}
				mes "[Lhimetorra]";
				mes " Most people are curious about money. ";
				mes " It is a very humanly and common curiosity. Cards are very stingy about fortunes regarding wealth. ";
				next;
				cutin "���̾ƽ�ī��",255; // Giearth Card
				mes "[Lhimetorra]";
				mes " Therefore, getting a fortune like this is considered being lucky. Use this fortune to prosper. ";
				break;
			//=================================================================Future ===
			case 3:
				mes "[Lhimetorra]";
				mes " Future... the card that sees the future is beginning to speak...... Prepare yourself... ";
				next;
				.@card_1_future = rand(1,67);
				if (.@card_1_future == 1) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " Youth is not eternal. At one point when you wake up, you realize you are already a middle-aged worker. ";
					mes " Even reminiscing about the past over a cup of coffee can't bring back time. ";
					next;
					mes "[Lhimetorra]";
					mes " Treasure the present.. is what the card is saying. ";
					next;
				}
				if (.@card_1_future == 2) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " This fortune is foreshadowing that you will become a strong and healthy worker in the future. ";
					mes " Not a normal worker, but one that has great strength and might.. ";
					next;
					mes "[Lhimetorra]";
					mes " You should prepare for your future. ";
					next;
				}
				if (.@card_1_future == 3) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " Smoking in a mine is an imprudent, life-threatening thing to do. You are wasting your precious life with that kind of behavior. ";
					next;
					mes "[Lhimetorra]";
					mes " Act with a little more wisdom for your future. ";
					next;
				}
				if (.@card_1_future == 4) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " You may be shoveling in the future. In a dark dark place, shoveling that requires great strength. You must be careful young one. ";
					next;
					mes "[Lhimetorra]";
					mes " This type of fortune is never wrong. ";
					next;
				}
				if (.@card_1_future == 5) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " The moth is used when it is a caterpillar and ignored after it becomes a moth, by humans. ";
					mes " Which is better? ";
					next;
					mes "[Lhimetorra]";
					mes " Check to see if there is an aspect of your life that is like the moth. ";
					next;
				}
				if (.@card_1_future == 6) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " The moth flies around without worrying about the future. It is telling you to fly freely rather than getting anxious about the future.. ";
					next;
					mes "[Lhimetorra]";
					mes " This is the fortune from this card. ";
					next;
				}
				if (.@card_1_future == 7) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " Dustiness' teeth are very strong. This means... ";
					next;
					mes "[Lhimetorra]";
					mes " To live the future with strong teeth?! ";
					next;
				}
				if (.@card_1_future == 8) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " The moth says that this is not a time to think about wealth and prosperity. It says that someone important has appeared near you. ";
					next;
					mes "[Lhimetorra]";
					mes " Any ideas who that may be? ";
					next;
				}
				if (.@card_1_future == 9) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " Dustiness symbolizes a hazy future. It is similar to your mind right now. It says it is obvious. ";
					mes " It says that there is no set path in the future. Isn't a relief in a way? ";
					next;
					mes "[Lhimetorra]";
					mes " It is not good nor bad, so there is always room for new possibilities. ";
					next;
				}
				if (.@card_1_future == 10) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " Sometime in your future, a future like Dracula awaits you. ";
					next;
					mes "[Lhimetorra]";
					mes " If you hope for that type of future, it is no problem, but you should be careful nonetheless. ";
					next;
				}
				if (.@card_1_future == 11) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " If the condition is just right, vampires can live forever. But, when that perfect condition is disrupted, they meet a tragic end. ";
					next;
					mes "[Lhimetorra]";
					mes " This means that if you go after fame and eternal life, tragedy awaits you in the end. They are not the important things in life. ";
					next;
				}
				if (.@card_1_future == 12) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " The Dracula says to be true to the present. Indeed, thinking and being true to the present is much more important than trying to figure out your future. ";
					next;
					mes "[Lhimetorra]";
					mes " Unfortunately, I agree with it young one. ";
					next;
				}
				if (.@card_1_future == 13) {
					cutin "�巹��ũī��",4; // Drake Card
					mes "[Lhimetorra]";
					mes " Pirates do not have a future. That doesn't mean you do not have one. But.. you simply need to make more prudent decisions. ";
					next;
					mes "[Lhimetorra]";
					mes " How about changing your lifestyle? That's what this means. ";
					next;
				}
				if (.@card_1_future == 14) {
					cutin "�巹��ũī��",4; // Drake Card
					mes "[Lhimetorra]";
					mes " In this world, being a pirate out in the rough seas is very dangerous. But, they do not regret their decisions. ";
					next;
					mes "[Lhimetorra]";
					mes " Because they find their meaning of life in the process. Young one, how about searching for the meaning of your life? ";
					next;
				}
				if (.@card_1_future == 15) {
					cutin "�巹��ũī��",4; // Drake Card
					mes "[Lhimetorra]";
					mes " Pirates are remembered as pirates even after they pass away. A person's name is beyond the matter of life and death. ";
					next;
					mes "[Lhimetorra]";
					mes " You should live with that aspect in mind.";
					next;
				}
				if (.@card_1_future == 16) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " The Marina does not think of its future.. But I can tell you one thing. Survival. The Marina only thinks about survival and life. ";
					next;
					mes "[Lhimetorra]";
					mes " You.. no, all of us should learn and do the same. ";
					next;
				}
				if (.@card_1_future == 17) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " The Marina doesn't think of its future.. but I can tell you one thing. Freedom. The Marina swims freely. ";
					next;
					mes "[Lhimetorra]";
					mes " How about living like that, too? ";
					next;
				}
				if (.@card_1_future == 18) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " Leave your future to the Marina. The Marina treasures its precious ocean. The sea will be of great significance in your future, too. ";
					next;
					mes "[Lhimetorra]";
					mes " A fisherman? Oceanographer? Pirate? Although I do not know which job it is... ";
					next;
				}
				if (.@card_1_future == 19) {
					cutin "��������Ʈī��",4; // Marionette Card
					mes "[Lhimetorra]";
					mes " A Marionette is a Marionette forever. Its past and future never changes. Its present is its future. Don't you think it is rather sad? ";
					next;
					mes "[Lhimetorra]";
					mes " But that could also be a good thing. This is the meaning of a Marionette. ";
					next;
				}
				if (.@card_1_future == 20) {
					cutin "��������Ʈī��",4; // Marionette Card
					mes "[Lhimetorra]";
					mes " A Marionette is restrained but it has hope that it will be freed one day. ";
					next;
					mes "[Lhimetorra]";
					mes " Very nice. This fortune signifies 'hope'. ";
					next;
				}
				if (.@card_1_future == 21) {
					cutin "��������Ʈī��",4; // Marionette Card
					mes "[Lhimetorra]";
					mes " The eyes of a Marionette symbolize 'challenge.' Challenge will mean a lot in your future. ";
					next;
					mes "[Lhimetorra]";
					mes " ...to the point where that challenge will change your life. ";
					next;
				}
				if (.@card_1_future == 22) {
					cutin "��������Ʈī��",4; // Marionette Card
					mes "[Lhimetorra]";
					mes " The Marionette believes the present is more important than the future. Basically, asking about the future is pointless. ";
					next;
					mes "[Lhimetorra]";
					mes " The Marionette devotes everything into the present. It suggests that type of attitude to you, too. ";
					next;
				}
				if (.@card_1_future == 23) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " The Medusa symbolizes the absolute one who accepts everyone's challenge. Your future will be in a position that is challenged by many. ";
					next;
					mes "[Lhimetorra]";
					mes " It could be good and bad. It is also a very tiring position. ";
					next;
				}
				if (.@card_1_future == 24) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " The Medusa symbolizes the absolute one who accepts everyone's challenge. Your future must be filled with challenges! ";
					next;
					mes "[Lhimetorra]";
					mes " Always challenge others! It is alright to fail, since challenge itself will become life. ";
					next;
				}
				if (.@card_1_future == 25) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " The Medusa says that there will be great chaos in the future. Chaos... I'm not sure what type of chaos it means, but it is definitely something that has never happened before. ";
					next;
					mes "[Lhimetorra]";
					mes " There is something that you must fight.. and win, in your future. ";
					next;
				}
				if (.@card_1_future == 26) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " The hair of the Medusa are sticking up. It is nervous about the big change that is going to happen. A change that even makes the scary Medusa worried. ";
					next;
					mes "[Lhimetorra]";
					mes " How about preparing yourself as well? ";
					next;
				}
				if (.@card_1_future == 27) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " The Baphomet doesn't care about a human's future. They simply observe quietly. Hmm... It seems like it has nothing to say about your future as well... ";
					next;
					mes "[Lhimetorra]";
					mes " It has an unconcerned expression. ";
					next;
				}
				if (.@card_1_future == 28) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " The scythe the Baphomet is holding signifies the strong will to conquer the future. ";
					mes " What you need is not someone else's help or wisdom, but strong willpower. ";
					next;
					mes "[Lhimetorra]";
					mes " Once you have that type of willpower, the road to the future will be very broad and promising. ";
					next;
				}
				if (.@card_1_future == 29) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " The Baphomet says that humans have no future. It says that their greed and selfishness shows no hope. ";
					mes " The future will only open to those that go beyond human's greed. ";
					next;
					mes "[Lhimetorra]";
					mes " The card expects something like that from you. ";
					next;
				}
				if (.@card_1_future == 30) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " The Baphomet is facing the future. No matter how much effort you put in, without an eye that looks towards the future, it is pointless. ";
					mes " The Baphomet is telling you to look towards the future. ";
					next;
					mes "[Lhimetorra]";
					mes " To know your position right now and where to aim in the future. ";
					next;
				}
				if (.@card_1_future == 31) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " A sand's future is simply sand. Not a rock, nor mud. Some things just don't change young one. ";
					next;
					mes "[Lhimetorra]";
					mes " What the Sandman card is trying to say is to treasure your present self. ";
					next;
				}
				if (.@card_1_future == 32) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " A sand dune changes its shape even after a day. The Sandman card is speaking of a future with many changes. ";
					next;
					mes "[Lhimetorra]";
					mes " It says not to be too caught up with the present, because the future is always changing. ";
					next;
				}
				if (.@card_1_future == 33) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " You will have a son in the future. Hmm? What'd you say? No plans for a baby? ";
					next;
					mes "[Lhimetorra]";
					mes " That's why it is the future. Unexpected things happen every once in a while in the future. Lala~ ";
					next;
				}
				if (.@card_1_future == 34) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " There are rare and precious treasures in the sand. The Sandman says that in the vast sand of the world, a treasure, will be discovered. That treasure is you young one.";
					next;
					mes "[Lhimetorra]";
					mes " Hmm... Expecting a lot. Hehe~ ";
					next;
				}
				if (.@card_1_future == 35) {
					cutin "����ī��",4; // Sohee Card
					mes "[Lhimetorra]";
					mes " Do you know what a Sohee thinks the most pitiful thing is? The future. It is because she was not able to live her future. ";
					mes " That is why you cannot bring up the subject of future in front of Sohee. I'm very sorry I cannot help. ";
					next;
					mes "[Lhimetorra]";
					mes " But isn't it better than a curse. Just think of it as that and forget about it. ";
					next;
				}
				if (.@card_1_future == 36) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " Even in darkness you will shine for your goal. ";
					mes " The Skeleton is encouraging you to not lose your light even in a life in dark and damp places. ";
					next;
					mes "[Lhimetorra]";
					mes " You must feel good, getting a word of encouragement from the Skeleton. Lala~ ";
					next;
				}
				if (.@card_1_future == 37) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " The story I heard from the skeleton goes like this. I am the king of the future. What in the world is that supposed to mean? ";
					next;
					mes "[Lhimetorra]";
					mes " I don't know. Maybe it is saying that a scrawny person will do something great in the future? ";
					next;
				}
				if (.@card_1_future == 38) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " If you want to do something great in the future, you must express your thankfulness to the Skeleton. ";
					mes " Then the Skeleton will help you. How do you express your thankfulness? ";
					next;
					mes "[Lhimetorra]";
					mes " If you see someone that resembles the Skeleton, help them. ";
					mes " Then the Skeleton will think that you helped itself and be happy. What a silly monster. Haha. ";
					next;
				}
				if (.@card_1_future == 39) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " The Skeleton has the ability to dig where it feels the future, rather than looking into it. ";
					mes " It is digging in the east right now. How about it, won't you try going there? ";
					next;
					mes "[Lhimetorra]";
					mes " Who knows, the key to the future may be lying in the east. ";
					next;
				}
				if (.@card_1_future == 40) {
					cutin "���̳���Ʈī��",4; // Khalitzburg Card
					mes "[Lhimetorra]";
					mes " A knight's future leads to death. An honorable death on the battlefield. ";
					mes " One cannot live as a knight without being proud of that type of future. ";
					next;
					mes "[Lhimetorra]";
					mes " The knight wants you to be proud of yourself. ";
					mes " It says what you need is pride. Not honor, wealth, or love.. but pride. ";
					next;
				}
				if (.@card_1_future == 41) {
					cutin "���̳���Ʈī��",4; // Khalitzburg Card
					mes "[Lhimetorra]";
					mes " A knight commenting about a person's future is very rare. ";
					mes " It says nothing for you in particular. Nothing ominous. ";
					next;
					mes "[Lhimetorra]";
					mes " It is a very good thing. Means a bright and clear future. Hohoho~ ";
					next;
				}
				if (.@card_1_future == 42) {
					cutin "���̳���Ʈī��",4; // Khalitzburg Card
					mes "[Lhimetorra]";
					mes " A knight commenting about a person's future is very rare. ";
					mes " It says it will say one thing for you. Dark clouds can be seen beyond the clear skies. ";
					next;
					mes "[Lhimetorra]";
					mes " You must find out for yourself what those clouds mean. Anyways, you must be careful. ";
					next;
				}
				if (.@card_1_future == 43) {
					cutin "���̳���Ʈī��",4; // Khalitzburg Card
					mes "[Lhimetorra]";
					mes " It is necessary to reflect upon the past and present in order to look into the future. This card says to look carefully into your past. ";
					next;
					mes "[Lhimetorra]";
					mes " ..with the attitude of reflecting upon yourself. What do you think? Don't you think you lived too much looking into the future? ";
					next;
				}
				if (.@card_1_future == 44) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " What does the god of death want to say about the future? It is definitely an ominous sign. ";
					next;
					mes "[Lhimetorra]";
					mes " It is trying to warn something about the future. Be careful. ";
					next;
				}
				if (.@card_1_future == 45) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " The Anubis likes comedy despite people's expectations. It looks forward to comedy. Comedy must be important in the future. ";
					next;
					mes "[Lhimetorra]";
					mes " In your case, it would be wise to grow your sense of humor. ";
					next;
				}
				if (.@card_1_future == 46) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " The Anubis is the god of death, but it expresses more interest in the future than death. ";
					next;
					mes "[Lhimetorra]";
					mes " Even the Anubis doesn't think about death, so why should you be thinking about it? Expect a good future young one. ";
					next;
				}
				if (.@card_1_future == 47) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " The Anubis says it has no interest in you. It is a good sign. ";
					next;
					mes "[Lhimetorra]";
					mes " What can be better than being ignored by the god of death? ";
					next;
				}
				if (.@card_1_future == 48) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " The Orc Lord says that dairy farming will develop in the future. Why don't you invest in it as well? ";
					next;
					mes "[Lhimetorra]";
					mes " A business looking into the future? ";
					next;
				}
				if (.@card_1_future == 49) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " The Orc Lord says you need great strength in the future. Strength that is three, four times greater than now. ";
					next;
					mes "[Lhimetorra]";
					mes " Make yourself stronger in any form. In the future, you will need it. ";
					next;
				}
				if (.@card_1_future == 50) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " The Orc Lord says that love for your companions will become great strength in the future. ";
					mes " Your strength is not enough. ";
					next;
					mes "[Lhimetorra]";
					mes " To become a Lord, you will need colleagues. You should take the Orc Lord's advice! ";
					next;
				}
				if (.@card_1_future == 51) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " The Orc Lord is expressing opposition in being too curious about the future. ";
					mes " Pay a little more attention to the present. ";
					next;
					mes "[Lhimetorra]";
					mes " Respect his opinion young one. You have nothing to lose. ";
					next;
				}
				if (.@card_1_future == 52) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " Jack says something interesting will happen in the future. According to him, the future will be more fun than the present. ";
					next;
					mes "[Lhimetorra]";
					mes " Are you looking forward to it? ";
					next;
				}
				if (.@card_1_future == 53) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " Jack says, in order to prepare for the future, a delightful preparation is necessary. ";
					mes " Delightful preparation? I don't understand.. I suppose I am too old. Maybe young ones get it.. ";
					next;
					mes "[Lhimetorra]";
					mes " What do you think? Any assumptions? ";
					next;
				}
				if (.@card_1_future == 54) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " Jack is jealous because a splendid person is headed your way in the future. ";
					mes " I wonder what type of person it is to make that Jack jealous! ";
					next;
					mes "[Lhimetorra]";
					mes " One thing for sure is that you will be very happy! Congratulations young one! ";
					next;
				}
				if (.@card_1_future == 56) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " Jack says you may be frustrated in the future. ";
					mes " He says to overcome the frustration, it is necessary to think of happy thoughts. ";
					next;
					mes "[Lhimetorra]";
					mes " Meaning your future will become a battle between happiness and frustration.. ";
					next;
				}
				if (.@card_1_future == 57) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " The Joker is trying to trick you. This card has all different types of ominous fortunes. ";
					mes " He wants to enjoy watching you tremble with anxiety. ";
					next;
					mes "[Lhimetorra]";
					mes " Sadness, failure, darkness, loneliness.. you may feel all of these emotions, but they are not fatal. Don't worry. ";
					next;
				}
				if (.@card_1_future == 58) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " Jokers don't just appear and go away. They come back in the future. ";
					mes " They will seduce you numerous times. ";
					next;
					mes "[Lhimetorra]";
					mes " So train yourself not to be tempted. ";
					mes " Or else you will face frustration or commit a blunder. ";
					next;
				}
				if (.@card_1_future == 59) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " Do you see the thing that looks like a leaf flying around the Joker? That is the spade mark. ";
					mes " Spades means death. Jokers leave those kinds of marks on purpose. ";
					next;
					mes "[Lhimetorra]";
					mes " Don't get disturbed by the mark of death. It's merely a Joker's joke. ";
					next;
				}
				if (.@card_1_future == 60) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " Joker offers a nice insurance and says to prepare for the future, but most of it is a waste of time. ";
					next;
					mes "[Lhimetorra]";
					mes " Don't prepare for the future carelessly. A loose measure is worse than a prepared adventure. ";
					next;
				}
				if (.@card_1_future == 61) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " Hodes do not know about tomorrow. But though they are quiet, they endanger other living things. ";
					mes " Effort into oneself puts great power into the mere existence of one. ";
					next;
					mes "[Lhimetorra]";
					mes " Don't forget that you must think about yorsrelf the most. ";
					next;
				}
				if (.@card_1_future == 62) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " Hodes do not know about tomorrow, but they still know about death. ";
					mes " Even though you may be honest and simple, in a time of a crisis, you must be alert. ";
					next;
					mes "[Lhimetorra]";
					mes " Or else you will really be a simple and honest fool. That may be troublesome. ";
					next;
				}
				if (.@card_1_future == 62) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " Hodes do not ponder about life, but their will to live is very strong.";
					mes " You can gain a lot simply through the will to hold on to life. ";
					next;
					mes "[Lhimetorra]";
					mes " Be thankful that you are alive. Thankfullness itself should help greatly. ";
					next;
				}
				if (.@card_1_future == 63) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " Hodes are afraid of crises. You should try not to be afraid of crises either. ";
					next;
					mes "[Lhimetorra]";
					mes " Don't think of them too much. A crisis is simply a crisis. ";
					next;
				}
				if (.@card_1_future == 64) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " Before, bulls used to be thought of as foolishly honest workers, but these days bulls are great strong fighters. ";
					next;
					mes "[Lhimetorra]";
					mes " Finding different sides of oneself is the way to improve. Study about yourself. ";
					next;
				}
				if (.@card_1_future == 65) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " Do bulls leave leather when they pass away? Or was it the tiger? ";
					mes " Anyways, he is jealous of the humans that leave their name in history. ";
					next;
					mes "[Lhimetorra]";
					mes " If you don't leave your name, he may bear hatred against you for wasting your life. ";
					mes " So, to not be cursed, make an effort to leave your name in history. ";
					next;
				}
				if (.@card_1_future == 66) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " It might seem funny that a bull will look into the future, but the bull is looking into your future right now. ";
					mes " He says your future is mixed with storms and fall weather. ";
					next;
					mes "[Lhimetorra]";
					mes " It may be difficult if you are caught up with one situation. In good times, prepare for the bad, and in bad times look forward to good luck. ";
					next;
				}
				if (.@card_1_future == 67) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " The bull thinks of the happiness awaiting in the future, but it doesn't like reduced efficiency because of that happiness. ";
					next;
					mes "[Lhimetorra]";
					mes " Even though happiness may be on its way, don't let it affect your work right now. ";
					mes " This is the bull's thought and your fortune. ";
					next;
				}
				mes "[Lhimetorra]";
				mes " Speaking of the future is as dangerous act. ";
				mes " Humans may face disaster if speaking of the future carelessly. That's why we ask cards about the future. ";
				next;
				cutin "���̾ƽ�ī��",255; // Giearth Card
				mes "[Lhimetorra]";
				mes " Your fortune is a rather good one. There are some in this world who get more horrible fortunes. ";
				mes " Use this fortune as a support in your life. Ok? ";
				break;
			//=================================================================Warning ===
			case 4:
				mes "[Lhimetorra]";
				mes " Someone that knows of the dangers you do not, will warn you in the form of cards... so listen carefully-! ";
				next;
				.@card_1_warning = rand(1,70);
				if (.@card_1_warning == 1) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " Do you see the forbidden mark on its shoulder? It is telling you to not do something. ";
					next;
					mes "[Lhimetorra]";
					mes " If you are thinking of something right now, stop your movement. Or else disaster may be headed your way. ";
					next;
				}
				if (.@card_1_warning == 2) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " Someone is after you. The person is very strong like the picture. They might be holding grudges against you. ";
					next;
					mes "[Lhimetorra]";
					mes " Look around you. Of course, look for anyone you might have spited.. ";
					next;
				}
				if (.@card_1_warning == 3) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " It is saying to be careful not to burn your mustache with a cigarette. When you do something, something is always at risk.. It is probably warning about that. ";
					next;
				}
				if (.@card_1_warning == 4) {
					cutin "���̾ƽ�ī��",4; // Giearth Card
					mes "[Lhimetorra]";
					mes " 'Be careful of shoveling'.. You might get hit by a shovel. Should you be careful around a construction site? ";
					next;
				}
				if (.@card_1_warning == 5) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " The sound of a moth's wings fluttering means chaos. A chaotic event may occur around you. ";
					next;
					mes "[Lhimetorra]";
					mes " The moth is warning you of this. You should be careful. ";
					next;
				}
				if (.@card_1_warning == 6) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " Be aware of the wings. Wings symbolize flight, adventure, and fickleness of a player. ";
					next;
					mes "[Lhimetorra]";
					mes " If a word strikes you, be wary of that. Maybe.. a player? ";
					next;
				}
				if (.@card_1_warning == 7) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " The teeth of Dustiness are very strong. This means.. Someone may attempt to bite you with their teeth?! ";
					next;
				}
				if (.@card_1_warning == 8) {
					cutin "����Ƽ�׽�ī��",4; // Dustiness Card
					mes "[Lhimetorra]";
					mes " The moth's warning: 'Dangerous!'. A very simple, yet obvious warning. ";
					next;
				}
				if (.@card_1_warning == 9) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " Dracula says, 'Be careful in the streets at night.' ";
					next;
				}
				if (.@card_1_warning == 10) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " Dracula says, 'Don't be too picky.' ";
					next;
				}
				if (.@card_1_warning == 11) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " Dracula says, 'Brush your teeth 3 times a day.' Make sure you brush your teeth! ";
					next;
				}
				if (.@card_1_warning == 12) {
					cutin "���ť��ī��",4; // Dracula Card
					mes "[Lhimetorra]";
					mes " Dracula says, 'Study the important points first.' Cramming will not work! ";
					next;
				}
				if (.@card_1_warning == 13) {
					cutin "�巹��ũī��",4; // Drake Card
					mes "[Lhimetorra]";
					mes " If you see the flag of a pirate, either run or do as they say. Pirates do not give more than one warning. ";
					next;
					mes "[Lhimetorra]";
					mes " It is the same in life. ";
					next;
				}
				if (.@card_1_warning == 14) {
					cutin "�巹��ũī��",4; // Drake Card
					mes "[Lhimetorra]";
					mes " Pirates give warnings about many things. But right now, this card is speaking of betrayal. ";
					next;
					mes "[Lhimetorra]";
					mes " To pirates, betrayal means tragic death. Be careful of betrayals. ";
					next;
				}
				if (.@card_1_warning == 15) {
					cutin "�巹��ũī��",4; // Drake Card
					mes "[Lhimetorra]";
					mes " The pirate is warning you of your beauty. Don't show off your beauty too much. Pirates are very jealous of appearance, as well. ";
					next;
				}
				if (.@card_1_warning == 16) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " The Marina is warning of a hot stinging poison. Be cautious of poison. ";
					next;
				}
				if (.@card_1_warning == 17) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " The Marina is warning about a lazy lifestyle. It says such a lifestyle will lead to something like itself. ";
					next;
				}
				if (.@card_1_warning == 18) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " The Marina doesn't really think about anything else.. But it will say one thing. Food. The Marina loves food. ";
					next;
					mes "[Lhimetorra]";
					mes " Eating is happiness. Same goes for humans as well. Value food and enjoy eating. ";
					next;
				}
				if (.@card_1_warning == 19) {
					cutin "������ī��",4; // Marina Card
					mes "[Lhimetorra]";
					mes " The Marina is warning about a big belly. It's not happy because it resembles itself.. How about losing some weight? ";
					next;
				}
				if (.@card_1_warning == 20) {
					cutin "��������Ʈī��",4; // Marionette Card
					mes "[Lhimetorra]";
					mes " The Marionette says that you must not rely on violence and to use a different method. ";
					mes " I'm not quite sure, but it may become an important word of advice to you..? ";
					next;
				}
				if (.@card_1_warning == 21) {
					cutin "��������Ʈī��",4; // Marionette Card
					mes "[Lhimetorra]";
					mes " The Marionette is warning about ominous activities. If you did something recently, you should settle it soon. ";
					next;
					mes "[Lhimetorra]";
					mes " A bad result may come your way. ";
					next;
				}
				if (.@card_1_warning == 22) {
					cutin "��������Ʈī��",4; // Marionette Card
					mes "[Lhimetorra]";
					mes " The Marionette's eyes are warning about your falsehood. Lies, deceit, fake calculations and actions.. The Marionette is warning about all of them. ";
					next;
					mes "[Lhimetorra]";
					mes " This is all for you young one. Therefore, follow this fortune and rid yourself of falsehood. ";
					next;
				}
				if (.@card_1_warning == 23) {
					cutin "��������Ʈī��",4; // Marionette Card
					mes "[Lhimetorra]";
					mes " The Marionette is emphasizing a proper diet. Don't rely too much on meat. ";
					next;
					mes "[Lhimetorra]";
					mes " Take the Marionette's advice. She never says anything wrong. Hoho... ";
					next;
				}
				if (.@card_1_warning == 24) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " The Medusa punishes those who challenge it without warning. Unexpected punishment. ";
					next;
					mes "[Lhimetorra]";
					mes " That is a Medusa. You should be careful. The warning ended a long time ago. ";
					next;
				}
				if (.@card_1_warning == 25) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " The Medusa is warning you to be nice to others, or else it will turn you into stone.";
					next;
					mes "[Lhimetorra]";
					mes " What a rightful Medusa. Hmm... ";
					next;
				}
				if (.@card_1_warning == 26) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " The Medusa is warning you to return anything you borrow on time. ";
					mes " Saying it will not forgive those who use other's things like a black hole.. borrowing and never returning ";
					next;
					mes "[Lhimetorra]";
					mes " Are you sure you returned everything you have borrowed? Better take care of everything before you get punished. ";
					next;
				}
				if (.@card_1_warning == 27) {
					cutin "�޵λ�ī��",4; // Medusa Card
					mes "[Lhimetorra]";
					mes " The Medusa is warning about a person near you. Of their existence.. and the relationship, ";
					next;
					mes "[Lhimetorra]";
					mes " The Medusa's warning is very stern. Take a close look around you. ";
					next;
				}
				if (.@card_1_warning == 28) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " The Baphomet says to beware when intervening with others' issues. ";
					next;
					mes "[Lhimetorra]";
					mes " He is very angry about intruding in others' spaces. Accept the Baphomet's warning. ";
					next;
				}
				if (.@card_1_warning == 29) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " The Baphomet is warning about arrogance. Even a strong and wise warrior must show respect to a Baphomet, ";
					mes " Arrogance takes away that respect. The Baphomet hates that type of arrogance. ";
					next;
					mes "[Lhimetorra]";
					mes " Maybe it means he sees that type of arrogance in you? Since the Baphomet is warning you.. ";
					next;
				}
				if (.@card_1_warning == 30) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " The Baphomet is warning about the laziness that stops one from sharpening the scythe. ";
					mes " That laziness will cause you to lose your life in an instant. ";
					next;
					mes "[Lhimetorra]";
					mes " Laziness is more dangerous than the monster in front of you. Don't forget about this warning. ";
					next;
				}
				if (.@card_1_warning == 31) {
					cutin "������Ʈī��",4; // Baphomet Card
					mes "[Lhimetorra]";
					mes " The Baphomet says it has nothing to say. I wonder why? Isn't it a very good sign?!! ";
					next;
				}
				if (.@card_1_warning == 32) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " Sand is an instant cure of athlete's foot. He says to beware of athlete's foot and that he hates those rubbing their infected feet into his body. ";
					next;
					mes "[Lhimetorra]";
					mes " A Sandman's warning is very stern. Wash your feet regularly, young one. ";
					next;
				}
				if (.@card_1_warning == 33) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " A chicken puts sand in its mouth to aid its insufficient digestion system. ";
					mes " The Sandman says to watch out before you become like a chicken. ";
					next;
					mes "[Lhimetorra]";
					mes " And don't eat too much spicy and salty food, alcohol, etc. What a thoughtful Sandman. ";
					next;
				}
				if (.@card_1_warning == 34) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " The Sandman says over-sleepers will be punished by society! ";
					next;
					mes "[Lhimetorra]";
					mes " Oooh, a stern warning about the future! Young one, bear this in mind. ";
					next;
				}
				if (.@card_1_warning == 35) {
					cutin "�����ī��",4; // Sandman Card
					mes "[Lhimetorra]";
					mes " One warning from the Sandman, respect your parents. ";
					next;
					mes "[Lhimetorra]";
					mes " If you don't, you will end up like him. Listen to the Sandman. ";
					next;
				}
				if (.@card_1_warning == 36) {
					cutin "����ī��",4; // Sohee Card
					mes "[Lhimetorra]";
					mes " Sohee dislikes stinky feet. Don't forget to wash your feet. ";
					next;
					mes "[Lhimetorra]";
					mes " Bah, don't laugh about it! This is a solemn warning. ";
					next;
				}
				if (.@card_1_warning == 37) {
					cutin "����ī��",4; // Sohee Card
					mes "[Lhimetorra]";
					mes " Sohee stands on the tip of her toes. It is because her toes are very strong. ";
					mes " No matter what a person does, physical strength is the most important. Exercise and get stronger. ";
					next;
					mes "[Lhimetorra]";
					mes " If you sit around all day, even the things that were going to work won't. Got it? Exercise, exercise! ";
					next;
				}
				if (.@card_1_warning == 38) {
					cutin "����ī��",4; // Sohee Card
					mes "[Lhimetorra]";
					mes " Look at Sohee's hairstyle. Isn't it splendid. ";
					mes " Sohee likes to take care of her appearance. If you don't, Sohee will get mad at you. ";
					next;
					mes "[Lhimetorra]";
					mes " Making yourself look presentable is just as important as keeping a good heart. ";
					mes " Take care of your appearance. And get that pepper out from between your teeth! ";
					next;
				}
				if (.@card_1_warning == 39) {
					cutin "����ī��",4; // Sohee Card
					mes "[Lhimetorra]";
					mes " Once, Sohee didn't get her change back when she asked a baby ghost to run an errand. ";
					mes " No can do! Always return the change. ";
					next;
					mes "[Lhimetorra]";
					mes " No matter how little the amount, you must not just keep it. Sohee greatly dislikes it. ";
					next;
				}
				if (.@card_1_warning == 40) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " Even though it is a skeleton with only bones, it has all the safety gear needed. ";
					next;
					mes "[Lhimetorra]";
					mes " What the skeleton wants to say is, be aware of 'safety'. Being ignorant about safety is dangerous. ";
					next;
				}
				if (.@card_1_warning == 41) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " The skeleton card has a gray tone. If you read the grey, you can see the darkness. ";
					mes " It seems like darkness is on its way. Be careful, this darkness isn't ordinary. ";
					next;
					mes "[Lhimetorra]";
					mes " Hmm.. would you like an amulet? ";
					next;
				}
				if (.@card_1_warning == 42) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " The skeleton is warning you about an irregular eating pattern. ";
					mes " It says it became like that because of a bad eating habit. ";
					next;
					mes "[Lhimetorra]";
					mes " Eat the right food at the right time. That's the only way your body will survive. You can't afford to become like a skeleton. ";
					next;
				}
				if (.@card_1_warning == 43) {
					cutin "���̿�Ŀī��",4; // Skel Worker Card
					mes "[Lhimetorra]";
					mes " The skeleton's pickaxe is very strong. Even though its body seems weak, with the right tools, it can do great things. ";
					next;
					mes "[Lhimetorra]";
					mes " So don't blame your body right now and go search for the right tools. Then you will have a good result. ";
					next;
				}
				if (.@card_1_warning == 44) {
					cutin "���̳���Ʈī��",4; // Khalitzburg Card
					mes "[Lhimetorra]";
					mes " The knight is warning you of reckless driving. Do you ride a Pecopeco by any chance? ";
					mes " Anyhow, you should avoid reckless driving.. If a knight is saying that, it is a big problem. ";
					next;
				}
				if (.@card_1_warning == 45) {
					cutin "���̳���Ʈī��",4; // Khalitzburg Card
					mes "[Lhimetorra]";
					mes " The knight is warning you of cruelty. It could be yours or that of someone around you. ";
					next;
					mes "[Lhimetorra]";
					mes " Anyhow, cruelty will harm you for sure. Be cautious of it. ";
					next;
				}
				if (.@card_1_warning == 46) {
					cutin "���̳���Ʈī��",4; // Khalitzburg Card
					mes "[Lhimetorra]";
					mes " The misfortune shown in the knight card is hastiness. That is also what takes away a knight's life, too. ";
					next;
					mes "[Lhimetorra]";
					mes " This knight is warning you from the bottom of his heart, ";
					mes " so that you don't repeat his mistake. Be ware of hastiness. ";
					next;
				}
				if (.@card_1_warning == 47) {
					cutin "���̳���Ʈī��",4; // Khalitzburg Card
					mes "[Lhimetorra]";
					mes " This knight is warning you of loneliness. He doesn't have a person to help his horse, ";
					mes " nor a lover awaiting him, so loneliness hits him in the heart. ";
					next;
					mes "[Lhimetorra]";
					mes " Loneliness is not simply sadness. It is a formless devil eating your life. Stay away from loneliness. ";
					next;
				}
				if (.@card_1_warning == 48) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " The warning of the god of death is death itself. ";
					next;
					mes "[Lhimetorra]";
					mes " Be cautious of death.. death that can be your turn, or maybe someone else. ";
					next;
				}
				if (.@card_1_warning == 49) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " The Anubis says to be careful of darkness. In darkness, death lingers in the dark. ";
					next;
					mes "[Lhimetorra]";
					mes " Take the Anubis's advice and avoid the dark. That is the wisest choice. ";
					next;
				}
				if (.@card_1_warning == 50) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " The Anubis doesn't like foul language. You don't have a foul mouth, do you? ";
					mes " Watch your mouth. The Anubis is after those that say foul language.";
					next;
					mes "[Lhimetorra]";
					mes " Humans have a problem with their mouths. Mmm~ Agh. Me, too?! ";
					next;
				}
				if (.@card_1_warning == 51) {
					cutin "�ƴ���ī��",4; // Anubis Card
					mes "[Lhimetorra]";
					mes " The Anubis is warning you of hatred. Hatred only brings upon death. ";
					mes " The Anubis must not like being busy these days. ";
					next;
					mes "[Lhimetorra]";
					mes " Seeing that he is warning about hatred. Don't you think it's a good idea to avoid his eyes at a time like this? ";
					next;
				}
				if (.@card_1_warning == 52) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " The Orc Lord is warning you of self-righteousness. It is the most dangerous noxious bug that will feed on you. ";
					next;
					mes "[Lhimetorra]";
					mes " Learn how to accept others' opinions. How about starting from accepting the Orc Lord's? ";
					next;
				}
				if (.@card_1_warning == 53) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " The Orc Lord is warning you about freedom. Isn't freedom a good thing? ";
					mes " Not always! Too much freedom can lead to self-indulgence! ";
					next;
					mes "[Lhimetorra]";
					mes " He knows about the danger of freedom as a lord. ";
					next;
				}
				if (.@card_1_warning == 54) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " The Orc Lord warning you of the opposite sex. Yes. They are poisonous. Keep your distance. ";
					next;
					mes "[Lhimetorra]";
					mes " Especially a young one like you... You are too close to one. Cough. ";
					next;
				}
				if (.@card_1_warning == 55) {
					cutin "��ũ�ε�ī��",4; // Orc Lord Card
					mes "[Lhimetorra]";
					mes " The Orc Lord is warning about destruction. He knows destruction very well because he is a master of destruction. ";
					next;
					mes "[Lhimetorra]";
					mes " That's why he knows about the danger and misfortune destruction brings. Don't destroy thoughtlessly. You will end up destroying yourself as well. ";
					next;
				}
				if (.@card_1_warning == 56) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " Jack is warning you of lame jokes. When he finds one saying them, he tends to hit them with his stick. ";
					next;
					mes "[Lhimetorra]";
					mes " If you don't want to be hit, stop your lame jokes! ";
					next;
				}
				if (.@card_1_warning == 57) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " Jack is warning you about others' anger and that anger takes away happiness and kills a joke. ";
					next;
					mes "[Lhimetorra]";
					mes " Anger only exhausts you. Keep your distance from anger and befriend jokes. Jack's word. ";
					next;
				}
				if (.@card_1_warning == 58) {
					cutin "��ī��",4; // Jakk Card
					mes "[Lhimetorra]";
					mes " It seems like Jack is worried about excessive jokes. ";
					mes " Jokes are fun, but too much will turn you into a ghost like him. ";
					next;
					mes "[Lhimetorra]";
					mes " Be careful. When Jack speaks like this, he playfulness is gone. ";
					next;
				}
				if (.@card_1_warning == 59) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " Jokers enjoy giving opposite warnings. He says to enjoy sleeping in.";
					next;
					mes "[Lhimetorra]";
					mes " I think you should wake up early. ";
					next;
				}
				if (.@card_1_warning == 60) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " Jokers enjoy giving opposite warnings. He says to enjoy a midnight snack. ";
					next;
					mes "[Lhimetorra]";
					mes " Don't eat anything at night. Your stomach will hurt. ";
					next;
				}
				if (.@card_1_warning == 61) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " Jokers enjoy giving opposite warnings. ";
					mes " He says if someone has something you want, make it yours. ";
					next;
					mes "[Lhimetorra]";
					mes " Need I say more? That's a dangerous thought!! ";
					next;
				}
				if (.@card_1_warning == 62) {
					cutin "��Ŀī��",4; // Joker Card
					mes "[Lhimetorra]";
					mes " Joker enjoys giving opposite warnings. ";
					mes " What he is telling you is to not fear death. ";
					next;
					mes "[Lhimetorra]";
					mes " If a Joker is saying this, be careful. There is no cure for thoughtless fools. ";
					next;
				}
				if (.@card_1_warning == 63) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " The Hode can forgive others, but not those who hurt it. ";
					mes " You should also only not forgive those who hurt you. ";
					next;
					mes "[Lhimetorra]";
					mes " A small territory will ensure great happiness. ";
					next;
				}
				if (.@card_1_warning == 64) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " The Hode is warning you of voracious eating that made it sluggish. ";
					mes " Eating is good, but the wild is a dangerous place. Leave your stomach partially empty. ";
					next;
					mes "[Lhimetorra]";
					mes " So you can quickly respond to crises. ";
					next;
				}
				if (.@card_1_warning == 65) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " The Hode is warning you of voracious eating that made it sluggish. ";
					mes " Eating is good, but the wild is a dangerous place. Leave your stomach partially empty.";
					next;
					mes "[Lhimetorra]";
					mes " So you can quickly respond to crises. ";
					next;
				}
				if (.@card_1_warning == 66) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " If you are to the point of being warned by a Hode.. you must be one considerable person. ";
					next;
					mes "[Lhimetorra]";
					mes " It says to do better.. I have no idea what it means. ";
					next;
				}
				if (.@card_1_warning == 67) {
					cutin "ȣ��ī��",4; // Hode Card
					mes "[Lhimetorra]";
					mes " The Bull warns of corruption. A lazy hedonist that is not diligent. ";
					mes " He believes that is like a cancer cell that can't be removed. ";
					next;
					mes "[Lhimetorra]";
					mes " Be careful to not have that kind of cell stuck on you. ";
					next;
				}
				if (.@card_1_warning == 68) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " The bull is warning about ignorance about a crisis. ";
					mes " Not knowing that a crisis is a crisis is the most dangerous of all. ";
					next;
					mes "[Lhimetorra]";
					mes " You will need to learn how to read danger. Accept the bull's advice. ";
					next;
				}
				if (.@card_1_warning == 69) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " The bull is warning of something that will make life sad. ";
					mes " Sadness is a natural feeling, but don't let that put you down. ";
					next;
					mes "[Lhimetorra]";
					mes " A bull is an honest worker that cries even while it works. It knows that it must not be lazy about what it needs to do, even when expressing sadness. ";
					mes " It seems like he wants to tell you this. ";
					next;
				}
				if (.@card_1_warning == 70) {
					cutin "Ȳ��ī��",4; // Minorous Card
					mes "[Lhimetorra]";
					mes " The bull is warning about meat from watered cows. ";
					mes " Saying that, that type of behavior will surely bring upon monsters' curses. ";
					next;
					mes "[Lhimetorra]";
					mes " I don't know why he would warn you about it.. Do you raise cattle by any chance? ";
					next;
				}
				mes "[Lhimetorra]";
				mes " A warning is always a useful fortune. You can never lose anything. ";
				next;
				cutin "���̾ƽ�ī��",255; // Giearth Card
				mes "[Lhimetorra]";
				mes " I hope you will be able to avoid misfortune with this warning. Then... ";
				close;
			}
			close;
		case 2:
			mes "[Lhimetorra]";
			mes " Ok then. Young adventurer, may luck be with you... ";
			close;
		}
		close;
	case 2:
		mes "[Lhimetorra]";
		mes " Monster card reading uses the cards of familiar monsters around us to get advice about our future, love, and many other things. ";
		mes " A fortuneteller like me takes a question from a person and asks the card. The card answers and I tell the person. ";
		next;
		mes "[Lhimetorra]";
		mes " You should not get more than one card reading a day, and don't get one often since the card can get angry or confused. ";
		mes " Also, it can have a bad influence on your life, too! ";
		next;
		mes "[Lhimetorra]";
		mes " And... one more thing. ";
		mes " A card reading is only a reading... No matter how extraordinary the result may be, don't get too caught up with it. Bear that in mind. ";
		close;
	}
}

payon_in03,75,129,5	script	Poring Fortune Teller	4_M_BIBI,{
	mes "[Chocarle]";
	mes " Welcome, welcome~!! " +strcharinfo(PC_NAME)+ "~!";
	mes " What brings you here today!? ";
	next;
	switch(select(" I would like a Poring card reading. ", " What is a Poring card reading? ")) {
	case 1:
		mes "[Chocarle]";
		mes " Ah~ is that so! ";
		mes " Solving the wonders of the future with these cute and adorable Poring cards! ";
		mes " It is 1000z for each fortune! Shall we begin? ";
		next;
		switch(select(" Yes. ", " I would like to think about it once more. ")) {
		//=================================================================Fortune Teller ===
		case 1:
			if (Zeny < 1000) {
				mes "[Chocarle]";
				mes "You don't even have 1000 zeny!";
				mes "Nope, I can read cards for you!";
				mes "Nope!";
				close;
			}
			Zeny -= 1000;
			mes "[Chocarle]";
			mes " Thank you~! Then we shall look into your fortune! ";
			mes " First, clear your mind! Just like washing when you wash dishes! ";
			next;
			mes "[Chocarle]";
			mes " Then~ gently think of your wish! ";
			next;
			switch(select(" (I'm curious about love!) ", " (I would like to do well in school!) ", " (Will my friendship be intact?) ", " (I want to know about my future self!) ", " (Will I make a lot of money?) ")) {
			//=================================================================Love ===
			case 1:
				mes "[Chocarle]";
				mes " Ohh! Cute love fortune! Heh! Lets look at the cards! ";
				next;
				mes "[Chocarle]";
				.@card_2_love = rand(1,33);
				if (.@card_2_love == 1) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Oh! Your lover is about to leave your side! Hold on tight! ";
				}
				if (.@card_2_love == 2) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Agh! You're about to give your soul to your loved one! Take it down a notch! ";
				}
				if (.@card_2_love == 3) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " No! Your heart is about to leave your love! Catch it! ";
				}
				if (.@card_2_love == 4) {
					cutin "�������ī��",4; // Drops Card
					mes " Love is like juice in the forest! It is refreshing! Take care of your loved one! ";
				}
				if (.@card_2_love == 5) {
					cutin "�������ī��",4; // Drops Card
					mes " Uh! You didn't share your juice with your loved one! What a shame! Take care of your loved one! ";
				}
				if (.@card_2_love == 6) {
					cutin "�������ī��",4; // Drops Card
					mes " Why not share with your loved one? Don't be too greedy and try to keep it all! ";
				}
				if (.@card_2_love == 7) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes " Your love is going to have a crisis! Protect your love! ";
				}
				if (.@card_2_love == 8) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes " Hee! Go after your love like a mole! Puhahaha! ";
				}
				if (.@card_2_love == 9) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes " Oh no! Your love is in danger! Run away from the menace! ";
				}
				if (.@card_2_love == 10) {
					cutin "����ī��",4; // Munak Card
					mes " Oh no! You lost your loved one. And, nobody similar around you. Cheer up! ";
				}
				if (.@card_2_love == 11) {
					cutin "����ī��",4; // Munak Card
					mes " Ah! A sexy rival has appeared! Don't get sidetracked! ";
				}
				if (.@card_2_love == 12) {
					cutin "����ī��",4; // Munak Card
					mes " You are desperately searching for love! If you go beyond this desert, you can find love! ";
				}
				if (.@card_2_love == 13) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " Prepare an event of love! They will be flying with happiness! ";
				}
				if (.@card_2_love == 14) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " Love is sweet! Be careful not to get cavities! ";
				}
				if (.@card_2_love == 15) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " Prepare a present for your love! They might get a heart attack because they will be overwhelmed with happiness! ";
				}
				if (.@card_2_love == 16) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " Don't be shy in front of your loved one! Love transcends everything! ";
				}
				if (.@card_2_love == 17) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " Embrace every aspect of your loved one! That is true love! ";
				}
				if (.@card_2_love == 18) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " Love will blossom with a totally different person! Wow, so cool! ";
				}
				if (.@card_2_love == 19) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " No matter what other people say, run towards your loved one! One-track love! ";
				}
				if (.@card_2_love == 20) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " Go to your loved one with a present! They will be very happy! ";
				}
				if (.@card_2_love == 21) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " Love requires health and strength! Exercise to become stronger! Power and love! ";
				}
				if (.@card_2_love == 22) {
					cutin "���尡ī��",4; // Eddga Card
					mes " Even if you wish to approach your loved one, your body is discomforted! Take a break and rest! ";
				}
				if (.@card_2_love == 23) {
					cutin "���尡ī��",4; // Eddga Card
					mes " Love is bending yourself for someone! Service! Sacrifice! ";
				}
				if (.@card_2_love == 24) {
					cutin "���尡ī��",4; // Eddga Card
					mes " You will be meeting your lover's parents! Prepare well! ";
				}
				if (.@card_2_love == 25) {
					cutin "������ī��",4; // Angeling Card
					mes " Your relationship must be very happy as it seems you two are flying amongst the clouds! Very jealous! ";
				}
				if (.@card_2_love == 26) {
					cutin "������ī��",4; // Angeling Card
					mes " Make an opportunity to be alone with each other! It will bring much happiness! ";
				}
				if (.@card_2_love == 27) {
					cutin "������ī��",4; // Angeling Card
					mes " Uh oh! Someone is peeping at your love! Go scold them! ";
				}
				if (.@card_2_love == 28) {
					cutin "����ī��",4; // Poring Card
					mes " Love blossoms from the foundation! Be true to the basics! ";
				}
				if (.@card_2_love == 29) {
					cutin "����ī��",4; // Poring Card
					mes " When your loved one is hurt, be by them! They will be very happy! ";
				}
				if (.@card_2_love == 30) {
					cutin "����ī��",4; // Poring Card
					mes " One day, when you wake up, your loved one will leave a present! Be happy! ";
				}
				if (.@card_2_love == 31) {
					cutin "������ī��",4; // Poporing Card
					mes " Give lots~~ of presents to your loved one! Then you will experience many~ many good things! ";
				}
				if (.@card_2_love == 32) {
					cutin "������ī��",4; // Poporing Card
					mes " Lean against a wall and await your love! *Boom* Love will appear! ";
				}
				if (.@card_2_love == 33) {
					cutin "������ī��",4; // Poporing Card
					mes " You must be lonely! It's ok, cheer up! ";
				}
				next;
				mes "[Chocarle]";
				mes " A fortune of love was told! What do you think! Do you like it? ";
				mes " Even if you did not get the fortune you wished for, don't be do upset and simply go for your love! ";
				cutin "���̾ƽ�ī��",255; // Giearth Card
				next;
				mes "[Chocarle]";
				mes " Then, see you next time~~~~~ ";
				break;
			//=================================================================Study ===
			case 2:
				mes "[Chocarle]";
				mes " Issues about studying is a serious matter! Lets take a look! Yap! ";
				next;
				mes "[Chocarle]";
				.@card_2_study = rand(1,33);
				if (.@card_2_study == 1) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Agh! Don't die from studying! Take breaks while you're at it! You need some rest! ";
				}
				if (.@card_2_study == 2) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Oh, no! You're missing the main points! Figure out the essentials! ";
				}
				if (.@card_2_study == 3) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Mmph! You're dying not to study! At times like this, a break is the best! ";
				}
				if (.@card_2_study == 4) {
					cutin "�������ī��",4; // Drops Card
					mes " Studying is just like hunting a monster in the desert. Resting for a little is the best. Understand? ";
				}
				if (.@card_2_study == 5) {
					cutin "�������ī��",4; // Drops Card
					mes " A nice cup of cold juice under the hot sun! Studying should be done like that, too! ";
				}
				if (.@card_2_study == 6) {
					cutin "�������ī��",4; // Drops Card
					mes " Even though it is the desert, you seem to have a relaxed smile! Maybe you need to relax like this when studying as well! ";
				}
				if (.@card_2_study == 7) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes " Your grades are in danger! You must study harder! ";
				}
				if (.@card_2_study == 8) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes " There may be a big crisis! Don't get too stressed just because you can't study! ";
				}
				if (.@card_2_study == 9) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes " It is saying studying in the dark night can be dangerous! Careful when studying at night! ";
				}
				if (.@card_2_study == 10) {
					cutin "����ī��",4; // Munak Card
					mes " Studying came to a strange place! It needs to find its original path! You can do it! ";
				}
				if (.@card_2_study == 11) {
					cutin "����ī��",4; // Munak Card
					mes " You're gazing at a smart friend with the eyes of a Poring! Heehee! Doing good! ";
				}
				if (.@card_2_study == 12) {
					cutin "����ī��",4; // Munak Card
					mes " Eh? You're too smart! You're at a much higher level than your friends! Take a break! ";
				}
				if (.@card_2_study == 13) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " You will be rewarded for your accomplishments! It was worth the effort! ";
				}
				if (.@card_2_study == 14) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " Forget about studying for a moment and enjoy the party! It should be refreshing~! ";
				}
				if (.@card_2_study == 15) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " Study something that will make people happy! Future set! ";
				}
				if (.@card_2_study == 16) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " If you're not sure of something, ask a friend! It's not something to be ashamed about! You can do it! ";
				}
				if (.@card_2_study == 17) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " Don't think that your head is empty! Because, you are smart! You can do it! ";
				}
				if (.@card_2_study == 18) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " There's a phenomenon you don't understand! Do a little more research! You'll be able to figure it out soon! ";
				}
				if (.@card_2_study == 19) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " Don't get lazy about studying wherever you go! Seek the road of truth and go down it to find the answer! ";
				}
				if (.@card_2_study == 20) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " You need strength to study! Get stronger! Running is a start! ";
				}
				if (.@card_2_study == 21) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " You will become an admirable person because of all the effort put into studying! You must feel very worth while! ";
				}
				if (.@card_2_study == 22) {
					cutin "���尡ī��",4; // Eddga Card
					mes " Try studying the history of our country! From when the tiger started smoking! ";
				}
				if (.@card_2_study == 23) {
					cutin "���尡ī��",4; // Eddga Card
					mes " You must be having a hard time studying because of all the pressure! Go out and get some fresh air! ";
				}
				if (.@card_2_study == 24) {
					cutin "���尡ī��",4; // Eddga Card
					mes " Your head seems to be heavy because of studying! You need a diversion! Put studying aside for a moment! ";
				}
				if (.@card_2_study == 25) {
					cutin "������ī��",4; // Angeling Card
					mes " Try studying aerospace or meteorology! Don't you think it would be fun? ";
				}
				if (.@card_2_study == 26) {
					cutin "������ī��",4; // Angeling Card
					mes " How about studying theology? You even get to study about angels! ";
				}
				if (.@card_2_study == 27) {
					cutin "������ī��",4; // Angeling Card
					mes " Study little by little and make yourself feel lighter! You can't study if you're overloaded with words! ";
				}
				if (.@card_2_study == 28) {
					cutin "����ī��",4; // Poring Card
					mes " When studying, you should have a snack! It may seem trivial, but it is rather important! ";
				}
				if (.@card_2_study == 29) {
					cutin "����ī��",4; // Poring Card
					mes " Even when you are sick, don't forget about studying! Where there is effort, there is bound to be good results! ";
				}
				if (.@card_2_study == 30) {
					cutin "����ī��",4; // Poring Card
					mes " Newton discovered gravity through a falling apple! Be wary of even the little things in your surroundings! ";
				}
				if (.@card_2_study == 31) {
					cutin "������ī��",4; // Poporing Card
					mes " Green is good for studying! Color your walls green or get a green drink! The lucky color! Green! ";
				}
				if (.@card_2_study == 32) {
					cutin "������ī��",4; // Poporing Card
					mes " There is a jewel in your mind! You need to bring all the wisdom to life! Don't study bad things! ";
				}
				if (.@card_2_study == 33) {
					cutin "������ī��",4; // Poporing Card
					mes " You will receive good results from studying! You can focus on your current studies! ";
				}
				next;
				mes "[Chocarle]";
				mes " You've been told your study fortune! Was it a good one? ";
				mes " But in studying, effort is more important than any type of fortune! ";
				next;
				cutin "",255;
				mes "[Chocarle]";
				mes " Try your best. Then, see you again! Byyyyyyyyyyyyyyyyeeeee~~byyyyeeee~ ";
				break;
			//=================================================================Friends ===
			case 3:
				mes "[Chocarle]";
				mes " Relationships among friends is more difficult than people think! Let's use the cards to try and solve this complicated puzzle of friendship! ";
				next;
				mes "[Chocarle]";
				.@card_2_buddy = rand(1,33);
				if (.@card_2_buddy == 1) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Ah! Your friend has gone crazy! They need the heal of friendship! ";
				}
				if (.@card_2_buddy == 2) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Mmm! You both have gone crazy. You must overcome it through conversations! ";
				}
				if (.@card_2_buddy == 3) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Agh! You are suffering because of your friend! Try opening your heart and be more lenient! ";
				}
				if (.@card_2_buddy == 4) {
					cutin "�������ī��",4; // Drops Card
					mes " You even split a pea between friends! Don't be so cruel. Reflect upon yourself and apologize! ";
				}
				if (.@card_2_buddy == 5) {
					cutin "�������ī��",4; // Drops Card
					mes " Oh no! Your friend is ignoring you! Offer a bottle of juice to your friend! Your friendship may come back? ";
				}
				if (.@card_2_buddy == 6) {
					cutin "�������ī��",4; // Drops Card
					mes " Eh!? What kind of friendship is this?! Hurry up and make up! ";
				}
				if (.@card_2_buddy == 7) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes "Oh no?! This person is not your friend, but an enemy! You must be careful! ";
				}
				if (.@card_2_buddy == 8) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes " Your friend is in danger! You must help your friend! ";
				}
				if (.@card_2_buddy == 9) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes " Your friendship is on the verge of falling apart! Cast a shield around your friendship! ";
				}
				if (.@card_2_buddy == 10) {
					cutin "����ī��",4; // Munak Card
					mes " One person is left out amongst your friends! Be more friendly! ";
				}
				if (.@card_2_buddy == 11) {
					cutin "����ī��",4; // Munak Card
					mes " Your friend hit you! Don't cry even if it may hurt! Hurry and make up! ";
				}
				if (.@card_2_buddy == 12) {
					cutin "����ī��",4; // Munak Card
					mes " You must be alone! It must be hard to make friends! Try putting on a brighter face! ";
				}
				if (.@card_2_buddy == 13) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " Give your friends a present! Your friendship will become deeper! ";
				}
				if (.@card_2_buddy == 14) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " Prepare a hat to cover your friend's large head! They will be moved by your care! ";
				}
				if (.@card_2_buddy == 15) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " A friend is waiting for you! Be nice to your friend! ";
				}
				if (.@card_2_buddy == 16) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " Being close friends despite differences is true friendship! Shelter each other's differences! ";
				}
				if (.@card_2_buddy == 17) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " Your misunderstandings will be removed if you take the time to talk! Go have a conversation with your friend! ";
				}
				if (.@card_2_buddy == 18) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " When a friend is sick, visit them! They will be happy! For sure! ";
				}
				if (.@card_2_buddy == 19) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " Go out and have some fun with your friend! Your friendship will surely get stronger! ";
				}
				if (.@card_2_buddy == 20) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " Give your friend a present! They'll go bragging around town?! ";
				}
				if (.@card_2_buddy == 21) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " Share your bone with your friend! Sacrifices in friendship are beautiful! ";
				}
				if (.@card_2_buddy == 22) {
					cutin "���尡ī��",4; // Eddga Card
					mes " Do anything for your friend! With all your heart and soul! Your friend will be delighted! ";
				}
				if (.@card_2_buddy == 23) {
					cutin "���尡ī��",4; // Eddga Card
					mes " No smoking, even with a friend! Stop smoking for your health! ";
				}
				if (.@card_2_buddy == 24) {
					cutin "���尡ī��",4; // Eddga Card
					mes " You and your friend will encounter hardships! Combine your powers and overcome it! ";
				}
				if (.@card_2_buddy == 25) {
					cutin "������ī��",4; // Angeling Card
					mes " Go on a trip with your friend! Friendship can get stronger in new environments! ";
				}
				if (.@card_2_buddy == 26) {
					cutin "������ī��",4; // Angeling Card
					mes " Give your friend a ride in a plane! They'll probably fly with joy!? ";
				}
				if (.@card_2_buddy == 27) {
					cutin "������ī��",4; // Angeling Card
					mes " Don't forget your friend in heaven! Friendship is eternal! ";
				}
				if (.@card_2_buddy == 28) {
					cutin "����ī��",4; // Poring Card
					mes " Help your friend's scar. Your friend would greatly appreciate it! ";
				}
				if (.@card_2_buddy == 29) {
					cutin "����ī��",4; // Poring Card
					mes " You even split a slice of an apple among friends! Share more things with your friend! Something good will happen! ";
				}
				if (.@card_2_buddy == 30) {
					cutin "����ī��",4; // Poring Card
					mes " When your friend is sleeping, think of them! Then there will be progress in your friendship! What do you think~ it means~?! ";
				}
				if (.@card_2_buddy == 31) {
					cutin "������ī��",4; // Poporing Card
					mes " Don't measure friendship with money! If you do, be careful for there will be a crack in your friendship! ";
				}
				if (.@card_2_buddy == 32) {
					cutin "������ī��",4; // Poporing Card
					mes " It seems as if your friend will give you many presents! Look forward to it! ";
				}
				if (.@card_2_buddy == 33) {
					cutin "������ī��",4; // Poporing Card
					mes " You must be lonely without a friend! A good friend will come along soon! ";
				}
				next;
				mes "[Chocarle]";
				mes " Poring fortunetelling works very well when it is about friendship! ";
				mes " It is the heart of the poring card that earnestly hopes for good friendships! ";
				next;
				cutin "",255;
				mes "[Chocarle]";
				mes " Did you like it? Next time invite your friend! Then byebye!! ";
				break;
			//=================================================================Future ===
			case 4:
				mes "[Chocarle]";
				mes " If you say fortunetelling! Of course it is about the future! Let's try to figure this out! ";
				next;
				mes "[Chocarle]";
				.@card_2_future = rand(1,33);
				if (.@card_2_future == 1) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Oh no! You are not confident about the future! Trust yourself a little more! Hope! ";
				}
				if (.@card_2_future == 2) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Oh! Do you keep on thinking about your death in the future! First, forget about death and live your life! ";
				}
				if (.@card_2_future == 3) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Cut! You are filled with uncertainty about the future! Let's get rid of this! Wee! It's gone! ";
				}
				if (.@card_2_future == 4) {
					cutin "�������ī��",4; // Drops Card
					mes " Life may seem like a hot and dry desert, but in the future, delicious juice and rest awaits you! ";
					}
				if (.@card_2_future == 5) {
					cutin "�������ī��",4; // Drops Card
					mes " Even in a hot and dry desert, isn't the future happier since you can encounter sweet juice? Put forth your strength! ";
				}
				if (.@card_2_future == 6) {
					cutin "�������ī��",4; // Drops Card
					mes " Don't your troubles disappear watching a poring smile? Your future must be filled with good things! ";
				}
				if (.@card_2_future == 7) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes " There is danger waiting ahead! You should avoid it for now! Take care of yourself! ";
				}
				if (.@card_2_future == 8) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes " You must be fearing your future!? Don't worry too much! Think of happy thoughts! ";
				}
				if (.@card_2_future == 9) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes " You may endanger someone in the future! Don't become a bad person~! ";
				}
				if (.@card_2_future == 10) {
					cutin "����ī��",4; // Munak Card
					mes " You may have to stand alone in the future! Prepare yourself right now! ";
				}
				if (.@card_2_future == 11) {
					cutin "����ī��",4; // Munak Card
					mes " Many hardships await you in the future! But you can overcome them! ";
				}
				if (.@card_2_future == 12) {
					cutin "����ī��",4; // Munak Card
					mes " You might not even be able to buy summer clothes in the future! Don't waste your money! ";
				}
				if (.@card_2_future == 13) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " Something exciting may happen! What can it be? Fun! Fun! ";
				}
				if (.@card_2_future == 14) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " Something good might happen on this nice day! You can look forward to it! Yay! ";
				}
				if (.@card_2_future == 15) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " A splendid event will be held! Go get ready! Look forward to it! ";
				}
				if (.@card_2_future == 16) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " You will meet someone new! It will be very interesting! ";
				}
				if (.@card_2_future == 17) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " If you go little by little, something good will happen! Sit and take a look around you! ";
				}
				if (.@card_2_future == 18) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " You get a headache from thinking about the future? Empty your mind! You will feel refreshed! ";
				}
				if (.@card_2_future == 19) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " You will become a respectable person in the future! Good job! ";
				}
				if (.@card_2_future == 20) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " I can see you working hard in the future! What a lively future! ";
				}
				if (.@card_2_future == 21) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " You have a very busy future! Take care of your health! ";
				}
				if (.@card_2_future == 22) {
					cutin "���尡ī��",4; // Eddga Card
					mes " Pick a job where you can work with other people! It will be very rewarding, right? ";
				}
				if (.@card_2_future == 23) {
					cutin "���尡ī��",4; // Eddga Card
					mes " Try doing some volunteer work! It is worthwhile and you will feel good about it, too! ";
				}
				if (.@card_2_future == 24) {
					cutin "���尡ī��",4; // Eddga Card
					mes " You may become a commander! Mmm~! Kind of scary! ";
				}
				if (.@card_2_future == 25) {
					cutin "������ī��",4; // Angeling Card
					mes " Choose a job that involves flying! You show potential! ";
				}
				if (.@card_2_future == 26) {
					cutin "������ī��",4; // Angeling Card
					mes " Scrumptious ice cream that could even be eaten in heaven! Challenge yourself and get involved in a job making things of that sort! ";
				}
				if (.@card_2_future == 27) {
					cutin "������ī��",4; // Angeling Card
					mes " In the future, things that cannot be done right now will be accomplished! You can look forward to it! ";
				}
				if (.@card_2_future == 28) {
					cutin "����ī��",4; // Poring Card
					mes " Little things in life will bring you happiness and joy in the future! Even more than now! ";
				}
				if (.@card_2_future == 29) {
					cutin "����ī��",4; // Poring Card
					mes " Do what you have to do. Live life to the fullest, even though the world may end tomorrow! ";
				}
				if (.@card_2_future == 30) {
					cutin "����ī��",4; // Poring Card
					mes " You will deal with fruits in the future! How about preparing yourself? ";
				}
				if (.@card_2_future == 31) {
					cutin "������ī��",4; // Poporing Card
					mes " Your future self will encounter a high wall! Although, I'm not sure what type of building it may be! ";
				}
				if (.@card_2_future == 32) {
					cutin "������ī��",4; // Poporing Card
					mes " Green symbolizes peace! Your future seems as if it will be very peaceful! It's a good thing, right? ";
				}
				if (.@card_2_future == 33) {
					cutin "������ī��",4; // Poporing Card
					mes " Romance lays ahead in your future! Relax yourself and prepare yourself! ";
				}
				next;
				mes "[Chocarle]";
				mes " What do you think? Has your anxiety been relieved after hearing your fortune? ";
				mes " This is only a small part of your future! You must discover the rest! ";
				next;
				cutin "",255;
				mes "[Chocarle]";
				mes " Am I cheesy? I'm just like that! Then, bye~~~~ye~~~ye~~~~!! ";
				break;

			//=================================================================Fortune ===
			case 5:
				mes "[Chocarle]";
				mes " Mmm! The long awaited time has come! Asking a question about money to the cute Poring! ";
				mes " Ok! Let's try it! ";
				next;
				mes "[Chocarle]";
				.@card_2_fortune = rand(1,33);
				if (.@card_2_fortune == 1) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Uh oh! You're about to be robbed! You must save a little first! ";
				}
				if (.@card_2_fortune == 2) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Kek! Your mind goes blank when you think about money! Think of other thoughts! Forget about money for a while! ";
				}
				if (.@card_2_fortune == 3) {
					cutin "����Ʈ��ī��",4; // Ghostring Card
					mes " Bah! This isn't a time to think about money. Calm down and put your mind at ease! ";
				}
				if (.@card_2_fortune == 4) {
					cutin "�������ī��",4; // Drops Card
					mes " If you look carefully, it is not drinking juice, but underground water through a straw in the ground! Money is hidden where nobody expects! Good luck searching! ";
				}
				if (.@card_2_fortune == 5) {
					cutin "�������ī��",4; // Drops Card
					mes " As you can quench your thirst in the dry desert, you can gather money even in this difficult world! ";
				}
				if (.@card_2_fortune == 6) {
					cutin "�������ī��",4; // Drops Card
					mes " Just like the juice inside the needles of a cactus, you can still gather wealth though you may be in anguish. You can do it! ";
				}
				if (.@card_2_fortune == 7) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes "Agh! Someone is after your possessions! Be careful! ";
				}
				if (.@card_2_fortune == 8) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes " Uh oh! Someone is after your money! Take good care of it! ";
				}
				if (.@card_2_fortune == 9) {
					cutin "��Ƽ��ī��",4; // Mantis Card
					mes " It says you might be tempted to do something bad to gather money! Don't forget about a kind heart! ";
				}
				if (.@card_2_fortune == 10) {
					cutin "����ī��",4; // Munak Card
					mes " You have hidden money in your clothes! Hidden rich one! Be careful not to be caught! ";
				}
				if (.@card_2_fortune == 11) {
					cutin "����ī��",4; // Munak Card
					mes " In the future, it seems like you will be kicking money around with your feet like those Porings! Congratulations! ";
				}
				if (.@card_2_fortune == 12) {
					cutin "����ī��",4; // Munak Card
					mes " You must be exhausted! Making money is not the easiest thing to do! But it will be that much more valuable! ";
				}
				if (.@card_2_fortune == 13) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " Your tendency to spend money is growing! Be careful! Don't be left empty-handed! ";
				}
				if (.@card_2_fortune == 14) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " Use your money to buy something fun! Then good luck will be headed your way! ";
				}
				if (.@card_2_fortune == 15) {
					cutin "��Ÿ����ī��",4; // Santa Poring Card
					mes " Use your money on something exciting! It looks as if good luck will be headed your way! ";
				}
				if (.@card_2_fortune == 16) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " It seems like you will have two lucky offerings! Don't miss these two opportunities! ";
				}
				if (.@card_2_fortune == 17) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " Doesn't it seem like there should be money in the small wallet? You will have some small income! Save money wisely! ";
				}
				if (.@card_2_fortune == 18) {
					cutin "����������ī��",4; // Soldier Skeleton Card
					mes " So~ empty. Upsetting, but don't worry too much about money! Something better ought to happen! ";
				}
				if (.@card_2_fortune == 19) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " Someone will return something you lost! What a relief! ";
				}
				if (.@card_2_fortune == 20) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " No need to worry about osteoporosis! Wasn't it a good thing to eat so much calcium? Oops! This isn't about money?! ";
				}
				if (.@card_2_fortune == 21) {
					cutin "���̷���ī��",4; // Skeleton Card
					mes " Seeing that you work so hard, seems like you will make lots of money! Congratz~! ";
				}
				if (.@card_2_fortune == 22) {
					cutin "���尡ī��",4; // Eddga Card
					mes " Even if you save money, it disappears like smoke. Don't get too caught up with it! ";
				}
				if (.@card_2_fortune == 23) {
					cutin "���尡ī��",4; // Eddga Card
					mes " It's hard to make money, isn't it? But don't forget the good deeds in life! ";
				}
				if (.@card_2_fortune == 24) {
					cutin "���尡ī��",4; // Eddga Card
					mes " Going around to collect money might lead you to a scary person! Be very careful! ";
				}
				if (.@card_2_fortune == 25) {
					cutin "������ī��",4; // Angeling Card
					mes " Forget about money and fly~fly! You will feel very refreshed! ";
				}
				if (.@card_2_fortune == 26) {
					cutin "������ī��",4; // Angeling Card
					mes " Money is like clouds! Instead of money, think about a happy life! ";
				}
				if (.@card_2_fortune == 27) {
					cutin "������ī��",4; // Angeling Card
					mes " Even if it may seem pointless, if you persist, you will be able to make lots of money! You can do it! ";
				}
				if (.@card_2_fortune == 28) {
					cutin "����ī��",4; // Poring Card
					mes " Don't neglect the trivial things on the floor! If you keep an open heart like that, you will be able to collect money! ";
				}
				if (.@card_2_fortune == 29) {
					cutin "����ī��",4; // Poring Card
					mes " If you work with something that is related to mushrooms or apples, a good fortune awaits you! What kind of work would that be? ";
				}
				if (.@card_2_fortune == 30) {
					cutin "����ī��",4; // Poring Card
					mes " How can you think of money looking at such a peaceful card! That's not nice! Sniff..sniffles! Anyhow, it seems like you will gather much fortune! ";
				}
				if (.@card_2_fortune == 31) {
					cutin "������ī��",4; // Poporing Card
					mes " You have many fine stones! You will prosper if you are involved in this industry! ";
				}
				if (.@card_2_fortune == 32) {
					cutin "������ī��",4; // Poporing Card
					mes " It is an indication that you will prosper! No need to worry now! ";
				}
				if (.@card_2_fortune == 33) {
					cutin "������ī��",4; // Poporing Card
					mes " You will collect many treasures! But the problem is protecting all of it! ";
				}
				next;
				mes "[Chocarle]";
				mes " There is something you need to keep in mind after being told a fortune about wealth! ";
				mes " Money does not automatically come to one without effort! No matter how good the fortune, you must work diligently! ";
				next;
				cutin "",255;
				mes "[Chocarle]";
				mes " Bear that in mind! Then, until we meet again.. *poof*! ";
				break;
			}
			break;
		case 2:
			mes "[Chocarle]";
			mes " Ok then! Come again next time! We'll do a good job! Bye-bye~! ";
			break;
		}
		break;
	case 2:
		mes "[Chocarle]";
		mes " Poring card readings focus on cards with cute Porings..! ";
		mes " Poke~poke~ they tell you your fortune! It is not traditional, but the liveliness is the best! ";
		next;
		mes "[Chocarle]";
		mes " The fortunes are simple and refreshing. It is perfect when you would like your fortune told with a light heart and not be burdensome! ";
		break;
	}
	close;
}

payon_in03,118,119,1	script	Ascetic	4W_F_01,2,2,{
	mes "[Kissy-Kissy]";
	mes "NyangNyangNyang~";
	mes "NyaNyangNyaNyag~";
	next;
	mes "[Kissy-Kissy]";
	mes "I decided to become a fortuneteller";
	mes "when I was young and came to the city";
	mes "and devoted myself to training.";
	mes "I was in agony because of my slow progress.";
	next;
	mes "[Kissy-Kissy]";
	mes "I came because I heard many ";
	mes "fortunetellers gather here in Payon,";
	mes "but nobody will tell me anything~";
	mes "Waaah~ so sad~";
	next;
	mes "[Kissy-Kissy]";
	mes "NyangNyangNyang~";
	mes "NyaNyangNyaNyang~";
	next;
	mes "[Kissy-Kissy]";
	mes "Kiss me~~";
	close;

OnTouch:
	mes "[Kissy-Kissy]";
	mes "NyangNyangNyang~";
	mes "NyaNyangNyaNyang~";
	mes "Kissy me~";
	close;
}