-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathID_strings.py
More file actions
3401 lines (3399 loc) · 154 KB
/
Copy pathID_strings.py
File metadata and controls
3401 lines (3399 loc) · 154 KB
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
str_no_string = 0
str_empty_string = 1
str_yes = 2
str_no = 3
str_blank_string = 4
str_error_string = 5
str_noone = 6
str_s0 = 7
str_blank_s1 = 8
str_reg1 = 9
str_s50_comma_s51 = 10
str_s50_and_s51 = 11
str_s52_comma_s51 = 12
str_s52_and_s51 = 13
str_s5_s_party = 14
str_given_by_s1_at_s2 = 15
str_given_by_s1_in_wilderness = 16
str_s7_raiders = 17
str_bandits_eliminated_by_another = 18
str_msg_battle_won = 19
str_tutorial_map1 = 20
str_change_color_1 = 21
str_change_color_2 = 22
str_change_background = 23
str_change_flag_type = 24
str_change_map_flag_type = 25
str_randomize = 26
str_sample_banner = 27
str_sample_map_banner = 28
str_number_of_charges = 29
str_change_charge_1 = 30
str_change_charge_1_color = 31
str_change_charge_2 = 32
str_change_charge_2_color = 33
str_change_charge_3 = 34
str_change_charge_3_color = 35
str_change_charge_4 = 36
str_change_charge_4_color = 37
str_change_charge_position = 38
str_choose_position = 39
str_choose_charge = 40
str_choose_background = 41
str_choose_flag_type = 42
str_choose_map_flag_type = 43
str_choose_color = 44
str_accept = 45
str_charge_no_1 = 46
str_charge_no_2 = 47
str_charge_no_3 = 48
str_charge_no_4 = 49
str_change = 50
str_color_no_1 = 51
str_color_no_2 = 52
str_charge = 53
str_color = 54
str_flip_horizontal = 55
str_flip_vertical = 56
str_hold_fire = 57
str_blunt_hold_fire = 58
str_tutorial_ammo_refilled = 59
str_tutorial_failed = 60
str_tutorial_1_msg_1 = 61
str_tutorial_1_msg_2 = 62
str_tutorial_1_msg_3 = 63
str_tutorial_1_msg_4 = 64
str_tutorial_1_msg_5 = 65
str_tutorial_1_msg_6 = 66
str_tutorial_2_msg_1 = 67
str_tutorial_2_msg_2 = 68
str_tutorial_2_msg_3 = 69
str_tutorial_2_msg_4 = 70
str_tutorial_2_msg_5 = 71
str_tutorial_2_msg_6 = 72
str_tutorial_2_msg_7 = 73
str_tutorial_2_msg_8 = 74
str_tutorial_2_msg_9 = 75
str_tutorial_3_msg_1 = 76
str_tutorial_3_msg_2 = 77
str_tutorial_3_msg_3 = 78
str_tutorial_3_msg_4 = 79
str_tutorial_3_msg_5 = 80
str_tutorial_3_msg_6 = 81
str_tutorial_3_2_msg_1 = 82
str_tutorial_3_2_msg_2 = 83
str_tutorial_3_2_msg_3 = 84
str_tutorial_3_2_msg_4 = 85
str_tutorial_3_2_msg_5 = 86
str_tutorial_4_msg_1 = 87
str_tutorial_4_msg_2 = 88
str_tutorial_4_msg_3 = 89
str_tutorial_4_msg_4 = 90
str_tutorial_4_msg_5 = 91
str_tutorial_4_msg_6 = 92
str_tutorial_4_msg_7 = 93
str_tutorial_5_msg_1 = 94
str_tutorial_5_msg_2 = 95
str_tutorial_5_msg_3 = 96
str_tutorial_5_msg_4 = 97
str_tutorial_5_msg_5 = 98
str_tutorial_5_msg_6 = 99
str_trainer_help_1 = 100
str_trainer_help_2 = 101
str_custom_battle_1 = 102
str_custom_battle_2 = 103
str_custom_battle_3 = 104
str_custom_battle_4 = 105
str_custom_battle_5 = 106
str_finished = 107
str_delivered_damage = 108
str_archery_target_hit = 109
str_use_baggage_for_inventory = 110
str_cant_use_inventory_now = 111
str_cant_use_inventory_arena = 112
str_cant_use_inventory_disguised = 113
str_cant_use_inventory_tutorial = 114
str_1_denar = 115
str_reg1_denars = 116
str_january_reg1_reg2 = 117
str_february_reg1_reg2 = 118
str_march_reg1_reg2 = 119
str_april_reg1_reg2 = 120
str_may_reg1_reg2 = 121
str_june_reg1_reg2 = 122
str_july_reg1_reg2 = 123
str_august_reg1_reg2 = 124
str_september_reg1_reg2 = 125
str_october_reg1_reg2 = 126
str_november_reg1_reg2 = 127
str_december_reg1_reg2 = 128
str_town_nighttime = 129
str_door_locked = 130
str_castle_is_abondened = 131
str_town_is_abondened = 132
str_place_is_occupied_by_player = 133
str_place_is_occupied_by_enemy = 134
str_place_is_occupied_by_friendly = 135
str_do_you_want_to_retreat = 136
str_give_up_fight = 137
str_do_you_wish_to_leave_tutorial = 138
str_do_you_wish_to_surrender = 139
str_can_not_retreat = 140
str_s1_joined_battle_enemy = 141
str_s1_joined_battle_friend = 142
str_entrance_to_town_forbidden = 143
str_sneaking_to_town_impossible = 144
str_battle_won = 145
str_battle_lost = 146
str_attack_walls_success = 147
str_attack_walls_failure = 148
str_attack_walls_continue = 149
str_order_attack_success = 150
str_order_attack_failure = 151
str_order_attack_continue = 152
str_join_order_attack_success = 153
str_join_order_attack_failure = 154
str_join_order_attack_continue = 155
str_siege_defender_order_attack_success = 156
str_siege_defender_order_attack_failure = 157
str_siege_defender_order_attack_continue = 158
str_hero_taken_prisoner = 159
str_hero_freed = 160
str_center_captured = 161
str_troop_relation_increased = 162
str_troop_relation_detoriated = 163
str_faction_relation_increased = 164
str_faction_relation_detoriated = 165
str_party_gained_morale = 166
str_party_lost_morale = 167
str_other_party_gained_morale = 168
str_other_party_lost_morale = 169
str_qst_follow_spy_noticed_you = 170
str_father = 171
str_husband = 172
str_wife = 173
str_daughter = 174
str_mother = 175
str_son = 176
str_brother = 177
str_sister = 178
str_he = 179
str_she = 180
str_s3s_s2 = 181
str_s5_is_s51 = 182
str_s5_is_the_ruler_of_s51 = 183
str_s5_is_a_nobleman_of_s6 = 184
str_relation_mnus_100 = 185
str_relation_mnus_90 = 186
str_relation_mnus_80 = 187
str_relation_mnus_70 = 188
str_relation_mnus_60 = 189
str_relation_mnus_50 = 190
str_relation_mnus_40 = 191
str_relation_mnus_30 = 192
str_relation_mnus_20 = 193
str_relation_mnus_10 = 194
str_relation_plus_0 = 195
str_relation_plus_10 = 196
str_relation_plus_20 = 197
str_relation_plus_30 = 198
str_relation_plus_40 = 199
str_relation_plus_50 = 200
str_relation_plus_60 = 201
str_relation_plus_70 = 202
str_relation_plus_80 = 203
str_relation_plus_90 = 204
str_relation_mnus_100_ns = 205
str_relation_mnus_90_ns = 206
str_relation_mnus_80_ns = 207
str_relation_mnus_70_ns = 208
str_relation_mnus_60_ns = 209
str_relation_mnus_50_ns = 210
str_relation_mnus_40_ns = 211
str_relation_mnus_30_ns = 212
str_relation_mnus_20_ns = 213
str_relation_mnus_10_ns = 214
str_relation_plus_0_ns = 215
str_relation_plus_10_ns = 216
str_relation_plus_20_ns = 217
str_relation_plus_30_ns = 218
str_relation_plus_40_ns = 219
str_relation_plus_50_ns = 220
str_relation_plus_60_ns = 221
str_relation_plus_70_ns = 222
str_relation_plus_80_ns = 223
str_relation_plus_90_ns = 224
str_relation_reg1 = 225
str_center_relation_mnus_100 = 226
str_center_relation_mnus_90 = 227
str_center_relation_mnus_80 = 228
str_center_relation_mnus_70 = 229
str_center_relation_mnus_60 = 230
str_center_relation_mnus_50 = 231
str_center_relation_mnus_40 = 232
str_center_relation_mnus_30 = 233
str_center_relation_mnus_20 = 234
str_center_relation_mnus_10 = 235
str_center_relation_plus_0 = 236
str_center_relation_plus_10 = 237
str_center_relation_plus_20 = 238
str_center_relation_plus_30 = 239
str_center_relation_plus_40 = 240
str_center_relation_plus_50 = 241
str_center_relation_plus_60 = 242
str_center_relation_plus_70 = 243
str_center_relation_plus_80 = 244
str_center_relation_plus_90 = 245
str_town_prosperity_0 = 246
str_town_prosperity_10 = 247
str_town_prosperity_20 = 248
str_town_prosperity_30 = 249
str_town_prosperity_40 = 250
str_town_prosperity_50 = 251
str_town_prosperity_60 = 252
str_town_prosperity_70 = 253
str_town_prosperity_80 = 254
str_town_prosperity_90 = 255
str_town_prosperity_100 = 256
str_village_prosperity_0 = 257
str_village_prosperity_10 = 258
str_village_prosperity_20 = 259
str_village_prosperity_30 = 260
str_village_prosperity_40 = 261
str_village_prosperity_50 = 262
str_village_prosperity_60 = 263
str_village_prosperity_70 = 264
str_village_prosperity_80 = 265
str_village_prosperity_90 = 266
str_village_prosperity_100 = 267
str_town_alt_prosperity_0 = 268
str_town_alt_prosperity_20 = 269
str_town_alt_prosperity_40 = 270
str_town_alt_prosperity_60 = 271
str_town_alt_prosperity_80 = 272
str_village_alt_prosperity_0 = 273
str_village_alt_prosperity_20 = 274
str_village_alt_prosperity_40 = 275
str_village_alt_prosperity_60 = 276
str_village_alt_prosperity_80 = 277
str_oasis_village_alt_prosperity_0 = 278
str_oasis_village_alt_prosperity_20 = 279
str_oasis_village_alt_prosperity_40 = 280
str_oasis_village_alt_prosperity_60 = 281
str_oasis_village_alt_prosperity_80 = 282
str_acres_grain = 283
str_acres_orchard = 284
str_acres_oasis = 285
str_looms = 286
str_boats = 287
str_head_cattle = 288
str_head_sheep = 289
str_mills = 290
str_kilns = 291
str_pans = 292
str_deposits = 293
str_hives = 294
str_breweries = 295
str_presses = 296
str_smithies = 297
str_caravans = 298
str_traps = 299
str_gardens = 300
str_tanneries = 301
str_master_miller = 302
str_master_brewer = 303
str_master_presser = 304
str_master_smith = 305
str_master_tanner = 306
str_master_weaver = 307
str_master_dyer = 308
str_war_report_minus_4 = 309
str_war_report_minus_3 = 310
str_war_report_minus_2 = 311
str_war_report_minus_1 = 312
str_war_report_0 = 313
str_war_report_plus_1 = 314
str_war_report_plus_2 = 315
str_war_report_plus_3 = 316
str_war_report_plus_4 = 317
str_persuasion_summary_very_bad = 318
str_persuasion_summary_bad = 319
str_persuasion_summary_average = 320
str_persuasion_summary_good = 321
str_persuasion_summary_very_good = 322
str_secret_sign_1 = 323
str_secret_sign_2 = 324
str_secret_sign_3 = 325
str_secret_sign_4 = 326
str_countersign_1 = 327
str_countersign_2 = 328
str_countersign_3 = 329
str_countersign_4 = 330
str_name_1 = 331
str_name_2 = 332
str_name_3 = 333
str_name_4 = 334
str_name_5 = 335
str_name_6 = 336
str_name_7 = 337
str_name_8 = 338
str_name_9 = 339
str_name_10 = 340
str_name_11 = 341
str_name_12 = 342
str_name_13 = 343
str_name_14 = 344
str_name_15 = 345
str_name_16 = 346
str_name_17 = 347
str_name_18 = 348
str_name_19 = 349
str_name_20 = 350
str_name_21 = 351
str_name_22 = 352
str_name_23 = 353
str_name_24 = 354
str_name_25 = 355
str_surname_1 = 356
str_surname_2 = 357
str_surname_3 = 358
str_surname_4 = 359
str_surname_5 = 360
str_surname_6 = 361
str_surname_7 = 362
str_surname_8 = 363
str_surname_9 = 364
str_surname_10 = 365
str_surname_11 = 366
str_surname_12 = 367
str_surname_13 = 368
str_surname_14 = 369
str_surname_15 = 370
str_surname_16 = 371
str_surname_17 = 372
str_surname_18 = 373
str_surname_19 = 374
str_surname_20 = 375
str_surname_21 = 376
str_surname_22 = 377
str_surname_23 = 378
str_surname_24 = 379
str_surname_25 = 380
str_surname_26 = 381
str_surname_27 = 382
str_surname_28 = 383
str_surname_29 = 384
str_surname_30 = 385
str_surname_31 = 386
str_surname_32 = 387
str_surname_33 = 388
str_surname_34 = 389
str_surname_35 = 390
str_surname_36 = 391
str_surname_37 = 392
str_surname_38 = 393
str_surname_39 = 394
str_surname_40 = 395
str_surname_41 = 396
str_surnames_end = 397
str_number_of_troops_killed_reg1 = 398
str_number_of_troops_wounded_reg1 = 399
str_number_of_own_troops_killed_reg1 = 400
str_number_of_own_troops_wounded_reg1 = 401
str_retreat = 402
str_siege_continues = 403
str_casualty_display = 404
str_casualty_display_hp = 405
str_quest_log_updated = 406
str_banner_selection_text = 407
str_retirement_text_1 = 408
str_retirement_text_2 = 409
str_retirement_text_3 = 410
str_retirement_text_4 = 411
str_retirement_text_5 = 412
str_retirement_text_6 = 413
str_retirement_text_7 = 414
str_retirement_text_8 = 415
str_retirement_text_9 = 416
str_retirement_text_10 = 417
str_loot_village = 418
str_steal_from_villagers = 419
str_rob_caravan = 420
str_sell_slavery = 421
str_men_hungry = 422
str_men_unpaid = 423
str_excessive_casualties = 424
str_surrender = 425
str_flee_battle = 426
str_pay_bandits = 427
str_fail_quest = 428
str_squander_money = 429
str_murder_merchant = 430
str_round_up_serfs = 431
str_battle_fate_1 = 432
str_battle_fate_2 = 433
str_battle_fate_3 = 434
str_battle_fate_4 = 435
str_battle_fate_5 = 436
str_npc_morale_report = 437
str_happy = 438
str_content = 439
str_concerned = 440
str_not_happy = 441
str_miserable = 442
str_morale_reg1 = 443
str_bar_enthusiastic = 444
str_bar_content = 445
str_bar_weary = 446
str_bar_disgruntled = 447
str_bar_miserable = 448
str_here_plus_space = 449
str_npc1_intro = 450
str_npc2_intro = 451
str_npc3_intro = 452
str_npc4_intro = 453
str_npc5_intro = 454
str_npc6_intro = 455
str_npc7_intro = 456
str_npc8_intro = 457
str_npc9_intro = 458
str_npc10_intro = 459
str_npc11_intro = 460
str_npc12_intro = 461
str_npc13_intro = 462
str_npc14_intro = 463
str_npc15_intro = 464
str_npc16_intro = 465
str_npc1_intro_response_1 = 466
str_npc2_intro_response_1 = 467
str_npc3_intro_response_1 = 468
str_npc4_intro_response_1 = 469
str_npc5_intro_response_1 = 470
str_npc6_intro_response_1 = 471
str_npc7_intro_response_1 = 472
str_npc8_intro_response_1 = 473
str_npc9_intro_response_1 = 474
str_npc10_intro_response_1 = 475
str_npc11_intro_response_1 = 476
str_npc12_intro_response_1 = 477
str_npc13_intro_response_1 = 478
str_npc14_intro_response_1 = 479
str_npc15_intro_response_1 = 480
str_npc16_intro_response_1 = 481
str_npc1_intro_response_2 = 482
str_npc2_intro_response_2 = 483
str_npc3_intro_response_2 = 484
str_npc4_intro_response_2 = 485
str_npc5_intro_response_2 = 486
str_npc6_intro_response_2 = 487
str_npc7_intro_response_2 = 488
str_npc8_intro_response_2 = 489
str_npc9_intro_response_2 = 490
str_npc10_intro_response_2 = 491
str_npc11_intro_response_2 = 492
str_npc12_intro_response_2 = 493
str_npc13_intro_response_2 = 494
str_npc14_intro_response_2 = 495
str_npc15_intro_response_2 = 496
str_npc16_intro_response_2 = 497
str_npc1_backstory_a = 498
str_npc2_backstory_a = 499
str_npc3_backstory_a = 500
str_npc4_backstory_a = 501
str_npc5_backstory_a = 502
str_npc6_backstory_a = 503
str_npc7_backstory_a = 504
str_npc8_backstory_a = 505
str_npc9_backstory_a = 506
str_npc10_backstory_a = 507
str_npc11_backstory_a = 508
str_npc12_backstory_a = 509
str_npc13_backstory_a = 510
str_npc14_backstory_a = 511
str_npc15_backstory_a = 512
str_npc16_backstory_a = 513
str_npc1_backstory_b = 514
str_npc2_backstory_b = 515
str_npc3_backstory_b = 516
str_npc4_backstory_b = 517
str_npc5_backstory_b = 518
str_npc6_backstory_b = 519
str_npc7_backstory_b = 520
str_npc8_backstory_b = 521
str_npc9_backstory_b = 522
str_npc10_backstory_b = 523
str_npc11_backstory_b = 524
str_npc12_backstory_b = 525
str_npc13_backstory_b = 526
str_npc14_backstory_b = 527
str_npc15_backstory_b = 528
str_npc16_backstory_b = 529
str_npc1_backstory_c = 530
str_npc2_backstory_c = 531
str_npc3_backstory_c = 532
str_npc4_backstory_c = 533
str_npc5_backstory_c = 534
str_npc6_backstory_c = 535
str_npc7_backstory_c = 536
str_npc8_backstory_c = 537
str_npc9_backstory_c = 538
str_npc10_backstory_c = 539
str_npc11_backstory_c = 540
str_npc12_backstory_c = 541
str_npc13_backstory_c = 542
str_npc14_backstory_c = 543
str_npc15_backstory_c = 544
str_npc16_backstory_c = 545
str_npc1_backstory_later = 546
str_npc2_backstory_later = 547
str_npc3_backstory_later = 548
str_npc4_backstory_later = 549
str_npc5_backstory_later = 550
str_npc6_backstory_later = 551
str_npc7_backstory_later = 552
str_npc8_backstory_later = 553
str_npc9_backstory_later = 554
str_npc10_backstory_later = 555
str_npc11_backstory_later = 556
str_npc12_backstory_later = 557
str_npc13_backstory_later = 558
str_npc14_backstory_later = 559
str_npc15_backstory_later = 560
str_npc16_backstory_later = 561
str_npc1_backstory_response_1 = 562
str_npc2_backstory_response_1 = 563
str_npc3_backstory_response_1 = 564
str_npc4_backstory_response_1 = 565
str_npc5_backstory_response_1 = 566
str_npc6_backstory_response_1 = 567
str_npc7_backstory_response_1 = 568
str_npc8_backstory_response_1 = 569
str_npc9_backstory_response_1 = 570
str_npc10_backstory_response_1 = 571
str_npc11_backstory_response_1 = 572
str_npc12_backstory_response_1 = 573
str_npc13_backstory_response_1 = 574
str_npc14_backstory_response_1 = 575
str_npc15_backstory_response_1 = 576
str_npc16_backstory_response_1 = 577
str_npc1_backstory_response_2 = 578
str_npc2_backstory_response_2 = 579
str_npc3_backstory_response_2 = 580
str_npc4_backstory_response_2 = 581
str_npc5_backstory_response_2 = 582
str_npc6_backstory_response_2 = 583
str_npc7_backstory_response_2 = 584
str_npc8_backstory_response_2 = 585
str_npc9_backstory_response_2 = 586
str_npc10_backstory_response_2 = 587
str_npc11_backstory_response_2 = 588
str_npc12_backstory_response_2 = 589
str_npc13_backstory_response_2 = 590
str_npc14_backstory_response_2 = 591
str_npc15_backstory_response_2 = 592
str_npc16_backstory_response_2 = 593
str_npc1_signup = 594
str_npc2_signup = 595
str_npc3_signup = 596
str_npc4_signup = 597
str_npc5_signup = 598
str_npc6_signup = 599
str_npc7_signup = 600
str_npc8_signup = 601
str_npc9_signup = 602
str_npc10_signup = 603
str_npc11_signup = 604
str_npc12_signup = 605
str_npc13_signup = 606
str_npc14_signup = 607
str_npc15_signup = 608
str_npc16_signup = 609
str_npc1_signup_2 = 610
str_npc2_signup_2 = 611
str_npc3_signup_2 = 612
str_npc4_signup_2 = 613
str_npc5_signup_2 = 614
str_npc6_signup_2 = 615
str_npc7_signup_2 = 616
str_npc8_signup_2 = 617
str_npc9_signup_2 = 618
str_npc10_signup_2 = 619
str_npc11_signup_2 = 620
str_npc12_signup_2 = 621
str_npc13_signup_2 = 622
str_npc14_signup_2 = 623
str_npc15_signup_2 = 624
str_npc16_signup_2 = 625
str_npc1_signup_response_1 = 626
str_npc2_signup_response_1 = 627
str_npc3_signup_response_1 = 628
str_npc4_signup_response_1 = 629
str_npc5_signup_response_1 = 630
str_npc6_signup_response_1 = 631
str_npc7_signup_response_1 = 632
str_npc8_signup_response_1 = 633
str_npc9_signup_response_1 = 634
str_npc10_signup_response_1 = 635
str_npc11_signup_response_1 = 636
str_npc12_signup_response_1 = 637
str_npc13_signup_response_1 = 638
str_npc14_signup_response_1 = 639
str_npc15_signup_response_1 = 640
str_npc16_signup_response_1 = 641
str_npc1_signup_response_2 = 642
str_npc2_signup_response_2 = 643
str_npc3_signup_response_2 = 644
str_npc4_signup_response_2 = 645
str_npc5_signup_response_2 = 646
str_npc6_signup_response_2 = 647
str_npc7_signup_response_2 = 648
str_npc8_signup_response_2 = 649
str_npc9_signup_response_2 = 650
str_npc10_signup_response_2 = 651
str_npc11_signup_response_2 = 652
str_npc12_signup_response_2 = 653
str_npc13_signup_response_2 = 654
str_npc14_signup_response_2 = 655
str_npc15_signup_response_2 = 656
str_npc16_signup_response_2 = 657
str_npc1_payment = 658
str_npc2_payment = 659
str_npc3_payment = 660
str_npc4_payment = 661
str_npc5_payment = 662
str_npc6_payment = 663
str_npc7_payment = 664
str_npc8_payment = 665
str_npc9_payment = 666
str_npc10_payment = 667
str_npc11_payment = 668
str_npc12_payment = 669
str_npc13_payment = 670
str_npc14_payment = 671
str_npc15_payment = 672
str_npc16_payment = 673
str_npc1_payment_response = 674
str_npc2_payment_response = 675
str_npc3_payment_response = 676
str_npc4_payment_response = 677
str_npc5_payment_response = 678
str_npc6_payment_response = 679
str_npc7_payment_response = 680
str_npc8_payment_response = 681
str_npc9_payment_response = 682
str_npc10_payment_response = 683
str_npc11_payment_response = 684
str_npc12_payment_response = 685
str_npc13_payment_response = 686
str_npc14_payment_response = 687
str_npc15_payment_response = 688
str_npc16_payment_response = 689
str_npc1_morality_speech = 690
str_npc2_morality_speech = 691
str_npc3_morality_speech = 692
str_npc4_morality_speech = 693
str_npc5_morality_speech = 694
str_npc6_morality_speech = 695
str_npc7_morality_speech = 696
str_npc8_morality_speech = 697
str_npc9_morality_speech = 698
str_npc10_morality_speech = 699
str_npc11_morality_speech = 700
str_npc12_morality_speech = 701
str_npc13_morality_speech = 702
str_npc14_morality_speech = 703
str_npc15_morality_speech = 704
str_npc16_morality_speech = 705
str_npc1_2ary_morality_speech = 706
str_npc2_2ary_morality_speech = 707
str_npc3_2ary_morality_speech = 708
str_npc4_2ary_morality_speech = 709
str_npc5_2ary_morality_speech = 710
str_npc6_2ary_morality_speech = 711
str_npc7_2ary_morality_speech = 712
str_npc8_2ary_morality_speech = 713
str_npc9_2ary_morality_speech = 714
str_npc10_2ary_morality_speech = 715
str_npc11_2ary_morality_speech = 716
str_npc12_2ary_morality_speech = 717
str_npc13_2ary_morality_speech = 718
str_npc14_2ary_morality_speech = 719
str_npc15_2ary_morality_speech = 720
str_npc16_2ary_morality_speech = 721
str_npc1_personalityclash_speech = 722
str_npc2_personalityclash_speech = 723
str_npc3_personalityclash_speech = 724
str_npc4_personalityclash_speech = 725
str_npc5_personalityclash_speech = 726
str_npc6_personalityclash_speech = 727
str_npc7_personalityclash_speech = 728
str_npc8_personalityclash_speech = 729
str_npc9_personalityclash_speech = 730
str_npc10_personalityclash_speech = 731
str_npc11_personalityclash_speech = 732
str_npc12_personalityclash_speech = 733
str_npc13_personalityclash_speech = 734
str_npc14_personalityclash_speech = 735
str_npc15_personalityclash_speech = 736
str_npc16_personalityclash_speech = 737
str_npc1_personalityclash_speech_b = 738
str_npc2_personalityclash_speech_b = 739
str_npc3_personalityclash_speech_b = 740
str_npc4_personalityclash_speech_b = 741
str_npc5_personalityclash_speech_b = 742
str_npc6_personalityclash_speech_b = 743
str_npc7_personalityclash_speech_b = 744
str_npc8_personalityclash_speech_b = 745
str_npc9_personalityclash_speech_b = 746
str_npc10_personalityclash_speech_b = 747
str_npc11_personalityclash_speech_b = 748
str_npc12_personalityclash_speech_b = 749
str_npc13_personalityclash_speech_b = 750
str_npc14_personalityclash_speech_b = 751
str_npc15_personalityclash_speech_b = 752
str_npc16_personalityclash_speech_b = 753
str_npc1_personalityclash2_speech = 754
str_npc2_personalityclash2_speech = 755
str_npc3_personalityclash2_speech = 756
str_npc4_personalityclash2_speech = 757
str_npc5_personalityclash2_speech = 758
str_npc6_personalityclash2_speech = 759
str_npc7_personalityclash2_speech = 760
str_npc8_personalityclash2_speech = 761
str_npc9_personalityclash2_speech = 762
str_npc10_personalityclash2_speech = 763
str_npc11_personalityclash2_speech = 764
str_npc12_personalityclash2_speech = 765
str_npc13_personalityclash2_speech = 766
str_npc14_personalityclash2_speech = 767
str_npc15_personalityclash2_speech = 768
str_npc16_personalityclash2_speech = 769
str_npc1_personalityclash2_speech_b = 770
str_npc2_personalityclash2_speech_b = 771
str_npc3_personalityclash2_speech_b = 772
str_npc4_personalityclash2_speech_b = 773
str_npc5_personalityclash2_speech_b = 774
str_npc6_personalityclash2_speech_b = 775
str_npc7_personalityclash2_speech_b = 776
str_npc8_personalityclash2_speech_b = 777
str_npc9_personalityclash2_speech_b = 778
str_npc10_personalityclash2_speech_b = 779
str_npc11_personalityclash2_speech_b = 780
str_npc12_personalityclash2_speech_b = 781
str_npc13_personalityclash2_speech_b = 782
str_npc14_personalityclash2_speech_b = 783
str_npc15_personalityclash2_speech_b = 784
str_npc16_personalityclash2_speech_b = 785
str_npc1_personalitymatch_speech = 786
str_npc2_personalitymatch_speech = 787
str_npc3_personalitymatch_speech = 788
str_npc4_personalitymatch_speech = 789
str_npc5_personalitymatch_speech = 790
str_npc6_personalitymatch_speech = 791
str_npc7_personalitymatch_speech = 792
str_npc8_personalitymatch_speech = 793
str_npc9_personalitymatch_speech = 794
str_npc10_personalitymatch_speech = 795
str_npc11_personalitymatch_speech = 796
str_npc12_personalitymatch_speech = 797
str_npc13_personalitymatch_speech = 798
str_npc14_personalitymatch_speech = 799
str_npc15_personalitymatch_speech = 800
str_npc16_personalitymatch_speech = 801
str_npc1_personalitymatch_speech_b = 802
str_npc2_personalitymatch_speech_b = 803
str_npc3_personalitymatch_speech_b = 804
str_npc4_personalitymatch_speech_b = 805
str_npc5_personalitymatch_speech_b = 806
str_npc6_personalitymatch_speech_b = 807
str_npc7_personalitymatch_speech_b = 808
str_npc8_personalitymatch_speech_b = 809
str_npc9_personalitymatch_speech_b = 810
str_npc10_personalitymatch_speech_b = 811
str_npc11_personalitymatch_speech_b = 812
str_npc12_personalitymatch_speech_b = 813
str_npc13_personalitymatch_speech_b = 814
str_npc14_personalitymatch_speech_b = 815
str_npc15_personalitymatch_speech_b = 816
str_npc16_personalitymatch_speech_b = 817
str_npc1_retirement_speech = 818
str_npc2_retirement_speech = 819
str_npc3_retirement_speech = 820
str_npc4_retirement_speech = 821
str_npc5_retirement_speech = 822
str_npc6_retirement_speech = 823
str_npc7_retirement_speech = 824
str_npc8_retirement_speech = 825
str_npc9_retirement_speech = 826
str_npc10_retirement_speech = 827
str_npc11_retirement_speech = 828
str_npc12_retirement_speech = 829
str_npc13_retirement_speech = 830
str_npc14_retirement_speech = 831
str_npc15_retirement_speech = 832
str_npc16_retirement_speech = 833
str_npc1_rehire_speech = 834
str_npc2_rehire_speech = 835
str_npc3_rehire_speech = 836
str_npc4_rehire_speech = 837
str_npc5_rehire_speech = 838
str_npc6_rehire_speech = 839
str_npc7_rehire_speech = 840
str_npc8_rehire_speech = 841
str_npc9_rehire_speech = 842
str_npc10_rehire_speech = 843
str_npc11_rehire_speech = 844
str_npc12_rehire_speech = 845
str_npc13_rehire_speech = 846
str_npc14_rehire_speech = 847
str_npc15_rehire_speech = 848
str_npc16_rehire_speech = 849
str_npc1_home_intro = 850
str_npc2_home_intro = 851
str_npc3_home_intro = 852
str_npc4_home_intro = 853
str_npc5_home_intro = 854
str_npc6_home_intro = 855
str_npc7_home_intro = 856
str_npc8_home_intro = 857
str_npc9_home_intro = 858
str_npc10_home_intro = 859
str_npc11_home_intro = 860
str_npc12_home_intro = 861
str_npc13_home_intro = 862
str_npc14_home_intro = 863
str_npc15_home_intro = 864
str_npc16_home_intro = 865
str_npc1_home_description = 866
str_npc2_home_description = 867
str_npc3_home_description = 868
str_npc4_home_description = 869
str_npc5_home_description = 870
str_npc6_home_description = 871
str_npc7_home_description = 872
str_npc8_home_description = 873
str_npc9_home_description = 874
str_npc10_home_description = 875
str_npc11_home_description = 876
str_npc12_home_description = 877
str_npc13_home_description = 878
str_npc14_home_description = 879
str_npc15_home_description = 880
str_npc16_home_description = 881
str_npc1_home_description_2 = 882
str_npc2_home_description_2 = 883
str_npc3_home_description_2 = 884
str_npc4_home_description_2 = 885
str_npc5_home_description_2 = 886
str_npc6_home_description_2 = 887
str_npc7_home_description_2 = 888
str_npc8_home_description_2 = 889
str_npc9_home_description_2 = 890
str_npc10_home_description_2 = 891
str_npc11_home_description_2 = 892
str_npc12_home_description_2 = 893
str_npc13_home_description_2 = 894
str_npc14_home_description_2 = 895
str_npc15_home_description_2 = 896
str_npc16_home_description_2 = 897
str_npc1_home_recap = 898
str_npc2_home_recap = 899
str_npc3_home_recap = 900
str_npc4_home_recap = 901
str_npc5_home_recap = 902
str_npc6_home_recap = 903
str_npc7_home_recap = 904
str_npc8_home_recap = 905
str_npc9_home_recap = 906
str_npc10_home_recap = 907
str_npc11_home_recap = 908
str_npc12_home_recap = 909
str_npc13_home_recap = 910
str_npc14_home_recap = 911
str_npc15_home_recap = 912
str_npc16_home_recap = 913
str_npc1_honorific = 914
str_npc2_honorific = 915
str_npc3_honorific = 916
str_npc4_honorific = 917
str_npc5_honorific = 918
str_npc6_honorific = 919
str_npc7_honorific = 920
str_npc8_honorific = 921
str_npc9_honorific = 922
str_npc10_honorific = 923
str_npc11_honorific = 924
str_npc12_honorific = 925
str_npc13_honorific = 926
str_npc14_honorific = 927
str_npc15_honorific = 928
str_npc16_honorific = 929
str_npc1_kingsupport_1 = 930
str_npc2_kingsupport_1 = 931
str_npc3_kingsupport_1 = 932
str_npc4_kingsupport_1 = 933
str_npc5_kingsupport_1 = 934
str_npc6_kingsupport_1 = 935
str_npc7_kingsupport_1 = 936
str_npc8_kingsupport_1 = 937
str_npc9_kingsupport_1 = 938
str_npc10_kingsupport_1 = 939
str_npc11_kingsupport_1 = 940
str_npc12_kingsupport_1 = 941
str_npc13_kingsupport_1 = 942
str_npc14_kingsupport_1 = 943
str_npc15_kingsupport_1 = 944
str_npc16_kingsupport_1 = 945
str_npc1_kingsupport_2 = 946
str_npc2_kingsupport_2 = 947
str_npc3_kingsupport_2 = 948
str_npc4_kingsupport_2 = 949
str_npc5_kingsupport_2 = 950
str_npc6_kingsupport_2 = 951
str_npc7_kingsupport_2 = 952
str_npc8_kingsupport_2 = 953
str_npc9_kingsupport_2 = 954
str_npc10_kingsupport_2 = 955
str_npc11_kingsupport_2 = 956
str_npc12_kingsupport_2 = 957
str_npc13_kingsupport_2 = 958
str_npc14_kingsupport_2 = 959
str_npc15_kingsupport_2 = 960
str_npc16_kingsupport_2 = 961
str_npc1_kingsupport_2a = 962
str_npc2_kingsupport_2a = 963
str_npc3_kingsupport_2a = 964
str_npc4_kingsupport_2a = 965
str_npc5_kingsupport_2a = 966
str_npc6_kingsupport_2a = 967
str_npc7_kingsupport_2a = 968
str_npc8_kingsupport_2a = 969
str_npc9_kingsupport_2a = 970
str_npc10_kingsupport_2a = 971
str_npc11_kingsupport_2a = 972
str_npc12_kingsupport_2a = 973
str_npc13_kingsupport_2a = 974
str_npc14_kingsupport_2a = 975
str_npc15_kingsupport_2a = 976
str_npc16_kingsupport_2a = 977
str_npc1_kingsupport_2b = 978
str_npc2_kingsupport_2b = 979
str_npc3_kingsupport_2b = 980
str_npc4_kingsupport_2b = 981
str_npc5_kingsupport_2b = 982
str_npc6_kingsupport_2b = 983
str_npc7_kingsupport_2b = 984
str_npc8_kingsupport_2b = 985
str_npc9_kingsupport_2b = 986
str_npc10_kingsupport_2b = 987
str_npc11_kingsupport_2b = 988
str_npc12_kingsupport_2b = 989
str_npc13_kingsupport_2b = 990
str_npc14_kingsupport_2b = 991
str_npc15_kingsupport_2b = 992
str_npc16_kingsupport_2b = 993
str_npc1_kingsupport_3 = 994
str_npc2_kingsupport_2 = 995
str_npc3_kingsupport_3 = 996
str_npc4_kingsupport_3 = 997
str_npc5_kingsupport_3 = 998
str_npc6_kingsupport_3 = 999