-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsmt_iv_save_editor.py
2750 lines (2623 loc) · 138 KB
/
smt_iv_save_editor.py
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
#!/usr/bin/env python3
import tkinter as tk
from tkinter import filedialog
from tkinter import messagebox
import os
import sys
print_n = sys.stdout.write
STAT_TXT = ("Str", "Dex", "Mag", "Agi", "Lck")
# Main Character
MC_STAT1 = ["0x122", 2]
MC_MAX_HP = ("0x12C", 2)
MC_MAX_MP = ("0x12E", 2)
MC_STAT2 = ["0x130", 2]
MC_CURR_HP = ("0x13A", 2)
MC_CURR_MP = ("0x13C", 2)
MC_SKILL = ("0x144", 2, 8)
MC_LVL = ("0x186", 2)
# Miscellaneous
MISC_MACCA = ("0x10C", 4)
MISC_APP_PTS = ("0x98F0", 2)
# Demons
DE_NUM_MAX = 24
DE_START = "0x19C"
DE_NEXT_OFFSET = "0x604"
DE_STAT1 = ("0x4", 2)
DE_MAX_HP = ("0xE", 2)
DE_MAX_MP = ("0x10", 2)
DE_STAT2 = ("0x12", 2)
DE_CURR_HP = ("0x2A", 2)
DE_CURR_MP = ("0x2C", 2)
DE_SKILL = ("0x34", 2, 8)
DE_ID = ("0x46", 2, 8)
DE_LVL = ("0x48", 1)
# Skill Information
SKILL_TYPE = ("Fire", "Ice", "Electric", "Force", "Almighty",
"Dark", "Light", "Ailment", "Healing", "Status",
"Support", "Physical", "Gun", "Auto", "Dummy")
SKILL_DMG = ("Zero", "Weak", "Medium", "Heavy", "Severe",
"KO", "Fixed", "Unknown", "Mega")
SKILL_TARGET = ("Single", "Multiple", "Enemies", "Self",
"Ally", "Allies", "All", "Unknown")
SKILL_IDS = ('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', '10',
'11', '12', '13', '14', '15', '16', '17', '18', '19', '1a', '1b', '1c', '1d',
'1e', '1f', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '2a',
'2b', '2c', '2d', '2e', '2f', '30', '31', '32', '33', '34', '35', '36', '37',
'38', '39', '3a', '3b', '3c', '3d', '3e', '3f', '40', '41', '42', '43', '44',
'45', '46', '47', '48', '49', '4a', '4b', '4c', '4d', '51', '52', '53', '54',
'55', '56', '57', '58', '59', '5a', '5b', '5c', '5d', '5e', '5f', '65', '66',
'67', '68', '69', '6a', '6b', '6c', '6d', '6e', '6f', '70', '71', '72', '73',
'75', '76', '77', '78', '79', '7a', '7b', '7c', '7d', '7f', '89', '8a', '8b',
'8c', '8d', '97', '98', '99', '9a', '9b', '9c', '9d', '9e', '9f', 'a0', 'a1',
'a2', 'a3', 'a4', 'a5', 'a6', 'a7', 'a8', 'a9', 'aa', 'ab', 'ac', 'ae', 'b0',
'b1', 'b2', 'b3', 'b4', 'b5', 'b6', 'b7', 'b8', 'b9', 'ba', 'bb', 'bc', 'bd',
'be', 'bf', 'c0', 'c1', 'c2', 'fb', 'fc', 'fd', 'fe', '100', '101', '102', '103',
'104', '105', '106', '107', '108', '109', '10a', '10b', '10c', '10d', '10e',
'10f', '110', '111', '112', '113', '12d', '12e', '12f', '130', '131', '132',
'133', '134', '135', '136', '137', '138', '139', '13a', '13b', '13c', '13d',
'13e', '13f', '140', '141', '143', '144', '145', '146', '147', '148', '165',
'167', '184', '185', '186', '187', '188', '189', '18a', '18b', '18c', '18d',
'18e', '18f', '191', '192', '193', '194', '195', '196', '197', '198', '199',
'19a', '19b', '19c', '19d', '19e', '19f', '1a0', '1a1', '1a2', '1a3', '1a4',
'1a5', '1a6', '1a7', '1a8', '1a9', '1aa', '1ab', '1ac', '1ad', '1ae', '1af',
'1b0', '1b1', '1b2', '1b3', '1b4', '1b5', '1b6', '1b7', '1b8', '1b9', '1ba',
'1bb', '1bc', '1bd', '1be', '1bf', '1c0', '1c1', '1c2', '1c3', '1c4', '1c5',
'1c6', '1c7', '1cd', '1ce', '1cf', '1d0', '1d1', '1d2', '1d7', '1db', '1dd',
'1de', '1df', '1e0', '1e1', '1e2', '1e3', '1e4', '1e5', '1e6', '1e7', '1e8',
'1e9', '1ea', '1eb', '1ec', '1ed')
ALL_SKILLS = {
"1": ("Agi", 0, 1, 1, 0, "Weak Fire damage. 1 enemy."),
"2": ("Agilao", 0, 4, 2, 0, "Medium Fire damage. 1 enemy."),
"3": ("Agidyne", 0, 10, 3, 0, "Heavy Fire damage. 1 enemy."),
"4": ("Maragi", 0, 7, 1, 2, "Weak Fire damage. All enemies."),
"5": ("Maragion", 0, 16, 2, 2, "Medium Fire damage. All enemies."),
"6": ("Maragidyne", 0, 28, 3, 2, "Heavy Fire damage. All enemies."),
"7": ("Fire Breath", 0, 17, 1, 1, "1~4 hits weak Fire damage. Multiple enemies."),
"8": ("Trisagion", 0, 18, 4, 0, "Severe Fire damage. 1 enemy"),
"9": ("Ragnarok", 0, 31, 2, 1, "1~4 hits medium Fire damage. Muliple enemies."),
"102": ("Sunny Ray", 0, 1, 1, 2, "Weak Fire damage. 70% Poison. All enemies."),
"138": ("Inferno of God", 0, 46, 3, 2, "Heavy Fire damage. Pierce enemy Fire Resist/Null/Drain. All enemies."),
"a": ("Bufu", 1, 1, 1, 0, "Weak Ice damage. 1 enemy."),
"b": ("Bufula", 1, 4, 2, 0, "Medium Ice damage. 1 enemy."),
"c": ("Bufudyne", 1, 10, 3, 0, "Heavy Ice damage. 1 enemy."),
"d": ("Mabufu", 1, 7, 1, 2, "Weak Ice damage. All enemies."),
"e": ("Mabufula", 1, 16, 2, 2, "Medium Ice damage. All enemies."),
"f": ("Mabufudyne", 1, 28, 3, 2, "Heavy Ice damage. All enemies."),
"10": ("Ice Breath", 1, 17, 1, 1, "1~4 hits weak Ice damage. Muliple enemies."),
"11": ("Glacial Blast", 1, 18, 2, 1, "1~4 hits medium Ice damage. Multiple enemies."),
"12": ("Cold World", 1, 46, 3, 2, "Heavy Ice damage. 15% KO. All enemies."),
"4c": ("Breath", 1, 20, 2, 1, "1~5 hits medium Ice damage. Multiple enemies."),
"134": ("Hailstorm of God", 1, 46, 3, 2, "Heavy Ice damage. Pierce enemy Ice Resist/Null/Drain. All enemies."),
"13b": ("Refrigerate", 9, 22, 1, 1, "1~8 hits weak Ice damage. Multiple enemies."),
"13": ("Zio", 2, 1, 1, 0, "Weak Elec damage. 1 enemy."),
"14": ("Zionga", 2, 4, 2, 0, "Medium Elec damage. 1 enemy."),
"15": ("Ziodyne", 2, 10, 3, 0, "Heavy Elec damage. 1 enemy."),
"16": ("Mazio", 2, 7, 1, 2, "Weak Elec damage. All enemies."),
"17": ("Mazionga", 2, 16, 2, 2, "Medium Elec damage. All enemies."),
"18": ("Maziodyne", 2, 28, 3, 2, "Heavy Elec damage. All enemies."),
"19": ("Shock", 2, 17, 1, 1, "1~4 hits weak Elec damage. Muliple enemies."),
"1a": ("Thunder Reign", 2, 18, 4, 2, "Severe Elec damage. All enemies."),
"1b": ("Charming Bolt", 2, 41, 3, 2, "Heavy Elec damage. 25% Panic. All enemies."),
"12e": ("Lightning of God", 2, 46, 3, 2, "Heavy Elec damage. Pierce enemy Elec Resist/Null/Drain. All enemies."),
"139": ("Plasma Discharge", 2, 18, 1, 1, "1~8 hits weak Elec damage. Multiple enemies."),
"1c": ("Zan", 3, 1, 1, 0, "Weak Force damage. 1 enemy."),
"1d": ("Zanma", 3, 4, 2, 0, "Medium Force damage. 1 enemy."),
"1e": ("Zandyne", 3, 10, 3, 0, "Heavy Force damage. 1 enemy."),
"1f": ("Mazan", 3, 7, 1, 2, "Weak Force damage. All enemies."),
"20": ("Mazanma", 3, 16, 2, 2, "Medium Force damage. All enemies."),
"21": ("Mazandyne", 3, 28, 3, 2, "Heavy Force damage. All enemies."),
"22": ("Wind Breath", 3, 17, 1, 1, "1~4 hits weak Force damage. Muliple enemies."),
"23": ("Deadly Wind", 3, 18, 4, 0, "Severe Force damage. 1 enemy."),
"24": ("Floral Gust", 3, 31, 2, 1, "1~4 hits medium Force damage. Muliple enemies."),
"132": ("Tornado of God", 3, 46, 3, 2, "Heavy Force damage. Pierce enemy Force Resist/Null/Drain. All enemies."),
"25": ("Megido", 4, 21, 1, 2, "Weak Almighty damage. All enemies."),
"26": ("Megidola", 4, 36, 2, 2, "Medium Almighty damage. All enemies."),
"27": ("Megidolaon", 4, 56, 3, 2, "Heavy Almighty damage. All enemies."),
"28": ("Great Logos", 4, 66, 4, 2, "Severe Almighty damage. All enemies."),
"29": ("Antichthon", 4, 76, 4, 2, "Severe Almighty damage. Debilitate. All enemies."),
"2a": ("Babylon Goblet", 4, 61, 2, 2, "Medium Almighty damage. 25% Panic."),
"2b": ("Holy Wrath", 4, 41, 2, 2, "50% additional damage VS Chaos."),
"2c": ("Judgement", 4, 41, 2, 2, "50% additional damage VS Neutral."),
"2d": ("Sea of Chaos", 4, 41, 1, 2, "50% additional damage VS Law."),
"2e": ("Life Drain", 4, 1, 1, 0, "Weak Almighty damage. Drain HP. 1 enemy."),
"2f": ("Spirit Drain", 4, 1, 1, 0, "Weak Almighty damage. Drain MP. 1 enemy."),
"30": ("Energy Drain", 4, 1, 1, 0, "Weak Almighty damage. Drain HP/MP. 1 enemy."),
"47": ("Strange Ray", 4, 1, 6, 0, "Almighty attack reduce target MP to 50%."),
"48": ("Enigmatic Ray", 4, 6, 6, 2, "???"),
"49": ("Macca Beam", 4, 1, 6, 0, "Almighty attack reduce target Macca to 20%."),
"4a": ("Wastrel Beam", 4, 6, 6, 0, "Almighty attack reduce target Macca to 50%"),
"4b": ("Crushing Wave", 4, 6, 6, 0, "Almighty attack reduce target HP to 1."),
"4d": ("Death's Door", 4, 6, 6, 2, "All Sick enemies' HP reduced to 1."),
"c2": ("Desperate Hit", 4, 36, 1, 1, "1~5 hits Almighty damage. Multiple enemies."),
"fd": ("Queen's Feast", 4, 1, 2, 2, "Medium Almighty damage. Drain HP."),
"100": ("Ameno Murakumo", 4, 1, 2, 2, "Medium Almighty damage. Tarunda."),
"101": ("Homeland Song", 4, 1, 3, 1, "2~3 hits weak Almighty damage. Multiple enemies."),
"103": ("Vulnera", 4, 1, 2, 2, "Medium Almighty damage. 50% Bind. All enemies."),
"105": ("Deceit Chain", 4, 1, 2, 1, "Medium Almighty damage. 50% Bind. All enemies."),
"106": ("Naughty Wave", 4, 1, 2, 2, "Medium Almighty damage. 10% KO."),
"109": ("Evil Shine", 4, 1, 3, 2, "Heavy Almighty damage. 70% Panic. All enemies."),
"10b": ("Morning Star", 4, 1, 6, 2, "Almighty attack reduce target HP by 50%."),
"10c": ("Chariot", 4, 1, 2, 2, "Medium Almighty damage. Sukunda. All enemies."),
"10d": ("Shalt Not Resist", 4, 1, 8, 1, "2 hits mega Almighty damage. Rakunda. All enemies."),
"10e": ("Hexagram", 4, 1, 5, 0, "Almighty attack. 100% KO."),
"10f": ("Hell's Torment", 4, 1, 6, 2, "Almighty attack reduce target HP by 66%."),
"131": ("Serpent of Sheol", 4, 41, 4, 2, "Severe Almighty damage. Drain HP/MP."),
"137": ("Fallen Grace", 4, 40, 6, 0, "666 Almighty damage to 1 enemy."),
"13a": ("Megidoplasma", 4, 37, 3, 2, "Heavy Almighty damage to all enemies."),
"13d": ("Punishment", 4, 1, 6, 2, "Hits 333 Almighty damage per enemy resistance. All enemies."),
"140": ("Curse Thy Enemy", 4, 76, 3, 2, "Heavy Almighty damage. Gurantees weakness. All enemies."),
"143": ("Damnation", 4, 61, 3, 2, "Heavy Almighty damage. 70% Poison. All enemies."),
"144": ("Stigmatic Gleam", 4, 71, 3, 2, "Heavy Almighty damage. 25% Brand. All enemies."),
"146": ("Gaea Rage", 4, 58, 3, 2, "Heavy Almighty damage. 30% Lost. All enemies."),
"184": ("Assist (1)", 4, 1, 7, 2, "1 hit ??? Almighty damage. All enemies."),
"185": ("Assist (2)", 4, 1, 7, 2, "2 hits ??? Almighty damage. All enemies."),
"186": ("Assist (3)", 4, 1, 7, 2, "3 hits ??? Almighty damage. All enemies."),
"187": ("Assist (4)", 4, 1, 7, 2, "4 hits ??? Almighty damage. All enemies."),
"188": ("Assist (5)", 4, 1, 7, 2, "5 hits ??? Almighty damage. All enemies."),
"189": ("Assist (6)", 4, 1, 7, 2, "6 hits ??? Almighty damage. All enemies."),
"18a": ("Assist (7)", 4, 1, 7, 2, "7 hits ??? Almighty damage. All enemies."),
"18b": ("Assist (8)", 4, 1, 7, 2, "8 hits ??? Almighty damage. All enemies."),
"18c": ("Assist (9)", 4, 1, 7, 2, "9 hits ??? Almighty damage. All enemies."),
"18d": ("Assist Rush (1)", 4, 1, 7, 2, "10 hits ??? Almighty damage. All enemies."),
"18e": ("Assist Rush (2)", 4, 1, 7, 2, "11 hits ??? Almighty damage. All enemies."),
"18f": ("Assist Rush (3)", 4, 1, 7, 2, "12 hits ??? Almighty damage. All enemies."),
"31": ("Mudo", 5, 2, 5, 0, "Dark magic. 30% KO 1 enemy."),
"32": ("Mudoon", 5, 6, 5, 0, "Dark magic. 55% KO 1 enemy."),
"33": ("Mamudo", 5, 14, 5, 2, "Dark magic. 30% KO all enemies."),
"34": ("Mamudoon", 5, 26, 5, 2, "Dark magic. 55% KO all enemies."),
"35": ("Die for Me!", 5, 41, 5, 2, "Dark magic. 80% KO all enemies."),
"36": ("Hama", 6, 2, 5, 0, "Light magic. 30% KO 1 enemy."),
"37": ("Hamaon", 6, 6, 5, 0, "Light magic. 55% KO 1 enemy."),
"38": ("Mahama", 6, 14, 5, 2, "Light magic. 30% KO all enemies."),
"39": ("Mahamaon", 6, 26, 5, 2, "Light magic. 55% KO all enemies."),
"3a": ("Judgement Light", 6, 41, 5, 2, "Light magic. 80% KO all enemies."),
"3b": ("Dormina", 7, 1, 0, 0, "90% Sleep. 1 enemy."),
"3c": ("Lullaby", 7, 7, 0, 2, "70% Sleep. All enemies."),
"3d": ("Poisma", 7, 1, 0, 0, "90% Poison. 1 enemy."),
"3e": ("Poison Breath", 7, 7, 0, 2, "70% Poison. All enemies."),
"3f": ("Shibaboo", 7, 1, 0, 0, "50% Bind an enemy."),
"40": ("Bind Voice", 7, 11, 0, 2, "50% Bind all enemies."),
"41": ("Pulpina", 7, 1, 0, 0, "90% Panic. 1 enemy."),
"42": ("Panic Voice", 7, 11, 0, 2, "70% Panic. All enemies."),
"43": ("Cough", 7, 14, 0, 0, "90% Sick. 1 enemy."),
"44": ("Pandemic Bomb", 7, 7, 0, 2, "70% Sick. All Enemies."),
"45": ("Ancient Curse", 7, 36, 0, 2, "80% random ailment. All enemies."),
"46": ("Shivering Taboo", 7, 36, 0, 2, "70% random ailment. All enemies."),
"133": ("Lamentation", 7, 41, 0, 2, "45% random ailment. 100% Brand. All enemies."),
"51": ("Dia", 8, 1, 0, 4, "Heal HP for ally. Low."),
"52": ("Diarama", 8, 5, 0, 4, "Heal HP for ally. Medium."),
"53": ("Diarahan", 8, 12, 0, 4, "Heal HP for ally. High."),
"54": ("Media", 8, 8, 0, 5, "Heal HP for party. Low."),
"55": ("Mediarama", 8, 18, 0, 5, "Heal HP for party. Medium."),
"56": ("Mediarahan", 8, 36, 0, 5, "Heal HP for party. High."),
"57": ("Salvation", 8, 46, 0, 5, "Heal full HP and cure ailments for party."),
"58": ("Patra", 8, 1, 0, 4, "Cure Sleep/Panic/Bind for ally."),
"59": ("Me Patra", 8, 11, 0, 5, "Cure Sleep/Panic/Bind for party."),
"5a": ("Posumudi", 8, 1, 0, 4, "Cure Poison/Sick for ally."),
"5b": ("Nervundi", 8, 1, 7, 7, "???"),
"5c": ("Amrita", 8, 16, 0, 4, "Cure all ailments for ally."),
"5d": ("Recarm", 8, 16, 0, 4, "Revive ally with little starting HP."),
"5e": ("Samerecarm", 8, 36, 0, 4, "Revive ally with full starting HP."),
"5f": ("Recarmdra", 8, 1, 0, 5, "User dies. Revive all allies with full HP."),
"65": ("Tarukaja", 9, 11, 0, 5, "Increase Attack. All allies."),
"66": ("Sukukaja", 9, 11, 0, 5, "Increase Hit/Evade. All allies."),
"67": ("Rakukaja", 9, 11, 0, 5, "Increase Defense. All allies."),
"68": ("Luster Candy", 9, 46, 0, 5, "Increase all stats. All allies."),
"69": ("Dekaja", 9, 6, 0, 2, "Neutralize -kaja effects. All enemies."),
"6a": ("Tarunda", 9, 11, 0, 2, "Decrease Attack. All enemies."),
"6b": ("Sukunda", 9, 11, 0, 2, "Decrease Hit/Evade. All enemies."),
"6c": ("Rakunda", 9, 11, 0, 2, "Decrease Defense. All enemies."),
"6d": ("Debilitate", 9, 46, 0, 2, "Decrease all stats. All enemies."),
"6e": ("Dekunda", 9, 6, 0, 5, "Neutralize -unda effects. All allies."),
"6f": ("Silent Prayer", 9, 11, 0, 6, "Neutralize stat modifications for all."),
"70": ("War Cry", 9, 41, 0, 2, "Decrease Attack/Defense. All enemies"),
"71": ("Fog Breath", 9, 41, 0, 2, "Decrease Attack/Hit/Evade. All enemies"),
"72": ("Acid Breath", 9, 41, 0, 2, "Decrease Defense/Hit/Evade. All enemies"),
"73": ("Taunt", 9, 16, 0, 2, "Decrease Defense. Increase Attack. All enemies."),
"75": ("Panic Caster", 9, 46, 0, 3, "User Panic. Temporary increase in magic damage."),
"76": ("Tetrakarn", 9, 46, 0, 5, "Reflect Phys/Gun damage once."),
"77": ("Makarakarn", 9, 46, 0, 5, "Reflect magic damage once."),
"78": ("Tetraja", 9, 11, 0, 5, "Nullify Light/Dark magic once."),
"79": ("Charge", 9, 5, 0, 3, "User's next Phys/Gun damage 250%."),
"7a": ("Concentrate", 9, 7, 0, 3, "User's next magic damage 250%."),
"7b": ("Blood Ritual", 9, 21, 0, 3, "Luster Candy. Reduce user's HP to 1."),
"8a": ("Doping", 9, 41, 0, 5, "All allies' HP 133%"),
"8b": ("Angelic Order", 9, 21, 0, 4, "Bestows Smirk. 1 ally."),
"fe": ("Orchard Guardian", 9, 1, 0, 3, "Luster Candy."),
"10a": ("Kingly One", 9, 1, 0, 1, "Return 1 demon to player's stock at random."),
"110": ("Light Wing (Fire)", 9, 1, 0, 3, "Repel all attacks except Almight/Fire."),
"111": ("Light Wing (Ice)", 9, 1, 0, 3, "Repel all attacks except Almight/Ice."),
"112": ("Light Wing (Elec)", 9, 1, 0, 3, "Repel all attacks except Almight/Elec."),
"113": ("Light Wing (Force)", 9, 1, 0, 3, "Repel all attacks except Almight/Force."),
"12f": ("Tetracoerce", 9, 31, 0, 2, "Nullifies enemy Tetrakarn effect."),
"135": ("Makaracoerce", 9, 31, 0, 2, "Nullifies enemy Makarakarn effect."),
"136": ("Archangel's Law", 9, 46, 0, 4, "Bestows Smirk. 1 ally."),
"13e": ("I Have Dr. Pepper", 9, 1, 0, 0, "Maximizes user's stats. Minimizes 1 enemy's stats."),
"145": ("Spirit Focus", 9, 31, 0, 3, "User's next magic damage 300%."),
"148": ("Dark Energy", 9, 31, 0, 3, "User's next Phys/Gun damage 300%."),
"7c": ("Sabbatma", 10, 16, 0, 4, "Summon/return 1 ally to stock."),
"7d": ("Invitation", 10, 41, 0, 4, "Summon/return 1 ally to stock and revive if dead."),
"7f": ("Bad Company", 10, 11, 0, 5, "Summon highest level allies from stock."),
"89": ("Trafuri", 10, 1, 0, 5, "Guaranteed escape from random battles."),
"8c": ("Estoma Sword", 10, 21, 0, 7, "Used in maps. Hit enemies to banish them."),
"8d": ("Call Ally", 10, 1, 0, 3, "Dummy"),
"141": ("Guardian's Eye", 10, 251, 0, 5, "Bestows 3 Turn Press icons."),
"97": ("Lunge", 11, 2, 1, 0, "Weak Phys damage. High Crit. Low Acc. 1 enemy."),
"98": ("Oni-Kagura", 11, 5, 2, 0, "Medium Phys damage. High Crit. Low Acc. 1 enemy."),
"99": ("Mortal Jihad", 11, 9, 3, 0, "Heavy Phys damage. High Crit. Low Acc. 1 enemy."),
"9a": ("Critical Wave", 11, 6, 1, 2, "Weak Phys damage. High Crit. Low Acc. All enemies."),
"9b": ("Megaton Press", 11, 13, 2, 2, "Medium Phys damage. High Crit. Low Acc. All enemies."),
"9c": ("Titanomachia", 11, 26, 3, 2, "Heavy Phys damage. High Crit. Low Acc. All enemies."),
"9d": ("Gram Slice", 11, 1, 1, 0, "Weak Phys damage. 1 enemy."),
"9e": ("Fatal Sword", 11, 4, 2, 0, "Medium Phys damage. 1 enemy."),
"9f": ("Berserker God", 11, 8, 3, 0, "Heavy Phys damage. 1 enemy."),
"a0": ("Heat Wave", 11, 7, 1, 2, "Weak Phys damage. All enemies."),
"a1": ("Javelin Rain", 11, 17, 2, 2, "Medium Phys damage. All enemies."),
"a2": ("Hades Blast", 11, 28, 3, 2, "Heavy Phys damage. All enemies."),
"a3": ("Bouncing Claw", 11, 1, 1, 1, "1~3 hits weak Phys damage. 1 enemy."),
"a4": ("Damascus Claw", 11, 3, 2, 1, "1~3 hits medium Phys damage. 1 enemy."),
"a5": ("Nihil Claw", 11, 7, 3, 1, "1~3 hits heavy Phys damage. 1 enemy."),
"a6": ("Scratch Dance", 11, 5, 1, 1, "1~3 hits weak Phys damage. Multiple enemies."),
"a7": ("Axel Claw", 11, 11, 2, 1, "1~3 hits medium Phys damage. Multiple enemies."),
"a8": ("Madness Nails", 11, 22, 3, 1, "1~3 hits heavy Phys damage. Multiple enemies."),
"a9": ("Fang Breaker", 11, 8, 1, 0, "Weak Phys damage. Tarunda. 1 enemy."),
"aa": ("Dream Fist", 11, 5, 1, 0, "Weak Phys damage. 70% Sleep. 1 enemy."),
"ab": ("Purple Smoke", 11, 10, 2, 1, "1~3 hits medium Phys damage. 70% Panic. Multiple enemies."),
"ac": ("Carol Hit", 11, 11, 1, 0, "Weak Phys damage. 50% Lost. 1 enemy."),
"ae": ("Tetanus Cut", 11, 7, 2, 0, "Medium Phys damage. 70% Sick. 1 enemy."),
"b0": ("Blight", 11, 10, 1, 2, "Weak Phys damage. 60% Poison. All enemies."),
"b1": ("Occult Flash", 11, 26, 2, 2, "Medium Phys damage. 50% KO. All enemies."),
"b2": ("Binding Claw", 11, 7, 2, 0, "Medium Phys damage. 35% Bind. 1 enemy."),
"b3": ("Poison Claw", 11, 5, 2, 0, "Medium Phys damage. 70% Poison. 1 enemy."),
"b4": ("Iron Judgement", 11, 4, 2, 0, "Medium Phys damage. 1 enemy."),
"fb": ("Labrys Strike", 11, 1, 8, 1, "2~3 hits mega Phys damage. Multiple enemies."),
"104": ("Conquerer Spirit", 11, 1, 3, 2, "2 hits heavy Phys damage. All enemies."),
"108": ("Impossible Slash", 11, 1, 2, 2, "2~3 hits medium Phys damage. All enemies."),
"12d": ("Kannuki-Throw", 11, 31, 1, 1, "1~15 weak hits Phys damage. Multiple enemies."),
"130": ("Stigma Strike", 11, 16, 3, 0, "Heavy Phys damage. 250% Brand. 1 enemy."),
"147": ("Deadly Fury", 11, 41, 3, 2, "Heavy Phys damage. 70% Panic. All enemies."),
"b5": ("Needle Shot", 12, 2, 1, 0, "Weak Gun damage. 1 enemy."),
"b6": ("Tathlum Shot", 12, 5, 2, 0, "Medium Gun damage. 1 enemy."),
"b7": ("Grand Tack", 12, 9, 3, 0, "Heavy Gun damage. 1 enemy."),
"b8": ("Riot Gun", 12, 6, 4, 0, "Severe Gun damage. 1 enemy."),
"b9": ("Rapid Needle", 12, 13, 1, 2, "Weak Gun damage. All enemies."),
"ba": ("Blast Arrow", 12, 26, 2, 2, "Medium Gun damage. All enemies."),
"bb": ("Heaven's Bow", 12, 1, 3, 2, "Heavy Gun damage. All enemies."),
"bc": ("Dream Needle", 12, 4, 1, 0, "Weak Gun damage. 70% Sleep. 1 enemy."),
"bd": ("Toxic Sting", 12, 8, 1, 0, "Weak Gun damage. 70% Poison. 1 enemy."),
"be": ("Stun Needle", 12, 7, 1, 0, "Weak Gun damage. 60% Bind. 1 enemy."),
"bf": ("Madness Needle", 12, 17, 1, 0, "Weak Gun damage. 70% Panic. 1 enemy."),
"c0": ("Stun Needles", 12, 28, 2, 1, "1~3 hits medium Gun damage. 60% Bind. Muliple enemies."),
"c1": ("Myriad Arrows", 12, 26, 1, 1, "2~4 hits weak Gun damage. Multiple enemies."),
"fc": ("Snake's Fangs", 12, 1, 2, 1, "2~3 hits medium Gun damage. Multiple enemies."),
"107": ("Blank Bullet", 12, 1, 2, 2, "2 hits medium Gun damage. All enemies."),
"13c": ("Star Tarantella", 12, 32, 3, 2, "Heavy Gun damage. 70% Panic. All enemies."),
"13f": ("Masenko-Ha", 12, 1, 3, 2, "Heavy Gun damage. ???. All enemies."),
"165": ("Dorn Gift", 12, 2, 2, 0, "Medium Gun damage. 1 enemy."),
"167": ("Barrage", 12, 1, 1, 2, "Weak Gun damage. All enemies."),
"191": ("Resist Phys", 13, 0, 0, 3, "None"),
"192": ("Null Phys", 13, 0, 0, 3, "None"),
"193": ("Repel Phys", 13, 0, 0, 3, "None"),
"194": ("Drain Phys", 13, 0, 0, 3, "None"),
"195": ("Resist Gun", 13, 0, 0, 3, "None"),
"196": ("Null Gun", 13, 0, 0, 3, "None"),
"197": ("Repel Gun", 13, 0, 0, 3, "None"),
"198": ("Drain Gun", 13, 0, 0, 3, "None"),
"199": ("Resist Fire", 13, 0, 0, 3, "None"),
"19a": ("Null Fire", 13, 0, 0, 3, "None"),
"19b": ("Repel Fire", 13, 0, 0, 3, "None"),
"19c": ("Drain Fire", 13, 0, 0, 3, "None"),
"19d": ("Resist Ice", 13, 0, 0, 3, "None"),
"19e": ("Null Ice", 13, 0, 0, 3, "None"),
"19f": ("Repel Ice", 13, 0, 0, 3, "None"),
"1a0": ("Drain Ice", 13, 0, 0, 3, "None"),
"1a1": ("Resist Elec", 13, 0, 0, 3, "None"),
"1a2": ("Null Elec", 13, 0, 0, 3, "None"),
"1a3": ("Repel Elec", 13, 0, 0, 3, "None"),
"1a4": ("Drain Elec", 13, 0, 0, 3, "None"),
"1a5": ("Resist Force", 13, 0, 0, 3, "None"),
"1a6": ("Null Force", 13, 0, 0, 3, "None"),
"1a7": ("Repel Force", 13, 0, 0, 3, "None"),
"1a8": ("Drain Force", 13, 0, 0, 3, "None"),
"1a9": ("Resist Dark", 13, 0, 0, 3, "None"),
"1aa": ("Null Dark", 13, 0, 0, 3, "None"),
"1ab": ("Resist Light", 13, 0, 0, 3, "None"),
"1ac": ("Null Light", 13, 0, 0, 3, "None"),
"1ad": ("Null Mind", 13, 0, 0, 3, "None"),
"1ae": ("Null Nerve", 13, 0, 0, 3, "None"),
"1af": ("Phys Pleroma", 13, 0, 0, 3, "Phsical attacks 125%."),
"1b0": ("High Phys Pleroma", 13, 0, 0, 3, "Phsical attacks 150%."),
"1b1": ("Gun Pleroma", 13, 0, 0, 3, "Gun attacks 125%."),
"1b2": ("High Gun Pleroma", 13, 0, 0, 3, "Gun attacks 125%."),
"1b3": ("Fire Pleroma", 13, 0, 0, 3, "Fire attacks 125%."),
"1b4": ("High Fire Pleroma", 13, 0, 0, 3, "Fire attacks 125%."),
"1b5": ("Ice Pleroma", 13, 0, 0, 3, "Ice attacks 125%."),
"1b6": ("High Ice Pleroma", 13, 0, 0, 3, "Ice attacks 125%."),
"1b7": ("Elec Pleroma", 13, 0, 0, 3, "Elec attacks 125%."),
"1b8": ("High Elec Pleroma", 13, 0, 0, 3, "Elec attacks 125%."),
"1b9": ("Force Pleroma", 13, 0, 0, 3, "Force attacks 125%."),
"1ba": ("High Force Pleroma", 13, 0, 0, 3, "Force attacks 125%."),
"1bb": ("Heal Pleroma", 13, 0, 0, 3, "Heal effects 125%."),
"1bc": ("High Heal Pleroma", 13, 0, 0, 3, "Heal effects 125%."),
"1bd": ("Endure", 13, 0, 0, 3, "Survive a fatal attack with 1 HP."),
"1be": ("Enduring Soul", 13, 0, 0, 3, "Survive a fatal attack with full HP."),
"1bf": ("Counter", 13, 0, 0, 3, "Chance to counter Phys/Gun attacks with weak blow."),
"1c0": ("Retaliate", 13, 0, 0, 3, "Chance to counter Phys/Gun attacks with heavy blow."),
"1c1": ("Ally Counter", 13, 0, 0, 3, "Chance to counter Phys/Gun attacks for ally with weak blow."),
"1c2": ("Ally Retaliate", 13, 0, 0, 3, "Chance to counter Phys/Gun attacks for ally with heavy blow."),
"1c3": ("Life Aid", 13, 0, 0, 3, "Recover moderate HP after battle."),
"1c4": ("Mana Aid", 13, 0, 0, 3, "Recover moderate MP after battle."),
"1c5": ("Victory Cry", 13, 0, 0, 3, "Recover full HP/MP after battle."),
"1c6": ("Spring of Life", 13, 0, 0, 3, "Gain a little HP while walking."),
"1c7": ("Chakra Walk", 13, 0, 0, 3, "Gain a little MP while walking."),
"1cd": ("Life Bonus", 13, 0, 0, 3, "HP 110%."),
"1ce": ("Life Gain", 13, 0, 0, 3, "HP 120%."),
"1cf": ("Life Surge", 13, 0, 0, 3, "HP 130%."),
"1d0": ("Mana Bonus", 13, 0, 0, 3, "MP 110%."),
"1d1": ("Mana Gain", 13, 0, 0, 3, "MP 120%."),
"1d2": ("Mana Surge", 13, 0, 0, 3, "MP 130%."),
"1d7": ("Healing Knowhow", 13, 0, 0, 3, "Can use healing items in battle."),
"1db": ("Attack Knowhow", 13, 0, 0, 3, "Can use attack items in battle."),
"1dd": ("Light Life Aid", 13, 0, 0, 3, "Recover a little HP after battle."),
"1de": ("Light Mana Aid", 13, 0, 0, 3, "Recover a little MP after battle."),
"1df": ("Speed Lesson", 13, 0, 0, 3, "Raises base AG by 10."),
"1e0": ("Haste Lesson", 13, 0, 0, 3, "Raises base AG by 20."),
"1e1": ("Awakening", 13, 0, 0, 3, "Raises all base stats by 5."),
"1e2": ("Hellish Mask", 13, 0, 0, 3, "Resist all ailments."),
"1e3": ("Hard Worker", 13, 0, 0, 3, "Slightly increases earned EXP from battle."),
"1e4": ("Workaholic", 13, 0, 0, 3, "Greatly increases earned EXP from battle."),
"1e5": ("Beastly Reaction", 13, 0, 0, 3, "Slightly increases Hit/Evade."),
"1e6": ("Draconic Reaction", 13, 0, 0, 3, "Greatly increases Hit/Evade."),
"1e7": ("Bloody Glee", 13, 0, 0, 3, "Increases Crit chance."),
"1e8": ("Pierce Physical", 13, 0, 0, 3, "User's Phys attacks pierce enemy Phys Resist/Null/Drain."),
"1e9": ("Pierce Gun", 13, 0, 0, 3, "User's Gun attacks pierce enemy Gun Resist/Null/Drain."),
"1ea": ("Pierce Fire", 13, 0, 0, 3, "User's Fire attacks pierce enemy Fire Resist/Null/Drain."),
"1eb": ("Pierce Ice", 13, 0, 0, 3, "User's Ice attacks pierce enemy Ice Resist/Null/Drain."),
"1ec": ("Pierce Elec", 13, 0, 0, 3, "User's Elec attacks pierce enemy Elec Resist/Null/Drain."),
"1ed": ("Pierce Force", 13, 0, 0, 3, "User's Force attacks pierce enemy Force Resist/Null/Drain.")
}
# Demon Information
ALL_DEMONS = {
"1": ("Reserved", "Godly", "(?)"),
"2": ("Reserved", "Godly", "(?)"),
"3": ("Reserved", "Godly", "(?)"),
"4": ("Reserved", "Godly", "(?)"),
"5": ("Reserved", "Godly", "(?)"),
"6": ("???", "???", "(?)"),
"7": ("Reserved", "Godly", "(?) (Resist: Charm/Daze/Mute) (Attack: Phys x1, Multi-enemies)"),
"8": ("Reserved", "???", "(?)"),
"9": ("Reserved", "Godly", "(?) (Attack: Phys x2, Multi-enemies)"),
"a": ("Satan", "Primal", ""),
"b": ("Merkabah", "Herald", ""),
"c": ("Seraph", "Herald", ""),
"d": ("Reserved", "???", "(?)"),
"e": ("Metatron", "Herald", ""),
"f": ("Reserved", "???", "(?)"),
"10": ("Mastema", "Herald", ""),
"11": ("Aniel", "Herald", ""),
"12": ("Sraosha", "Herald", ""),
"13": ("Reserved", "???", "(?)"),
"14": ("Azrael", "Herald", ""),
"15": ("Kazfiel", "Herald", ""),
"16": ("0", "Herald", "(?)"),
"17": ("Israfel", "Herald", ""),
"18": ("Victor", "Herald", ""),
"19": ("Lailah", "Herald", ""),
"1a": ("Reserved", "Herald", "(?)"),
"1b": ("Dummy", "Herald", "(?)"),
"1c": ("Dummy", "Herald", "(?)"),
"1d": ("Dummy", "Herald", "(?)"),
"1c": ("Dummy", "Herald", "(?)"),
"1e": ("Dummy", "Herald", "(?)"),
"1f": ("Lakshmi", "Megami", ""),
"20": ("Norn", "Megami", ""),
"21": ("Anat", "Megami", ""),
"22": ("Tlazolteotl", "Megami", ""),
"23": ("Pallas Athena", "Megami", ""),
"24": ("Ishtar", "Megami", ""),
"25": ("Scathach", "Megami", ""),
"26": ("Reserved", "Megami", "(?)"),
"27": ("Parvati", "Megami", ""),
"28": ("Fortuna", "Megami", ""),
"29": ("Hathor", "Megami", ""),
"2a": ("Brigid", "Megami", ""),
"2b": ("Izanami", "Megami", ""),
"2c": ("Cleopatra", "Megami", ""),
"2d": ("Reserved", "Megami", "(?)"),
"2e": ("Reserved", "Megami", "(?)"),
"2f": ("Garuda", "Avian", ""),
"30": ("Yatagarasu", "Avian", ""),
"31": ("Feng Huang", "Avian", ""),
"32": ("Thunderbird", "Avian", ""),
"33": ("Vidofnir", "Avian", ""),
"34": ("Phoenix", "Avian", ""),
"35": ("Suparna", "Avian", ""),
"36": ("Hamsa", "Avian", ""),
"37": ("Reserved", "Avian", "(?) (Attack: Phys x1, All enemies)"),
"38": ("Reserved", "Avian", "(?) (Attack: Phys x1, All enemies)"),
"39": ("Reserved", "Avian", "(?) (Attack: Phys x1, All enemies)"),
"3a": ("Reserved", "Avian", "(?) (Attack: Phys x1, All enemies)"),
"3b": ("Reserved", "Avian", "(?) (Attack: Phys x1, All enemies)"),
"3c": ("Yggdrasil", "Tree", ""),
"3d": ("Haoma", "Tree", ""),
"3e": ("Kukunochi", "Tree", ""),
"3f": ("Mayahuel", "Tree", ""),
"40": ("Narcissus", "Tree", ""),
"41": ("Daphne", "Tree", ""),
"42": ("Reserved", "Tree", "(?) (Attack: Phys x1, All enemies)"),
"43": ("Reserved", "Tree", "(?) (Attack: Phys x1, All enemies)"),
"44": ("Reserved", "Tree", "(?)"),
"45": ("Reserved", "Tree", "(?)"),
"46": ("Reserved", "Tree", "(?)"),
"47": ("Cherub", "Divine", ""),
"48": ("Throne", "Divine", ""),
"49": ("Dominion", "Divine", ""),
"4a": ("Virtue", "Divine", ""),
"4b": ("Power", "Divine", ""),
"4c": ("Principality", "Divine", ""),
"4d": ("Archangel", "Divine", ""),
"4e": ("Angel", "Divine", "(Lvl 10)"),
"4f": ("Reserved", "Divine", "(?)"),
"50": ("Angel", "Divine", "(Lvl 82)"),
"51": ("Reserved", "Divine", "(?)"),
"52": ("Reserved", "Divine", "(?)"),
"53": ("Reserved", "Divine", "(?)"),
"54": ("Reserved", "Divine", "(?)"),
"55": ("Da Peng", "Flight", ""),
"56": ("Rukh", "Flight", ""),
"57": ("Reserved", "Flight", "(?) (Attack: Gun x1, 1 enemy)"),
"58": ("Reserved", "Flight", "(?) (Attack: Gun x1, 1 enemy)"),
"59": ("Tuofei", "Flight", ""),
"5a": ("Caladrius", "Flight", ""),
"5b": ("Gu Huo Niao", "Flight", ""),
"5c": ("Harpy", "Flight", ""),
"5d": ("Tangata Manu", "Flight", ""),
"5e": ("Reserved", "Flight", "(?)"),
"5f": ("Reserved", "Flight", "(?)"),
"60": ("Reserved", "Flight", "(?)"),
"61": ("Reserved", "Flight", "(?)"),
"62": ("Reserved", "Flight", "(?)"),
"63": ("Ganesha", "Yoma", ""),
"64": ("Master Therion", "Yoma", ""),
"65": ("Xiuhtecuhtli", "Yoma", ""),
"66": ("Valkyrie", "Yoma", ""),
"67": ("Shiwanna", "Yoma", ""),
"68": ("Dis", "Yoma", ""),
"69": ("Karasu Tengu", "Yoma", ""),
"6a": ("Koppa Tengu", "Yoma", ""),
"6b": ("Agathion", "Yoma", ""),
"6c": ("Vodyanik", "Yoma", ""),
"6d": ("Centaur", "Yoma", ""),
"6e": ("Reserved", "Yoma", "(?)"),
"6f": ("Reserved", "Yoma", "(?)"),
"70": ("Reserved", "Yoma", "(?)"),
"71": ("Reserved", "Yoma", "(?)"),
"72": ("Peri", "Nymph", ""),
"73": ("Sarasvati", "Nymph", ""),
"74": ("Reserved", "Nymph", "(?)"),
"75": ("Senri", "Nymph", ""),
"76": ("Apsaras", "Nymph", ""),
"77": ("Kikuri-Hime", "Nymph", ""),
"78": ("Reserved", "Nymph", "(?)"),
"79": ("Reserved", "Nymph", "(?)"),
"7a": ("Reserved", "Nymph", "(?)"),
"7b": ("Reserved", "Nymph", "(?)"),
"7c": ("Demiurge", "Vile", ""),
"7d": ("Seth", "Vile", ""),
"7e": ("Pales", "Viles", ""),
"7f": ("Alciel", "Vile", ""),
"80": ("Taotie", "Vile", ""),
"81": ("Pachacamac", "Vile", ""),
"82": ("Reserved", "Vile", "(?)"),
"83": ("Mishaguji", "Vile", ""),
"84": ("Baphomet", "Vile", ""),
"85": ("Reserved", "Vile", "(?)"),
"86": ("Reserved", "Vile", "(?)"),
"87": ("Reserved", "Vile", "(?)"),
"88": ("Reserved", "Vile", "(?)"),
"89": ("Reserved", "Vile", "(?)"),
"8a": ("Hresvelgr", "Raptor", ""),
"8b": ("Huoniao", "Raptor", ""),
"8c": ("Anzu", "Raptor", ""),
"8d": ("Gurr", "Raptor", ""),
"8e": ("Zhen", "Raptor", ""),
"8f": ("Itsumade", "Raptor", ""),
"90": ("Moh Shuvuu", "Raptor", ""),
"91": ("Camazotz", "Raptor", ""),
"92": ("Fuxi", "Raptor", ""),
"93": ("Reserved", "Raptor", "(?)"),
"94": ("Reserved", "Raptor", "(?)"),
"95": ("Reserved", "Raptor", "(?)"),
"96": ("Reserved", "Raptor", "(?)"),
"97": ("Reserved", "Raptor", "(?)"),
"98": ("Erikonig", "Wood", ""),
"99": ("Alraune", "Wood", ""),
"9a": ("Zaccoum", "Wood", ""),
"9b": ("Skogsra", "Wood", ""),
"9c": ("Mandrake", "Wood", ""),
"9d": ("Shan Xiao", "Wood", ""),
"9e": ("Reserved", "Wood", "(?)"),
"9f": ("Reserved", "Wood", "(?)"),
"a0": ("Reserved", "Wood", "(?)"),
"a1": ("Reserved", "Wood", "(?)"),
"a2": ("Reserved", "Wood", "(?)"),
"a3": ("Reserved", "Deity", "(?) (Resist: Charm/Daze/Mute) (Attack: Phys x1~2, 1 enemy)"),
"a4": ("Reserved", "Deity", "(?) (Attack: Phys x1~3, 1 enemy)"),
"a5": ("Hachiman", "Deity", ""),
"a6": ("Apsu", "Deity", ""),
"a7": ("Baal", "Deity", ""),
"a8": ("Odin", "Deity", ""),
"a9": ("Ometeotl", "Deity", ""),
"aa": ("Lord Nandou", "Deity", ""),
"ab": ("Prometheus", "Deity", ""),
"ac": ("Inti", "Deity", ""),
"ad": ("Thoth", "Deity", ""),
"ae": ("Krishna", "Deity", ""),
"af": ("Mahamayuri", "Deity", ""),
"b0": ("Osiris", "Deity", ""),
"b1": ("Maitreya", "Deity", ""),
"b2": ("Reserved", "Deity", "(?)"),
"b3": ("Reserved", "Deity", "(?)"),
"b4": ("Amaterasu", "Amatsu", ""),
"b5": ("Take-Mikazuchi", "Amatsu", ""),
"b6": ("Reserved", "Amatsu", "(?) (Weak: Sick)"),
"b7": ("Reserved", "Amatsu", "(?)"),
"b8": ("Ame no Uzume", "Amatsu", ""),
"b9": ("Reserved", "Amatsu", "(?)"),
"ba": ("Reserved", "Kunitsu", "(?)"),
"bb": ("Reserved", "Famed", "(?)"),
"bc": ("Reserved", "Human", "(?)"),
"bd": ("Reserved", "Human", "(?)"),
"be": ("Barong", "Avatar", ""),
"bf": ("Anubis", "Avatar", ""),
"c0": ("Ukano Mitama", "Avatar", ""),
"c1": ("Chimera", "Avatar", ""),
"c2": ("Kaiming Shou", "Avatar", ""),
"c3": ("Makami", "Avatar", ""),
"c4": ("Kamapua'a", "Avatar", ""),
"c5": ("Shiisa", "Avatar", ""),
"c6": ("Reserved", "Avatar", "(?)"),
"c7": ("Reserved", "Avatar", "(?)"),
"c8": ("Reserved", "Avatar", "(?)"),
"c9": ("Reserved", "Avatar", "(?)"),
"ca": ("Reserved", "Avatar", "(?)"),
"cb": ("Sphinx", "Holy", ""),
"cc": ("Sleipnir", "Holy", ""),
"cd": ("Baihu", "Holy", ""),
"ce": ("Airavata", "Holy", ""),
"cf": ("Chironnupu", "Holy", ""),
"d0": ("Qing Niuguai", "Holy", ""),
"d1": ("Pabilsag", "Holy", ""),
"d2": ("Apis", "Holy", ""),
"d3": ("Heqet", "Holy", ""),
"d4": ("Reserved", "Holy", "(?)"),
"d5": ("Reserved", "Holy", "(?)"),
"d6": ("Reserved", "Holy", "(?)"),
"d7": ("Reserved", "Holy", "(?)"),
"d8": ("Reserved", "Holy", "(?)"),
"d9": ("Heimdall", "Genma", ""),
"da": ("Hanuman", "Genma", ""),
"db": ("Jarilo", "Genma", ""),
"dc": ("Kresnik", "Genma", ""),
"dd": ("Cu Chulainn", "Genma", ""),
"de": ("Kurama Tengu", "Genma", ""),
"df": ("Tlaloc", "Genma", ""),
"e0": ("Frost Ace", "Genma", ""),
"e1": ("Nata Taishi", "Genma", ""),
"e2": ("Tam Lin", "Genma", ""),
"e3": ("Ictinike", "Genma", ""),
"e4": ("Baldur", "Genma", ""),
"e5": ("Reserved", "Genma", "(?)"),
"e6": ("Reserved", "Genma", "(?)"),
"e7": ("Reserved", "Genma", "(?)"),
"e8": ("Reserved", "Genma", "(?)"),
"e9": ("Demonee-ho", "Fairy", ""),
"ea": ("Titania", "Fairy", ""),
"eb": ("Oberon", "Fairy", ""),
"ec": ("Vivian", "Fairy", ""),
"ed": ("Spriggan", "Fairy", ""),
"ee": ("Nadja", "Fairy", ""),
"ef": ("Lorelei", "Fairy", ""),
"f0": ("Kelpie", "Fairy", ""),
"f1": ("Silky", "Fairy", ""),
"f2": ("High Pixie", "Fairy", ""),
"f3": ("Setanta", "Fairy", ""),
"f4": ("Pyro Jack", "Fairy", ""),
"f5": ("Jack Frost", "Fairy", ""),
"f6": ("Goblin", "Fairy", ""),
"f7": ("Reserved", "Fairy", "(?)"),
"f8": ("Pixie", "Fairy", ""),
"f9": ("Napaea", "Fairy", ""),
"fa": ("Reserved", "???", "(?)"),
"fb": ("Reserved", "Fairy", "(?)"),
"fc": ("Reserved", "Fairy", "(?)"),
"fd": ("Reserved", "Fairy", "(?)"),
"fe": ("Cerberus", "Beast", ""),
"ff": ("Ammut", "Beast", ""),
"100": ("Orthus", "Beast", ""),
"101": ("Dormath", "Beast", ""),
"102": ("Hsing-Hsing", "Beast", ""),
"103": ("Nekomata", "Beast", ""),
"104": ("Reserved", "Beast", "(?)"),
"105": ("Inugami", "Beast", ""),
"106": ("Kabuso", "Beast", ""),
"107": ("Kaso", "Beast", ""),
"108": ("Stonka", "Beast", ""),
"109": ("Gryphon", "Beast", ""),
"10a": ("Hairy Jack", "Beast", ""),
"10b": ("Reserved", "Beast", "(?)"),
"10c": ("Reserved", "???", "(?)"),
"10d": ("Reserved", "Beast", "(?)"),
"10e": ("Reserved", "Beast", "(?)"),
"10f": ("Gogmagog", "Jirae", ""),
"110": ("Tlaltecuhtli", "Jirae", ""),
"111": ("Titan", "Jirae", ""),
"112": ("Tsuchigumo", "Jirae", ""),
"113": ("Kwancha", "Jirae", ""),
"114": ("Sudama", "Jirae", ""),
"115": ("Hua Po", "Jirae", ""),
"116": ("Knocker", "Jirae", ""),
"117": ("Dwarf", "Jirae", ""),
"118": ("Reserved", "Jirae", "(?)"),
"119": ("Reserved", "Jirae", "(?)"),
"11a": ("Reserved", "Jirae", "(?)"),
"11b": ("Reserved", "Jirae", "(?)"),
"11c": ("Reserved", "Jirae", "(?)"),
"11d": ("Reserved", "Snake", "(?) (Attack: Phys x1~3, 1 enemy)"),
"11e": ("Pendragon", "Snake", ""),
"11f": ("Orochi", "Snake", ""),
"120": ("Ouroboros", "Snake", ""),
"121": ("Gui Xian", "Snake", ""),
"122": ("Yurlungur", "Snake", ""),
"123": ("Vouivre", "Snake", ""),
"124": ("Nozuchi", "Snake", ""),
"125": ("Naga", "Snake", ""),
"126": ("Reserved", "Snake", "(?)"),
"127": ("Reserved", "Snake", "(?)"),
"128": ("Reserved", "Snake", "(?)"),
"129": ("Reserved", "Snake", "(?)"),
"12a": ("Reserved", "Snake", "(?)"),
"12b": ("Mot", "Reaper", ""),
"12c": ("Nergal", "Reaper", ""),
"12d": ("Guedhe", "Reaper", ""),
"12e": ("Persephone", "Reaper", ""),
"12f": ("Orcus", "Reaper", ""),
"130": ("Hel", "Reaper", ""),
"131": ("Ixtab", "Reaper", ""),
"132": ("Cernunnos", "Reaper", ""),
"133": ("Reserved", "Reaper", "(?)"),
"134": ("Reserved", "Reaper", "(?)"),
"135": ("Reserved", "Reaper", "(?)"),
"136": ("Fenrir", "Wilder", ""),
"137": ("Taowu", "Wilder", ""),
"138": ("Cabracan", "Wilder", ""),
"139": ("Catoblepas", "Wilder", ""),
"13a": ("Manticore", "Wilder", ""),
"13b": ("Porewit", "Wilder", ""),
"13c": ("Peallaidh", "Wilder", ""),
"13d": ("Nue", "Wilder", ""),
"13e": ("Raiju", "Wilder", ""),
"13f": ("Jueyuan", "Wilder", ""),
"140": ("Chagrin", "Wilder", ""),
"141": ("Reserved", "Wilder", "(?)"),
"142": ("Reserved", "Wilder", "(?)"),
"143": ("Reserved", "Wilder", "(?)"),
"144": ("Reserved", "Wilder", "(?)"),
"145": ("Reserved", "Wilder", "(?)"),
"146": ("Hekatoncheires", "Jaki", ""),
"147": ("Girimehkala", "Jaki", ""),
"148": ("Grendel", "Jaki", ""),
"149": ("Reserved", "Jaki", "(?)"),
"14a": ("Rakshasa", "Jaki", ""),
"14b": ("Black Frost", "Jaki", ""),
"14c": ("Wendigo", "Jaki", ""),
"14d": ("Ippon-Datara", "Jaki", ""),
"14e": ("Gremlin", "Jaki", ""),
"14f": ("Lham Dearg", "Jaki", ""),
"150": ("Ogre", "Jaki", ""),
"151": ("Reserved", "Jaki", "(?)"),
"152": ("Reserved", "Jaki", "(?)"),
"153": ("Reserved", "Jaki", "(?)"),
"154": ("Reserved", "Jaki", "(?)"),
"155": ("Arachne", "Vermin", ""),
"156": ("Okiku-Mushi", "Vermin", ""),
"157": ("Ubu", "Vermin", ""),
"158": ("Mothman", "Vermin", ""),
"159": ("Myrmecolion", "Vermin", ""),
"15a": ("Reserved", "Vermin", "(?)"),
"15b": ("Reserved", "Vermin", "(?)"),
"15c": ("Reserved", "Vermin", "(?)"),
"15d": ("Reserved", "Vermin", "(?)"),
"15e": ("Reserved", "Vermin", "(?)"),
"15f": ("Shiva", "Fury", ""),
"160": ("Susano-o", "Fury", ""),
"161": ("Kartikeya", "Fury", ""),
"162": ("Beiji-Weng", "Fury", ""),
"163": ("Wu Kong", "Fury", ""),
"164": ("Chernobog", "Fury", ""),
"165": ("Asura", "Fury", ""),
"166": ("Tonatiuh", "Fury", ""),
"167": ("Ares", "Fury", ""),
"168": ("Mitra-Buddha", "Fury", ""),
"169": ("Reserved", "???", "(?)"),
"16a": ("Reserved", "Fury", "(?)"),
"16b": ("Reserved", "Fury", "(?)"),
"16c": ("Reserved", "Fury", "(?)"),
"16d": ("Xi Wangmu", "Lady", ""),
"16e": ("Skadi", "Lady", ""),
"16f": ("Black Maria", "Lady", ""),
"170": ("Inanna", "Lady", ""),
"171": ("Asherah", "Lady", ""),
"172": ("Diana", "Lady", ""),
"173": ("Hariti", "Lady", ""),
"174": ("Sedna", "Lady", ""),
"175": ("Dzelarhons", "Lady", ""),
"176": ("Pele", "Lady", ""),
"177": ("Isis", "Lady", ""),
"178": ("Reserved", "Lady", "(?)"),
"179": ("Reserved", "Lady", "(?)"),
"17a": ("Reserved", "Lady", "(?)"),
"17b": ("Reserved", "Lady", "(?)"),
"17c": ("Huang Long", "Dragon", ""),
"17d": ("Quetzalcoatl", "Dragon", ""),
"17e": ("Zhu Yin", "Dragon", ""),
"17f": ("Illuyanka", "Dragon", ""),
"180": ("Long", "Dragon", ""),
"181": ("Gucumatz", "Dragon", ""),
"182": ("Patrimpas", "Dragon", ""),
"183": ("Makara", "Dragon", ""),
"184": ("Reserved", "Dragon", "(?) (Attack: Phys x2, 1 enemy)"),
"185": ("Reserved", "Dragon", "(?)"),
"186": ("Reserved", "Dragon", "(?)"),
"187": ("Reserved", "Dragon", "(?)"),
"188": ("Reserved", "Dragon", "(?)"),
"189": ("Thor", "Kishin", ""),
"18a": ("Marishiten", "Kishin", ""),
"18b": ("Bishamonten", "Kishin", ""),
"18c": ("Jikokuten", "Kishin", ""),
"18d": ("Zhong Kui", "Kishin", ""),
"18e": ("Koumokuten", "Kishin", ""),
"18f": ("Zouchouten", "Kishin", ""),
"190": ("Reserved", "Kishin", "(?)"),
"191": ("Reserved", "Kishin", "(?)"),
"192": ("Reserved", "Kishin", "(?)"),
"193": ("Reserved", "Kishin", "(?)"),
"194": ("Reserved", "Kishin", "(?)"),
"195": ("Arahabaki", "Kunitsu", ""),
"196": ("Kushinada-hime", "Kunitsu", ""),
"197": ("Okuninushi", "Kunitsu", ""),
"198": ("Take-Minakata", "Kunitsu", ""),
"199": ("Oumitsunu", "Kunitsu", ""),
"19a": ("Hitokotonushi", "Kunitsu", ""),
"19b": ("Sukuna-Hikona", "Kunitsu", ""),
"19c": ("Reserved", "Kunitsu", "(?)"),
"19d": ("Reserved", "Kunitsu", "(?)"),
"19e": ("Samael", "Fallen", ""),
"19f": ("Murmur", "Fallen", ""),
"1a0": ("Gemori", "Fallen", ""),
"1a1": ("Adramelech", "Fallen", ""),
"1a2": ("Reserved", "Fallen", "(?)"),
"1a3": ("Decarabia", "Fallen", ""),
"1a4": ("Nebiros", "Fallen", ""),
"1a5": ("Ose", "Fallen", ""),
"1a6": ("Dantalian", "Fallen", ""),
"1a7": ("Orias", "Fallen", ""),
"1a8": ("Halphas", "Fallen", ""),
"1a9": ("Bifrons", "Fallen", ""),
"1aa": ("Melchom", "Fallen", ""),
"1ab": ("Azazel->moved to Tyant", "Fallen", "(?)"),
"1ac": ("Shax", "Fallen", ""),
"1ad": ("Barbatos", "Fallen", ""),
"1ae": ("Botis", "Fallen", ""),
"1af": ("Reserved", "Fallen", "(?)"),
"1b0": ("Ongyo-Ki", "Brute", ""),
"1b1": ("Berserker", "Brute", ""),
"1b2": ("Sui-Ki", "Brute", ""),
"1b3": ("Fuu-Ki", "Brute", ""),
"1b4": ("Kin-Ki", "Brute", ""),
"1b5": ("Yomotsu Ikusa", "Brute", ""),
"1b6": ("Yamawaro", "Brute", ""),
"1b7": ("Momunofu", "Brute", ""),
"1b8": ("Azumi", "Brute", ""),
"1b9": ("Oni", "Brute", ""),
"1ba": ("Reserved", "Brute", "(?)"),
"1bb": ("Yaksha", "Brute", ""),
"1bc": ("Bilwis", "Brute", ""),
"1bd": ("Reserved", "Brute", "(?)"),
"1be": ("Reserved", "Brute", "(?)"),
"1bf": ("Reserved", "Brute", "(?)"),
"1c0": ("Rangda", "Femme", ""),
"1c1": ("Dakini", "Femme", ""),
"1c2": ("Atropos", "Femme", ""),
"1c3": ("Lachesis", "Femme", ""),
"1c4": ("Clotho", "Femme", ""),
"1c5": ("Yuki Jyorou", "Femme", ""),
"1c6": ("Shikome", "Femme", ""),
"1c7": ("Strix", "Femme", ""),
"1c8": ("Leanan Sidhe", "Femme", ""),
"1c9": ("Mermaid", "Femme", ""),
"1ca": ("Taraka", "Femme", ""),
"1cb": ("Kali", "Femme", ""),
"1cc": ("Medusa", "Femme", ""),
"1cd": ("Reserved", "Femme", "(?)"),
"1ce": ("Maya", "Night", ""),
"1cf": ("Reserved", "Night", "(?)"),
"1d0": ("Reserved", "Night", "(?)"),
"1d1": ("Queen Mab", "Night", ""),
"1d2": ("Wild Hunt", "Night", ""),
"1d3": ("Succubus", "Night", ""),
"1d4": ("Kaiwan", "Night", ""),
"1d5": ("Incubus", "Night", ""),
"1d6": ("Kikimora", "Night", ""),
"1d7": ("Lilim", "Night", ""),
"1d8": ("Sandman", "Night", ""),
"1d9": ("Fomorian", "Night", ""),
"1da": ("Mokoi", "Night", ""),
"1db": ("Reserved", "Night", "(?)"),
"1dc": ("Reserved", "Night", "(?)"),
"1dd": ("Reserved", "Night", "(?)"),
"1de": ("Reserved", "Night", "(?)"),
"1df": ("Reserved", "Night", "(?)"),
"1e0": ("Lucifer", "Tyrant", ""),
"1e1": ("Mara", "Tyrant", ""),
"1e2": ("Chi You", "Tyrant", ""),
"1e3": ("Surt", "Tyrant", ""),
"1e4": ("Tzitzimitl", "Tyrant", ""),
"1e5": ("Beelzebub", "Tyrant", ""),
"1e6": ("Abaddon", "Tyrant", ""),
"1e7": ("Loki", "Tyrant", ""),
"1e8": ("Belial", "Tyrant", ""),
"1e9": ("Astaroth", "Tyrant", "(?) (Dummied out leftover from SMTIV)"),
"1ea": ("Balor", "Tyrant", ""),
"1eb": ("King Frost", "Tyrant", ""),
"1ec": ("Samyaza", "Tyrant", ""),
"1ed": ("Horkos", "Tyrant", ""),
"1ee": ("Mithras", "Tyrant", ""),
"1ef": ("Morax", "Tyrant", ""),
"1f0": ("Azazel", "Tyrant", ""),
"1f1": ("Mephisto", "Tyrant", ""),
"1f2": ("Lucifuge", "Tyrant", ""),
"1f3": ("Reserved", "Tyrant", "(?)"),
"1f4": ("Reserved", "Tyrant", "(?)"),
"1f5": ("Fafnir", "Drake", ""),
"1f6": ("Ym", "Drake", ""),
"1f7": ("Nidhoggr", "Drake", ""),
"1f8": ("Tiamat", "Drake", ""),
"1f9": ("Mushussu", "Drake", ""),
"1fa": ("Kingu", "Drake", ""),
"1fb": ("Basilisk", "Drake", ""),
"1fc": ("Bai Suzhen", "Drake", ""),
"1fd": ("Toubyou", "Drake", ""),
"1fe": ("Zhu Tun She", "Drake", ""),
"1ff": ("Vasuki", "Drake", ""),
"200": ("Phython", "Drake", ""),
"201": ("Reserved", "Drake", "(?)"),
"202": ("Reserved", "Drake", "(?)"),
"203": ("Reserved", "Drake", "(?)"),
"204": ("Legion", "Spirit", ""),
"205": ("Pisaca", "Spirit", ""),
"206": ("Inferno", "Spirit", ""),
"207": ("Macabre", "Spirit", ""),
"208": ("Quicksilver", "Spirit", ""),
"209": ("Poltergeist", "Spirit", ""),
"20a": ("Wicker Man", "Spirit", ""),
"20b": ("Dybbuk", "Spirit", ""),
"20c": ("Garrote", "Spirit", ""),
"20d": ("Reserved", "Spirit", "(?)"),
"20e": ("Reserved", "Spirit", "(?)"),
"20f": ("Reserved", "Spirit", "(?)"),
"210": ("Reserved", "Spirit", "(?)"),
"211": ("Reserved", "Foul", "(?)"),
"212": ("Reserved", "Foul", "(?)"),
"213": ("Mad Gasser", "Foul", ""),
"214": ("Reserved", "Foul", ""),
"215": ("Night Stalker", "Foul", ""),
"216": ("Hooligan", "Foul", ""),
"217": ("Jack the Ripper", "Foul", ""),
"218": ("Slime", "Foul", ""),
"219": ("Tattooed Man", "Foul", ""),
"21a": ("Reserved", "Foul", "(?)"),
"21b": ("Reserved", "Foul", "(?)"),
"21c": ("Reserved", "Foul", "(?)"),
"21d": ("Reserved", "Foul", "(?)"),
"21e": ("Vetala", "Ghost", ""),
"21f": ("Kudlak", "Ghost", ""),
"220": ("Ghoul", "Ghost", ""),
"221": ("Enku", "Ghost", ""),
"222": ("Churel", "Ghost", ""),
"223": ("Mou-Ryo", "Ghost", ""),
"224": ("Obariyon", "Ghost", ""),
"225": ("Preta", "Ghost", ""),
"226": ("Strigoii", "Ghost", ""),
"227": ("Dullahan", "Ghost", "(?) (Dummied out leftover from SMTIV)"),
"228": ("Reserved", "Ghost", "(?)"),
"229": ("Reserved", "Ghost", "(?)"),
"22a": ("Reserved", "Ghost", "(?)"),
"22b": ("Reserved", "Ghost", "(?)"),
"22c": ("Saki Mitama", "Mitama", "(Enemy-only)"),
"22d": ("Kushi Mitama", "Mitama", "(Enemy-only)"),
"22e": ("Nigi Mitama", "Mitama", "(Enemy-only)"),
"22f": ("Ara Mitama", "Mitama", "(Enemy-only)"),
"230": ("Reserved", "Mitama", "(?)"),
"231": ("Reserved", "Mitama", "(?)"),
"232": ("Reserved", "Mitama", "(?)"),
"233": ("Reserved", "Mitama", "(?)"),
"234": ("Reserved", "Mitama", "(?)"),
"235": ("Salamander", "Element", ""),
"236": ("Undine", "Element", ""),
"237": ("Sylph", "Element", ""),
"238": ("Gnome", "Element", ""),
"239": ("Flaemis", "Element", ""),
"23a": ("Aquans", "Element", ""),
"23b": ("Aeros", "Element", ""),
"23c": ("Erthys", "Element", ""),
"23d": ("Reserved", "Element", "(?)"),
"23e": ("Reserved", "Element", "(?)"),
"23f": ("Reserved", "Element", "(?)"),
"240": ("Reserved", "Element", "(?)"),
"241": ("Reserved", "Element", "(?)"),
"242": ("Mother Harlot", "Fiend", ""),
"243": ("Trumpeter", "Fiend", ""),
"244": ("Pale Rider", "Fiend", ""),
"245": ("Black Rider", "Fiend", ""),
"246": ("Red Rider", "Fiend", ""),
"247": ("White Rider", "Fiend", ""),
"248": ("Reserved", "Fiend", "(?)"),
"249": ("Matador", "Fiend", ""),
"24a": ("David", "Fiend", ""),
"24b": ("Reserved", "Fiend", "(?)"),
"24c": ("Reserved", "???", "(?)"),
"24d": ("Reserved", "Fiend", "(?)"),
"24e": ("Reserved", "Fiend", "(?)"),
"24f": ("Reserved", "Fiend", "(?)"),
"250": ("Kangiten", "Enigma", ""),
"251": ("Kama", "Enigma", ""),
"252": ("Kinmamon", "Enigma", ""),
"253": ("Futotama", "Enigma", ""),
"254": ("Kanbari", "Enigma", ""),
"255": ("Reserved", "Enigma", "(?)"),
"256": ("Reserved", "Enigma", "(?)"),
"257": ("Reserved", "Enigma", "(?)"),
"258": ("Reserved", "Enigma", "(?)"),
"259": ("Reserved", "Enigma", "(?)"),
"25a": ("Hare of Inaba", "Food", ""),
"25b": ("Kuda", "Food", ""),
"25c": ("Chupacabra", "Food", ""),
"25d": ("Mamedanuki", "Food", ""),
"25e": ("Katakirauwa", "Food", ""),
"25f": ("Onmoraki", "Food", ""),
"260": ("Reserved", "Food", "(?)"),