-
Notifications
You must be signed in to change notification settings - Fork 10
/
main_lusterfield02.rpy
12295 lines (7406 loc) · 407 KB
/
main_lusterfield02.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 Cane_Bet_Dialogue_7eafd3a3:
# e "Hey, Cone. How's the Tavern doing."
e "嘿,科恩。你在忙吗?"
translate schinese Cane_Bet_Dialogue_7aec70a5:
# c "Ya want me to tell ya my name again? No way."
c "想让我再重复一遍我的名字?没得。"
translate schinese Cane_Bet_Dialogue_434ac25b:
# e "I already know your name. I just wanted to talk..."
e "我早就记住你的名字了。我只是想聊别的……"
translate schinese Cane_Bet_Dialogue_846eda6c:
# c "Look, come here next time and ya can talk all ya want. Respect the bet integrity ya dink donk."
c "等你赶明儿再来我们啥都可以侃,赌约神圣不可侵犯,小浪蛋。"
translate schinese Cane_Bet_Dialogue_5fd10514:
# e "Ok..."
e "好吧……"
translate schinese Cane_Dialogue_be413ed6:
# c "Welcome to the Nocturnal Trunk!"
c "欢迎光临夜夜椿!"
translate schinese Cane_Dialogue_24681cce:
# c "Yer little lion friend is there, see him?"
c "你那黄毛朋友就坐在对角,瞧见没?"
translate schinese Cane_Dialogue_129df83f:
# e "Hmm... what did you do?"
e "呃……你把他怎么了?"
translate schinese Cane_Dialogue_b7d99f15:
# c "I don't know, he voluntarily betted with me. It's not my fault he lost or something."
c "我哪着,他自愿和我打赌的。输了还是咋地可不怪我。"
translate schinese Cane_Dialogue_bf6f0d3d:
# e "A-alright..."
e "行、行吧……"
translate schinese Cane_Dialogue_be413ed6_1:
# c "Welcome to the Nocturnal Trunk!"
c "欢迎光临夜夜椿!"
translate schinese Cane_Dialogue_61d79fdb:
# c "Yer two little fuckmates are waiting for yer ass, come go join them."
c "你两炮友正候着你那屁股腚子嘞,快去吧。"
translate schinese Cane_Dialogue_f0083db0:
# e "Hmm... you mean Ole and Sebas?"
e "呃……你指奥利和塞巴斯?"
translate schinese Cane_Dialogue_af7646ac:
# c "Aye. Lion is always here. But I didn't know lizards eat bread until now, colour me surprised."
c "诶,黄毛狮子老熟客了,绿蜥蜴会吃面包倒挺稀奇。"
translate schinese Cane_Dialogue_bf6f0d3d_1:
# e "A-alright..."
e "好、好的……"
translate schinese Cane_Dialogue_97de7bb1:
# c "Welcome to the Nocturnal Trun-...?"
c "欢迎光临夜夜——?"
translate schinese Cane_Dialogue_5a926dc3:
# e "Hello, Cane."
e "你好,凯恩。"
translate schinese Cane_Dialogue_8d5cef73:
# c "Ya really think I'd take the bait here, [e]."
c "[e],你以为我真会上钩怎的。"
translate schinese Cane_Dialogue_a9f0941c:
# e "What are you talking about, Cane."
e "上什么钩?"
translate schinese Cane_Dialogue_c6408ae7:
# c "Cover yer cock, ya dink. I'm not serving some donks who goes out naked in the public."
c "遮好你那话儿,小屄孩得。我不卖酒给光天化日不穿衣服的浪蛋。"
translate schinese Cane_Dialogue_5e0eccfc:
# c "Welcome, welcome, [e]. Fancy helping with our plates and mugs 'ere? We're gettin' a lil busy now."
c "来得正好,[e]。帮把手端端盘子擦擦卓呗?咱这都人山人海哩。"
# translate schinese Cane_Dialogue_2f1aa10e:
# # c "Welcome [e]. Just so ye know, some patrons requested private shows from yer ass."
# c ""
# translate schinese Cane_Dialogue_b4e09a22:
# # c "Aye, welcome again, [e]. How's it going, my lad."
# c ""
# translate schinese Cane_Dialogue_b1f8c8df:
# # e "Very good, actually. Thank you, Cane."
# e ""
# translate schinese Cane_Dialogue_690a2e4e:
# # c "I've been feelin' better, since that night I spent wit' ye."
# c ""
# translate schinese Cane_Dialogue_dcba56b5:
# # c "Ye was still a good lad, just that I hadn't been myself for years, forgot what that means."
# c ""
# translate schinese Cane_Dialogue_e53b2d07:
# # e "I understand, Cane. Don't fret about it."
# e ""
# translate schinese Cane_Dialogue_bb98a8ed:
# # c "I'm glad to have ye around. Visit m' more often, lad."
# c ""
# translate schinese Cane_Dialogue_7f00dddd:
# # e "Of course, don't ye worry, Cane. I'll be here helping you out."
# e ""
# translate schinese Cane_Dialogue_4c4d442d:
# # c "Welcome, [e]. The nocturnal trunk always welcome ye cute lil face here, lad."
# c ""
# translate schinese Cane_Dialogue_5a926dc3_1:
# # e "Hello, Cane."
# e ""
# translate schinese Cane_Dialogue_9df12cda:
# # c "I heard ye running into some werewolves folks there, I wanna worry for ye, but..."
# c ""
# translate schinese Cane_Dialogue_568f3a0b:
# # c "Well, always be careful."
# c ""
# translate schinese Cane_Dialogue_04f273db:
# # c "For m' and everyone who cares for ye, alright?"
# c ""
# translate schinese Cane_Dialogue_c6cadae6:
# # c "For everyone 'ere, right? We don't wanna lose a good lad to them scoundrels."
# c ""
# translate schinese Cane_Dialogue_2e7e7811:
# # e "I will! How else can I come back to see you, Cane."
# e ""
# translate schinese Cane_Dialogue_8ed25211:
# # c "Welcome, [e]. Gettin' used to 'ere now?"
# c ""
# translate schinese Cane_Dialogue_8c471278:
# # e "I do, Cane."
# e ""
# translate schinese Cane_Dialogue_07e3f88e:
# # c "That party the lion threw was somethin' else. Been a while since we see everyone in the same place."
# c ""
# translate schinese Cane_Dialogue_2e899f8e:
# # e "Yeah, I think despite some hiccups, everyone had fun, I saw you talking with Rahim there too."
# e ""
# translate schinese Cane_Dialogue_90e46722:
# # c "Heh, everything can change in seconds, but that stubborn old bull's still the same, after all those years."
# c ""
# translate schinese Cane_Dialogue_f8661faa:
# # c "Welcome to the Nocturnal Trunk, m' lad."
# c ""
# translate schinese Cane_Dialogue_2f047327:
# # e "Hey, how's it going?"
# e ""
# translate schinese Cane_Dialogue_60d7a2b7:
# # c "Good, tavern's gettin busier with a bard by the hearth, but I've got no goddamn idea what he's singing about."
# c ""
# translate schinese Cane_Dialogue_9beb1783:
# # e "Oh, Pirkka? He does have a thick accent when he's singing sometimes."
# e ""
# translate schinese Cane_Dialogue_4aa3e2e3:
# # c "Aye, he's upstairs right now, told him about private shows and all that. Lad has a good heart, wonder if he'll stay for long."
# c ""
# translate schinese Cane_Dialogue_a36f13f2:
# # c "Maybe I'll pay for him to stay even. Rumor says he has a way with his mouth."
# c ""
# translate schinese Cane_Dialogue_f8661faa_1:
# # c "Welcome to the Nocturnal Trunk, m' lad."
# c ""
# translate schinese Cane_Dialogue_29735ad3:
# # c "Heard some banging upstairs that other day, turns out the regular's been playing cards again."
# c ""
# translate schinese Cane_Dialogue_f147b6dc:
# # e "Oh, they've been sitting there for a while."
# e ""
# translate schinese Cane_Dialogue_54dc1a9b:
# # c "The card and table gettin messier everytime they borrow from m' shelves. But they stay up for days there."
# c ""
# translate schinese Cane_Dialogue_017f22fa:
# # c "Just don't break m' tables when ye... go upstairs, lad. Or straight up don't owe money. They've got more up their sleeves than ye think."
# c ""
translate schinese Cane_Dialogue_bad59a76:
# c "Welcome to the Nocturnal Trunk, outsider."
c "欢迎光临夜夜椿,外乡仔。"
translate schinese Cane_Dialogue_fd021e87:
# e "Why are you calling me that name?"
e "为什么你要叫我外乡仔?"
translate schinese Cane_Dialogue_7332b894:
# c "Well are ya not an outsider? Why can't I call ya outsider, outsider?"
c "你海外来的外地人咋个不是外乡仔?"
translate schinese Cane_Dialogue_3729b96c:
# e "Hmmph..."
e "呃……"
translate schinese Cane_Dialogue_79858a9a:
# c "How about [e], does that sound better?"
c "[e],这回得劲了不?"
translate schinese Cane_Dialogue_d2c9a869:
# e "Yes... Thank you.. Cane."
e "当然……谢谢你……凯恩。"
translate schinese Cane_Dialogue_be413ed6_2:
# c "Welcome to the Nocturnal Trunk!"
c "欢迎光临夜夜椿!"
translate schinese Cane_Normal_Talk_9b502ad2:
# c "Whatcha going for, [e]?" nointeract
c "今个来整点啥,[e]?" nointeract
translate schinese Cane_Normal_Talk_58e0fbb5:
# "As you are about to ask, you realise you are not putting on the right clothes to judge..."
"你正准备开口,突然想起自己还没穿上那套衣服……"
translate schinese strings:
old "Ask to work in the Tavern"
new "担任酒馆的钟点工"
old "Give Cane the Fixed Apron"
new "交付补好的围裙"
# old "Ask about the Beer Task"
# new "承接采集啤酒原料的任务"
# old "Report to the Beer Task"
# new "报告任务的完成情况"
# old "Ask about the favour"
# new "询问还有什么能帮忙的"
# old "Accept the Private Show Offer"
# new "答应为酒馆提供私人服务"
# old "Report for the Private Show Preparation"
# new "报告包间的准备完成情况"
old "Order something"
new "购买酒水"
old "Ask about Lusterfield{#CaneAAl}"
new "询问乐斯民菲尔德的事情"
old "Ask about the tavern"
new "询问酒馆的事情"
# translate schinese Cane_Work_b9eb2c1d:
# # e "Cane, Can I get some work here?"
# e ""
# translate schinese Cane_Work_482cb8d8:
# # c "What'cha thinkin. Ya be a Server or show yer patron some ass?" nointeract
# c "" nointeract
# translate schinese Cane_Work_76aa60a3:
# # e "Hey, Cane! Can I... ask if I can work on the private show?"
# e ""
# translate schinese Cane_Work_392c40f8:
# # c "Yer in luck, my lad! Or rather, we've got a lucky patron."
# c ""
# translate schinese Cane_Work_572c9742:
# # c "Ye've a patron waitin' for ye in the backroom."
# c ""
# translate schinese Cane_Work_46f4825c:
# # c "I'll hand ye the pay once yer done."
# c ""
# translate schinese Cane_Work_d4392b56:
# # e "I'll need to think more, thanks Cane."
# e ""
# translate schinese Cane_Work_99900951:
# # c "Eh... Alright. don't leave 'em hanging for too long, lad."
# c ""
# translate schinese Cane_Work_e0696090:
# # e "O-ok! Thank you, Cane."
# e ""
translate schinese Cane_Work_0c1134d3:
# e "Hey... Cane. You talked about working in the tavern, right?"
e "嗨……凯恩。你之前说我可以在你这打工,对吗?"
translate schinese Cane_Work_7121ebe1:
# c "Yeah?"
c "嗯哼?"
translate schinese Cane_Work_774f4ade:
# e "It looks pretty interesting, how is the wage here?"
e "我感觉好像挺有意思的,工资怎么算?"
translate schinese Cane_Work_a80432ec:
# c "Aye, its 50 gold for 4 hours, I'd pay more if yer work hard enough." nointeract
c "诶,4 小时 50 金币,如果你表现出色我还会付得更多。" nointeract
translate schinese strings:
old "Take the job"
new "开始打工"
old "I'll think about it"
new "暂时离开"
translate schinese Cane_Work_d2ecfc50:
# e "I'll think about it, Cane."
e "我再考虑考虑吧。"
translate schinese Cane_Work_b6ca98b4:
# c "All good. Well then, enjoy yer stay in the Nocturnal Trunk!"
c "行吧,那在夜夜椿喝好玩好啊!"
translate schinese Cane_Work_adc10916:
# e "Hey... Cane. Can I work in the tavern again?"
e "嗨……凯恩。我能再给你打工吗?"
translate schinese Cane_Work_1a1b7af6:
# c "Aye, same wage. Its 50 gold for 4 hours." nointeract
c "诶,还是 4 小时 50 金币。" nointeract
translate schinese Cane_Work_d2ecfc50_1:
# e "I'll think about it, Cane."
e "我再考虑考虑。"
translate schinese Cane_Work_b6ca98b4_1:
# c "All good. Well then, enjoy yer stay in the Nocturnal Trunk!"
c "行吧,那在夜夜椿喝好玩好啊!"
translate schinese Cane_Work_e120c034:
# c "Mister [e], ya had already served the whole village 'ere. Come back after a few hours ya thirsty lad."
c "[e],全部村民你都招待个遍了。过几个小时再来吧,小淫娃。"
translate schinese Cane_Work_62ea5a76:
# e "...Ok, Cane."
e "……好的。"
translate schinese Cane_Order_740b1efb:
# e "I want to order something from you..."
e "老板,点单。"
translate schinese Cane_Order_109d0e69:
# c "Of course ya dink donk, we've got beer for 15, and our new Ale for 20 gold. Want one?"
c "小酒糟,淡啤酒一杯 15,黑啤酒一杯 20。上哪种?"
translate schinese Cane_Order_ab6d13e9:
# c "Of course ya dink donk, we have some beer right now, takes ya 15 gold. Want one?"
c "小酒糟,淡啤酒 15 来一杯?"
translate schinese Cane_Order_ba9a6668:
# e "hmmm...." nointeract
e "呃……" nointeract
translate schinese Cane_Order_45375577:
# e "I'll take one beer."
e "一杯淡啤酒。"
translate schinese Cane_Order_bc6178b0:
# c "Good, here's yers, enjoy."
c "好嘞,一杯淡啤酒,慢用。"
translate schinese Cane_Order_40dce0df:
# e "I'll take one."
e "来一杯。"
translate schinese Cane_Order_da44e24e:
# c "Uhh... Ya dummy, look at yer pouch, [pc.gold] gold is not enough for a beer, mister."
c "呃……乖乖,瞧瞧你口袋,[pc.gold] 块钱可不够喝酒。"
translate schinese Cane_Order_6b1d6423:
# e "Oh... sorry about that."
e "噢……抱歉。"
translate schinese Cane_Order_11ec3786:
# e "I'll take an ale."
e "一杯黑啤酒。"
translate schinese Cane_Order_8ef0a3d3:
# c "Good, here's yer ale, enjoy."
c "好嘞,一杯黑啤酒,慢用。"
translate schinese Cane_Order_40dce0df_1:
# e "I'll take one."
e "一杯黑啤酒。"
translate schinese Cane_Order_f6000285:
# c "Uhh... Ya dummy, look at yer pouch, [pc.gold] gold is not enough for an ale, lad."
c "呃……乖乖,瞧瞧你口袋,[pc.gold] 块钱可不够喝黑啤酒。"
translate schinese Cane_Order_6b1d6423_1:
# e "Oh... sorry about that."
e "噢……抱歉。"
translate schinese Cane_Order_1c150e2e:
# e "I'll think about it later."
e "我还是待会再来吧。"
translate schinese Cane_Order_2acac5fa:
# c "Ya better."
c "说话算话啊。"
translate schinese strings:
old "Get a beer for 15 gold"
new "花费 15 金币购买淡啤酒"
old "Get an Ale for 20 gold"
new "花费 20 金币购买黑啤酒"
old "I'll think about it."
new "改天再喝"
# translate schinese Cane_Beer_Task_Begin_ad06b023:
# # c "Ey, Lad. Care for a minute?"
# c ""
# translate schinese Cane_Beer_Task_Begin_7115ea73:
# # e "A-alright."
# e ""
# translate schinese Cane_Beer_Task_Begin_5788285a:
# # c "Aye, just need ya here."
# c ""
# translate schinese Cane_Beer_Task_Begin_59cea04f:
# # "The barkeeper leads you behind the counter."
# ""
# translate schinese Cane_Beer_Task_Begin_779a612b:
# # c "Come closer little lad, not like I haven't seen ya naked already."
# c ""
# translate schinese Cane_Beer_Task_Begin_7c44435d:
# # e "Ehm... what can I do for you?"
# e ""
# translate schinese Cane_Beer_Task_Begin_fb970120:
# # c "Heh, look at ya squirming like I'm gonna catch cha off guard."
# c ""
# translate schinese Cane_Beer_Task_Begin_25dee0e0:
# # c "Nothing fancy, I was gonna ask ya about making some beer."
# c ""
# translate schinese Cane_Beer_Task_Begin_e21210b0:
# # e "Ehh...?"
# e ""
# translate schinese Cane_Beer_Task_Begin_2af458e9:
# # c "Look, I've got myself some work to do and ass to beat."
# c ""
# translate schinese Cane_Beer_Task_Begin_5386a646:
# # c "And those new lads you attracted from the work, they had a qualm with my classical beer."
# c ""
# translate schinese Cane_Beer_Task_Begin_52c171f6:
# # e "Classical Beer...?"
# e ""
# translate schinese Cane_Beer_Task_Begin_effc5f0c:
# # c "Classic, or Traditional. Ya think I don't know ya fancy words?"
# c ""
# translate schinese Cane_Beer_Task_Begin_77ac5b79:
# # c "Anyway, I came up with another recipe for my beer. But I need some more ingredients."
# c ""
# translate schinese Cane_Beer_Task_Begin_7ba6bfeb:
# # e "Ehm... you want me to get them for you."
# e ""
# translate schinese Cane_Beer_Task_Begin_2eb6e405:
# # c "Exactly, heh... ya surely know what I'm thinking."
# c ""
# translate schinese Cane_Beer_Task_Begin_f481bd89:
# # "The Bat nonchalantly squeezes your shoulder."
# ""
# translate schinese Cane_Beer_Task_Begin_1d2a6e29:
# # c "So, ya get me some barley from the field, and uhh... get some rosemary from that potion maker too."
# c ""
# translate schinese Cane_Beer_Task_Begin_367aa710:
# # c "I'll give ya yer fair share, 50 gold's right. Sounds fair?" nointeract
# c "" nointeract
# translate schinese Cane_Beer_Task_Begin_01f2a363:
# # e "Sure!"
# e ""
# translate schinese Cane_Beer_Task_Begin_9b9db49b:
# # c "Ya need a scythe for the field too. I'll give cha the recipe..."
# c ""
# translate schinese Cane_Beer_Task_Begin_ecfdbf6a:
# # c "Not like the lion shop is gonna help ya on this one."
# c ""
# translate schinese Cane_Beer_Task_Begin_b7a2c7ee:
# # e "W-wait... I didn't know I need a recipe for this?"
# e ""
# translate schinese Cane_Beer_Task_Begin_7112c74b:
# # c "Yeah, it's easy. Just get some iron and wood..."
# c ""
# translate schinese Cane_Beer_Task_Begin_cc98f4d3:
# # e "So... I have to gather them?"
# e ""
# translate schinese Cane_Beer_Task_Begin_1d17e4b2:
# # c "Well, ya promised me, now getcha ass in the field."
# c ""
# translate schinese Cane_Beer_Task_Begin_30292c50:
# # e "O-ok... but can you not... withhold information from me next time..."
# e ""
# translate schinese Cane_Beer_Task_Begin_696e1658:
# # c "Aye... Sorry my lad. Old habit is all. I'll be easy on ya."
# c ""
# translate schinese Cane_Beer_Task_Begin_b79eb010:
# # e "Maybe... Later?"
# e ""
# translate schinese Cane_Beer_Task_Begin_1a9e8e0c:
# # c "Eh... alright lad. Think quickly."
# c ""
# translate schinese Cane_Beer_Task_Begin_47f9dcf7:
# # c "Bet cha know what I'm thinking?"
# c ""
# translate schinese Cane_Beer_Task_Begin_4987c6dd:
# # e "Hmm... gathering more materials for you to brew?"
# e ""
# translate schinese Cane_Beer_Task_Begin_94128331:
# # c "Yer goddamn right."
# c ""
# translate schinese Cane_Beer_Task_Begin_9b41c95e:
# # e "I can do it."
# e ""
# translate schinese Cane_Beer_Task_Begin_880f6ad7:
# # c "Well then, get cha ass in the field."
# c ""
# translate schinese Cane_Beer_Task_Begin_d2c10949:
# # e "O-ok!"
# e ""
# translate schinese Cane_Beer_Task_Report_dfbdebc3:
# # c "Ay, finally, the lad of the day!"
# c ""
# translate schinese Cane_Beer_Task_Report_29234d6c:
# # e "Hey, Cane, got everything you need."
# e ""
# translate schinese Cane_Beer_Task_Report_97605dd3:
# # c "Good, Good."
# c ""
# translate schinese Cane_Beer_Task_Report_8f90d341:
# # c "That's enough, I'll go brew them right away."
# c ""
# translate schinese Cane_Beer_Task_Report_8c7b6f30:
# # c "Here's the reward for ya."
# c ""
# translate schinese Cane_Beer_Task_Report_0b9885a3:
# # "You received 50 gold."
# ""
# translate schinese Cane_Beer_Task_Report_6c74b0d5:
# # e "Ah Thanks Cane."
# e ""
# translate schinese Cane_Beer_Task_Report_0d6f8aaa:
# # c "No thank you!"
# c ""
# translate schinese Cane_Beer_Task_Report_50b4d826:
# # c "Thanks for making this good ol' bat having the time of his life."
# c ""
# translate schinese Cane_Beer_Task_Report_85f570c4:
# # c "Been a good while since I've got someone like cha here."
# c ""
# translate schinese Cane_Beer_Task_Report_820d502a:
# # c "Well, that'd be an understatement. Yer the best lad out here."
# c ""
# translate schinese Cane_Beer_Task_Report_2c287756:
# # e "Cane, I think you flatter me a lot."
# e ""
# translate schinese Cane_Beer_Task_Report_6e203f78:
# # c "No, lemme do this at least. It's the least I can do, and all I ever did was asking ya favours."
# c ""
# translate schinese Cane_Beer_Task_Report_1ea9c5d9:
# # e "No, I was having fun working with you, Cane."
# e ""
# translate schinese Cane_Beer_Task_Report_a507ebe0:
# # e "And well, and getting money from you."
# e ""
# translate schinese Cane_Beer_Task_Report_9e1fa7e2:
# # c "Ya know, lad... I should... do something for ya once."
# c ""
# translate schinese Cane_Beer_Task_Report_9ca7149e:
# # e "W-what's on your mind?"
# e ""
# translate schinese Cane_Beer_Task_Report_32a268bc:
# # c "Uhm... Yer making this old bat's cheeks red."
# c ""
# translate schinese Cane_Beer_Task_Report_19e22862:
# # "Cane casually slaps your ass, but this time he spent a little more time gripping onto your butt."
# ""
# translate schinese Cane_Beer_Task_Report_541b20f9:
# # e "H-hey..."
# e ""
# translate schinese Cane_Beer_Task_Report_063da3a8:
# # c "I'd do something for ya for once."
# c ""
# translate schinese Cane_Beer_Task_Report_dfbdebc3_1:
# # c "Ay, finally, the lad of the day!"
# c ""
# translate schinese Cane_Beer_Task_Report_9720a603:
# # e "H-hey!"
# e ""
# translate schinese Cane_Beer_Task_Report_7e6c8b9e:
# # "Cane casually slaps your ass."
# ""
# translate schinese Cane_Beer_Task_Report_06fe5205:
# # c "Good job!"
# c ""
# translate schinese Cane_Beer_Task_Report_dea5146c:
# # c "Thanks for making this bat's day."
# c ""
# translate schinese Cane_Beer_Task_Report_e8a5cd4f:
# # e "I'm glad I can help."
# e ""
# translate schinese Cane_Beer_Task_Report_e3aa8141:
# # c "Either way, here's your reward."
# c ""
# translate schinese Cane_Beer_Task_Report_1f68f8aa:
# # "You received 50 gold"
# ""
# translate schinese Cane_Beer_Task_Report_66fc3a5a:
# # e "Thanks!"
# e ""
# translate schinese Cane_Beer_Task_Report_671946cf:
# # c "Well, be back any time, for the ale."
# c ""
# translate schinese Cane_Beer_Task_Report_48507311:
# # c "Got the stuff I need?"
# c ""
# translate schinese Cane_Beer_Task_Report_6c60186f:
# # e "Y-yes..."
# e ""
# translate schinese Cane_Beer_Task_Report_4bba268b:
# # c "Nah... that's a no."
# c ""
# translate schinese Cane_Beer_Task_Report_db0f9849:
# # e "I'm sorry Cane."
# e ""
# translate schinese Cane_Beer_Task_Report_b7fb3c86:
# # c "Well, go and get 'em then."
# c ""
# translate schinese Cane_Favour_For_Ya_5f42f199:
# # c "'ello there, lad!"
# c ""
# translate schinese Cane_Favour_For_Ya_8fd9e0fa:
# # "Cane looks at you with his usual cheeky grin."
# ""
# translate schinese Cane_Favour_For_Ya_08ee8555:
# # c "Anything ye wantin' today?"
# c ""
# translate schinese Cane_Favour_For_Ya_d43f2acc:
# # "He waggles his eyebrows at you suggestively."
# ""
# translate schinese Cane_Favour_For_Ya_5ba8810a:
# # c "Maybe a bit o' tavern work, or quality time with some patrons?"
# c ""
# translate schinese Cane_Favour_For_Ya_d61bea93:
# # "You blush red like a tomato."
# ""
# translate schinese Cane_Favour_For_Ya_a5f6941e:
# # e "No, no. I'm not here for that this time."
# e ""
# translate schinese Cane_Favour_For_Ya_5e090dbd:
# # "Cane lets out a hearty chuckle straight from his gut, throwing a wink your way in the meanwhile."
# ""
# translate schinese Cane_Favour_For_Ya_483d5edf:
# # c "Shame. I know 'ow much ye enjoy yer work back there."
# c ""
# translate schinese Cane_Favour_For_Ya_d9bfb1b2:
# # e "A-anyway! I was here to ask about, umm. That favor you mentioned last time, when I helped you source more alcohol?"
# e ""
# translate schinese Cane_Favour_For_Ya_e946cbac:
# # "Cane's face sobers up immediately."
# ""
# translate schinese Cane_Favour_For_Ya_e858c89c:
# # c "Ah, yeah. Mentioned somethin' 'bout that, didn' I."
# c ""
# translate schinese Cane_Favour_For_Ya_0611bc4a:
# # "He shifts uncomfortably, looking down at his hands, grabbing a mug to his right and wiping it down."
# ""
# translate schinese Cane_Favour_For_Ya_8fd5d770:
# # c "I been thinkin' on it."
# c ""
# translate schinese Cane_Favour_For_Ya_639a0d66:
# # c "I just… dunno what I could give ya that would be worth as much a' what ye do fer this tavern and I."
# c ""
# translate schinese Cane_Favour_For_Ya_e7a9a473:
# # "Letting out a monumental sigh, Cane puts away the mug and towel, before spreading his arms out on the table."
# ""
# translate schinese Cane_Favour_For_Ya_2fd3fa98:
# # c "Still can't think o' nothin'. So… what'cha want me to do fer ya. Promise I'll do it fer ya if it's reasonable." nointeract
# c "" nointeract
# translate schinese Cane_Favour_For_Ya_e018790e:
# # e "Well… I could use some extra cash, on top of what I usually make serving the patrons."
# e ""
# translate schinese Cane_Favour_For_Ya_9f151ab1:
# # "Cane looks relieved, despite his firm desire to keep his money."
# ""
# translate schinese Cane_Favour_For_Ya_fb8de8f5:
# # c "Sure. 'ere."
# c ""