-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathstrings.txt
More file actions
2755 lines (2755 loc) · 311 KB
/
strings.txt
File metadata and controls
2755 lines (2755 loc) · 311 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
stringsfile version 1
2753
str_no_string {***}NO_STRING!
str_empty_string {***}_
str_yes Yes.
str_no No.
str_blank_string {***}_
str_error_string {***}ERROR!!!ERROR!!!!ERROR!!!ERROR!!!ERROR!!!ERROR!!!!ERROR!!!ERROR!!!!ERROR!!!ERROR!!!!ERROR!!!ERROR!!!!ERROR!!!ERROR!!!!ERROR!!!ERROR!!!!!
str_noone no_one
str_s0 {***}{s0}
str_blank_s1 {***}_{s1}
str_reg1 {***}{reg1}
str_s50_comma_s51 {s50},_{s51}
str_s50_and_s51 {s50}_and_{s51}
str_s5_s_party _{s5}'s_Party
str_s5_s_host _{s5}'s_Host
str_given_by_s1_at_s2 Given_by_{s1}_at_{s2}
str_given_by_s1_in_wilderness Given_by_{s1}_whilst_in_the_field
str_s7_raiders {s7}_Raiders
str_bandits_eliminated_by_another The_troublesome_bandits_have_been_eliminated_by_another_party.
str_msg_battle_won Battle_won!_Press_tab_key_to_leave...
str_tutorial_map1 You_are_now_viewing_the_overland_map._Left-click_on_the_map_to_move_your_party_to_that_location,_enter_the_selected_town,_or_pursue_the_selected_party._Time_will_pause_on_the_overland_map_if_your_party_is_not_moving,_waiting_or_resting._To_wait_anywhere_simply_press_and_hold_down_the_space_bar.
str_change_color_1 {***}Change_Color_1
str_change_color_2 {***}Change_Color_2
str_change_background {***}Change_Background_Pattern
str_change_flag_type {***}Change_Flag_Type
str_change_map_flag_type {***}Change_Map_Flag_Type
str_randomize {***}Randomize
str_sample_banner {***}Sample_banner:
str_sample_map_banner {***}Sample_map_banner:
str_number_of_charges {***}Number_of_charges:
str_change_charge_1 {***}Change_Charge_1
str_change_charge_1_color {***}{***}Change_Charge_1_Color
str_change_charge_2 {***}Change_Charge_2
str_change_charge_2_color {***}Change_Charge_2_Color
str_change_charge_3 {***}Change_Charge_3
str_change_charge_3_color {***}Change_Charge_3_Color
str_change_charge_4 {***}Change_Charge_4
str_change_charge_4_color {***}Change_Charge_4_Color
str_change_charge_position {***}Change_Charge_Position
str_choose_position {***}Choose_position:
str_choose_charge {***}Choose_a_charge:
str_choose_background {***}Choose_background_pattern:
str_choose_flag_type {***}Choose_flag_type:
str_choose_map_flag_type {***}Choose_map_flag_type:
str_choose_color {***}Choose_color:
str_accept Accept
str_charge_no_1 {***}Charge_#1:
str_charge_no_2 {***}Charge_#2:
str_charge_no_3 {***}Charge_#3:
str_charge_no_4 {***}Charge_#4:
str_change {***}Change
str_plus {***}+
str_minus {***}-
str_color_no_1 {***}Color_#1:
str_color_no_2 {***}Color_#2:
str_charge {***}Charge
str_color {***}Color
str_flip_horizontal {***}Flip_Horizontal
str_flip_vertical {***}Flip_Vertical
str_hold_fire Hold_Fire
str_blunt_hold_fire Blunt_/_Hold_Fire
str_tutorial_ammo_refilled Ammo_refilled.
str_tutorial_failed You_have_been_beaten_this_time,_but_don't_worry._Follow_the_instructions_carefully_and_you'll_do_better_next_time._Press_the_Tab_key_to_return_to_to_the_menu_where_you_can_retry_this_tutorial.
str_tutorial_1_msg_1 In_this_tutorial_you_will_learn_the_basics_of_movement_and_combat._In_Mount&Blade_you_use_the_mouse_to_control_where_you_are_looking,_and_the_WASD_keys_of_your_keyboard_to_move._Your_first_task_in_the_training_is_to_locate_the_flag_in_the_room_and_move_over_it._You_can_press_the_Tab_key_at_any_time_to_quit_this_tutorial_or_to_exit_any_other_area_in_the_game._Go_to_the_flag_now.
str_tutorial_1_msg_2 Well_done._Next_we_will_cover_attacking_with_weapons._For_the_purposes_of_this_tutorial_you_have_been_equipped_with_bow_and_arrows,_a_sword_and_a_shield._You_can_draw_different_weapons_from_your_weapon_slots_by_using_the_scroll_wheel_of_your_mouse._In_the_default_configuration,_scrolling_up_pulls_out_your_next_weapon,_and_scrolling_down_pulls_out_your_shield._If_you_are_already_holding_a_shield,_scrolling_down_will_put_your_shield_away_instead._Try_changing_your_wielded_equipment_with_the_scroll_wheel_now._When_you_are_ready,_go_to_the_flag_to_move_on_to_your_next_task.
str_tutorial_1_msg_3 Excellent._The_next_part_of_this_tutorial_covers_attacking_with_melee_weapons._You_attack_with_your_currently_wielded_weapon_by_using_your_left_mouse_button._Press_and_hold_the_button_to_ready_an_attack,_then_release_the_button_to_strike._If_you_hold_down_the_left_mouse_button_for_a_while_before_releasing,_your_attack_will_be_more_powerful._Now_draw_your_sword_and_destroy_the_four_dummies_in_the_room.
str_tutorial_1_msg_4 Nice_work!_You've_destroyed_all_four_dummies._You_can_now_move_on_to_the_next_room.
str_tutorial_1_msg_5 As_you_see,_there_is_an_archery_target_on_the_far_side_of_the_room._Your_next_task_is_to_use_your_bow_to_put_three_arrows_into_that_target._Press_and_hold_down_the_left_mouse_button_to_notch_an_arrow._You_can_then_fire_the_arrow_by_releasing_the_left_mouse_button._Note_the_targeting_reticule_in_the_centre_of_your_screen,_which_shows_you_the_accuracy_of_your_shot._In_order_to_achieve_optimal_accuracy,_let_fly_your_arrow_when_the_reticule_is_at_its_smallest._Try_to_shoot_the_target_now.
str_tutorial_1_msg_6 Well_done!_You've_learned_the_basics_of_moving_and_attacking._With_a_little_bit_of_practice_you_will_soon_master_them._In_the_second_tutorial_you_can_learn_more_advanced_combat_skills_and_face_armed_opponents._You_can_press_the_Tab_key_at_any_time_to_return_to_the_tutorial_menu.
str_tutorial_2_msg_1 This_tutorial_will_teach_you_how_to_defend_yourself_with_a_shield_and_how_to_battle_armed_opponents._For_the_moment_you_are_armed_with_nothing_but_a_shield._Your_task_is_not_to_attack,_but_to_successfully_protect_yourself_from_harm_with_your_shield._There_is_an_armed_opponent_waiting_for_you_in_the_next_room._He_will_try_his_best_to_knock_you_unconscious,_while_you_must_protect_yourself_with_your_shield_by_pressing_and_holding_the_right_mouse_button._Go_into_the_next_room_now_to_face_your_opponent._Remember_that_you_can_press_the_Tab_key_at_any_time_to_quit_this_tutorial_or_to_exit_any_other_area_in_the_game.
str_tutorial_2_msg_2 Press_and_hold_down_the_right_mouse_button_to_raise_your_shield._Try_to_remain_standing_for_thirty_seconds._You_have_{reg3}_seconds_to_go.
str_tutorial_2_msg_3 Well_done,_you've_succeeded_in_defending_against_an_armed_opponent._The_next_phase_of_this_tutorial_will_pit_you_and_your_shield_against_a_force_of_enemy_archers._Move_on_to_the_next_room_when_you're_ready_to_face_the_archers.
str_tutorial_2_msg_4 Defend_yourself_from_arrows_by_raising_your_shield_with_the_right_mouse_button._Try_to_remain_standing_for_thirty_seconds._You_have_{reg3}_seconds_to_go.
str_tutorial_2_msg_5 Excellent,_you've_put_up_a_succesful_defence_against_archers._There_is_a_reward_waiting_for_you_in_the_next_room.
str_tutorial_2_msg_6 In_the_default_configuration,_the_F_key_on_your_keyboard_is_used_for_non-violent_interaction_with_objects_and_humans_in_the_gameworld._To_pick_up_the_sword_on_the_altar,_look_at_it_and_press_F_when_you_see_the_word_'Equip'.
str_tutorial_2_msg_7 A_fine_weapon!_Now_you_can_use_it_to_deliver_a_bit_of_payback._Go_back_through_the_door_and_dispose_of_the_archers_you_faced_earlier.
str_tutorial_2_msg_8 Very_good._Your_last_task_before_finishing_this_tutorial_is_to_face_the_squire._Go_through_the_door_now_and_show_him_your_steel!
str_tutorial_2_msg_9 Congratulations!_You_have_now_learned_how_to_defend_yourself_with_a_shield_and_even_had_your_first_taste_of_combat_with_armed_opponents._Give_it_a_bit_more_practice_and_you'll_soon_be_a_renowned_swordsman._The_next_tutorial_covers_directional_defence,_which_is_one_of_the_most_important_elements_of_Mount&Blade_combat._You_can_press_the_Tab_key_at_any_time_to_return_to_the_tutorial_menu.
str_tutorial_3_msg_1 This_tutorial_is_intended_to_give_you_an_overview_of_parrying_and_defence_without_a_shield._Parrying_attacks_with_your_weapon_is_a_little_bit_more_difficult_than_blocking_them_with_a_shield._When_you_are_defending_with_a_weapon,_you_are_only_protected_from_one_direction,_the_direction_in_which_your_weapon_is_set._If_you_are_blocking_upwards,_you_will_parry_any_overhead_swings_coming_against_you,_but_you_will_not_stop_thrusts_or_attacks_to_your_sides._Either_of_these_attacks_would_still_be_able_to_hit_you._That's_why,_in_order_to_survive_without_a_shield,_you_must_learn_directional_defence._Go_pick_up_up_the_axe_now_to_begin_practice.
str_tutorial_3_msg_2 By_default,_the_direction_in_which_you_defend_(by_clicking_and_holding_your_right_mouse_button)_is_determined_by_the_attack_direction_of_your_closest_opponent._For_example,_if_your_opponent_is_readying_a_thrust_attack,_pressing_and_holding_the_right_mouse_button_will_parry_thrust_attacks,_but_not_side_or_overhead_attacks._You_must_watch_your_opponent_carefully_and_only_initiate_your_parry_AFTER_the_enemy_starts_to_attack._If_you_start_BEFORE_he_readies_an_attack,_you_may_parry_the_wrong_way_altogether!_Now_it's_time_for_you_to_move_on_to_the_next_room,_where_you'll_have_to_defend_yourself_against_an_armed_opponent._Your_task_is_to_defend_yourself_successfully_for_thirty_seconds_with_no_equipment_other_than_a_simple_axe._Your_axe's_attacks_are_disabled_for_this_tutorial,_so_don't_worry_about_attacking_and_focus_on_your_defence_instead._Move_on_to_the_next_room_when_you_are_ready_to_initiate_the_fight.
str_tutorial_3_msg_3 Press_and_hold_down_the_right_mouse_button_to_defend_yourself_with_your_axe_after_your_opponent_starts_his_attack._Try_to_remain_standing_for_thirty_seconds._You_have_{reg3}_seconds_to_go.
str_tutorial_3_msg_4 Well_done,_you've_succeeded_this_trial!_Now_you_will_be_pitted_against_a_more_challenging_opponent_that_will_make_things_more_difficult_for_you._Move_on_to_the_next_room_when_you're_ready_to_face_him.
str_tutorial_3_msg_5 Press_and_hold_down_the_right_mouse_button_to_defend_yourself_with_your_axe_after_your_opponent_starts_his_attack._Try_to_remain_standing_for_thirty_seconds._You_have_{reg3}_seconds_to_go.
str_tutorial_3_msg_6 Congratulations,_you_still_stand_despite_the_enemy's_best_efforts._The_time_has_now_come_to_attack_as_well_as_defend._Approach_the_door_and_press_the_F_key_when_you_see_the_word_'Go'.
str_tutorial_3_2_msg_1 Your_axe's_attacks_have_been_enabled_again._Your_first_opponent_is_waiting_in_the_next_room._Defeat_him_by_a_combination_of_attack_and_defence.
str_tutorial_3_2_msg_2 Defeat_your_opponent_with_your_axe.
str_tutorial_3_2_msg_3 Excellent._Now_the_only_thing_standing_in_your_way_is_one_last_opponent._He_is_in_the_next_room._Move_in_and_knock_him_down.
str_tutorial_3_2_msg_4 Defeat_your_opponent_with_your_axe.
str_tutorial_3_2_msg_5 Well_done!_In_this_tutorial_you_have_learned_how_to_fight_ably_without_a_shield._Train_hard_and_train_well,_and_no_one_shall_be_able_to_lay_a_stroke_on_you._In_the_next_tutorial_you_may_learn_horseback_riding_and_cavalry_combat._You_can_press_the_Tab_key_at_any_time_to_return_to_the_tutorial_menu.
str_tutorial_4_msg_1 Welcome_to_the_fourth_tutorial._In_this_sequence_you'll_learn_about_riding_a_horse/warg_and_how_to_perform_various_martial_exercises_on_horseback._We'll_start_by_getting_you_mounted_up._Approach_the_horse,_and_press_the_'F'_key_when_you_see_the_word_'Mount'.
str_tutorial_4_msg_2 While_on_horseback,_the_WASD_keys_control_your_horse's_movement,_not_your_own._Ride_your_horse_and_try_to_follow_the_flag_around_the_course._When_you_reach_the_flag,_it_will_move_to_the_next_waypoint_on_the_course_until_you_reach_the_finish.
str_tutorial_4_msg_3 Very_good._Next_we'll_cover_attacking_enemies_from_horseback._Approach_the_flag_now.
str_tutorial_4_msg_4 Draw_your_sword_(using_the_mouse_wheel)_and_destroy_the_four_targets._Try_hitting_the_dummies_as_you_pass_them_at_full_gallop_--_this_provides_an_extra_challenge,_but_the_additional_speed_added_to_your_blow_will_allow_you_to_do_more_damage._The_easiest_way_of_doing_this_is_by_pressing_and_holding_the_left_mouse_button_until_the_right_moment,_releasing_it_just_before_you_pass_the_target.
str_tutorial_4_msg_5 Excellent_work._Now_let_us_try_some_target_shooting_from_horseback._Go_near_the_flag_now.
str_tutorial_4_msg_6 Locate_the_archery_target_beside_the_riding_course_and_shoot_it_three_times_with_your_bow._Although_you_are_not_required_to_ride_while_shooting,_it's_recommended_that_you_try_to_hit_the_target_at_various_speeds_and_angles_to_get_a_feel_for_how_your_horse's_speed_and_course_affects_your_aim.
str_tutorial_4_msg_7 Congratulations,_you_have_finished_this_tutorial._You_can_press_the_Tab_key_at_any_time_to_return_to_the_tutorial_menu.
str_tutorial_5_msg_1 Welcome_to_the_fifth_and_final_tutorial,_which_gives_you_a_brief_overview_of_how_to_command_troops_in_battle,_one_of_the_most_important_aspects_in_Mount_&_Blade.^^The_first_command_menu_that_you_have_to_learn_are_movement_commands,_which_can_be_found_by_pressing_the_F1_key._Press_that_now_and_explore_the_many_movement_options_you_can_give_your_troops_in_battle.^^For_this_first_step,_command_your_troops_to_follow_you_and_move_up_the_hill_where_the_flag_and_pointer_is.
str_tutorial_5_msg_2 Excellent._Your_troops_have_followed_you_up_the_hill._Now_you_have_a_good_view_of_the_battlefield.^^This_time,_ask_your_troops_to_hold_this_hill_by_pressing_the_F1_command_menu_again,_and_selecting_Hold_this_Position_(F1).^^Once_you_have_done_that,_you_will_notice_your_troops_stop_following_you_and_hold_the_position_you_asked_them_to.^^This_is_a_good_time_to_learn_the_second_command_menu,_which_revolves_around_troop_basic_formations.^^This_menu_allows_you_to_command_your_troops_to_tighten_up_their_ranks,_to_hold_against_infantry_charges,_or_spread_apart_to_resist_archer_volleys.^^Commanding_your_troops_to_move_forward_or_backward_ten_paces_using_this_command_menu_allows_your_troops_to_move_while_keeping_their_formation.^^After_exploring_the_different_options,_keep_your_troops_holding_this_hill_and_move_alone_towards_the_opposite_hill,_where_the_flag_and_the_pointer_is.
str_tutorial_5_msg_3 Great._As_you_can_see,_your_infantry_is_holding_where_you_asked_them_to._Now,_move_towards_the_windmill_by_yourself.
str_tutorial_5_msg_4 Now_you_have_archers_join_your_command._In_Mount_&_Blade,_you_can_give_separate_commands_to_specific_divisions_of_troops_such_as_infantry,_archers,_and_cavalry.^^Pressing_the_number_keys_will_choose_the_division_of_your_choice_(1_for_Infantry,_2_for_Archers,_3_for_Cavalry)._You_can_then_use_the_command_menus_that_appear_to_command_the_specific_division.^^Note_that_the_choice_will_persist,_and_pressing_any_of_the_command_menus_(F1,_F2,_F3)_will_be_for_the_last_division_chosen._Read_the_messages_that_appear_on_your_screen_to_see_which_division_is_being_commanded.^^Now,_ask_your_Infantry_to_follow_you,_then_ask_your_Archers_to_follow_you_too._Once_they_are_all_together,_go_back_to_the_hill_you_came_from.^^Once_there,_look_for_the_pointer_and_command_your_infantry_to_move_and_hold_there_by_pressing_1,_then_holding_the_F1_key_to_reveal_a_banner._You_can_use_this_to_move_your_troops_in_a_precise_location_of_your_choice.^^Ask_your_archers_to_move_towards_the_flag_behind_the_pointer,_and_on_high_ground.
str_tutorial_5_msg_5 Your_men_are_in_position,_the_enemies_have_gathered_and_are_charging_towards_you._Use_what_you_learned_to_maneuver_your_infantry_forward_in_formation,_or_ask_them_to_charge._Charging_breaks_all_formations,_and_moves_your_troops_towards_the_nearest_enemies.^^You_can_also_keep_your_archers_above_ground_for_a_better_vantage_point,_or_also_ask_them_to_move_elsewhere.^^You_can_also_press_F3_to_reveal_the_third_command_menu_and_learn_about_the_different_weapon_orders_you_can_give_your_troops.
str_tutorial_5_msg_6 Excellent!_You_have_completed_your_first_field_battle_in_Mount_&_Blade._Intelligent_command_of_your_troops_in_battle_is_paramount_to_your_success_as_a_commander_in_battle._Make_sure_to_learn_the_different_how_to_move_your_troops_in_advantageous_positions.^^In_The_Last_Days_of_the_Third_Age,_there_are_complex_formations_for_more_advanced_maneouvers_such_as_Infantry_Shieldwall_and_Cavalry_Wedges._You_can_learn_more_about_it_in-game.^^You_can_press_TAB_anytime_to_leave_the_tutorial.
str_trainer_help_1 This_is_a_training_ground_where_you_can_learn_the_basics_of_the_game._Use_A,_S,_D,_W_keys_to_move_and_the_mouse_to_look_around.
str_trainer_help_2 To_speak_with_the_trainer,_go_near_him,_look_at_him_and_press_the_'F'_key_when_you_see_the_word_'Talk'_under_his_name._When_you_wish_to_leave_this_or_any_other_area_or_retreat_from_a_battle,_you_can_press_the_TAB_key.
str_custom_battle_1 Angbor_the_Fearless_and_his_Gondor_company_intercepted_a_Harad_reinforcement_group._Shouting_out_his_warcry,_he_spurs_his_horse_forward,_and_leads_his_loyal_men_to_a_fierce_battle.
str_custom_battle_2 Celeborn_from_Lorien_is_leading_a_patrol_of_horsemen_and_archers_when_a_forward_lookout_brings_a_warning_of_a_force_of_ash-faced_evil_men_approaching._It's_the_dreaded_Black_Numenoreans!_Those_were_not_seen_near_Lothlorien_for_ages,_but_now_they_must_be_driven_back_to_the_neverworld.
str_custom_battle_3 Lord_Grimbold_of_Rohan_is_leading_the_last_defence_of_the_walls_against_an_army_of_Isengard._Now,_as_the_besiegers_prepare_for_a_final_assault_on_the_walls,_he_must_hold_the_walls_with_courage_and_bright_steel.
str_custom_battle_4 When_the_scouts_inform_Lord_Beranhelm_of_the_approach_of_a_Rhun_war_band,_he_decides_to_quickly_prepare_the_defences_of_his_camp_and_try_to_hold_against_superior_numbers.
str_custom_battle_5 Ugluk_has_brought_his_fierce_orksies_into_the_west_with_the_promise_of_plunder._If_he_can_make_this_dwarf_stronghold_fall_to_him_today,_his_masters_in_Barad-Dur_will_be_mightily_pleased.
str_custom_battle_6 Ugluk_and_his_orc_raider_squad_were_as_keen_as_possible_in_escaping_Elven_patrols._But_one's_good_fortunes_may_not_last_forever,_and_it_seems_like_filthy_paleskins_will_have_their_share_now.
str_custom_battle_7 Cosairs_have_set_up_their_camp_on_the_shores_of_Gondor!_How_dare_they._Let_us_strike_them_before_they_get_reinforcements_and_drive_them_off_into_the_sea,_where_they_belong.
str_finished (Finished)
str_delivered_damage Delivered_{reg60}_damage.
str_archery_target_hit Distance:_{reg61}_yards._Score:_{reg60}
str_use_baggage_for_inventory Use_your_baggage_to_access_your_inventory_during_battle_(it's_at_your_starting_position).
str_cant_use_inventory_now Can't_access_inventory_now.
str_cant_use_inventory_arena Can't_access_inventory_in_the_arena.
str_cant_use_inventory_disguised Can't_access_inventory_while_you're_disguised.
str_cant_use_inventory_tutorial Can't_access_inventory_in_the_training_camp.
str_1_denar 1_Resource_Point.
str_reg1_denars {reg1}_Resource_Points.
str_january_reg1_reg2 T.A.{reg2},_Narvinyë_{reg1}_(Jan)
str_february_reg1_reg2 T.A.{reg2},_Nénimë_{reg1}_(Feb)
str_march_reg1_reg2 T.A.{reg2},_Súlìmë_{reg1}_(Mar)
str_april_reg1_reg2 T.A.{reg2},_Víressë_{reg1}_(Apr)
str_may_reg1_reg2 T.A.{reg2},_Lótessë_{reg1}_(May)
str_june_reg1_reg2 T.A.{reg2},_Náríë_{reg1}_(Jun)
str_july_reg1_reg2 T.A.{reg2},_Cermië_{reg1}_(Jul)
str_august_reg1_reg2 T.A.{reg2},_Urimë_{reg1}_(Aug)
str_september_reg1_reg2 T.A.{reg2},_Yavannië_{reg1}_(Sep)
str_october_reg1_reg2 T.A.{reg2},_Narquelië_{reg1}_(Oct)
str_november_reg1_reg2 T.A.{reg2},_Hísimë_{reg1}_(Nov)
str_december_reg1_reg2 T.A.{reg2},_Ringarë_{reg1}_(Dec)
str_calendar_spec_day_1 T.A.{reg2},_Yestarë_(First_Day)
str_calendar_spec_day_2 T.A.{reg2},_Tuilérë_(Spring_Day)
str_calendar_spec_day_3 T.A.{reg2},_Loëndë_(Midyear's_Day)
str_calendar_spec_day_4 T.A.{reg2},_Yáviérë_(Harvest_Day)
str_calendar_spec_day_5 T.A.{reg2},_Mettarë_(Last_Day)
str_town_nighttime _It_is_late_at_night.
str_door_locked The_door_is_locked.
str_castle_is_abondened The_castle_seems_to_be_unoccupied.
str_town_is_abondened The_town_has_no_garrison_defending_it.
str_place_is_occupied_by_player The_place_is_held_by_your_own_troops.
str_place_is_occupied_by_enemy The_place_is_held_by_hostile_troops.
str_place_is_occupied_by_friendly The_place_is_held_by_friendly_troops.
str_do_you_want_to_retreat Are_you_sure_you_want_to_retreat?
str_give_up_fight Give_up_the_fight?
str_do_you_wish_to_leave_tutorial Do_you_wish_to_leave_the_tutorial?
str_do_you_wish_to_surrender Do_you_wish_to_surrender?
str_can_not_retreat Can't_retreat,_there_are_enemies_nearby!
str_s1_joined_battle_enemy {s1}_has_joined_the_battle_on_the_enemy_side.
str_s1_joined_battle_friend {s1}_has_joined_the_battle_on_your_side.
str_entrance_to_town_forbidden The_town_guards_are_on_the_lookout_for_intruders_and_it_seems_that_you_won't_be_able_to_pass_through_the_gates_unchallenged.
str_sneaking_to_town_impossible The_town_guards_are_alarmed._You_wouldn't_be_able_to_sneak_through_that_gate_no_matter_how_well_you_disguised_yourself.
str_battle_won You_have_won_the_battle!
str_battle_lost You_have_lost_the_battle!
str_player_down You_have_been_knocked_out,_but_your_troops_fight_on!
str_attack_walls_success After_a_bloody_fight,_your_brave_soldiers_manage_to_claim_the_walls_from_the_enemy.
str_attack_walls_failure Your_soldiers_fall_in_waves_as_they_charge_the_walls,_and_the_few_who_remain_alive_soon_rout_and_run_away,_never_to_be_seen_again.
str_attack_walls_continue A_bloody_battle_ensues_and_both_sides_fight_with_equal_valour._Despite_the_efforts_of_your_troops,_the_castle_remains_in_enemy_hands.
str_order_attack_success Your_men_fight_bravely_and_defeat_the_enemy.
str_order_attack_failure You_watch_the_battle_in_despair_as_the_enemy_cuts_your_soldiers_down,_then_easily_drives_off_the_few_ragged_survivors.
str_order_attack_continue Despite_an_extended_skirmish,_your_troops_were_unable_to_win_a_decisive_victory.
str_join_order_attack_success Your_men_fight_well_alongside_your_allies,_sharing_in_the_glory_as_your_enemies_are_beaten.
str_join_order_attack_failure You_watch_the_battle_in_despair_as_the_enemy_cuts_your_soldiers_down,_then_easily_drives_off_the_few_ragged_survivors.
str_join_order_attack_continue Despite_an_extended_skirmish,_neither_your_troops_nor_your_allies_were_able_to_win_a_decisive_victory_over_the_enemy.
str_siege_defender_order_attack_success The_men_of_the_garrison_hold_their_walls_with_skill_and_courage,_breaking_the_enemy_assault_and_skillfully_turning_the_defeat_into_a_full-fledged_rout.
str_siege_defender_order_attack_failure The_assault_quickly_turns_into_a_bloodbath._Valiant_efforts_are_for_naught;_the_overmatched_garrison_cannot_hold_the_walls,_and_the_enemy_puts_every_last_defender_to_the_sword.
str_siege_defender_order_attack_continue Repeated,_bloody_attempts_on_the_walls_fail_to_gain_any_ground,_but_too_many_enemies_remain_for_the_defenders_to_claim_a_true_victory._The_siege_continues.
str_hero_taken_prisoner {s1}_of_{s3}_has_been_taken_prisoner_by_{s2}.
str_hero_freed {s1}_of_{s3}_has_been_freed_from_captivity_by_{s2}.
str_center_captured {s2}_have_taken_{s1}_from_{s3}!
str_troop_relation_increased Your_relation_with_{s1}_has_increased_from_{reg1}_to_{reg2}.
str_troop_relation_detoriated Your_relation_with_{s1}_has_deteriorated_from_{reg1}_to_{reg2}.
str_faction_relation_increased Your_relation_with_{s1}_has_increased_from_{reg1}_to_{reg2}.
str_faction_relation_detoriated Your_relation_with_{s1}_has_deteriorated_from_{reg1}_to_{reg2}.
str_party_gained_morale Your_party_gains_{reg1}_morale.
str_party_lost_morale Your_party_loses_{reg1}_morale.
str_qst_follow_spy_noticed_you The_spy_has_spotted_you!_He's_making_a_run_for_it!
str_father father
str_husband husband
str_wife wife
str_daughter daughter
str_mother mother
str_son son
str_brother brother
str_sister sister
str_he He
str_she She
str_s3s_s2 {s3}'s_{s2}
str_s5_is_s51 {s5}_is_{s51}.
str_s5_is_the_ruler_of_s51 {s5}_is_the_ruler_of_{s51}._
str_s5_is_a_nobleman_of_s6 {s5}_is_a_nobleman_of_{s6}._
str_relation_mnus_100 Vengeful
str_relation_mnus_90 Vengeful
str_relation_mnus_80 Vengeful
str_relation_mnus_70 Hateful
str_relation_mnus_60 Hateful
str_relation_mnus_50 _Hostile
str_relation_mnus_40 __Angry
str_relation_mnus_30 ____Resentful
str_relation_mnus_20 ______Grumbling
str_relation_mnus_10 ________Suspicious
str_relation_plus_0 _________Indifferent
str_relation_plus_10 __________Cooperative
str_relation_plus_20 ___________Welcoming
str_relation_plus_30 ____________Favorable
str_relation_plus_40 _____________Supportive
str_relation_plus_50 ______________Friendly
str_relation_plus_60 _______________Gracious
str_relation_plus_70 _________________Fond
str_relation_plus_80 __________________Loyal
str_relation_plus_90 ___________________Devoted
str_relation_mnus_100_ns {s60}_is_vengeful_towards_you.
str_relation_mnus_90_ns {s60}_is_vengeful_towards_you.
str_relation_mnus_80_ns {s60}_is_vengeful_towards_you.
str_relation_mnus_70_ns {s60}_is_hateful_towards_you.
str_relation_mnus_60_ns {s60}_is_hateful_towards_you.
str_relation_mnus_50_ns {s60}_is_hostile_towards_you.
str_relation_mnus_40_ns {s60}_is_angry_towards_you.
str_relation_mnus_30_ns {s60}_is_resentful_against_you.
str_relation_mnus_20_ns {s60}_is_grumbling_against_you.
str_relation_mnus_10_ns {s60}_is_suspicious_towards_you.
str_relation_plus_0_ns {s60}_is_indifferent_against_you.
str_relation_plus_10_ns {s60}_is_cooperative_towards_you.
str_relation_plus_20_ns {s60}_is_welcoming_towards_you.
str_relation_plus_30_ns {s60}_is_favorable_to_you.
str_relation_plus_40_ns {s60}_is_supportive_to_you.
str_relation_plus_50_ns {s60}_is_friendly_to_you.
str_relation_plus_60_ns {s60}_is_gracious_to_you.
str_relation_plus_70_ns {s60}_is_fond_of_you.
str_relation_plus_80_ns {s60}_is_loyal_to_you.
str_relation_plus_90_ns {s60}_is_devoted_to_you.
str_relation_reg1 _Relation:_{reg1}
str_center_relation_mnus_100 The_populace_hates_you_with_a_passion
str_center_relation_mnus_90 The_populace_hates_you_intensely
str_center_relation_mnus_80 The_populace_hates_you_strongly
str_center_relation_mnus_70 The_populace_hates_you
str_center_relation_mnus_60 The_populace_is_hateful_to_you
str_center_relation_mnus_50 The_populace_is_extremely_hostile_to_you
str_center_relation_mnus_40 The_populace_is_very_hostile_to_you
str_center_relation_mnus_30 The_populace_is_hostile_to_you
str_center_relation_mnus_20 The_populace_is_against_you
str_center_relation_mnus_10 The_populace_is_opposed_to_you
str_center_relation_plus_0 The_populace_is_indifferent_to_you
str_center_relation_plus_10 The_populace_is_acceptive_to_you
str_center_relation_plus_20 The_populace_is_cooperative_to_you
str_center_relation_plus_30 The_populace_is_somewhat_supportive_to_you
str_center_relation_plus_40 The_populace_is_supportive_to_you
str_center_relation_plus_50 The_populace_is_very_supportive_to_you
str_center_relation_plus_60 The_populace_is_loyal_to_you
str_center_relation_plus_70 The_populace_is_highly_loyal_to_you
str_center_relation_plus_80 The_populace_is_devoted_to_you
str_center_relation_plus_90 The_populace_is_fiercely_devoted_to_you
str_town_prosperity_0 The_poverty_of_the_town_of_{s60}_is_unbearable
str_town_prosperity_10 The_squalorous_town_of_{s60}_is_all_but_deserted.
str_town_prosperity_20 The_town_of_{s60}_looks_a_wretched,_desolate_place.
str_town_prosperity_30 The_town_of_{s60}_looks_poor_and_neglected.
str_town_prosperity_40 The_town_of_{s60}_appears_to_be_struggling.
str_town_prosperity_50 The_town_of_{s60}_seems_unremarkable.
str_town_prosperity_60 The_town_of_{s60}_seems_to_be_flourishing.
str_town_prosperity_70 The_prosperous_town_of_{s60}_is_bustling_with_activity.
str_town_prosperity_80 The_town_of_{s60}_looks_rich_and_well-maintained.
str_town_prosperity_90 The_town_of_{s60}_is_opulent_and_crowded_with_well-to-do_people.
str_town_prosperity_100 The_glittering_town_of_{s60}_openly_flaunts_its_great_wealth.
str_village_prosperity_0 The_poverty_of_the_village_of_{s60}_is_unbearable.
str_village_prosperity_10 The_village_of_{s60}_looks_wretchedly_poor_and_miserable.
str_village_prosperity_20 The_village_of_{s60}_looks_very_poor_and_desolate.
str_village_prosperity_30 The_village_of_{s60}_looks_poor_and_neglected.
str_village_prosperity_40 The_village_of_{s60}_appears_to_be_somewhat_poor_and_struggling.
str_village_prosperity_50 The_village_of_{s60}_seems_unremarkable.
str_village_prosperity_60 The_village_of_{s60}_seems_to_be_flourishing.
str_village_prosperity_70 The_village_of_{s60}_appears_to_be_thriving.
str_village_prosperity_80 The_village_of_{s60}_looks_rich_and_well-maintained.
str_village_prosperity_90 The_village_of_{s60}_looks_very_rich_and_prosperous.
str_village_prosperity_100 The_village_of_{s60},_surrounded_by_vast,_fertile_fields,_looks_immensely_rich.
str_war_report_minus_4 we_are_about_to_lose_the_war
str_war_report_minus_3 the_situation_looks_bleak
str_war_report_minus_2 things_aren't_going_too_well_for_us
str_war_report_minus_1 we_can_still_win_the_war_if_we_rally
str_war_report_0 we_are_evenly_matched_with_the_enemy
str_war_report_plus_1 we_have_a_fair_chance_of_winning_the_war
str_war_report_plus_2 things_are_going_quite_well
str_war_report_plus_3 we_should_have_no_difficulty_defeating_them
str_war_report_plus_4 we_are_about_to_win_the_war
str_persuasion_summary_very_bad You_try_your_best_to_persuade_{s50},_but_none_of_your_arguments_seem_to_come_out_right._Every_time_you_start_to_make_sense,_you_seem_to_say_something_entirely_wrong_that_puts_you_off_track._By_the_time_you_finish_speaking_you've_failed_to_form_a_single_coherent_point_in_your_own_favour,_and_you_realise_that_all_you've_done_was_dig_yourself_deeper_into_a_hole._Unsurprisingly,_{s50}_does_not_look_impressed.
str_persuasion_summary_bad You_try_to_persuade_{s50},_but_{reg51?she:he}_outmanoeuvres_you_from_the_very_start._Even_your_best_arguments_sound_hollow_to_your_own_ears._{s50},_likewise,_has_not_formed_a_very_high_opinion_of_what_you_had_to_say.
str_persuasion_summary_average {s50}_turns_out_to_be_a_skilled_speaker_with_a_keen_mind,_and_you_can't_seem_to_bring_forth_anything_concrete_that_{reg51?she:he}_cannot_counter_with_a_rational_point._In_the_end,_neither_of_you_manage_to_gain_any_ground_in_this_discussion.
str_persuasion_summary_good Through_quick_thinking_and_smooth_argumentation,_you_manage_to_state_your_case_well,_forcing_{s50}_to_concede_on_several_points._However,_{reg51?she:he}_still_expresses_doubts_about_your_request.
str_persuasion_summary_very_good You_deliver_an_impassioned_speech_that_echoes_through_all_listening_ears_like_poetry._The_world_itself_seems_to_quiet_down_in_order_to_hear_you_better_._The_inspiring_words_have_moved_{s50}_deeply,_and_{reg51?she:he}_looks_much_more_well-disposed_towards_helping_you.
str_name_1 Adanedhel
str_name_2 Ondoher
str_name_3 Aerandir
str_name_4 Agarwaen
str_name_5 Ailinel
str_name_6 Aldarion
str_name_7 Almarian
str_name_8 Amandil
str_name_9 Amlaith
str_name_10 Anardil
str_name_11 Anborn
str_name_12 Andróg
str_name_13 Angbor
str_name_14 Arador
str_name_15 Araglas
str_name_16 Arahael
str_name_17 Arantar
str_name_18 Arassuil
str_name_19 Alcarin
str_name_20 Belegund
str_name_21 Bereg
str_name_22 Bergil
str_name_23 Borthand
str_name_24 Ceorl
str_name_25 Ciryon
str_name_26 Damrod
str_name_27 Derufin
str_name_28 Dorlas
str_name_29 Duilin
str_name_30 Duinhir
str_name_31 Egalmoth
str_name_32 Emeldir
str_name_33 Eradan
str_name_34 Erellont
str_name_35 Erendis
str_name_36 Falathar
str_name_37 Fengel
str_name_38 Forweg
str_name_39 Frumgar
str_name_40 Fuinur
str_name_41 Galdor
str_name_42 Gethron
str_name_43 Gorlim
str_name_44 Grithnir
str_name_45 Gundor
str_name_46 Hador
str_name_47 Haldar
str_name_48 Hallacar
str_name_49 Hathol
str_name_50 Herion
str_name_51 Hild
str_name_52 Hunthor
str_name_53 Imlach
str_name_54 Ioreth
str_name_55 Ivorwen
str_name_56 Labadal
str_name_57 Larnach
str_name_58 Magor
str_name_59 Mairen
str_name_60 Malach
str_name_61 Malantur
str_name_62 Malvegil
str_name_63 Mardil
str_name_64 Meneldur
str_name_65 Minalcar
str_name_66 Minohtar
str_name_67 Ondoher
str_name_68 Orleg
str_name_69 Orodreth
str_name_70 Ostoher
str_name_71 Pelendur
str_name_72 Ragnor
str_name_73 Sador
str_name_74 Súrion
str_name_75 Thorongil
str_name_76 Turambar
str_name_77 Ulfast
str_name_78 Ulwarth
str_name_79 Valacar
str_name_80 Wulf
str_name_elf_1 Merlkir
str_name_elf_2 Romanoir
str_name_elf_3 Aegnor
str_name_elf_4 Amdír
str_name_elf_5 Amras
str_name_elf_6 Annael
str_name_elf_7 Aredhel
str_name_elf_8 Arminas
str_name_elf_9 Caranthir
str_name_elf_10 Curufin
str_name_elf_11 Daeron
str_name_elf_12 Eluchíl
str_name_elf_13 Edrahil
str_name_elf_14 Eluréd
str_name_elf_15 Erestor
str_name_elf_16 Faelivrin
str_name_elf_17 Finrod
str_name_elf_18 Felagund
str_name_elf_19 Galathil
str_name_elf_20 Galdor
str_name_elf_21 Gelmir
str_name_elf_22 Gildor
str_name_elf_23 Guilin
str_name_elf_24 Ithilbor
str_name_elf_25 Lindir
str_name_elf_26 Lómion
str_name_elf_27 Maedhros
str_name_elf_28 Maeglin
str_name_elf_29 Malgalad
str_name_elf_30 Nellas
str_name_elf_31 Nerdanel
str_name_elf_32 Nerwen
str_name_elf_33 Nimloth
str_name_elf_34 Orodreth
str_name_elf_35 Oropher
str_name_elf_36 Orophin
str_name_elf_37 Saeros
str_name_dwarf_1 Assistnik
str_name_dwarf_2 Vader
str_name_dwarf_3 Azaghâl
str_name_dwarf_4 Bifur
str_name_dwarf_5 Bofur
str_name_dwarf_6 Bombur
str_name_dwarf_7 Borin
str_name_dwarf_8 Dori
str_name_dwarf_9 Dwalin
str_name_dwarf_10 Farin
str_name_dwarf_11 Frár
str_name_dwarf_12 Frerin
str_name_dwarf_13 Frór
str_name_dwarf_14 Gamil
str_name_dwarf_15 Gróin
str_name_dwarf_16 Grór
str_name_dwarf_17 Ibun
str_name_dwarf_18 Khîm
str_name_dwarf_19 Lóni
str_name_dwarf_20 Mîm
str_name_dwarf_21 Nár
str_name_dwarf_22 Narvi
str_name_dwarf_23 Nori
str_name_dwarf_24 Óin
str_name_dwarf_25 Ori
str_name_dwarf_26 Telchar
str_name_dwarf_27 Marco
str_name_dwarf_28 Octo
str_name_orc_1 Triglav
str_name_orc_2 Adgulg
str_name_orc_3 Aghed
str_name_orc_4 Aguk
str_name_orc_5 Alog
str_name_orc_6 Azhug
str_name_orc_7 Bagdud
str_name_orc_8 Bargulg
str_name_orc_9 Bog
str_name_orc_10 Borug
str_name_orc_11 Bulgan
str_name_orc_12 Bumhug
str_name_orc_13 Carguk
str_name_orc_14 Dalthu
str_name_orc_15 Derthag
str_name_orc_16 Dregu
str_name_orc_17 Dugarod
str_name_orc_18 Ertguth
str_name_orc_19 Fandagh
str_name_orc_20 Farghed
str_name_orc_21 Fozhug
str_name_orc_22 Furbog
str_name_orc_23 Gholug
str_name_orc_24 Gnalurg
str_name_orc_25 Grug
str_name_orc_26 Haguk
str_name_orc_27 Hoknuk
str_name_orc_28 Igmut
str_name_orc_29 Jolagh
str_name_orc_30 Jukha
str_name_orc_31 Karguk
str_name_orc_32 Klog
str_name_orc_33 Krothu
str_name_orc_34 Kulgha
str_name_orc_35 Margulg
str_name_orc_36 Mazhug
str_name_orc_37 Naghat
str_name_orc_38 Nugbu
str_name_orc_39 Nurbag
str_name_orc_40 Oggha
str_name_orc_41 Olodagh
str_name_orc_42 Omogulg
str_name_orc_43 Opoguk
str_name_orc_44 Orgoth
str_name_orc_45 Perthag
str_name_orc_46 Pofhug
str_name_orc_47 Prutha
str_name_orc_48 Raguk
str_name_orc_49 Romarod
str_name_orc_50 Rugbu
str_name_orc_51 Sargulg
str_name_orc_52 Slog
str_name_orc_53 Suhgan
str_name_orc_54 Surgha
str_name_orc_55 Torug
str_name_orc_56 Turbag
str_name_orc_57 Urghat
str_name_orc_58 Varguk
str_name_orc_59 Zlog
str_name_orc_60 Zunuguk
str_surname_1 {s50}_of_Tarnost
str_surname_2 {s50}_of_Lossarnach
str_surname_3 {s50}_of_Erech
str_surname_4 {s50}_of_Edhellond
str_surname_5 {s50}_of_Pelargir
str_surname_6 {s50}_of_Linhir
str_surname_7 {s50}_of_Ethring
str_surname_8 {s50}_of_Aldburg
str_surname_9 {s50}_of_Isengard
str_surname_10 {s50}_of_Westfold
str_surname_11 {s50}_of_Erebor
str_surname_12 {s50}_of_Eastfold
str_surname_13 {s50}_of_Morannon
str_surname_14 {s50}_of_Cirith_Ungol
str_surname_15 {s50}_of_Osgiliath
str_surname_16 {s50}_of_Moria
str_surname_17 {s50}_of_Dale
str_surname_18 {s50}_of_Esgaroth
str_surname_19 {s50}_of_Dol_Guldur
str_surname_20 {s50}_of_Gundabad
str_surname_21 {s50}_the_Long
str_surname_22 {s50}_the_Gaunt
str_surname_23 {s50}_the_Nazgul
str_surname_24 {s50}_the_Sparrow
str_surname_25 {s50}_the_Cursed
str_surname_26 {s50}_the_Scarred
str_surname_27 {s50}_the_Fair
str_surname_28 {s50}_the_Grim
str_surname_29 {s50}_the_Red
str_surname_30 {s50}_the_Black
str_surname_31 {s50}_the_Tall
str_surname_32 {s50}_the_Star-Eyed
str_surname_33 {s50}_the_Fearless
str_surname_34 {s50}_the_Tree-biter
str_surname_35 {s50}_the_Cunning
str_surname_36 {s50}_the_Coward
str_surname_37 {s50}_the_Bright
str_surname_38 {s50}_the_Quick
str_surname_39 {s50}_the_Minstrel
str_surname_40 {s50}_the_Bold
str_surname_41 {s50}_the_Hot-Head
str_surnames_end {***}surnames_end
str_number_of_troops_killed_reg1 Number_of_troops_killed:_{reg1}
str_number_of_troops_wounded_reg1 Number_of_troops_wounded:_{reg1}
str_number_of_own_troops_killed_reg1 Number_of_friendly_troops_killed:_{reg1}
str_number_of_own_troops_wounded_reg1 Number_of_friendly_troops_wounded:_{reg1}
str_retreat Retreat!
str_siege_continues Fighting_Continues...
str_casualty_display Your_casualties:_{s10}^Enemy_casualties:_{s11}{s12}
str_casualty_display_hp ^You_were_wounded_for_{reg1}_hit_points.
str_quest_log_updated Quest_log_has_been_updated...
str_banner_selection_text You_have_been_awarded_the_right_to_carry_a_banner._Your_banner_will_signify_your_status_and_bring_you_honour._Which_banner_do_you_want_to_choose?
str_retirement_text_1 {***}Unused
str_retirement_text_2 {***}Unused
str_retirement_text_3 {***}Unused
str_retirement_text_4 {***}Unused
str_retirement_text_5 {***}Unused
str_retirement_text_6 {***}Unused
str_retirement_text_7 {***}Unused
str_retirement_text_8 {***}Unused
str_retirement_text_9 {***}Unused
str_retirement_text_10 {***}Unused
str_loot_village attack_innocent_villagers
str_steal_from_villagers steal_from_poor_villagers
str_rob_caravan rob_a_merchant_caravan
str_sell_slavery sell_people_into_slavery
str_men_hungry run_out_of_food
str_men_unpaid not_be_able_to_pay_the_men
str_excessive_casualties sacrifice_so_many_of_our_soldiers
str_surrender surrender_to_the_enemy
str_flee_battle run_from_battle
str_pay_bandits pay_off_common_bandits
str_fail_quest fail_a_quest_which_we_undertook_on_word_of_honour
str_squander_money squander_money_given_to_us_in_trust
str_murder_merchant involve_ourselves_in_cold-blooded_murder
str_round_up_serfs round_up_serfs_on_behalf_of_some_noble
str_battle_fate_1 We_were_separated_in_the_heat_of_battle
str_battle_fate_2 I_was_wounded_and_left_for_dead
str_battle_fate_3 I_was_knocked_senseless_by_the_enemy
str_battle_fate_4 I_was_taken_and_held_for_ransom
str_battle_fate_5 I_got_captured,_but_later_managed_to_escape
str_npc_morale_report I'm_{s6}_your_choice_of_companions,_{s7}_your_style_of_leadership,_and_{s8}_the_general_state_of_affairs
str_happy happy_about
str_content content_with
str_concerned concerned_about
str_not_happy not_at_all_happy_about
str_miserable downright_appalled_at
str_morale_reg1 _Morale:_{reg1}
str_bar_enthusiastic ___________________Enthusiastic
str_bar_content ______________Content
str_bar_weary __________Weary
str_bar_disgruntled _____Disgruntled
str_bar_miserable __Miserable
str_here_plus_space here_
str_npc1_intro Hail,_warrior,_and_welcome_to_Henneth_Annûn.
str_npc2_intro Hail,_visitor!_Might_I_ask_what_is_your_business_here?
str_npc3_intro Ho!_Keep_the_racket_down_if_you_please,_traveller.
str_npc4_intro Welcome_to_Meduseld,_warrior!
str_npc5_intro Hail_{playername}._Mae_govannen!
str_npc6_intro Leave_me_alone,_stranger,_I_do_not_wish_to_speak_to_you.
str_npc7_intro Kíli,_son_of_Dwalin,_at_your_service!
str_npc8_intro Welcome_to_Dale,_traveller!_How_can_I_help_you?
str_npc9_intro Ssh!_If_you_so_much_as_wave_to_the_guards,_I'll_slice_out_your_gizzard_and_feed_it_to_the_wargs!
str_npc10_intro You!
str_npc11_intro Ar!_You're_not_from_around_here_are_you?_I_can_smell_it,_an'_if_you_say_I_can't_in_front_of_the_Bosses_I'll_squeeze_your_eyes_out!
str_npc12_intro Oho!_What_are_you_doing,_lurking_up_here?
str_npc13_intro Hold_there!_What_brings_you_to_the_Chieftain's_tent?
str_npc14_intro You_have_the_walk_of_a_man_whose_legs_have_seen_too_few_days_at_sea,_stranger.
str_npc15_intro Praise_the_Eye,_oh_Warrior!
str_npc16_intro It_is_not_often_one_strange_to_my_eyes_walks_among_tents_of_the_eastern_lands._What_brings_you_here?_Speak_now_and_be_swift.
str_npc17_intro Hey._Fancy_them_woods_there?
str_npc1_intro_response_1 Hail,_Master_Tracker._How_fare_the_Rangers_of_the_South?
str_npc2_intro_response_1 My_business_is_Gondor's_business,_and_who_are_you?
str_npc3_intro_response_1 And_a_good_day_to_you_too,_is_there_something_amiss?
str_npc4_intro_response_1 Greetings,_my_Lady._With_whom_do_I_have_the_honour_to_speak?
str_npc5_intro_response_1 Hail_Elf-lord!_It's_a_great_honour_to_meet_you.
str_npc6_intro_response_1 Is_this_how_the_Silvan_Elves_greet_their_guests?
str_npc7_intro_response_1 {playername}_at_your_service._How_fare_the_Durin's_folk?
str_npc8_intro_response_1 Greetings._I_was_wondering_if_there_are_any_volunteers_here_to_join_us_in_our_travels.
str_npc9_intro_response_1 Hold_your_threats,_Uruk,_before_it_comes_to_blows_-_I_am_not_a_snitch.
str_npc10_intro_response_1 Who_are_you?
str_npc11_intro_response_1 Who_are_you?
str_npc12_intro_response_1 Who_are_you?
str_npc13_intro_response_1 Who_are_you?
str_npc14_intro_response_1 Who_are_you?
str_npc15_intro_response_1 Praise_the_Eye,_Snaga._What's_your_story?
str_npc16_intro_response_1 Who_are_you?
str_npc17_intro_response_1 Mirkwood_is_a_magnificent_forest._Who_are_you?_Do_you_know_much_about_the_woods?
str_npc1_intro_response_2 Never_mind,_I_fear_caves_do_not_make_a_pleasant_place_for_conversation.
str_npc2_intro_response_2 Never_mind,_I_don't_have_time_to_speak_to_guards.
str_npc3_intro_response_2 Never_mind,_I'll_make_'racket'_elsewhere.
str_npc4_intro_response_2 Excuse_me,_I_have_urgent_matters_elsewhere.
str_npc5_intro_response_2 Excuse_me,_I_have_less_important_people_to_talk_to.
str_npc6_intro_response_2 The_feeling_is_mutual._Goodbye.
str_npc7_intro_response_2 Never_mind,_I_need_some_fresh_air.
str_npc8_intro_response_2 Never_mind,_we_are_merely_sight-seeing.
str_npc9_intro_response_2 I'll_just_be_on_my_way_then,_or_my_sword_arm_will_start_to_itch.
str_npc10_intro_response_2 [Ignore_and_leave]
str_npc11_intro_response_2 Mind_your_business,_maggot!
str_npc12_intro_response_2 Mind_your_business,_maggot!
str_npc13_intro_response_2 Mind_your_business!
str_npc14_intro_response_2 Mind_your_business!
str_npc15_intro_response_2 Hmmf._Keep_your_little_claws_to_yourself,_Snaga.
str_npc16_intro_response_2 Mind_your_business!
str_npc17_intro_response_2 Yes,_the_woods_are_lovely,_but_I've_got_to_run_along_now.
str_npc1_backstory_a You_come_at_a_difficult_time,_friend._Ithilien_is_flooded_by_enemy_scouts_and_raiders,_and_some_had_seen_great_hosts_of_orcs_on_the_move._We_do_try_to_prevent_the_foul_creatures_from_crossing_the_great_river_and_I_have_led_a_group_of_skilled_Rangers_to_many_a_success._My_Captain_Faramir_is_bold_and_I_don't_despair_of_the_Shadow_hanging_over_us.
str_npc2_backstory_a Ah,_how_graceful_to_inquire_about_me._I_have_been_newly_assigned_as_a_guard_of_His_Stewardship's_hallways,_a_proud_duty,_if_I_may_say_so,_if_not_very_eventful.
str_npc3_backstory_a Well,_my_old_helmet_here_is_getting_smaller_by_the_minute_and_the_ground_seems_wobbly_as_if_I_rode_a_mischievous_foil._Ah,_if_I_only_hadn't_drank_all_that_ale_last_night_-_I_normally_have_a_good_head_for_drink,_so_it_must_have_been_some_nasty_orc_brew.
str_npc4_backstory_a My_name_is_Gálmynë,_and_I_made_it_my_business_to_know_yours,_{playername}._Let_me_explain_why.
str_npc5_backstory_a You_may_have_heard_tales_of_my_deeds_in_battles_past_and_forgotten_by_mortal_Men._In_the_fullness_of_time_this_War_is_yet_another_time_of_danger_for_the_Eldar,_but_it_will_be_the_Last_War.
str_npc6_backstory_a Excuse_my_brashness,_stranger,_but_we_don't_have_many_visitors_here_and_those_that_come_do_not_look_very_trustworthy._Only_a_week_ago,_this_dwarf_appeared_and..._Never_mind._My_name_is_Luevanna,_of_the_Silvan_Elves_of_Mirkwood.
str_npc7_backstory_a Polite_of_you_to_ask,_{playername}._We_are_fighting_off_incursions_from_Easterlings_and_Gundabad_orcs,_but_so_far_nothing_we_and_our_Dale_allies_can't_handle.
str_npc8_backstory_a I'm_sure_you_can_find_some_fine_volunteers_if_you_speak_to_the_quartermaster_in_the_barracks._As_for_me,_I'm_merely_a_healer_and_herbalist_of_modest_skills.
str_npc9_backstory_a Good_for_you!_They_call_me_Gulm._I_have_gutted_my_sergeant_and_his_snaga_s_now_hunt_for_me.^The_worthless_piglet_had_it_coming!_Once,_we_got_ambushed_by_a_strawheads_patrol..._and_he_lost_it._'Fall_back'_he_screams,_then_flees._Only_Gulm_and_a_few_others_stood_firm,_and_broke_their_horses_charge._Then_we_bludgeoned_the_yellow-haired_into_paste_(heh_heh_heh)._But_if_it_wasn't_for_us_strong_ones,_all_would_be_worm_food!
str_npc10_backstory_a I_am_Durgash!
str_npc11_backstory_a Nar!_Not_a_tracker,_that's_who._They_threw_me_out!_I_tell_you_they've_lost_their_heads,_that's_what_it_is._Curse_'em!_First_they_say_I_shoot_wild,_then_I_run_too_slow,_and_then_I_have_a_useless_snuffler._Garn!_If_they_don't_find_a_rabble_for_me_soon_I'll_be_for_the_Black_Pits,_if_what_I_hear_is_true._I'll_make_sure_some_of_those_Bosses_lose_their_skins_sooner_than_putting_me_in_there!
str_npc12_backstory_a I'm_in_command_of_a_band_of_lads_up_here._I'm_Gorbag_and_you'd_best_learn_quick_lubber_us_Uruks_are_the_real_bosses_'round_here._The_Big_Bosses_makes_slips,_'ay,_even_the_Biggest_can_make_mistakes,_and_always_the_poor_Uruks_to_put_slips_right,_and_small_thanks._They_don't_even_tell_us_all_they_know,_do_they?_Not_by_half._Grr!
str_npc13_backstory_a I?_I_am_a_grain_of_soil_from_southern_sands,_blown_north_by_cold_and_dark_night_winds._I_am_Lykyada,_a_Serpent_Lord_of_Haradwaith._Lord_of_the_Gold_Serpent,_bane_of_the_Black_Serpent_Tribe,_now_allied_to_serve_the_will_of_the_Dark_Lord.
str_npc14_backstory_a I_am_Fuldimir,_son_of_the_southern_realm_of_Umbar,_south_of_Harondor,_and_the_Bay_of_Belfalas,_for_both_are_home_to_my_heart_and_my_people._We_are_the_lords_of_sea_and_sail,_corsairs_to_some,_kin_of_the_Bay_of_Belfalas_for_her_waters_we_tame.
str_npc15_backstory_a I_am_Bolzog_the_Gifted,_Setter_of_Bones,_Closer_of_Cuts,_and_Shaman_of_Healing._If_you_go_to_war_for_The_Eye,_you_will_no_doubt_have_one_or_other_of_your_little_fellows_cut_about_a_bit_by_pale-faced_foresters_or_the_horse-lovers._Now,_-nar-nar-nar!_-_Orcs_are_easy_to_replace,_Oh_Great_Leader,_but_can_you_replace_a_Warg?_A_Giant?_A_Cave_Troll?_Shi-shi!_No!_You_need_me,_the_Great_Bolzog!
str_npc16_backstory_a Well_now,_it_is_the_stranger_who_should_declare_himself_first._Nevertheless,_I_am_Varfang_of_the_Balchoth_kin..._I_can_tell_that_you_have_not_yet_heard_the_songs_or_tales_of_my_land_that_speak_the_name_of_the_Balchoth,_for_the_very_name_would_check_your_courage_and_fill_your_heart_with_woe.
str_npc17_backstory_a They_call_me_Dímborn_and_I_work_in_the_woods._It_is_nice_there._I_like_the_woods._Many_trees_in_the_woods._I_like_trees._I've_worked_in_the_woods_all_my_life,_because_I_am_strong_and_because_I_like_trees.
str_npc1_backstory_b You_should_know_that_I_am_an_Ithilien_Ranger_of_Dúnedain_descent_and_valor._I_know_much_of_tracking_and_scouting_and_my_skill_with_bow_and_sword_is_known_to_the_orc._I_can_also_train_any_soul_that's_willing_to_fight_the_coming_Shadow.
str_npc2_backstory_b I_have_been_trained_as_a_Minas_Tirith_watchman,_to_keep_order_in_the_White_City_and_serve_my_lord_Steward.
str_npc3_backstory_b I_am_a_Rider_of_the_Westfold_éored_-_they_left_without_me_on_a_long_patrol_to_the_Isen_fords._I_know_their_conduct_will_be_worthy_of_the_green_banner,_but_I_fear_many_won't_return.
str_npc4_backstory_b I_was_born_into_a_noble_family_and_I_have_been_serving_Lady_Éowyn_as_a_maid_of_honour_ever_since_we_were_little_girls._Our_fathers_were_wise_enough_to_allow_us_to_train_alongside_our_brothers_in_matters_of_combat,_to_become_shieldmaidens_of_Rohan.
str_npc5_backstory_b Lord_Elrond_sent_me_as_an_emissary_to_Lord_Celeborn,_to_give_aid_and_advice_as_it's_needed_in_the_War_in_this_part_of_Rhovanion.
str_npc6_backstory_b I_like_to_walk_the_hidden_paths_in_our_beautiful_forest._Sometimes_I_move_quietly_through_the_trees_and_observe_the_habits_of_the_many_woodland_animals._The_song_of_a_rare_bird,_the_nesting_of_a_wild_boar_are_as_beautiful_to_me_as_the_clash_of_weapons_and_great_walls_are_to_the_Edain.
str_npc7_backstory_b I_helped_improve_the_Erebor_defenses_and_trained_some_younger_dwarven_folk,_under_the_direction_of_my_venerated_father_Dwalin,_as_is_our_custom.
str_npc8_backstory_b I_have_treated_my_King_Brand_for_constipation,_a_common_malaise_affecting_men_going_to_war._A_light_brew_of_wormwood,_and_both_the_bowels_and_the_mind_are_put_at_ease.
str_npc9_backstory_b So_I_said_to_myself,_'Gulm,_you_want_end_up_as_carrion?'_and_I_answered,_'No'.^Next_battle,_I_fell_back_pretending_I_was_injured._Then,_with_no_one_watching,_I_fell_upon_my_sergeant!_Cleaved_him_almost_in_half,_gharr!_Then_cut_his_sidekick_snaga_nicely^^...Turned_out_that_bloody_creeper_survived_somehow,_and_started_waggling_his_tongue_about_all_this._Next_time_I_make_sure_his_head_is_off,_gharr...
str_npc10_backstory_b I_am_a_Wolf_Rider_of_Isengard_and_a_tracker.
str_npc11_backstory_b Ar!_It's_only_'cause_my_nose_was_snotty._An'_what_good_is_it_wearing_my_nose_out_on_stones_anyhow?_Nar!_It_was_those_filthy_Uruks!_Those_cursed_peaching_sneakthiefs!_I_only_lost_the_scent_through_giving_way_to_them._They_messed_up_the_scent_back_there,_pinching_anything_they_found,_and_stomping_all_round_the_place_before_I_could_get_there.
str_npc12_backstory_b And_those_Nazgul_give_me_the_creeps._And_they_skin_the_body_off_you_as_soon_as_look_at_you,_and_leave_you_all_cold_in_the_dark_on_the_other_side._But_He_likes_'em;_they're_His_favourites_nowadays,_so_it's_no_use_grumbling._I_tell_you,_it's_no_game_serving_in_the_city._I'd_like_to_try_somewhere_where_there's_none_of_'em.
str_npc13_backstory_b I_saw_of_late_the_word_of_the_Dark_Lord_spread_among_my_kin,_and_in_their_hearts_and_minds_his_will_crept._Most_were_drawn_to_his_darkness,_and_in_place_of_their_courage_grew_an_insatiable_lust_for_slaughter_so_that_when_their_ears_heard_his_call_few_puppets_were_so_willing_to_answer.
str_npc14_backstory_b There_is_much_change_in_a_man_who_rides_the_tumult_of_the_winds_and_seas_of_the_Belfalas_waters,_and_those_yet_to_battle_her_will_are_but_children._For_stout_men_are_they_who_meet_her_tempest_and_ride_her_storm._I_have_laid_eyes_on_her_darkest_tide_and_yet_remain_her_master.
str_npc15_backstory_b Many_moons_ago,_when_I_was_just_a_fresh_little_thing,_my_Grandsire_led_the_tribe_down_into_the_mines,_where_the_dwarves_had_recently_died._A_Fire_Wraith_had_passed_through,_and_it_was_comfortable_and_warm._We_prospered,_but_every_so_often_some_cruel_adventurer,_or_Dwarf_hero,_would_come_and_kill_and_maim_us_in_our_peaceful_tunnels._My_hands_learned_to_close_the_wound_of_sword_or_axe,_and_my_mind_learned_to_see_the_outline_of_bone_and_sinew_below_any_hide._These_days,_I_can_work_a_potion_or_set_a_break_with_equal_skill.
str_npc16_backstory_b The_Balchoth_were_a_fierce_race_of_men_from_my_home_land,_slaughtered_by_these_westerlings_to_all_but_a_few_men._Chased_down_like_beasts_of_burden_as_food_for_their_blades._The_blood_spilt_by_those_blades_is_the_same_blood_that_flows_within_me,_for_within_me_their_house_continues.
str_npc17_backstory_b You_can_make_many_things_out_of_the_trees,_you_know._It's_what_I_do._I_work_with_trees_and_make_things_out_of_trees._Sometimes_bushes_also._But_I_like_trees_more.
str_npc1_backstory_c However,_I_fear_we_are_hopelessly_outnumbered_here_in_Ithilien_and_we_won't_last_long_without_reinforcements_or_bolder_action_by_our_Steward._I_might_as_well_help_where_my_actions_would_account_for_more,_if_my_Captain_Faramir_gives_me_leave.
str_npc2_backstory_c However_important_my_duty_here_is,_I'm_quite_anxious_to_see_real_combat_and..._elves_and_talking_trees_and_oliphaunts!_You_seem_well-travelled,_commander,_and_I_don't_mean_that_as_a_slight_on_your_appearance,_not_by_a_fathom._I_learn_quickly_and_can_cook..._well,_good_enough_for_soldiers_that_is._Am_I_not_mistaken_that_you_are_looking_for_volunteers?
str_npc3_backstory_c So,_here_I_am,_disgraced_and_bitter._My_éored_must_be_miles_away_now,_and_I_wouldn't_have_a_fair_chance_of_catching_up_with_them,_not_with_all_the_orcs_and_wildmen_roaming_the_plains._Are_you_by_any_chance_in_need_of_a_fine_Rohirrim_rider?
str_npc4_backstory_c You_might_know_that_women,_however_skilled,_are_not_allowed_to_ride_with_the_éoredas._However,_I_do_not_think_that_waiting_by_the_hearth_for_the_warriors_to_return_is_my_fate._I_will_not_sit_idle_until_all_chance_of_great_deeds_is_gone_in_this_War,_and_I_would_welcome_your_assistance,_warrior.
str_npc5_backstory_c However,_if_the_enemies_of_Lothlórien_are_on_the_run,_I_might_consider_joining_you_for_a_while,_{playername}._I_sense_our_fates_in_this_War_are_interwoven.
str_npc6_backstory_c You_wouldn't_understand_that,_I_think,_seeing_you_prepared_for_war._But_you_must_have_travelled_far_and_wide_-_have_you_seen_the_other_great_forests?_Can_you_take_me_there?
str_npc7_backstory_c There_is_a_lull_in_the_fighting_that_ill-suits_a_dwarven_warrior_of_my_ancestry_and_temperament._I_gather_you_get_to_see_much_more_action_in_your_travels_and_your_cause_is_friendly_with_the_dwarves?_I_know_a_fighting_dwarf_will_greatly_improve_your_chances_of_survival.
str_npc8_backstory_c I_hear_there_is_much_fighting_elsewhere_and_our_lands_are_gratefully_spared_for_now._From_the_scratches_on_your_armor_you_must_have_been_in_danger_many_times._Maybe_my_humble_skills_could_be_better_used_with_your_company,_for_the_greater_good_of_all.
str_npc9_backstory_c I_am_a_fighting_Uruk-hai,_and_a_berserker!_What_there_is_to_know_of_killing_men,_I_know_it._I_was_in_the_service_of_the_White_Hand,_but_now_the_Hand_would_as_likely_throw_me_into_the_fire-pits.^^I_would_come_with_you_and_hunt_men_in_the_south,_while_the_snagas_of_Isengard_gnash_their_teeth.
str_npc10_backstory_c Maybe_you_can_be_my_next_master.
str_npc11_backstory_c All_right,_all_right!_My_nose_isn't_much_use._I_reckon_my_eyes_are_better_than_my_nose._Ai!_But_my_nose_is_only_no_good_cause_it_don't_know_what_nothing_smells_like._It_don't_even_know_what_it's_looking_for,_I_tell_you._Ar!_I_just_need_to_go_lopin'_off_and_start_sniffing_places.
str_npc12_backstory_c Eh,_if_I_get_a_chance,_I'll_slip_off_and_set_up_somewhere_on_my_own_with_a_few_trusty_lads,_somewhere_there's_good_loot_nice_and_handy,_and_no_big_bosses._I'd_like_to_try_somewhere_where_there's_none_of_'em,_like_old_times.
str_npc13_backstory_c I_followed_my_kin_north,_and_heeded_his_dark_call,_to_fulfill_the_duty_I_have_to_my_people._But_in_them_I_see_his_darkness_dwell_and_I_seek_to_do_my_part_in_this_war_elsewhere,_until_the_sands_of_my_time_no_longer_fall._Even_now_I_feel_them_begin_to_trickle_where_before_there_was_a_cascade.
str_npc14_backstory_c But_there_comes_yet_the_darkest_tide,_a_black_tide_of_shadow,_which_will_rise_over_these_lands_such_as_which_no_mortal_eyes_will_have_seen._This_is_the_tide_I_seek_to_master,_but_I_am_without_a_crew_hardy_enough_to_ride_this_storm.
str_npc15_backstory_c After_many_winters_I_came_up_out_of_the_tunnels,_and_looked_about_in_the_Dark_Forests_for_a_good_place_to_live_and_practice_my_arts._I_was_doing_fine,_until_some_big_ugly_bastards_with_white_tattoos_–_eugh!_White!_Like_an_elf_face!_–_big_bastards,_they_were._They_fired_my_little_place_in_the_Forest,_and_I_had_to_hide_in_the_caves_again..._In_here..._Say,_have_you_anything_to_eat?_Maybe_a_nice_horse?
str_npc16_backstory_c That_was_many_lives_of_men_ago,_a_different_time,_but_the_time_for_grief_and_tales_are_over._The_time_for_my_people's_retribution_has_come_and_I_will_carve_my_people's_vengeance_on_the_face_of_these_western_lands._By_my_hand,_their_homes_will_waste_and_wither_until_their_clan_is_no_more!
str_npc17_backstory_c If_you're_going_into_the_forest,_maybe_I_come_along_and_tell_you_about_the_trees_there?_Many_very_interesting_trees_there,_you_know.
str_npc1_backstory_later I_have_been_leading_scouting_parties_to_the_south,_as_far_as_Emyn_Arnen._There_is_much_Enemy_activity_and_many_an_orc_fell_to_our_ambush._Alas,_that's_only_so_many_orc_heads_rolling_down_the_gullies,_we_saw_a_myriad_of_foul_creatures_on_the_march._I_fear_for_my_Ithilien_and_the_fate_of_Gondor.
str_npc2_backstory_later We've_had_a_few_visitors_lately,_and_there_are_fewer_to_come._I_reckon_that_doesn't_bode_well.
str_npc3_backstory_later Still_no_news_of_my_éored,_and_I'm_keen_on_riding_down_some_orcs.
str_npc4_backstory_later More_riders_return_with_their_bodies_broken,_and_I_try_to_give_aid_where_I_can._But_I_still_feel_trapped_in_a_cage.
str_npc5_backstory_later Have_you_reconsidered?_The_time_for_the_Eldar_grows_short.
str_npc6_backstory_later I've_been_observing_a_nest_of_giant_spiders_for_a_couple_of_days._Ugly_creatures,_they_seem_at_first,_but_they_keep_intruders_at_bay._Did_you_come_to_ask_me_to_travel_with_you?
str_npc7_backstory_later Building_up_defensive_walls_is_worthy_of_any_dwarf._But_I_need_to_use_my_axe_too._Soon._Let_me_come_with_you.
str_npc8_backstory_later I_made_another_call_to_our_King,_this_time_for_vomiting._I_hope_his_resolve_to_engage_the_enemy_is_not_related_to_his_conditions._Do_you_suffer_from_constipation_and_vomiting_too?
str_npc9_backstory_later What_do_you_think_I_do?_Gulm_is_sitting_here_and_waiting_for_some_sneaky_snaga_to_stick_him_in_the_dark._Take_me_with_you_-_I_will_serve_well.
str_npc10_backstory_later Have_you_reconsidered?_I_will_serve_well.
str_npc11_backstory_later Ar!_It_was_you!_I_smelt_you,_I_knew_you_were_coming._Tell_the_Bosses_that,_will_ya?_They_think_since_I_was_kicked_out_of_the_trackers_that_it's_safe_to_flout_me,_well_they're_mistaken,_I'll_put_an_arrow_in_their_guts_first._And_whose_blames_was_that?_Not_mine!
str_npc12_backstory_later I_have_my_orders._Any_trespasser_found_by_my_lads_up_here_are_to_be_stripped;_teeth,_nails,_hair_and_all._But_I've_got_my_watchers._We_know_there_are_funny_things_going_on:_with_the_big_bosses_going_off_to_war,_and_all_that._Big_things_going_on_away_west,_they_say._Sitting_here_doin'_nothing_is_more_than_my_belly's_worth.
str_npc13_backstory_later My_role_here_goes_well_for_the_dark_cause,_and_once_more_the_Northerners_fear_the_south._I_see_great_victories_ahead,_and_rivers_of_blood_left_in_our_wake._But_with_each_victory_I_see_my_kin_corrupted,_their_hearts_twisted_to_his_evil_will._The_sight_of_it_leads_me_to_despair.
str_npc14_backstory_later You_have_returned_stranger,_it_is_perhaps_an_omen._I_have_been_reading_the_waters,_and_I_have_seen_them_darken._The_sea_changes_the_eyes_of_a_man,_and_teaches_him_to_use_his_eyes_to_listen_to_her_language.
str_npc15_backstory_later Many_have_been_the_great_ones_who_have_begged_to_be_healed_by_my_potions.___Horselovers_and_the_pale-faced_elves_are_many_though,_and_I_have_had_to_abandon_my_hut_once_more,_and_am..._well,_Great_Lord,_I_am_not_so_lucky_as_when_we_fought_together,_and_you_were_grateful_for_my_skills...
str_npc16_backstory_later Long_does_the_history_of_my_people_recount_these_lands._I_know_not_what_their_treacherous_histories_say_of_days_when_my_people_before_entered_this_land,_but_sad_and_dark_will_their_histories_be_as_my_people_enter_it_now._Like_a_storm_of_hooves_and_swords_and_arrows,_we_will_bring_them_doom_like_the_Balchoth_before_us.
str_npc17_backstory_later I've_seen_a_very_old_pine_the_other_day._Pines_can_get_very_old._You_have_to_respect_old_trees._But_I've_also_seen_some_that_don't_respect_trees_at_all._You_respect_trees,_don't_you?
str_npc1_backstory_response_1 If_you_can_get_leave,_I_have_much_need_of_an_experienced_warrior_and_a_tracker.
str_npc2_backstory_response_1 You_are_correct,_I_am_looking_for_volunteers.
str_npc3_backstory_response_1 If_you_can_do_without_ale,_I_would_welcome_a_good_horseman.
str_npc4_backstory_response_1 I_would_welcome_the_help_of_a_Rohan_shieldmaiden,_if_offered.
str_npc5_backstory_response_1 It_may_be_presumptuous_of_me_to_ask,_but_my_company_could_use_your_skill_in_the_coming_battles.
str_npc6_backstory_response_1 We_travel_the_world,_but_to_defend_all_that_is_fair,_we_give_battle_to_the_enemy.
str_npc7_backstory_response_1 Indeed,_a_dwarven_warrior_would_be_welcome_in_my_company.
str_npc8_backstory_response_1 We_can_use_a_healer_and_a_herbalist.
str_npc9_backstory_response_1 I_reckon_we_could_put_a_berserker_to_a_good_use.
str_npc10_backstory_response_1 You_will_do.
str_npc11_backstory_response_1 How_'bout_loping_off_with_me?
str_npc12_backstory_response_1 How_'bout_slippin'_off_with_me.
str_npc13_backstory_response_1 How_about_following_me?
str_npc14_backstory_response_1 How_about_joining_me?
str_npc15_backstory_response_1 Aha..._A_healer,_heh?_And_you_are_good_at_it,_you_say?_I_could_use_someone_like_you.
str_npc16_backstory_response_1 What_are_you_doing_here?
str_npc17_backstory_response_1 Well,_one_can_always_learn_more_about_trees._We'd_be_glad_to_have_you_along.
str_npc1_backstory_response_2 I_am_sorry_to_hear_that._May_your_faith_sustain_your_valor.
str_npc2_backstory_response_2 No,_sorry._I'm_looking_for_seasoned_warriors.
str_npc3_backstory_response_2 No,_sorry._I'm_looking_for_someone_more_reliable.
str_npc4_backstory_response_2 I_am_sorry,_my_Lady,_there's_nothing_I_can_do.
str_npc5_backstory_response_2 I'll_be_back_when_Lothlórien_is_in_less_danger.
str_npc6_backstory_response_2 No,_sorry._We_cannot_take_hangers-on.
str_npc7_backstory_response_2 No,_sorry._We_do_well_on_our_own.
str_npc8_backstory_response_2 No,_sorry._We_only_visit_healers_when_we_need_them.
str_npc9_backstory_response_2 Bah._I_don't_trust_traitors.
str_npc10_backstory_response_2 I_don't_need_you,_slave.
str_npc11_backstory_response_2 I_don't_want_to_hear_your_skulking.
str_npc12_backstory_response_2 The_Big_Bosses_know_best._You_better_follow_orders.
str_npc13_backstory_response_2 That_is_your_fate_to_suffer.
str_npc14_backstory_response_2 I've_had_enough_of_this.
str_npc15_backstory_response_2 Bah!_I_need_fighters,_not_skulkers.
str_npc16_backstory_response_2 I've_had_enough_of_this.
str_npc17_backstory_response_2 No,_I'm_sorry._We're_off_to_war,_not_to_a_botanical_journey.
str_npc1_signup I_am_sure_Captain_Faramir_would_understand_there_are_others_who_can_keep_the_Enemy_at_bay_with_even_more_valor_and_courage.
str_npc2_signup Oh,_a_happy_day!_I_would_be_glad_to_join_your_company.
str_npc3_signup Trust_me,_commander,_all_the_ale_I_need_is_the_sweet_drink_of_victory._If_you_can_lead_me_against_the_enemy,_they_will_soon_feel_the_business_end_of_a_Rohirrim_spear!
str_npc4_signup It_is_gladly_offered,_and_you_can_welcome_me_to_your_company,_commander.
str_npc5_signup I_see._I_admit_I_have_heard_of_you_and_your_exploits.
str_npc6_signup I_dislike_violence_and_weapons_of_war,_but_I_know_how_to_defend_myself_in_a_hurry.
str_npc7_signup I_am_skilled_with_an_axe,_both_the_wielding_and_the_throwing_type._I_can_also_keep_your_bills_low_if_you_let_me_talk_to_the_merchants._And_I_have_an_eye_for_finding_the_best_pieces_of_loot_from_fallen_enemies_on_the_battlefield.
str_npc8_signup Indeed?_Well_then,_I_merely_need_to_gather_my_herbs_and_recipees.
str_npc9_signup A_fighting_Uruk_is_worth_more_than_all_your_snagas._A_fighting_Uruk_never_runs_from_battle.
str_npc10_signup Really?_You_would_do_well_to_enlist_me.
str_npc11_signup Follow_your_mob_Ai?_Ar!_I_hear_about_all_these_goings-ons_out_west,_raids_and_all,_and_hundreds_of_our_lads_done_in._I'll_come_and_have_a_look_with_you_all_the_same,_and_see_what_you're_up_to.
str_npc12_signup Follow_your_rabble,_'ay?_I_may_'ave_struck_a_bit_of_luck_at_last._I_give_a_good_rumble,_I_reckon,_and_my_whip_is_vigilant._It's_tasted_its_fair_share_of_my_lads'_orc_hide.
str_npc13_signup I_may_follow_you_if_you_will_have_me._My_legs_make_good_heading_of_a_horse_between_them_and_my_hands_know_well_the_feel_of_blades_of_the_crescent_moon._My_fingers_can_make_fall_arrows_like_the_plight_of_stars_upon_our_enemy,_be_it_on_horse_or_feet,_though_how_I_fight_will_be_at_your_command.
str_npc14_signup Perhaps,_know_though_that_I_am_no_thief_or_brigand._I_will_not_steal,_nor_take_that_which_other_lives_may_find_needed.
str_npc15_signup Heh-heh._You_are_right!_Yeesss!_You_are_wise,_Great_Captain.
str_npc16_signup I_wait_for_orders,_with_every_second_passing_darkening_my_heart._I_can_no_longer_stand_to_wait_for_the_plans_of_far_away_lords_and_captains_so_unseen_their_existence_is_believed_more_in_legend_than_in_flesh._Lords_whose_whispered_orders_are_brought_forth_and_shouted_by_lesser_men._I_wait,_and_with_me,_my_people's_vengeance_waits_also.
str_npc17_signup Very_good!_I_know_many_trees._Soon_you_will_know_many_trees_too._Like_me._Because_I_know_many_trees.
str_npc1_signup_2 It_would_take_a_moment_to_talk_to_my_Captain_and_gather_my_things.
str_npc2_signup_2 I'll_need_to_talk_to_my_Sergeant_first_and_then_off_we_go_-_there_are_glorious_battles_to_be_fought_and_all_manners_of_strange_creatures_to_see!
str_npc3_signup_2 I've_been_waiting_for_someone_to_take_me_on,_so_I_only_need_to_saddle_up_my_horse_and_we_are_ready_to_ride.
str_npc4_signup_2 I_have_hunted_game_many_times_with_bows_and_throwing_spears._I_will_hunt_orc_under_your_command._And_I_have_some_skill_in_healing_I'm_certain_will_be_needed.
str_npc5_signup_2 Perhaps_by_joining_your_company_and_striking_hard_where_I_am_not_expected,_the_Enemy_will_be_unbalanced._I_will_come.
str_npc6_signup_2 Perhaps_I_can_teach_you_to_move_faster_and_make_less_noise._Let's_go.
str_npc7_signup_2 If_you_can_keep_the_tall-folk_in_your_company_in_line,_especially_the_sneaky_Elves,_I'll_gladly_join_you.
str_npc8_signup_2 I_must_warn_you_though,_I_am_fairly_useless_in_battle._But_I'm_sure_you_are_able_to_keep_a_woman_of_my_age_safe.
str_npc9_signup_2 But_you_must_decide_quickly,_the_guards_here_are_getting_suspicious.
str_npc10_signup_2 You_won't_regret_taking_me_on.
str_npc11_signup_2 Lots_of_stuff_out_there_for_my_nose_to_smell_too,_and_my_knife_to_taste._They_don't_know_too_much_now_but_they're_quick_learners_alright._What_d'you_say?
str_npc12_signup_2 I'll_show_your_slugs_where_there's_a_whip_there's_a_will_and_give_'em_as_much_lash_as_their_skins_will_carry._If_your_lads_take_it_well_it_should_put_'em_in_a_good_trot._What_d'you_say?
str_npc13_signup_2 Know,_though,_that_my_loyalty_lie_always_with_my_kin._I_have_fought_this_far_and_lost_too_much_for_them._I_will_not_turn_my_back_on_them_for_their_fate_will_be_my_own.
str_npc14_signup_2 It_is_just_fortunate_that_those_no_longer_of_this_world_find_no_need_of_this_world's_treasures_and_I_am_fortunate_to_be_skilled_in_ways_that_I_may_assist_in_relieving_the_worldly_needs_of_the_owners_of_those_treasures.
str_npc15_signup_2 Oh,_this_is_a_great_moment_for_Bolzog_The_Gifted,_and_for_you,_Great_Lord!_We_shall_conquer_together,_you,_indestructible_with_my_healing_touch,_and_I,_the_Great_Orc_Sage_who_shall_support_you!
str_npc16_signup_2 I_fear_that_I_will_not_wait_any_longer._I_intend_on_joining_the_next_party_to_leave_camp,_with_my_Chieftain's_approval_or_not._I_fear_the_war_will_be_over_long_ere_I_leave_to_join_it.
str_npc17_signup_2 I'll_just_get_some_of_my_tools,_and_we_can_be_off._There_is_this_oak_just_down_the_road_I_must_show_you!
str_npc1_signup_response_1 I_could_use_a_skilled_ranger,_you_are_welcome_to_join.
str_npc2_signup_response_1 Very_well._We_could_use_some_cheer_in_these_dark_times.
str_npc3_signup_response_1 Very_well._Saddle_up_-_we_shall_be_leaving_shortly.
str_npc4_signup_response_1 Impressive._We_are_ready_to_leave,_whenever_you_are,_my_Lady.
str_npc5_signup_response_1 We_will_be_honoured_to_have_the_company_of_an_Elf-lord.
str_npc6_signup_response_1 Very_well._I_hope_you_won't_run_away_from_the_first_orc_we_see.
str_npc7_signup_response_1 Very_well,_Master_Dwarf,_you_are_welcome_to_join_us.
str_npc8_signup_response_1 You_will_be_safe_with_us,_I_promise._We_will_be_leaving_shortly.
str_npc9_signup_response_1 Very_good._Do_as_you_are_told,_and_I'll_feed_you_well.
str_npc10_signup_response_1 Very_well._Let's_go.
str_npc11_signup_response_1 Very_well._Let's_go.
str_npc12_signup_response_1 I_reckon_we_could_put_you_to_good_use.
str_npc13_signup_response_1 I_reckon_we_could_put_you_to_good_use.
str_npc14_signup_response_1 Very_well._Let's_go.
str_npc15_signup_response_1 Hmmm._I_admire_your..._confidence._Get_your_gear_together.
str_npc16_signup_response_1 How_about_following_me?
str_npc17_signup_response_1 Great!_I_hope_you_won't_talk_of_trees_all_the_time_though.
str_npc1_signup_response_2 I_have_no_need_of_your_company_at_the_moment,_good_luck_to_you.
str_npc2_signup_response_2 Sorry,_I've_changed_my_mind.
str_npc3_signup_response_2 Sorry,_I've_changed_my_mind_-_maybe_next_time.
str_npc4_signup_response_2 I_apologize,_my_Lady,_perhaps_another_time.
str_npc5_signup_response_2 On_second_thought,_maybe_we_need_to_help_Lothlórien_on_our_own.
str_npc6_signup_response_2 Sorry,_I_just_can't_imagine_you_on_a_battlefield.
str_npc7_signup_response_2 Sorry,_I_happen_to_like_Elves.
str_npc8_signup_response_2 I'm_sorry,_everyone_fights_in_my_company.
str_npc9_signup_response_2 I've_changed_my_mind._Whoever_is_looking_for_you_might_come_for_me_next.
str_npc10_signup_response_2 I've_changed_my_mind.
str_npc11_signup_response_2 I_don't_need_you,_slave.
str_npc12_signup_response_2 I've_changed_my_mind.
str_npc13_signup_response_2 I've_changed_my_mind.
str_npc14_signup_response_2 I've_changed_my_mind.
str_npc15_signup_response_2 Actually,_I_think_I'll_look_for_a_real_healer_and_not_a_braggart.
str_npc16_signup_response_2 I've_had_enough_of_this.
str_npc17_signup_response_2 On_the_other_hand,_I_think_I've_changed_my_mind._You're_a_bit_of_a_nut,_aren't_you?
str_npc1_payment I_would_join_you,_but_my_Captain_Faramir_would_miss_my_presence_here._[costs_{reg14}_Influence_with_{s14}]
str_npc2_payment The_guard_Sergeant_would_not_let_me_go,_I'm_afraid._[costs_{reg14}_Influence_with_{s14}]
str_npc3_payment Ahem,_it_seems_that_I_have_ran_up_quite_a_tab_in_the_fine_tavern_here,_so_I'll_need_to_settle_my_account_before_I_can_leave._[costs_{reg14}_Influence_with_{s14}]
str_npc4_payment I_would_join_you,_but_who_will_care_for_the_wounded_if_the_city_is_attacked?_[costs_{reg14}_Influence_with_{s14}]
str_npc5_payment We_should_be_off_soon._The_value_of_my_coming_will_be_diminished_if_the_Enemy_senses_my_presence_before_we_have_struck._But_Lothlórien_also_needs_me_here._[costs_{reg14}_Influence_with_{s14}]
str_npc6_payment I_would_join_you,_but_my_duty_is_here._[costs_{reg14}_Influence_with_{s14}]
str_npc7_payment I_would_join_you,_but_I'm_afraid_my_honorable_father_Dwalin_will_not_understand_why_I_left_the_town_in_a_time_of_need._[costs_{reg14}_Influence_with_{s14}]
str_npc8_payment I_cannot_abandon_my_duties_here,_my_King_still_needs_me._I'm_too_concerned_for_his_health._[costs_{reg14}_Influence_with_{s14}]
str_npc9_payment I_want_to_leave_with_you,_but_the_guards_at_the_gate_won't_let_me.^Trust_me,_I've_tried._[costs_{reg14}_Influence_with_{s14}]
str_npc10_payment I_would_join_you,_but_my_duty_is_here._[costs_{reg14}_Influence_with_{s14}]
str_npc11_payment I_just_need_someone_to_do_in_the_Boss._We_could_wait_till_he_closes_his_eyes_to_lop_off,_but_I_reckon_someone_really_high_up_can_force_his_eyes_shut._Ai!_[costs_{reg14}_Influence_with_{s14}]
str_npc12_payment Hai!_Yoi!_I'll_need_to_remind_the_boys_to_keep_their_mangy_gobs_shut_or_the_High_Ups_will_get_my_number_and_'ave_it_out_for_me,_they_will._[costs_{reg14}_Influence_with_{s14}]
str_npc13_payment Alas_the_Chieftains_here_will_not_to_allow_my_leave._Are_you_able_to_convince_them_otherwise?_[costs_{reg14}_Influence_with_{s14}]
str_npc14_payment The_captain_of_the_Haven_will_require_much_persuasion_for_my_leave._Convince_him_and_we_shall_set_sail_through_this_storm._[costs_{reg14}_Influence_with_{s14}]
str_npc15_payment Ah,_yes._Noble_Warrior-Lord!_One_small_impediment_is_there!_A_great_injustice_befell_me,_that_the_master_of_this_cave_did_not_like_my_offer_of_healing,_and_has_stolen_all_my_gear!_The_cheek!_To_steal_from_the_Great_Bolzog!_Master,_I_can't_recover_my_priceless_equipment_from_his_filthy_claws!_[costs_{reg14}_Influence_with_{s14}]
str_npc16_payment I_will_not_follow_you,_I_will_go_my_own_path;_but_your_path_may_go_along_with_mine_for_a_while._Though,_before_I_travel_these_lands_I_must_first_pay_tribute_to_those_who_died_trying_before_us._Show_them_your_tribute_and_we_may_make_our_leave._We_must_never_forget_our_ancestors._They_have_not_forgotten_us._[costs_{reg14}_Influence_with_{s14}]
str_npc17_payment I_like_trees,_but_my_old_uncle_needs_me_here._[costs_{reg14}_Influence_with_{s14}]
str_npc1_payment_response Don't_worry,_I'll_arrange_your_leave_with_him._[costs_{reg14}/{reg15}_Influence]
str_npc2_payment_response Don't_worry,_I'll_talk_with_your_Sergeant._[costs_{reg14}/{reg15}_Influence]
str_npc3_payment_response This_better_be_worth_it._I'll_settle_with_the_barkeep._[costs_{reg14}/{reg15}_Influence]
str_npc4_payment_response It's_a_noble_cause,_but_I'm_sure_a_replacement_can_be_found._[costs_{reg14}/{reg15}_Influence]
str_npc5_payment_response Trust_me,_you_will_be_more_useful_with_me._[costs_{reg14}/{reg15}_Influence]
str_npc6_payment_response From_now_on,_your_duty_is_with_me._[costs_{reg14}/{reg15}_Influence]
str_npc7_payment_response Master_Dwalin_will_understand_that_a_battle-worthy_dwarf_should_not_be_kept_from_our_enemies_for_too_long._[costs_{reg14}/{reg15}_Influence]
str_npc8_payment_response The_King's_well-being_is_important,_but_you_will_save_more_lives_with_me._[costs_{reg14}/{reg15}_Influence]
str_npc9_payment_response Oh,_but_the_guard_won't_dare_stop_you,_if_you_are_with_me._[costs_{reg14}/{reg15}_Influence]
str_npc10_payment_response From_now_on,_your_duty_is_with_me._[costs_{reg14}/{reg15}_Influence]
str_npc11_payment_response Never_mind_your_Boss,_you_serve_me_now._[costs_{reg14}/{reg15}_Influence]
str_npc12_payment_response Your_boys_will_get_new_orders,_I'll_worry_about_the_High_Ups._[costs_{reg14}/{reg15}_Influence]
str_npc13_payment_response They_will_see_otherwise,_for_I'm_your_Chieftain_now._[costs_{reg14}/{reg15}_Influence]
str_npc14_payment_response You_don't_need_to_worry_about_the_old_Harbor-master._[costs_{reg14}/{reg15}_Influence]
str_npc15_payment_response Priceless,_is_it?_I'll_get_your_gear._[costs_{reg14}/{reg15}_Influence]
str_npc16_payment_response I_honor_the_ancestors,_yours_and_mine._[costs_{reg14}/{reg15}_Influence]
str_npc17_payment_response Your_uncle_will_be_fine._You_are_with_me_now._[costs_{reg14}/{reg15}_Influence]
str_npc1_morality_speech Captain,_I_can't_understand_how_you_can_{s21}_and_forsake_our_men._Captain_Faramir_would_have_never_lost_sight_of_compassion_for_his_Rangers_and_caused_them_to_suffer_without_need.
str_npc2_morality_speech I_hope_you_don't_mind_my_saying_so,_but_it's_a_bit_hard_for_me_to_see_us_{s21}._Maybe_I_ought_to_try_to_be_more_of_a_hardened_soldier,_but_if_you_could_try_to_be_more..._caring_about_our_soldiers,_I'd_sleep_better.
str_npc3_morality_speech Commander,_we_Eorlingas_never_{s21}._Our_horses_don't_tire_easily_and,_once_we_regroup,_there_is_no_situation_a_well-timed_charge_can't_decide_in_our_favour._Take_heed_the_next_time_we_battle_against_the_odds.
str_npc4_morality_speech Take_no_heed_to_what_the_soldiers_say,_sometimes_to_{s21}_is_the_wisest_course_of_action._I_for_one_appreciate_the_lives_spared_and_limbs_unbroken,_if_for_nothing_else_but_to_fight_another_day,_when_fate_looks_upon_us_with_favor.
str_npc5_morality_speech You_must_reconsider_your_actions,_commander._To_{s21}_makes_us_no_more_honourable_than_the_Enemy_and_diminishes_the_confidence_of_our_friends.
str_npc6_morality_speech {***}[No_primary_moral_code]
str_npc7_morality_speech I_was_not_pleased_that_you_decided_to_{s21}._To_fall_in_battle_is_an_honour_for_any_right-thinking_dwarf,_but_to_fight_in_a_company_led_by_a_coward_is_a_disgrace._What_will_my_cousins_say_if_they_learn_of_this?
str_npc8_morality_speech Commander,_I_must_object._To_{s21}_is_harsh_on_the_men_and_unnecessary._I_do_what_I_can_to_ease_their_suffering,_but_please_don't_make_another_costly_mistake.
str_npc9_morality_speech The_fighting_Uruk-hai_don't_{s21}._If_the_Master_has_little_guts,_he_might_find_himself_without_them_one_night._Gulm_has_spoken.
str_npc10_morality_speech {***}[No_primary_moral_code]
str_npc11_morality_speech {***}[No_primary_moral_code]
str_npc12_morality_speech {***}[No_primary_moral_code]
str_npc13_morality_speech {***}[No_primary_moral_code]
str_npc14_morality_speech {***}[No_primary_moral_code]
str_npc15_morality_speech You_may_think_that_Bolzog_the_Great_can_cure_all,_{playername},_but_even_I_have_my_limits!_If_you_continue_to_{s21}_even_my_talent_will_struggle!_You_must_give_me_some_support!_I_cannot_resurrect_the_dead,_whether_they_starve_or_are_hacked_to_pieces!
str_npc16_morality_speech {***}[No_primary_moral_code]
str_npc17_morality_speech {***}[No_primary_moral_code]
str_npc1_2ary_morality_speech Captain,_I_have_been_raised_as_a_Dúnadan,_both_in_valor_and_honour._I_would_prefer_if_we_don't_{s21}.
str_npc2_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc3_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc4_2ary_morality_speech Your_pardon,_commander._Women_of_my_station_will_accept_death_but_not_dishonour._To_{s21}_brings_shame_to_my_house_and_ancestors.
str_npc5_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc6_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc7_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc8_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc9_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc10_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc11_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc12_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc13_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc14_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc15_2ary_morality_speech Hi-hi-hi!_You_are_cunning,_Oh_Lord!_You_take_the_gold,_and_nod,_and_say_'yes_master'_but_all_the_time_you_planned_this!_Hi-Hi!_Only,_we_must_be_careful,_that_The_Big_One_does_not_see_you_deceiving_him...
str_npc16_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc17_2ary_morality_speech {***}[No_secondary_moral_code]
str_npc1_personalityclash_speech Did_I_mention_I_hate_{s11}?
str_npc2_personalityclash_speech Did_I_mention_I_hate_{s11}?
str_npc3_personalityclash_speech Commander,_how_come_we_ended_up_with_{s11}_in_our_company?_He's_nimble_enough_on_foot,_I_reckon,_but_he_talks_of_ambushes_too_often_for_my_liking_-_not_unlike_the_cautious_nature_of_his_people.
str_npc4_personalityclash_speech Did_I_mention_I_hate_{s11}?
str_npc5_personalityclash_speech Did_I_mention_I_hate_{s11}?
str_npc6_personalityclash_speech {playername},_I_just_saw_{s11}_walk_brazenly_over_a_nest_of_young_birds._His_clumsiness_destroyed_the_young_lives_of_innocent_creatures.
str_npc7_personalityclash_speech Lord_{s11}_does_well_in_a_battle,_but_I_wonder_if_he_blinds_the_enemy_by_the_shine_of_his_hair?_Or_they_fall_in_awe_of_his_fame_and_uppity_demeanor?
str_npc8_personalityclash_speech Commander,_I_must_lodge_a_complaint_against_{s11}._He_continues_to_pester_me_about_making_him_a_certain_brew_called_'the_green_fairy'.
str_npc9_personalityclash_speech Did_I_mention_I_hate_{s11}?
str_npc10_personalityclash_speech Did_I_mention_I_hate_{s11}?
str_npc11_personalityclash_speech Did_I_mention_I_hate_{s11}?
str_npc12_personalityclash_speech Did_I_mention_I_hate_{s11}?
str_npc13_personalityclash_speech Did_I_mention_I_hate_{s11}?
str_npc14_personalityclash_speech Did_I_mention_I_hate_{s11}?
str_npc15_personalityclash_speech Did_I_mention_I_hate_{s11}?
str_npc16_personalityclash_speech Did_I_mention_I_hate_{s11}?
str_npc17_personalityclash_speech Did_I_mention_I_hate_{s11}?
str_npc1_personalityclash_speech_b I_hate_{s11}.
str_npc2_personalityclash_speech_b I_hate_{s11}.
str_npc3_personalityclash_speech_b I_don't_have_a_quarrel_with_the_people_of_Gondor,_but_we_would_do_better_with_more_bold_horsemen_and_less_reluctant_ground-huggers,_if_you_catch_my_drift.
str_npc4_personalityclash_speech_b I_hate_{s11}.
str_npc5_personalityclash_speech_b I_hate_{s11}.
str_npc6_personalityclash_speech_b His_dwarven_ways_may_serve_him_well_underground,_albeit_it's_a_wonder_he_hasn't_fallen_down_an_ugly_shaft._Maybe_he_should_have.
str_npc7_personalityclash_speech_b We_would_do_better_with_a_dwarven_hero,_someone_like_Durin_the_Deathless_of_old,_and_let_the_Elves_prance_around_their_forests.
str_npc8_personalityclash_speech_b It_is_made_from_wormwood_soaked_in_liquor_and_apparently_favored_by_minstrels_and_vagrants_for_seeing_things_that_are_not_there._I_doubt_you'll_approve_of_your_soldiers_chasing_air_on_the_battlefield,_as_much_as_it_may_be_amusing_to_watch.
str_npc9_personalityclash_speech_b I_hate_{s11}.
str_npc10_personalityclash_speech_b I_hate_{s11}.
str_npc11_personalityclash_speech_b I_hate_{s11}.
str_npc12_personalityclash_speech_b I_hate_{s11}.
str_npc13_personalityclash_speech_b I_hate_{s11}.
str_npc14_personalityclash_speech_b I_hate_{s11}.
str_npc15_personalityclash_speech_b I_hate_{s11}.
str_npc16_personalityclash_speech_b I_hate_{s11}.
str_npc17_personalityclash_speech_b I_hate_{s11}.
str_npc1_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc2_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc3_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc4_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc5_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc6_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc7_personalityclash2_speech A_nice_little_scrap,_eh_captain?_If_only_slightly_ruined_by_the_conduct_of_that_Elf-woman_{s11}.
str_npc8_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc9_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc10_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc11_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc12_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc13_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc14_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc15_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc16_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc17_personalityclash2_speech Did_I_mention_I_hate_{s11}?
str_npc1_personalityclash2_speech_b I_hate_{s11}.
str_npc2_personalityclash2_speech_b I_hate_{s11}.
str_npc3_personalityclash2_speech_b I_hate_{s11}.
str_npc4_personalityclash2_speech_b I_hate_{s11}.
str_npc5_personalityclash2_speech_b I_hate_{s11}.
str_npc6_personalityclash2_speech_b I_hate_{s11}.
str_npc7_personalityclash2_speech_b I_saw_her_cowering_in_the_rear,_barely_releasing_an_arrow_or_two_in_the_general_direction_of_the_enemy._I_say_let_her_go_to_take_care_of_the_birds_and_bees,_so_we_can_go_on_with_the_bloody_work_of_slaying_the_enemy.
str_npc8_personalityclash2_speech_b I_hate_{s11}.
str_npc9_personalityclash2_speech_b I_hate_{s11}.
str_npc10_personalityclash2_speech_b I_hate_{s11}.
str_npc11_personalityclash2_speech_b I_hate_{s11}.
str_npc12_personalityclash2_speech_b I_hate_{s11}.
str_npc13_personalityclash2_speech_b I_hate_{s11}.
str_npc14_personalityclash2_speech_b I_hate_{s11}.
str_npc15_personalityclash2_speech_b I_hate_{s11}.
str_npc16_personalityclash2_speech_b I_hate_{s11}.
str_npc17_personalityclash2_speech_b I_hate_{s11}.
str_npc1_personalitymatch_speech Have_you_noticed_the_grace_of_{s11}_in_that_last_battle?_The_way_she_moves_around_the_enemy_just_before_striking_the_final_blow?_It's_like_the_stories_of_old,_when_elven_maidens_displayed_as_much_poise_on_the_battlefield_as_in_their_beautiful_forest_courts.
str_npc2_personalitymatch_speech Excuse_me,_commander._I_was_just_helping_{s11}_with_minor_weapon_repairs_after_that_last_scrap,_and_he_even_promised_to_teach_me_how_to_improve_my_strikes.
str_npc3_personalitymatch_speech Is_not_a_Rohan_shieldmaiden_in_full_charge_a_sight_to_behold?_Granted,_our_womenfolk_are_better_off_by_the_hearth,_but_after_seeing_{s11}_strike_down_the_enemy_in_that_last_battle,_I'm_beginning_to_have_doubts.
str_npc4_personalitymatch_speech A_battle_of_great_deeds,_commander,_and_my_congratulations_on_the_victory._I_noticed_how_{s11}_quietly_and_surely_took_care_of_the_wounded_and_ailing,_even_as_the_last_of_the_enemy_got_what_they_deserved.
str_npc5_personalitymatch_speech Did_I_mention_I_like_{s11}?
str_npc6_personalitymatch_speech {playername},_as_much_as_I_hate_battles,_I_can't_help_but_notice_my_Lord_{s11}_riding_out_in_full_splendor_and_bearing_down_on_the_ugly_creatures_like_a_hawk.
str_npc7_personalitymatch_speech Bloody_and_victorious,_just_as_I_like_it!_I_did,_however,_sustain_a_flesh_wound_that_{s11}_was_kind_enough_to_bandage_promptly.
str_npc8_personalitymatch_speech Another_victory_for_you,_commander,_and_I_admire_your_skill_in_sparing_the_lives_of_our_men._Warriors_like_{s11}_seem_to_be_of_great_use_in_your_battle_plans.
str_npc9_personalitymatch_speech Did_I_mention_I_like_{s11}?
str_npc10_personalitymatch_speech Did_I_mention_I_like_{s11}?
str_npc11_personalitymatch_speech Did_I_mention_I_like_{s11}?
str_npc12_personalitymatch_speech Did_I_mention_I_like_{s11}?
str_npc13_personalitymatch_speech Did_I_mention_I_like_{s11}?
str_npc14_personalitymatch_speech Did_I_mention_I_like_{s11}?
str_npc15_personalitymatch_speech Did_I_mention_I_like_{s11}?
str_npc16_personalitymatch_speech Did_I_mention_I_like_{s11}?
str_npc17_personalitymatch_speech Umm,_chief._I_think_{s11}_could_make_it_well_in_the_woods._Can_tell_an_ash_from_a_willow.
str_npc1_personalitymatch_speech_b I_find_the_company_of_{s11}_very_pleasing_and_her_native_woodcraft_a_rare_glimpse_of_what_remains_of_Sindarin_skills_in_the_world._You_know,_my_father_named_me_after_the_legendary_Sindarin_Elf_captain_serving_King_Thingol_of_Doriath_and_I_always_feel_a_special_bond_to_the_fair_race.
str_npc2_personalitymatch_speech_b My_folks_at_home_always_told_me_stories_about_the_Ithilien_Rangers_and_now_I_can_see_for_myself_they_are_all_true._If_they_are_all_like_{s11},_I_feel_Gondor_is_safer_for_it.
str_npc3_personalitymatch_speech_b Commander,_as_a_personal_favour,_might_I_ask_if_you_can_order_{s11}_to_stay_more_to_the_rear_in_the_next_battle?_I_could_not_stand_to_see_her_harmed,_and_it's_not_the_ale_talking.
str_npc4_personalitymatch_speech_b To_preserve_lives_is_the_noblest_deed,_and_I_feel_kinship_with_that_kind_soul,_even_if_our_worlds_are_far_apart.
str_npc5_personalitymatch_speech_b I_like_{s11}.
str_npc6_personalitymatch_speech_b I_wonder_just_how_old_is_he._Maybe_a_dozen_of_centuries_older_than_me?_Never_mind,_you_wouldn't_understand.
str_npc7_personalitymatch_speech_b {s11}_and_her_Dale-kin,_even_if_not_quite_up_to_dwarven_warrior_standards,_have_proven_to_be_steadfast_allies_in_this_War._A_good_choice_for_a_friend_and_companion_among_Men,_if_I_may_say_so.
str_npc8_personalitymatch_speech_b The_people_of_Dale_have_a_deep_regard_for_the_hardy_Lonely_Mountain_Dwarven-folk,_as_friends_and_protectors_despite_our_different_race_and_customs.
str_npc9_personalitymatch_speech_b I_like_{s11}.
str_npc10_personalitymatch_speech_b I_like_{s11}.
str_npc11_personalitymatch_speech_b I_like_{s11}.
str_npc12_personalitymatch_speech_b I_like_{s11}.
str_npc13_personalitymatch_speech_b I_like_{s11}.
str_npc14_personalitymatch_speech_b I_like_{s11}.
str_npc15_personalitymatch_speech_b I_like_{s11}.
str_npc16_personalitymatch_speech_b I_like_{s11}.
str_npc17_personalitymatch_speech_b My_people_get_along_well_with_the_Woodelves._They_like_trees_too._I_like_trees_too._We_all_like_trees.
str_npc1_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc2_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc3_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc4_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc5_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc6_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc7_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc8_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc9_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc10_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc11_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc12_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc13_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc14_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc15_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc16_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc17_retirement_speech I'm_getting_a_bit_tired_of_the_warrior's_life,_I'll_retire.
str_npc1_rehire_speech It_is_good_to_see_you_again,_Captain._Shall_I_join_you_once_more?
str_npc2_rehire_speech Happy_days!_Commander,_can_I_please_join_you_again?