-
Notifications
You must be signed in to change notification settings - Fork 10
/
main_goattribe_01.rpy
3893 lines (2345 loc) · 117 KB
/
main_goattribe_01.rpy
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
translate schinese Kari_Dialogue_40dfb5cd:
# e "Hey, General."
e "将军你好。"
translate schinese Kari_Dialogue_b21ba27b:
# k "Courier? Had Chief given you the approval to enter the tribe?"
k "乐村的邮差?族长允许你进村了吗?"
translate schinese Kari_Dialogue_118adec5:
# e "Yes."
e "是啊。"
translate schinese Kari_Dialogue_b4dba52f:
# k "...so, another face I'll have to remember well."
k "……又有张面孔要记住了。"
translate schinese Kari_Dialogue_6cbcb53b:
# e "Are you ok?"
e "你的伤怎么样了?"
translate schinese Kari_Dialogue_2d0406aa:
# k "No, I told you to kill me right there, so I didn't have to suffer such a long week of resting."
k "不劳你假惺惺的关心。"
k "当初叫你杀了我,就是为了避免现在我得像个窝囊废一样等着康复。"
translate schinese Kari_Dialogue_43360f76:
# e "Stop... I didn't mean any harm."
e "别这么说……我没有恶意。"
translate schinese Kari_Dialogue_35153737:
# k "Whatever, I'm not arguing with you, I still have to recover somehow."
k "无所谓,我不会跟你争论。部族需要我,我必须尽管好起来。"
translate schinese Kari_Dialogue_4723c323:
# k "Thanks for saving Furkan anyway."
k "但还是感谢你救出族长。"
translate schinese Kari_Dialogue_ee60c608:
# e "So, how are you doing."
pass
translate schinese Kari_Dialogue_f9a9c39c:
# e "I remembered you had to carry Furkan back to the Tribe."
e "山洞离部落这么远,背着弗坎走回来一定很辛苦吧。"
translate schinese Kari_Dialogue_2ec69d3c:
# k "Well, I'll just say he's quite heavier than maybe 20 years ago."
k "哼,他确实比 20 年前重多了。"
translate schinese Kari_Dialogue_bf90dd40:
# e "How did it go... after saving Furkan in the cave."
e "那把弗坎背回来之后呢?"
translate schinese Kari_Dialogue_c394473b:
# k "It's fine."
k "料理公事,疗养伤口。"
translate schinese Kari_Dialogue_17622bbc:
# e "I mean, did anything happened between you two?"
e "我是说你们私下有没有再做什么……?"
translate schinese Kari_Dialogue_ddbc5ca2:
# k "W-what?"
k "嗯?"
translate schinese Kari_Dialogue_df829dbc:
# k "No?"
k "没有。"
translate schinese Kari_Dialogue_76067fa4:
# e "Alright alright."
e "好吧……"
translate schinese Kari_Dialogue_74e18e83:
# k "But, I have to say."
k "总之,感谢你救出族长。"
translate schinese Kari_Dialogue_2920f717:
# k "Thanks for helping me save Furkan."
pass
translate schinese Kari_Dialogue_fab4eaf3:
# e "No problem."
e "不客气。"
translate schinese Kari_Dialogue_751b2954:
# k "What's the meaning of this, courier."
k "你几个意思,野蛮人。"
translate schinese Kari_Dialogue_50afd1d4:
# e "Uhm..."
e "呃……"
translate schinese Kari_Dialogue_b6e89eda:
# k "You dare come up to me bare-skinned? How insolent."
k "竟然敢在我面前一丝不挂?没点规矩!"
translate schinese Kari_Dialogue_af07a39f:
# e "S-sorry."
e "对、对不起。"
translate schinese Kari_Dialogue_79ebf5db:
# k "Now, speak your words, the sooner we end this, the better."
k "有话快说,有屁快放,然后立马从我眼前消失。"
translate schinese Kari_Normal_Talk_77aaa495:
# k "Courier." nointeract
k "说。" nointeract
translate schinese strings:
# old "Ask about his warriors"
# new ""
# old "Ask why he is staring at you"
# new ""
# old "Join the warrior practice"
# new ""
old "Ask about the Goat Tribe"
new "询问山羊部落的事情"
old "Ask about his status of being a general"
new "好奇他成为将军的经历"
# translate schinese Kari_Normal_Talk_29bfd31b:
# # e "Hey, Kari, I'm ready for the practice."
# e ""
translate schinese Kari_Ask_Goat_Tribe_853e1c1c:
# e "So, how's the tribe going?"
e "嗨,最近部落的情况还好吗?"
translate schinese Kari_Ask_Goat_Tribe_b55f0994:
# k "Good, I'm training a new troop currently."
k "不错,我正在训练一伍新兵。"
translate schinese Kari_Ask_Goat_Tribe_ed6149bf:
# k "Apparently we have to reduce the number of mages. So, we're training in a more traditional way."
k "魔力枯竭,我们得削减法师的编制。同时使用传统方式训练,减少对魔力的依赖。"
translate schinese Kari_Ask_Goat_Tribe_b5b3d750:
# e "I see. What are you planning to do with them...?"
e "这样啊……他们训练好之后要干什么?"
translate schinese Kari_Ask_Goat_Tribe_ff104b3c:
# k "Huh? To fight. What else do you think. We're fighting for glory, for the safety of our tribe."
k "嗯?当然要投入军队保卫家园,不然将士何以是将士?"
k "为部族安危而战,既是我们的责任,更是我们的荣誉。"
translate schinese Kari_Ask_Goat_Tribe_629ff950:
# k "We talk about none other than honour. And being the general, I'm the one who command my troops."
k "古来征战几人回?生以辱,不如死以荣。"
k "我作为将军不仅要身体力行,也要把这个优良传统延续下去。"
translate schinese Kari_Ask_Goat_Tribe_87385180:
# k "You either cowardly live, or die with honour."
pass
translate schinese Kari_Ask_Goat_Tribe_faa7d97b:
# e "Hmm..."
e "哇……"
translate schinese Kari_Ask_Goat_Tribe_b9a90435:
# e "You're so cute when you talk like this."
e "你严肃的时候总是很可爱。"
translate schinese Kari_Ask_Goat_Tribe_ddbc5ca2:
# k "W-what?"
k "什、什么?"
translate schinese Kari_Ask_Goat_Tribe_12341bed:
# k "F-fuck you. Stop changing the topic."
k "闭嘴,别扯这些有的没的。"
translate schinese Kari_Ask_Goat_Tribe_ecf32af2:
# e "Mmmmhm..."
e "唔……"
translate schinese Kari_Ask_Goat_Tribe_6d56629d:
# "Kari silently stares at you, you g"
pass
# translate schinese Kari_Ask_Warrior_Practice_a4091800:
# # e "H-hey, general. How's the practices lately."
# e ""
# translate schinese Kari_Ask_Warrior_Practice_ef64eead:
# # "Kari pauses a moment, face contorting as if he were remembering a particularly unpleasant experience."
# ""
# translate schinese Kari_Ask_Warrior_Practice_7e160790:
# # k "I have a request to ask of you."
# k ""
# translate schinese Kari_Ask_Warrior_Practice_031d0ab4:
# # e "Oh? The Great General is asking me for help?"
# e ""
# translate schinese Kari_Ask_Warrior_Practice_5d3ec938:
# # "It is entertaining to watch Kari try and rub his forehead to nurse a growing headache, only to be stopped by the bone of his mask."
# ""
# translate schinese Kari_Ask_Warrior_Practice_8e9fe151:
# # k "Yes, Courier, though only because Furkan convinced me it would be a good idea."
# k ""
# translate schinese Kari_Ask_Warrior_Practice_a6c04dae:
# # e "That makes sense. So, what do you want me to do?"
# e ""
# translate schinese Kari_Ask_Warrior_Practice_36f6c5a6:
# # k "Well, as you know, we've been running out of rune power."
# k ""
# translate schinese Kari_Ask_Warrior_Practice_b9cf077e:
# # k "As such, many of our warriors have been recruited to train in non-magical combat."
# k ""
# translate schinese Kari_Ask_Warrior_Practice_89ffb216:
# # k "Results have left much to be desired."
# k ""
# translate schinese Kari_Ask_Warrior_Practice_0e57c851:
# # "This is an understatement. You see all of one goat warrior training right now, the rest petulantly sitting around."
# ""
# translate schinese Kari_Ask_Warrior_Practice_a00107bf:
# # e "And you want me to help them train?"
# e ""
# translate schinese Kari_Ask_Warrior_Practice_c5309407:
# # k "Yes. Specifically, I want you to spar them."
# k ""
# translate schinese Kari_Ask_Warrior_Practice_c6a78926:
# # k "I hate to say it, but being beaten so soundly by someone they've never met will likely motivate them."
# k ""
# translate schinese Kari_Ask_Warrior_Practice_78dfb780:
# # e "I thought you of all people would be okay with seeing your warriors learn lessons the hard way."
# e ""
# translate schinese Kari_Ask_Warrior_Practice_2a8733b9:
# # k "Yes, but I am unhappy that you are stronger than them, courier."
# k ""
# translate schinese Kari_Ask_Warrior_Practice_5e084a48:
# # k "But after your performance in the cave, I must acknowledge your strength as a warrior."
# k ""
# translate schinese Kari_Ask_Warrior_Practice_e5309eb7:
# # e "You know, it's kind of cute to hear you compliment me like that."
# e ""
# translate schinese Kari_Ask_Warrior_Practice_e7cb8780:
# # k "Not a compliment."
# k ""
# translate schinese Kari_Ask_Warrior_Practice_52cc48a1:
# # e "Still cute."
# e ""
# translate schinese Kari_Ask_Warrior_Practice_e9c215c4:
# # "A murderous smile is creeping across Kari's face at this point."
# ""
# translate schinese Kari_Ask_Warrior_Practice_c915a93c:
# # "You fear you may have gone a bit too far."
# ""
# translate schinese Kari_Ask_Warrior_Practice_ff5f744b:
# # k "Call me cute one more time, and we'll see how cute you think I am after you have this rod shoved 5 feet up your ass."
# k ""
# translate schinese Kari_Ask_Warrior_Practice_dea99fd3:
# # "It takes great effort not to tease him for his word choice, but you have to, for your own safety."
# ""
# translate schinese Kari_Ask_Warrior_Practice_36859729:
# # e "So, how do I start?"
# e ""
# translate schinese Kari_Ask_Warrior_Practice_ff00c4aa:
# # k "I'm going to assume you mean sparring. Well."
# k ""
# translate schinese Kari_Ask_Warrior_Practice_63908825:
# # k "I presume you are not ready yet. Am I not right...?" nointeract
# k "" nointeract
# translate schinese Kari_Ask_Warrior_Practice_e03257e0:
# # e "I'm ready."
# e ""
# translate schinese Kari_Ask_Warrior_Practice_ca52ad3e:
# # e "I am going to need some time to prepare..."
# e ""
# translate schinese Kari_Ask_Warrior_Practice_17f263d0:
# # k "Fair. I'll be waiting with my warriors."
# k ""
# translate schinese Kari_Warrior_Practice_Start_187b9279:
# # "Kari nods, he steps away from you and turns to face the guards."
# ""
# translate schinese Kari_Warrior_Practice_Start_afddffad:
# # k "ATTENTION."
# k ""
# translate schinese Kari_Warrior_Practice_Start_aea7f2d8:
# # "Despite being in a wide open space, Kari's booming voice manages to echo from sheer volume alone."
# ""
# translate schinese Kari_Warrior_Practice_Start_030dbe77:
# # "Every goat in the camp ducks, covering their ears, before turning towards Kari and snapping to attention."
# ""
# translate schinese Kari_Warrior_Practice_Start_850140a3:
# # k "TODAY, A GUEST WILL BE JOINING US FOR TRAINING, THE COURIER [e]."
# k ""
# translate schinese Kari_Warrior_Practice_Start_1e681ace:
# # k "HE WILL BE YOUR SPARRING PARTNER. DO YOUR BEST TO BEAT HIM WITHOUT USING MAGIC."
# k ""
# translate schinese Kari_Warrior_Practice_Start_3ba4e488:
# # "Any hopeful sounds coming from the assembled goats turn to groans at the words 'without using magic'."
# ""
# translate schinese Kari_Warrior_Practice_Start_82499a1d:
# # e "Well, line up for the sparring, I guess."
# e ""
# translate schinese Kari_Warrior_Practice_Start_ffa1bcb6:
# # "A line of goats gripping spears quickly forms."
# ""
# translate schinese Kari_Warrior_Practice_Start_68a7ef99:
# # "The first goat in that line approaches."
# ""
# translate schinese Kari_Goat_Practice_Lose_e9ff3f0d:
# # k "I'm surprised you lost to them."
# k ""
# translate schinese Kari_Goat_Practice_Lose_9a6549cb:
# # e "Maybe they're stronger than you think?"
# e ""
# translate schinese Kari_Goat_Practice_Lose_b5ddd391:
# # k "No, you're just weaker than I thought."
# k ""
# translate schinese Kari_Goat_Practice_Lose_72f735b3:
# # k "That or you didn't really try."
# k ""
# translate schinese Kari_Goat_Practice_Lose_c99914ed:
# # "The assembled goats look like they've eaten a particularly sour lemon."
# ""
# translate schinese Kari_Goat_Practice_Lose_fa72849d:
# # gtr "Why can't you just believe that we're strong?"
# gtr ""
# translate schinese Kari_Goat_Practice_Lose_4c68da1a:
# # k "Because none of you have ever come close to beating me, even two on one."
# k ""
# translate schinese Kari_Goat_Practice_Lose_490f7492:
# # k "I am your general, not your paragon."
# k ""
# translate schinese Kari_Goat_Practice_Lose_4305ad19:
# # k "If we want to be able to protect the tree, and find the one who stole the rune, we have to be stronger than this."
# k ""
# translate schinese Kari_Goat_Practice_Lose_e2c12b54:
# # "It's unclear if Kari is trying to convince the recruits or himself at this point."
# ""
# translate schinese Kari_Goat_Practice_Lose_72ef96ae:
# # k "You see, our soldiers are not up to battle standard, but it seems you'd need more experience to, teach them."
# k ""
# translate schinese Kari_Goat_Practice_Lose_77477d1d:
# # e "I guess so."
# e ""
# translate schinese Kari_Goat_Practice_Lose_82091822:
# # k "..."
# k ""
# translate schinese Kari_Goat_Practice_Lose_a71be26a:
# # k "Then, we'll see you next time, recover soon."
# k ""
# translate schinese Kari_Goat_Practice_Lose_1b479bda:
# # e "See you, Kari."
# e ""
# translate schinese Kari_Goat_Practice_Win_ba4a0b3d:
# # gtr "F-fuck..."
# gtr ""
# translate schinese Kari_Goat_Practice_Win_82091822:
# # k "..."
# k ""
# translate schinese Kari_Goat_Practice_Win_74bbc763:
# # "Kari is looking at the horny goat with a mix of disgust and contempt."
# ""
# translate schinese Kari_Goat_Practice_Win_9700fae3:
# # "He turns his gaze to look at you, and the expression only intensifies."
# ""
# translate schinese Kari_Goat_Practice_Win_4e312f3e:
# # k "That is not how a warrior fights."
# k ""
# translate schinese Kari_Goat_Practice_Win_4597dfdd:
# # e "Well, it worked, no?"
# e ""
# translate schinese Kari_Goat_Practice_Win_92f8c621:
# # k "Yes, but still, one should not debase themselves to win. Morality has a purpose in this world."
# k ""
# translate schinese Kari_Goat_Practice_Win_c56bb076:
# # k "It is like how one could earn much money stealing from their fellow man, but does not because they should not."
# k ""
# translate schinese Kari_Goat_Practice_Win_3815a1be:
# # e "I strongly disagree. A fight won through flirtation is much less harmful than one won through violence."
# e ""
# translate schinese Kari_Goat_Practice_Win_eec20efb:
# # "Kari is still disgusted, but accepts this for what it is."
# ""
# translate schinese Kari_Goat_Practice_Win_1428edd5:
# # k "Regardless, you have shown a weakness we must work on."
# k ""
# translate schinese Kari_Goat_Practice_Win_95d1aa03:
# # k "Everyone, I am disgusted by your show of animalistic lust."
# k ""
# translate schinese Kari_Goat_Practice_Win_491572e9:
# # gt "As if you could do better!"
# gt ""
# translate schinese Kari_Goat_Practice_Win_db79181f:
# # "Kari walks over and hits the protesting goat over the head with his staff."
# ""
# translate schinese Kari_Goat_Practice_Win_9863b47d:
# # k "I can and did do better. I watched the entire affair, and was completely unaffected."
# k ""
# translate schinese Kari_Goat_Practice_Win_f6d02df0:
# # "You are pretty sure he is lying somewhat, but he certainly showed more restraint than his warriors."
# ""
# translate schinese Kari_Goat_Practice_Win_7e395613:
# # k "Work on your discipline, both in not talking back to your general, and in controlling your lust."
# k ""
# translate schinese Kari_Goat_Practice_Win_f8cb1a5e:
# # k "We must be strong. Must be prepared."
# k ""
# translate schinese Kari_Goat_Practice_Win_fffa877b:
# # k "If we are not, we may lose more than just the rune."
# k ""
# translate schinese Kari_Goat_Practice_Win_1ba6f454:
# # k "No matter what, we must keep the tribe safe."
# k ""
# translate schinese Kari_Goat_Practice_Win_e9e85741:
# # k "Huh, thanks for breaking his spirit on his day one, Courier."
# k ""
# translate schinese Kari_Goat_Practice_Win_0d2e296c:
# # k "I think we have a clear winner."
# k ""
# translate schinese Kari_Goat_Practice_Win_71bcc4e0:
# # "There is a collective groan at this declaration, though nobody can quite disagree."
# ""
# translate schinese Kari_Goat_Practice_Win_9f621173:
# # k "I think it's clear that you all need to work on your non-magical combat."
# k ""
# translate schinese Kari_Goat_Practice_Win_083a1caa:
# # gt "Why can't we just keep using magic! We still have the tree!"
# gt ""
# translate schinese Kari_Goat_Practice_Win_25a013b2:
# # k "The tree does not supply nearly enough magic for that."
# k ""
# translate schinese Kari_Goat_Practice_Win_ca03947b:
# # k "Maintaining our buildings and water supply is already straining what it can produce."
# k ""
# translate schinese Kari_Goat_Practice_Win_0870f279:
# # e "Is it really that bad?"
# e ""
# translate schinese Kari_Goat_Practice_Win_86d607e1:
# # k "Yes. That is why we need to find the rune as soon as possible, and make sure nobody disturbs the tree."
# k ""
# translate schinese Kari_Goat_Practice_Win_a51c44c6:
# # "Just as Kari finishes his lecture, Furkan appears from the center of the tribe."
# ""
# translate schinese Kari_Goat_Practice_Win_591ebd01:
# # f "Oh, hello there [e]! I couldn't help but overhear our general talking about the situation with the tree."
# f ""
# translate schinese Kari_Goat_Practice_Win_a8e0f45e:
# # k "We've already talked about this chieftain..."
# k ""
# translate schinese Kari_Goat_Practice_Win_325a327e:
# # f "Yes, but we've never agreed on it."
# f ""
# translate schinese Kari_Goat_Practice_Win_3a2b502f:
# # "Kari looks a bit unhappy about that, but can't quite disagree."
# ""
# translate schinese Kari_Goat_Practice_Win_087e7315:
# # k "Yes... but should we not talk about this in private, chieftain?"
# k ""
# translate schinese Kari_Goat_Practice_Win_92d14db7:
# # k "It involves quite confidential information."
# k ""
# translate schinese Kari_Goat_Practice_Win_52b68439:
# # f "Perhaps, but I wanted to get [e]'s opinion on the matter."
# f ""
# translate schinese Kari_Goat_Practice_Win_506e2f46:
# # "Kari looks surprised, and a bit tired, but still nods his head in assent."
# ""
# translate schinese Kari_Goat_Practice_Win_c58e4881:
# # k "Well, if it's alright with you then, I will order everyone else to clear out."
# k ""
# translate schinese Kari_Goat_Practice_Win_76a07bb8:
# # "Furkan gives an assenting nod."
# ""
# translate schinese Kari_Goat_Practice_Win_5148fcfd:
# # "Kari turns to face the other goats present."
# ""
# translate schinese Kari_Goat_Practice_Win_70c9020f:
# # k "Everybody, we will cover how to improve on your performance today at a later date."
# k ""
# translate schinese Kari_Goat_Practice_Win_4845ee92:
# # k "Please vacate the premises to allow for an impromptu meeting."
# k ""
# translate schinese Kari_Goat_Practice_Win_aea116d9:
# # "With a chorus of unhappy grumbles, the surrounding goats clear out, returning to their normal activities."
# ""
# translate schinese Kari_Goat_Practice_Win_e96ef95d:
# # e "If I can ask... why do you want my opinion?"
# e ""
# translate schinese Kari_Goat_Practice_Win_0d9c3c74:
# # k "Not to be rude or doubt you, chieftain, but I was wondering the same."
# k ""
# translate schinese Kari_Goat_Practice_Win_78669e6b:
# # f "Well, you saved me... I can't think of something that should make me trust you more."
# f ""
# translate schinese Kari_Goat_Practice_Win_3f9edfba:
# # "Furkan's face is completely genuine and trusting as he says this."
# ""
# translate schinese Kari_Goat_Practice_Win_70b51dee:
# # "He really does believe that you'll pick the right thing."
# ""
# translate schinese Kari_Goat_Practice_Win_7f54bea7:
# # k "I don't trust you as much as the chieftain does, but... I trust him on any decision he makes."
# k ""
# translate schinese Kari_Goat_Practice_Win_32e417b5:
# # e "Well, I don't really know what I'm supposed to be choosing between."
# e ""
# translate schinese Kari_Goat_Practice_Win_cb01c37a:
# # f "Right, was getting to that."
# f ""
# translate schinese Kari_Goat_Practice_Win_f9a9641d:
# # f "You've already heard most of Kari's thoughts, but I'll let him elaborate."
# f ""
# translate schinese Kari_Goat_Practice_Win_84f0fb0c:
# # "Furkan turns to Kari, nodding his head to signal him to explain."
# ""
# translate schinese Kari_Goat_Practice_Win_23112146:
# # k "As he said, you've heard most of it, but."
# k ""
# translate schinese Kari_Goat_Practice_Win_03b7e878:
# # k "I think we should keep our warriors trained and guarding the tree."
# k ""
# translate schinese Kari_Goat_Practice_Win_666396c5:
# # k "Protect the last source of magic the tribe has to our last breath, and through that, protect ourselves."
# k ""
# translate schinese Kari_Goat_Practice_Win_c5f6aeb4:
# # "Kari emphasizes the end of this statement by tapping his staff against the ground."
# ""
# translate schinese Kari_Goat_Practice_Win_bea49471:
# # "He then turns to face Furkan, bowing slightly."
# ""
# translate schinese Kari_Goat_Practice_Win_d831a93f:
# # f "You know you don't have to do that, Kari."
# f ""
# translate schinese Kari_Goat_Practice_Win_b007bf71:
# # "Kari gets out of his bow, as if he hadn't heard that."
# ""
# translate schinese Kari_Goat_Practice_Win_e40234ba:
# # k "I just want to show the proper respect to my chieftain, and thank him for letting me express my opinion."
# k ""
# translate schinese Kari_Goat_Practice_Win_cf15db7c:
# # "Furkan lets out a small sigh, likely too small for Kari to have noticed."
# ""
# translate schinese Kari_Goat_Practice_Win_3c8ca958:
# # f "Well, I respect your feelings on the matter, both regarding respect for me, and the tree."
# f ""
# translate schinese Kari_Goat_Practice_Win_6713e3e8:
# # f "However, I believe the correct choice of action is to withdraw our troops from the tree."
# f ""
# translate schinese Kari_Goat_Practice_Win_f2d76711:
# # e "Wait, why?! Isn't it literally holding your village together with its magic?"
# e ""
# translate schinese Kari_Goat_Practice_Win_541f49e2:
# # f "Yes, it is."
# f ""
# translate schinese Kari_Goat_Practice_Win_21349790:
# # "Furkan takes a breath before continuing, as if convincing himself to keep going."
# ""
# translate schinese Kari_Goat_Practice_Win_fd19fdec:
# # f "But we can survive without it for a while."
# f ""
# translate schinese Kari_Goat_Practice_Win_03a23380:
# # f "We will have to ration our magic, but we are already doing that."
# f ""
# translate schinese Kari_Goat_Practice_Win_7a1c1d77:
# # f "I want to do this to show the village that we can be trusted, considering how close the tree is to their territory."
# f ""
# translate schinese Kari_Goat_Practice_Win_bd6ed544:
# # f "Additionally, by retreating the troops, we can hold a tighter perimeter around the village."
# f ""
# translate schinese Kari_Goat_Practice_Win_0d14af8d:
# # e "But nobody is attacking it, no? Why do you need to hold that perimeter?"
# e ""
# translate schinese Kari_Goat_Practice_Win_0065659c:
# # f "We can better track the people of the village by doing this."
# f ""
# translate schinese Kari_Goat_Practice_Win_35bfca4d:
# # "A pained expression crosses his face."
# ""
# translate schinese Kari_Goat_Practice_Win_34a48164:
# # f "I believe whoever stole the rune is either in or nearby the village."
# f ""
# translate schinese Kari_Goat_Practice_Win_8c1954a5:
# # k "The thought hurts me deeply, as I know it hurts our chieftain, but..."
# k ""
# translate schinese Kari_Goat_Practice_Win_9477a4e3:
# # k "Nobody outside of the village knew where the rune was, so, it's what would make sense."
# k ""
# translate schinese Kari_Goat_Practice_Win_1b3456e2:
# # e "Couldn't somebody have just followed you up to where the rune was?"
# e ""
# translate schinese Kari_Goat_Practice_Win_8f419e88:
# # f "It is extremely unlikely, as we rarely visited."
# f ""
# translate schinese Kari_Goat_Practice_Win_03ef5aa3:
# # f "Additionally, the guardians would have reacted and attacked anyone who wasn't of our tribe."
# f ""
# translate schinese Kari_Goat_Practice_Win_ac866a08:
# # f "Considering they did it while our leader... was distracted from the caravan."
# f ""
# translate schinese Kari_Goat_Practice_Win_d8c6bf62:
# # f "It is a loathsome conclusion, but the one that makes the most sense."
# f ""
# translate schinese Kari_Goat_Practice_Win_76681718:
# # f "Regardless, those are our positions."
# f ""
# translate schinese Kari_Goat_Practice_Win_230a33bb:
# # "Both turn to face you."
# ""
# translate schinese Kari_Goat_Practice_Win_98a6cb4c:
# # f "Well [e], what do you think?" nointeract
# f "" nointeract
# translate schinese Kari_Goat_Practice_Win_5ff7f246:
# # e "I'd say... keep the huntsmen there?"
# e ""
# translate schinese Kari_Goat_Practice_Win_1aa392a9:
# # k "Well..."
# k ""
# translate schinese Kari_Goat_Practice_Win_7192ffbc:
# # k "Thank you for helping the chieftain and I reach an agreement on this."
# k ""
# translate schinese Kari_Goat_Practice_Win_670fde36:
# # "You have a feeling Kari is mainly thankful that he doesn't have to leave the tree unguarded."
# ""
# translate schinese Kari_Goat_Practice_Win_05de4eec:
# # f "If you believe that is for the best, [e], I will trust your decision, as much as mine and Kari's."
# f ""
# translate schinese Kari_Goat_Practice_Win_3d21572d:
# # k "I will continue to train our troops to be ready for any attack."
# k ""
# translate schinese Kari_Goat_Practice_Win_3987168f:
# # f "Thank you for doing so."
# f ""
# translate schinese Kari_Goat_Practice_Win_a38e33a1:
# # f "There is no one I would rather trust with our safety."
# f ""
# translate schinese Kari_Goat_Practice_Win_73cff794:
# # "Furkan sighs sadly."
# ""
# translate schinese Kari_Goat_Practice_Win_944eb4ea:
# # f "Now there is only the question of how else we could patch up relationships with Lusterfield..."
# f ""
# translate schinese Kari_Goat_Practice_Win_4abdaa0c:
# # f "Both groups have yet to recover... the wounds cut deep, and scarred into prejudice and distrust."
# f ""
# translate schinese Kari_Goat_Practice_Win_afb937ed:
# # f "If we wish to have any future cooperation or mutual existence in general, it should be done."
# f ""
# translate schinese Kari_Goat_Practice_Win_49257c1d:
# # k "I understand chieftain. I think we should make amends as well."
# k ""
# translate schinese Kari_Goat_Practice_Win_27828109:
# # k "Hopefully, we will have ample opportunity to when we have the rune back."
# k ""