-
Notifications
You must be signed in to change notification settings - Fork 1
/
FF6Tools_definition.json
21237 lines (21237 loc) · 857 KB
/
FF6Tools_definition.json
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
{
"type": "rom",
"key": "ff3u-sfc",
"name": "Final Fantasy III 1.0 (U)",
"stringTable": {
"battleBackground": {
"type": "stringTable",
"key": "battleBackground",
"name": "Battle Backgrounds",
"default": "Background %i",
"length": 56,
"string": {
"0": "Field (WoB)",
"1": "Forest (WoR)",
"2": "Desert (WoB)",
"3": "Forest (WoB)",
"4": "Zozo Interior",
"5": "Field (WoR)",
"6": "Veldt",
"7": "Clouds",
"8": "Narshe Exterior",
"9": "Narshe Caves A",
"10": "Caves",
"11": "Mountains Exterior",
"12": "Mountains Interior",
"13": "River",
"14": "Imperial Camp",
"15": "Train Exterior",
"16": "Train Interior",
"17": "Narshe Caves B",
"18": "Snowfields",
"19": "Town Exterior",
"20": "Imperial Castle",
"21": "Floating Island",
"22": "Kefka's Tower Exterior",
"23": "Opera House Stage",
"24": "Opera House Catwalk",
"25": "Burning Building",
"26": "Castle Interior",
"27": "Magitek Research Facility",
"28": "Colosseum",
"29": "Magitek Factory",
"30": "Village Exterior",
"31": "Waterfall",
"32": "Owzer's House",
"33": "Train Tracks",
"34": "Sealed Gate",
"35": "Underwater",
"36": "Zozo",
"37": "Airship (WoB, Centered)",
"38": "Darill's Tomb",
"39": "Doma Castle",
"40": "Kefka's Tower Interior",
"41": "Airship (WoR)",
"42": "Fire Caves",
"43": "Town Interior",
"44": "Magitek Train Car",
"45": "Fanatics' Tower",
"46": "Cyan's Dream",
"47": "Desert (WoR)",
"48": "Airship (WoB)",
"50": "GhostTrain",
"51": "Doom",
"52": "Poltergeist",
"53": "Goddess",
"54": "Final Kefka",
"55": "Tentacles",
"63": "Map Default",
"255": "No Background Override"
}
},
"battleCharacterGraphics": {
"type": "stringTable",
"key": "battleCharacterGraphics",
"name": "Battle Character Graphics",
"default": "Battle Character Graphics %i",
"length": 24,
"string": {
"23": "Green Soldier",
"0-23": "<stringTable.mapSprites[%i]>"
}
},
"battleSwitch": {
"type": "stringTable",
"key": "battleSwitch",
"name": "Local Battle Switch",
"default": "Local Battle Switch %i",
"length": 296,
"string": {
"288": "Monster Switch 0",
"289": "Monster Switch 1",
"290": "Monster Switch 2",
"291": "Monster Switch 3",
"292": "Monster Switch 4",
"293": "Monster Switch 5",
"294": "Monster Switch 6",
"295": "Monster Switch 7",
"32-192": "<stringTable.battleSwitchGlobal[%i-32]>",
"192-200": "Forcefield: <stringTable.element[%i-192]>",
"200-208": "Number of Targets",
"208-216": "Number of Types of Monsters"
}
},
"battleSwitchGlobal": {
"type": "stringTable",
"key": "battleSwitchGlobal",
"name": "Global Battle Switch",
"default": "Global Battle Switch %i",
"length": 160,
"string": {
"56": "Magic Only (Fanatics' Tower)",
"57": "Double Morph Duration",
"58": "Permanent Morph",
"64": "Defeated in Battle",
"65": "Enable MMMMagic Scene",
"66": "Morph is Available",
"67": "Espers are Available",
"68": "Ran Away From Battle",
"69": "Ran Out of Time During Battle",
"70": "Timers are Shown in Battle",
"71": "Eaten by Zone Eater",
"72": "Doom Gaze is Defeated",
"73": "<characterNames[11]> is available",
"75": "<characterNames[3]> Can't Leave After Battle",
"76": "<characterNames[1]> is a Merchant",
"77": "<characterNames[1]> is a Green Soldier",
"40-56": "Conditional Battle Switch %i",
"80-96": "Doom Gaze's HP",
"96-104": "Cursed Shield Battle Counter"
}
},
"battleTargets": {
"type": "stringTable",
"key": "battleTargets",
"default": "Target %i",
"length": "0x4E",
"string": {
"48": "Monster Slot 1",
"49": "Monster Slot 2",
"50": "Monster Slot 3",
"51": "Monster Slot 4",
"52": "Monster Slot 5",
"53": "Monster Slot 6",
"54": "Self",
"55": "All Monsters (Not Self)",
"56": "All Monsters",
"57": "Random Monster (Not Self)",
"58": "Random Monster",
"59": "All Dead Characters",
"60": "Random Dead Character",
"61": "All Dead Monsters",
"62": "Random Dead Monster",
"63": "All Characters with Reflect",
"64": "Random Character with Reflect",
"65": "All Monsters with Reflect",
"66": "Random Monster with Reflect",
"67": "All Characters",
"68": "Random Character",
"69": "Previous Attacker",
"70": "All Targets",
"71": "Nothing",
"72": "Character Slot 1",
"73": "Character Slot 2",
"74": "Character Slot 3",
"75": "Character Slot 4",
"76": "Random Target(s)",
"77": "\"<stringTable.attackName[0xCA]>\" Target",
"0-48": "<characterNames[%i]>"
}
},
"battleVariable": {
"type": "stringTable",
"key": "battleVariable",
"name": "Local Battle Variable",
"default": "Local Battle Variable %i",
"length": 37,
"string": {
"24": "Forcefield Elements",
"25": "Number of Targets",
"26": "Number of Types of Monsters",
"36": "Monster Variable",
"4-24": "<stringTable.battleVariableGlobal[%i-4]>"
}
},
"battleVariableGlobal": {
"type": "stringTable",
"key": "battleVariableGlobal",
"name": "Global Battle Variable",
"default": "Global Battle Variable %i",
"length": 20,
"string": {
"5": "Conditional Battle Switches 1",
"6": "Conditional Battle Switches 2",
"7": "Battle Switches 1",
"8": "Battle Switches 2",
"9": "Battle Switches 3",
"10": "Doom Gaze's HP 1",
"11": "Doom Gaze's HP 2",
"12": "Cursed Shield Counter"
}
},
"blitzName": {
"type": "stringTable",
"key": "blitzName",
"name": "Blitz Name",
"default": "<attackName[%i+12]>",
"length": 8,
"link": "attackName[%i+12]"
},
"directions": {
"type": "stringTable",
"key": "directions",
"name": "Facing Directions",
"string": {
"0": "Up",
"1": "Right",
"2": "Down",
"3": "Left"
}
},
"element": {
"type": "stringTable",
"key": "element",
"name": "Element",
"string": {
"0": "Fire",
"1": "Ice",
"2": "Lightning",
"3": "Poison",
"4": "Wind",
"5": "Holy",
"6": "Earth",
"7": "Water"
}
},
"eventCharacters": {
"type": "stringTable",
"key": "eventCharacters",
"name": "Event Characters",
"default": "Character %i",
"length": 16,
"string": {
"0-14": "<characterNames[%i]>"
}
},
"eventObjects": {
"type": "stringTable",
"key": "eventObjects",
"name": "Event Objects",
"default": "Object %i",
"length": 52,
"string": {
"48": "Camera",
"49": "Party Character 1",
"50": "Party Character 2",
"51": "Party Character 3",
"52": "Party Character 4",
"0-16": "<stringTable.eventCharacters[%i]>",
"16-48": "NPC %i"
}
},
"eventSwitches": {
"type": "stringTable",
"key": "eventSwitches",
"name": "Event Switches",
"default": "Switch %i",
"length": "0x0700",
"string": {
"0-768": "<stringTable.mapSwitches[%i]>",
"768-1792": "<stringTable.npcSwitches[%i-0x0300]>"
}
},
"eventVariables": {
"type": "stringTable",
"key": "eventVariables",
"name": "Event Variables",
"default": "Variable %i",
"length": 8,
"string": {
"0": "Points from the Emperor's Banquet",
"1": "Narshe security checkpoint variable",
"6": "Number of dragons left",
"7": "Cid's health/Pieces of coral"
}
},
"fixedColor": {
"type": "stringTable",
"key": "fixedColor",
"name": "Fixed Color",
"string": {
"0": "Black",
"1": "Red",
"2": "Green",
"3": "Yellow",
"4": "Blue",
"5": "Magenta",
"6": "Cyan",
"7": "White"
}
},
"fixedColorReversed": {
"type": "stringTable",
"key": "fixedColorReversed",
"name": "Fixed Color (Reversed)",
"string": {
"0": "Black",
"1": "Blue",
"2": "Green",
"3": "Cyan",
"4": "Red",
"5": "Magenta",
"6": "Yellow",
"7": "White"
}
},
"itemSpecialEffect": {
"type": "stringTable",
"key": "itemSpecialEffect",
"name": "Item Special Effect",
"hideIndex": true,
"string": {
"0": "None",
"1": "<stringTable.itemNames[249]>",
"2": "<stringTable.itemNames[250]>",
"3": "<stringTable.itemNames[252]>",
"4": "<stringTable.itemNames[238]>, <stringTable.itemNames[239]>",
"5": "<stringTable.itemNames[253]>",
"6": "<stringTable.itemNames[254]>",
"8": "<stringTable.battleCommandName[28]>",
"9": "<stringTable.battleCommandName[24]>",
"10": "<stringTable.battleCommandName[5]>",
"11": "<stringTable.battleCommandName[14]>",
"12": "<stringTable.battleCommandName[17]>",
"13": "<stringTable.battleCommandName[13]>",
"14": "<stringTable.itemNames[167]>",
"15": "<stringTable.itemNames[169]>",
"255": "None"
}
},
"loreName": {
"type": "stringTable",
"key": "loreName",
"name": "Lore Name",
"default": "<attackName[%i+0x3A]>",
"length": 24,
"link": "attackName[%i+0x3A]"
},
"mapSpriteActions": {
"type": "stringTable",
"key": "mapSpriteActions",
"name": "Map Sprite Actions",
"default": "Action %i",
"string": {
"0": "Walking Down 1",
"1": "Facing Down",
"2": "Walking Down 2",
"3": "Walking Up 1",
"4": "Facing Up",
"5": "Walking Up 2",
"6": "Walking Left 1",
"7": "Facing Left",
"8": "Walking Left 2",
"9": "Kneeling, Facing Left",
"10": "Ready to Attack, Facing Left",
"11": "Hit",
"12": "Facing Left, Battle",
"13": "Back Arm Raised, Facing Left",
"14": "Front Arm Raised, Facing Left",
"15": "Arms Up, Facing Left",
"16": "Casting 1",
"17": "Casting 2",
"18": "Knocked Out",
"19": "Eyes Closed, Facing Down",
"20": "Winking",
"21": "Eyes Closed, Facing Left",
"22": "Arms Up, Facing Down",
"23": "Arms Up, Facing Up",
"24": "Angry",
"25": "Waving 1, Facing Down",
"26": "Waving 2, Facing Down",
"27": "Waving 1, Facing Up",
"28": "Waving 2, Facing Up",
"29": "Laughing 1",
"30": "Laughing 2",
"31": "Surprised",
"32": "Looking Down, Facing Down",
"33": "Looking Down, Facing Up",
"34": "Looking Down, Facing Left",
"35": "Head Turned Left, Facing Down",
"36": "Wagging Finger 1",
"37": "Wagging Finger 2",
"38": "Terra: Crying",
"39": "Tent",
"40": "Knocked Out, Alternate",
"41": "NPC: Special",
"42": "NPC: Waving 1",
"43": "NPC: Waving 2",
"44": "NPC: Looking Down",
"45": "NPC: Special",
"46": "Riding 1",
"47": "Riding 2",
"48": "Ramuh: Raising Staff",
"49": "Ramuh: Eyes Closed",
"50": "Special Animation: Frame 1",
"51": "Special Animation: Frame 2",
"52": "Special Animation: Frame 3",
"53": "Special Animation: Frame 4",
"54": "Opera Singer: Mouth Open",
"55": "Opera Singer: Mouth Closed"
}
},
"mapSprites": {
"type": "stringTable",
"key": "mapSprites",
"name": "Map Sprites",
"default": "Map Sprite %i",
"string": {
"0": "Terra",
"1": "Locke",
"2": "Cyan",
"3": "Shadow",
"4": "Edgar",
"5": "Sabin",
"6": "Celes",
"7": "Strago",
"8": "Relm",
"9": "Setzer",
"10": "Mog",
"11": "Gau",
"12": "Gogo",
"13": "Umaro",
"14": "Soldier",
"15": "Imp",
"16": "Leo",
"17": "Banon",
"18": "Esper Terra",
"19": "Merchant",
"20": "Ghost",
"21": "Kefka",
"22": "Gestahl",
"23": "Old Man",
"24": "Man",
"25": "Dog",
"26": "Celes w/ Dress",
"27": "Rich Man",
"28": "Draco",
"29": "Arvis",
"30": "Pilot",
"31": "Ultros",
"32": "Spiffy Gau",
"33": "Hooker",
"34": "Chancellor",
"35": "Baram",
"36": "Old Woman",
"37": "Woman",
"38": "Boy",
"39": "Girl",
"40": "Bird",
"41": "Rachel",
"42": "Katarin",
"43": "Impresario",
"44": "Esper Elder",
"45": "Yura",
"46": "Siegfried",
"47": "Cid",
"48": "Maduin",
"49": "Bandit",
"50": "Vargas/Dadaluma",
"51": "Monster",
"52": "Narshe Guard",
"53": "Train Conductor",
"54": "Shopkeeper",
"55": "Faerie",
"56": "Wolf",
"57": "Dragon",
"58": "Fish",
"59": "Figaro Guard",
"60": "Darill",
"61": "Chupon",
"62": "Emperor's Servant",
"63": "Ramuh",
"64": "Figaro Guard Riding",
"65": "Celes in Chains",
"66": "Gau as Sabin",
"67": "Gau as Locke",
"68": "King Doma",
"69": "Number 128",
"70": "Magi Warrior A",
"71": "Skull Statue",
"72": "Ifrit",
"73": "Phantom",
"74": "Shiva",
"75": "Unicorn",
"76": "Bismark",
"77": "Carbuncl",
"78": "Shoat",
"79": "Owzer A",
"80": "Owzer B",
"81": "Blackjack",
"82": "Dead Figaro Guard",
"83": "Number 024",
"84": "Treasure Chest",
"85": "Magi Warrior B",
"86": "Atma",
"87": "Small Statue",
"88": "Flowers",
"89": "Envelope",
"90": "Plant",
"91": "Magicite",
"92": "Book",
"93": "Baby",
"94": "Question Mark",
"95": "Exclamation Point",
"96": "Slave Crown",
"97": "Weight",
"98": "Bird w/ Bandana",
"99": "Eyes in the Dark",
"100": "Bandana",
"101": "Nothing",
"102": "Bird Flying Left",
"103": "Bird Flying Up",
"104": "Big Sparkle",
"105": "Multiple Sparkles",
"106": "Small Sparkle",
"107": "Coin",
"108": "Rat",
"109": "Turtle",
"110": "Small Bird Flying Up",
"111": "Save Point",
"112": "Flame",
"113": "Explosion",
"114": "Tentacle A",
"115": "Tentacle B",
"116": "Big Switch",
"117": "Floor Switch",
"118": "Rock",
"119": "Crane Hook C",
"120": "Elevator",
"121": "Flying Esper Terra A1",
"122": "Flying Esper Terra A2",
"123": "Ending Terra C",
"124": "Diving Helmet",
"125": "Guardian A",
"126": "Guardian B",
"127": "Guardian C",
"128": "Crane Hook B",
"129": "Guardian D",
"130": "Guardian E",
"131": "Guardian F",
"132": "Crane Hook A",
"133": "Magitek Factory Machine",
"134": "Gate A",
"135": "Gate B",
"136": "Gate C",
"137": "Air Force",
"138": "Leo's Sword",
"139": "Magitek Train Car A",
"140": "Magitek Train Car B",
"141": "Magitek Train Car C",
"142": "Magitek Train Car D",
"143": "Crane A",
"144": "Crane B",
"145": "Crane C",
"146": "Chadarnook A",
"147": "Chadarnook B",
"148": "Chadarnook C",
"149": "Falcon A",
"150": "Falcon B",
"151": "Falcon C",
"152": "Flying Esper Terra B",
"153": "Tritoch",
"154": "Odin",
"155": "Goddess A",
"156": "Doom A",
"157": "Poltergeist A",
"158": "Goddess B",
"159": "Goddess C",
"160": "Doom/Poltergeist B",
"161": "Doom/Poltergeist C",
"162": "Ending Terra A",
"163": "Ending Terra B",
"164": "Small Bird Flying Left"
}
},
"mapSwitches": {
"type": "stringTable",
"key": "mapSwitches",
"name": "Map Switches",
"default": "Map Switch %i",
"length": 768,
"string": {
"1": "Terra Intro Event",
"3": "Locke Intro Event",
"4": "Edgar Intro Event",
"5": "Sabin Intro Event",
"6": "Figaro Castle / Kefka Event",
"7": "Figaro Castle / Sabin Event",
"8": "Figaro Castle / Following Locke",
"10": "South Figaro / Shadow walking to pub",
"11": "Shadow Intro Event",
"13": "Mt. Kolts / Vargas Shadow 1",
"14": "Mt. Kolts / Vargas Shadow 2",
"15": "Mt. Kolts / Vargas Shadow 3",
"16": "Mt. Kolts / Vargas Event",
"17": "Returner's Hideout / Met Banon",
"20": "Returner's Hideout / Declined Once",
"21": "Returner's Hideout / Declined Twice",
"22": "Returner's Hideout / Declined Three Times",
"23": "Returner's Hideout / Wounded Returner Event",
"24": "Returner's Hideout / Banon joined",
"25": "Lete River / First Battle",
"26": "Lete River / Ultros Battle",
"27": "South Figaro / Celes Intro",
"28": "South Figaro / Celes Named",
"29": "South Figaro / Celes Rescued",
"30": "Cave to South Figaro / TunnelArmr Battle",
"31": "Narshe / Banon & Guard",
"32": "Narshe / Secret Entrance",
"33": "Narshe / Banon & Elder",
"34": "Crazy Old Man's House / Stove",
"36": "Shadow's First Dream",
"38": "Shadow's Second Dream",
"39": "Shadow's Third Dream",
"40": "Shadow's Fourth Dream",
"41": "Kefka's Tower / Intro Event",
"42": "Floating Island / Met Shadow",
"43": "Imperial Camp / Second Leo Event",
"44": "Imperial Camp / Kefka 1",
"45": "Imperial Camp / Kefka 2",
"46": "Imperial Camp / Kefka 3",
"47": "Imperial Camp / Kefka 4",
"48": "Doma Castle / Cyan Intro",
"49": "Doma Castle / King Doma",
"50": "Doma Castle / Cyan's Family",
"51": "Imperial Camp / Cyan 1",
"52": "Imperial Camp / Cyan 2",
"53": "Imperial Camp / Cyan 3",
"54": "Imperial Camp / Cyan 4",
"55": "Imperial Camp / After Escape",
"56": "Phantom Train / Intro Event",
"57": "Phantom Train / Train Departed",
"58": "Phantom Forest / Train Gone",
"59": "Phantom Train / GhostTrain Battle",
"60": "Baren Falls / Intro Event",
"63": "Gau Intro Event",
"65": "Crescent Mountain / Diving Helmet Event",
"67": "Nikeah / Cyan & Hooker Event",
"68": "Nikeah / Sabin & Cyan Travel to Narshe",
"69": "Narshe / After 3 Scenarios",
"70": "Narshe / After Snowfield Battle",
"71": "Narshe / Following Terra",
"72": "Figaro Castle / Sabin is wandering around",
"73": "Figaro Castle / Edgar & Sabin Event",
"74": "South Figaro / Sabin & Duncan's Wife Event",
"75": "Kohlingen / Rachel Flashback Event",
"76": "Kohlingen / Rachel & Crazy Man Event",
"83": "Zozo / Ramuh Intro Event",
"84": "Zozo / After Ramuh",
"94": "Reached Southern Continent",
"95": "Magitek Factory / Kefka & Espers Event",
"96": "Magitek Factory / Ifrit & Shiva Event",
"104": "Magitek Research Facility / Kefka & Celes Event",
"105": "Magitek Research Facility / Start of Train Ride",
"106": "Magitek Research Facility / End of Train Ride",
"107": "Magitek Research Facility / Crane Battle",
"108": "Esper World / Intro Event",
"109": "Esper World / Maduin & Madonna Event",
"110": "Esper World / Terra is Born",
"112": "Esper World / End of Flashback",
"121": "Cave to the Sealed Gate / After Gate Event",
"122": "Cave to the Sealed Gate / Airship Crashed",
"123": "Vector / After Esper Attack",
"124": "Vector / Before Banquet",
"125": "Vector / After Banquet",
"126": "Umaro Intro Event",
"127": "Kefka's Tower / Rock Slide",
"128": "Kefka's Tower / Gate",
"129": "Blackjack / Cid & Setzer",
"131": "Albrook / Boarded Ship",
"133": "Albrook / Met Leo",
"134": "Albrook / Terra & Leo at Night",
"135": "Albrook / Locke & Celes at Night",
"137": "Albrook / Reached Island",
"139": "Thamasa / Fire Kid",
"140": "Thamasa / Cure Kid",
"141": "Thamasa / Named Strago and Relm",
"142": "Thamasa / Woken up at Inn",
"143": "Thamasa / Burning Building Intro",
"144": "Thamasa / FlameEater",
"145": "Thamasa / Heading to Esper Mountain",
"146": "Thamasa / Shadow Left",
"149": "Esper Mountain / Ultros",
"151": "Esper Mountain / Statues",
"152": "World of Balance / Esper Mountain Visible",
"153": "Esper Mountain / Met Espers",
"154": "Albrook / Play Shadow's Music",
"155": "Thamasa / Fought Kefka",
"156": "Thamasa / Leo's Grave",
"157": "Thamasa / Events Completed",
"158": "Floating Island is Accessible",
"159": "Floating Island is not Accessible",
"160": "Floating Island / IAF",
"163": "Floating Island / Left Shadow Behind",
"164": "World of Ruin",
"166": "Hide Party on Map 10",
"167": "Met Crimson Robber 1",
"168": "Met Crimson Robber 2",
"169": "Met Crimson Robber 3",
"170": "Met Crimson Robber 4",
"171": "Crimson Robber Left Cafe",
"172": "On Crimson Robber Ship",
"173": "Cave to South Figaro / Music ???",
"174": "Cave to South Figaro / Noise 1",
"175": "Cave to South Figaro / Noise 2",
"176": "Cave to South Figaro / Noise 3",
"177": "Cave to South Figaro / Recovery Spring",
"178": "Solitary Island / Examined Dead Cid",
"179": "Solitary Island / Cid Recovered",
"180": "Solitary Island / Cid Died",
"182": "Narshe / Got Ragnarok",
"184": "Narshe / Got Cursed Shield",
"186": "Fanatics' Tower / Got Strago",
"188": "Kefka's Tower / Guardian",
"189": "Kefka's Tower / Inferno",
"190": "Mobliz / Terra & Katarin Missing",
"191": "Mobliz / Got Terra",
"194": "Darill's Tomb / DLRO",
"195": "Darill's Tomb / ERAU",
"196": "Darill's Tomb / QSSI",
"197": "Darill's Tomb / WEHT",
"198": "Figaro Castle / Got Edgar (WoR)",
"199": "Figaro Castle / Tentacles",
"200": "Ancient Castle / Got Odin",
"202": "Kohlingen / Got Setzer",
"203": "Darill's Tomb / Opened Entrance",
"204": "Darill's Tomb / Flashback Scene",
"205": "Darill's Tomb / Got Falcon",
"208": "Kefka's Tower / Two Doorways",
"210": "Mt. Zozo / Got Cyan",
"212": "Gogo's Cave / Got Gogo",
"215": "Phoenix Cave / Got Locke",
"217": "Owzer's House / Got Starlet",
"218": "Doma Castle / Cyan's Dream",
"220": "World of Ruin / Figaro Castle -> Kohlingen",
"222": "Figaro Castle / On Fire",
"256": "Sabin's House / Edgar Dialogue",
"257": "South Figaro / Merchant -> Old Man's House",
"258": "South Figaro / Merchant -> Pub",
"259": "South Figaro / Locke is a Green Soldier",
"260": "South Figaro / Locke is a Merchant",
"261": "South Figaro / Is Occupied",
"262": "World of Ruin / Figaro Castle -> East",
"263": "South Figaro / Delivered Cider",
"264": "Cave to South Figaro / Guard will Leave",
"266": "Mt. Kolts / Vargas Hops Down",
"267": "World of Balance / Figaro Castle -> East",
"268": "World of Balance / Figaro Castle -> Kohlingen",
"269": "South Figaro / Wound the Clock",
"270": "Named Setzer",
"272": "Opera House / Ultros Intro",
"273": "Opera House / Performed Correctly",
"274": "Darill's Tomb / Solved Tomb Puzzle",
"275": "Opera House / Failed Once",
"276": "Opera House / Failed Twice",
"277": "Opera House / Failed Three Times",
"278": "Esperville / Event 1",
"279": "Esperville / Event 2",
"280": "Esperville / Event 3",
"281": "Opera House / Shadow Left",
"291": "Cave to South Figaro / Can Jump on Turtle",
"292": "Number of Characters in Party / Bit 1",
"293": "Number of Characters in Party / Bit 2",
"294": "Number of Characters in Party / Bit 3",
"295": "Disable Warp",
"296": "Narshe / First Guards",
"297": "Narshe / Second Guards",
"298": "Narshe / Third Guards",
"299": "Narshe / Entered Cave",
"300": "Narshe / Whelk Gate",
"304": "Narshe / Fourth Guards",
"305": "Narshe / Fifth Guards",
"309": "Narshe / Whelk",
"318": "Narshe / Green Soldier 1",
"319": "Narshe / Green Soldier 2",
"320": "Narshe / Green Soldier 3",
"321": "Narshe / Green Soldier 4",
"322": "Narshe / Green Soldier 5",
"323": "Narshe / Green Soldier 6",
"324": "Narshe / Brown Soldier 1",
"325": "Narshe / Brown Soldier 2",
"326": "Narshe / Brown Soldier 3",
"327": "Narshe / Brown Soldier 5",
"328": "Narshe / Brown Soldier 6",
"364": "Jidoor / Bought ZoneSeek",
"365": "Jidoor / Bought Golem",
"366": "Cave in the Veldt / Switch",
"367": "Learned Airship Controls",
"416": "<characterNames[0]>",
"417": "<characterNames[1]>",
"418": "<characterNames[2]>",
"419": "<characterNames[3]>",
"420": "<characterNames[4]>",
"421": "<characterNames[5]>",
"422": "<characterNames[6]>",
"423": "<characterNames[7]>",
"424": "<characterNames[8]>",
"425": "<characterNames[9]>",
"426": "<characterNames[10]>",
"427": "<characterNames[11]>",
"428": "<characterNames[12]>",
"429": "<characterNames[13]>",
"430": "Character 14",
"431": "Character 15",
"432": "Party is facing up",
"433": "Party is facing right",
"434": "Party is facing down",
"435": "Party is facing left",
"436": "A button is pressed",
"439": "Serpent Trench arrow is pointing left",
"440": "Alternate World Map Music",
"441": "Airship is Visible",
"442": "Airship is Anchored",
"443": "Party is on the veldt",
"446": "Not enough GP",
"447": "Party is on a save point",
"449": "Disable sprint shoes",
"450": "Disable main menu",
"454": "Enable character portrait",
"459": "Thamasa / Play Relm's Song",
"460": "Song Override",
"461": "Disable Random Battles",
"462": "Enable Party Switching",
"463": "Map Event is Running",
"464": "<stringTable.rareItemName[0]>",
"465": "<stringTable.rareItemName[1]>",
"466": "<stringTable.rareItemName[2]>",
"467": "<stringTable.rareItemName[3]>",
"468": "<stringTable.rareItemName[4]>",
"469": "<stringTable.rareItemName[5]>",
"470": "<stringTable.rareItemName[6]>",
"471": "<stringTable.rareItemName[7]>",
"472": "<stringTable.rareItemName[8]>",
"473": "<stringTable.rareItemName[9]>",
"474": "<stringTable.rareItemName[10]>",
"475": "<stringTable.rareItemName[11]>",
"476": "<stringTable.rareItemName[12]>",
"477": "<stringTable.rareItemName[13]>",
"478": "<stringTable.rareItemName[14]>",
"479": "<stringTable.rareItemName[15]>",
"480": "<stringTable.rareItemName[16]>",
"481": "<stringTable.rareItemName[17]>",
"482": "<stringTable.rareItemName[18]>",
"483": "<stringTable.rareItemName[19]>",
"484": "Unused Rare Item 21",
"485": "Unused Rare Item 22",
"486": "Unused Rare Item 23",
"487": "Unused Rare Item 24",
"488": "Unused Rare Item 25",
"489": "Unused Rare Item 26",
"490": "Unused Rare Item 27",
"491": "Unused Rare Item 28",
"494": "Selected a Valid Colosseum Item",
"495": "Fighting Shadow in the Colosseum",
"496": "Local Control 1",
"497": "Local Control 2",
"498": "Local Control 3",
"499": "Local Control 4",
"500": "Local Control 5",
"501": "Local Control 6",
"502": "Local Control 7",
"503": "Local Control 8",
"504": "Local Control 9",
"505": "Local Control 10",
"506": "Local Control 11",
"507": "Local Control 12",
"508": "Local Control 13",
"509": "Local Control 14",
"510": "Local Control 15",
"511": "Local Control 16",
"512": "Imperial Castle / Talked to 2 soldiers",
"513": "Imperial Castle / Talked to 3 soldiers",
"514": "Imperial Castle / Talked to 4 soldiers",
"515": "Imperial Castle / Talked to 5 soldiers",
"516": "Imperial Castle / Talked to 6 soldiers",
"517": "Imperial Castle / Talked to 7 soldiers",
"518": "Imperial Castle / Talked to 8 soldiers",
"519": "Imperial Castle / Talked to 9 soldiers",
"520": "Imperial Castle / Talked to 10 soldiers",
"521": "Imperial Castle / Talked to 11 soldiers",
"522": "Imperial Castle / Talked to 12 soldiers",
"523": "Imperial Castle / Talked to 13 soldiers",
"524": "Imperial Castle / Talked to 14 soldiers",
"525": "Imperial Castle / Talked to 15 soldiers",
"526": "Imperial Castle / Talked to 16 soldiers",
"527": "Imperial Castle / Talked to 17 soldiers",
"528": "Imperial Castle / Talked to 18 soldiers",
"529": "Imperial Castle / Talked to 19 soldiers",
"530": "Imperial Castle / Talked to 20 soldiers",
"531": "Imperial Castle / Talked to 21 soldiers",
"532": "Imperial Castle / Talked to 22 soldiers",
"533": "Imperial Castle / Talked to 23 soldiers",
"534": "Imperial Castle / Talked to 24 soldiers",
"535": "Imperial Castle / Talked to soldier 1",
"536": "Imperial Castle / Talked to soldier 2",
"537": "Imperial Castle / Talked to soldier 3",
"538": "Imperial Castle / Talked to soldier 4",
"539": "Imperial Castle / Talked to soldier 5",
"540": "Imperial Castle / Talked to soldier 6",
"541": "Imperial Castle / Talked to soldier 7",
"542": "Imperial Castle / Talked to soldier 8",
"543": "Imperial Castle / Talked to soldier 9",
"544": "Imperial Castle / Talked to soldier 10",
"545": "Imperial Castle / Talked to soldier 11",
"546": "Imperial Castle / Talked to soldier 12",
"547": "Imperial Castle / Talked to soldier 13",
"548": "Imperial Castle / Talked to soldier 14",
"549": "Imperial Castle / Talked to soldier 15",
"550": "Imperial Castle / Talked to soldier 16",
"551": "Imperial Castle / Talked to soldier 17",
"552": "Imperial Castle / Talked to soldier 18",
"553": "Imperial Castle / Talked to soldier 19",
"554": "Imperial Castle / Talked to soldier 20",
"555": "Imperial Castle / Talked to soldier 21",
"556": "Imperial Castle / Talked to soldier 22",
"557": "Imperial Castle / Talked to soldier 23",
"558": "Imperial Castle / Talked to soldier 24",
"665": "Mt. Kolts / Storm Dragon is Flying Around",
"666": "Mt. Kolts / Storm Dragon was Defeated",
"683": "Retain Timers 1",
"684": "Retain Timers 2",
"685": "Retain Timers 3",
"686": "Retain Timers 4",
"700": "Continue Music During Battle",
"704": "Enable Fade Bars (ending)",
"708": "Party 1 switch A",
"709": "Party 1 switch B",
"710": "Party 1 switch C",
"711": "Party 1 switch D",
"712": "Party 2 switch A",
"713": "Party 2 switch B",
"714": "Party 2 switch C",
"715": "Party 2 switch D",
"716": "Party 3 switch A",
"717": "Party 3 switch B",
"718": "Party 3 switch C",
"719": "Party 3 switch D",
"720": "Phoenix Cave / Water is drained",
"721": "Phoenix Cave / Spikes have been lowered 3",
"722": "Phoenix Cave / Stones rearranged (party 1)",
"723": "Phoenix Cave / Stones rearranged (party 2)",
"724": "Phoenix Cave / Stepping stones (party 1)",
"725": "Phoenix Cave / Stepping stones (party 2)",
"726": "Phoenix Cave / Lowered platform",
"727": "Umaro's Cave / Obtained Fenrir",
"728": "Narshe / Security Checkpoint Intro",
"729": "Kohlingen / Disable music in Rachel's house",
"730": "Fanatics' Tower / Top room treasure chest",
"731": "Fanatics' Tower / Defeated MagiMaster",
"732": "Fanatics' Tower / Pressed switch",
"733": "Ancient Castle / Obtained Raiden",
"734": "Ancient Castle / Pressed switch",
"735": "Ancient Castle / Flashback scene",
"736": "Terra is initialized",
"737": "Locke is initialized",
"738": "Cyan is initialized",
"739": "Shadow is initialized",
"740": "Edgar is initialized",
"741": "Sabin is initialized",
"742": "Celes is initialized",
"743": "Strago is initialized",
"744": "Relm is initialized",
"745": "Setzer is initialized",
"746": "Mog is initialized",
"747": "Gau is initialized",
"748": "Gogo is initialized",
"749": "Umaro is initialized",
"750": "Character 15 is initialized",
"751": "Character 16 is initialized",
"752": "Terra is available",
"753": "Locke is available",
"754": "Cyan is available",
"755": "Shadow is available",
"756": "Edgar is available",
"757": "Sabin is available",
"758": "Celes is available",
"759": "Strago is available",
"760": "Relm is available",
"761": "Setzer is available",
"762": "Mog is available",
"763": "Gau is available",
"764": "Gogo is available",
"765": "Umaro is available",
"766": "Go to Narshe scene after Magitek March",
"767": "At least one saved game"
}
},
"mapVRAMPalette": {
"type": "stringTable",
"key": "mapVRAMPalette",
"name": "Map VRAM Palette",