-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring_en.lua
More file actions
6239 lines (5431 loc) · 259 KB
/
string_en.lua
File metadata and controls
6239 lines (5431 loc) · 259 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
local strings = {
ACTIONS = {
USE_LIVING_ARTIFACT = "Use",
SEARCH_MYSTERY = "Search",
},
SCRAPBOOK = {
SPECIALINFO = {
KEY_TO_CITY = "Creat you own city.",
},
},
NAMES = {
COI = "Plateau Carp",
COI_COOKED = "Cooked Plateau Carp",
FARM_PLANT_RADISH = "Radish Plant",
KNOWN_RADISH_SEEDS = "Radish Seeds",
RADISH_SEEDS = "Drip Seeds",
FARM_PLANT_ALOE = "Aloe Plant",
KNOWN_ALOE_SEEDS = "Aloe Seeds",
ALOE_SEEDS = "Supple Seed Pods",
GRAVITY = "Plunging", --卡海
SQUISH = "Squeezing", --室内卡海
NOOXYGEN = "Suffocating",--海洋生物卡陆地
--"火烈鸟","Flamingo","Floodmingo","Floatmingo","Flatmingo","Flaimingo","高跷鸟"
},
UI = {
COOKBOOK = {
FOOD_EFFECTS_ANTIHISTAMINE = "Clear the airway",
FOOD_EFFECTS_SPEED_BOOST = "Accelerates movement",
},
PLANTREGISTRY = {
DESCRIPTIONS = {
RADISH = "It’s totally rad. -W",
ALOE = "Taste like: not clear. -W",
},
},
CRAFTING_FILTERS = {
ENVIRONMENT_PROTECTION = "Environmental Shielding",
HOME_MISC = "Items",
HOME_COLUMN = "Columns",
HOME_RUG = "Rugs",
HOME_HANGINGLAMP = "Pendants",
HOME_LAMP = "Lamps",
HOME_PLANTHOLDER = "Plantholders",
HOME_FURNITURE = "Furnitures",
HOME_WALL_DECORATION = "Ornaments",
HOME_WALLPAPER = "Wallpaper",
HOME_FLOOR = "Floors",
HOME_DOOR = "Doors",
},
CUSTOMIZATIONSCREEN = {
PRESETLEVELS = {
PORKLAND_DEFAULT = "Hamlet",
PORKLAND_PULS = "Above the Clouds",
},
PRESETLEVELDESC = {
PORKLAND_DEFAULT = "A deeply dangerous jungle?",
PORKLAND_PULS = "A vast high-altitude world, with ton of original content.",
},
TASKSETNAMES = {
PORKLAND = "Hamlet",
},
HIPPOPOTAMOOSE_SETTING = "Hippopotamooses",
HIPPOPOTAMOOSE = "Hippopotamooses",
BILL_SETTING = "Platapines",
MOSQUITO_SETTING = "Mosquitos",
MANDRAKEMAN_SETTING = "Elder Mandrakes",
FROG_POISON_SETTING = "Poison Dartfrogs",
PUGALISK_FOUNTAIN = "Fountain of Youth",
VAMPIREBAT = "Vampire Bat Attacks",
POG = "Pogs",
THUNDERBIRD_SETTING = "Thunderbird",
THUNDERBIRDNEST = "Thundernest",
BRAMBLES = "Brambles",
PIGBANDIT = "Masked Pig",
ROC_SETTING = "BFB",
GIANTGRUB_SETTING = "Giant Grub",
},
--[[
WORLDGEN = {
NOUNS_PL = {--ham
"rainforest...","dense foliage...","insects...","carnivorous plants...","cursed temples...","death defining adventure...",
"cobblestones...","shop hours of business...","street life...","piglatin...","leafy canopy...","civilization...","economy...",
"royalty...",
--new
"expedition...", "wagstaff's gloves...", "wheeler's autobiography...", "wilba's etiquette...", "warbucks' exploit...",
"queen...", "the \"moon\"...", "third types of contact...",
"sinful trade...", "utopiga...", "cut off...", "globalize...",
"our future...", "ultraviolet light...", "acidoid...", "ancient technology...", "golden voyage...",
},
},]]
},
CHARACTERS = {
--ds
--New strings? really?
GENERIC= {
ANNOUNCE_GNATS_DIED="Take that, bugs!",
ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "A magnifying glass would be better.",--1 to 10
SEARCHFORAWHILE = "I could probably make it without tools...",--10 to 50
CLOSETOSUCCESS = "Where there is Willson is a way!",--50 plus
},
},
DESCRIBE = {
BASEFAN = {
ON = "Fan-tastic.",
LOWFUEL = "It's run out of fuel.",
},
MOONDIAL = {
APORKALYPSE = "There's something in the water.",
},
SMELTER = {
EMPTY = "I smelt that!",--original speech
DONE = "It's done!",
COOKING_SHORT = "This is going to take a while.",--ref cookpot
BURNT = "The smelter got smelted.",--ref cookpot
},
PIG_RUINS_SOW = "A superb local art craft.",
PIG_RUINS_MUSHROOM = "A vivid display of... their love.",
PIG_RUINS_ANT = "An abstract insect or something.",
PIKO_ORANGE = {
GENERIC = "For some reason I'm craving tea.",--original speech
SLEEPING = "Probably dreaming of trees.",--same as piko
DEAD = "I feel kinda bad.",--same as piko
},
--Above the clouds new things
COI = "Now I shall eat for a day.",
COI_COOKED = "Grilled to perfection.",
},
},
WILLOW = {
ANNOUNCE_GNATS_DIED="Without fire I can still handle you.",
--[[ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "",--1 to 10
SEARCHFORAWHILE = "",--10 to 50
CLOSETOSUCCESS = "",--50 plus
},
},]]
DESCRIBE = {
BASEFAN = {
ON = "Fan the flames.",
LOWFUEL = "We need fire the more flames.",
},
MOONDIAL = {
APORKALYPSE = "Hey! That's the color of fire.",
},
SMELTER = {
EMPTY = "Oh yeah! Now I can burn metal.",--original speech
DONE = "When are we do this again?",
COOKING_SHORT = "The fire is doing its thing!",--ref cookpot
BURNT = "Okay, that's a liitle bit too far.",
},
--PIG_RUINS_SOW = "",
--PIG_RUINS_MUSHROOM = "",
--PIG_RUINS_ANT = "",
PIKO_ORANGE = {
GENERIC = "Squirrelly little guy.",--original speech
SLEEPING = "I bet I could catch it now.",--same as piko
DEAD = "Didn't run fast enough.",--same as piko
},
--Above the clouds new things
COI = "It's kind of pretty for something that lives in the water.",
COI_COOKED = "Fire make it much prettier.",
},
},
WOLFGANG = {
ANNOUNCE_GNATS_DIED="Wolfgang's muscles feel better.",
--[[ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "",--1 to 10
SEARCHFORAWHILE = "",--10 to 50
CLOSETOSUCCESS = "",--50 plus
},
},]]
DESCRIBE = {
BASEFAN = {
ON = "Is cool on Wolfgang skin.",
LOWFUEL = "Hungry little machines can't run fast.",
},
MOONDIAL = {
APORKALYPSE = "Tiny pool is getting scary too.",
},
SMELTER = {
EMPTY = "Wolfgang lifted it without difficulty.",
DONE = "Fire make metal bricks.",--original speech
COOKING_SHORT = "Is almost melt!",--ref cookpot
BURNT = "Smelter is dead.",
},
--PIG_RUINS_SOW = "",
--PIG_RUINS_MUSHROOM = "",
--PIG_RUINS_ANT = "",
PIKO_ORANGE = {
GENERIC = "Tiny, weak orange fluff.",--original speech
SLEEPING = "Tiny orange fluff is sleep time.",--same as piko
DEAD = "Is tiny orange fluff dead part.",--same as piko
},
--Above the clouds new things
COI = "Fancy fish.",
COI_COOKED = "Wolfgang will swallow fancy fish!",
},
},
WENDY = {
--better someone to help me retranslate them :P
--ANNOUNCE_GNATS_DIED="现在还没轮到我。",
--[[ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "",--1 to 10
SEARCHFORAWHILE = "",--10 to 50
CLOSETOSUCCESS = "",--50 plus
},
},]]
DESCRIBE = {
BASEFAN = {
ON = "Alas the relief it brings is only temporary.",
LOWFUEL = "It gave itself up to give us charity.",
},
MOONDIAL = {
APORKALYPSE = "It was red with blood.",
},
SMELTER = {
EMPTY = "Burn who are trapped in it...",
DONE = "Reborn of fire.",
COOKING_SHORT = "They struggle in the fire and brimstone.",
BURNT = "It blazes with more passion than I know.",--original speech
},
--PIG_RUINS_SOW = "",
--PIG_RUINS_MUSHROOM = "",
--PIG_RUINS_ANT = "蝼蚁的纪念碑。",
PIKO_ORANGE = {
GENERIC = "You exist to amuse others.",--original speech
SLEEPING = "Such a innocent sleep.",--same as piko
DEAD = "Even the innocent must die.",--same as piko
},
--Above the clouds new things
COI = "It's almost too pretty to eat. Almost.",
COI_COOKED = "Life forces us to hurt each other.",
},
},
WX78 = {
ANNOUNCE_GNATS_DIED="INTERFERENCE MEATSACKS CLEARED",
ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "REQUIRE VISUAL ENHANCER ATTACHMENT",--1 to 10
SEARCHFORAWHILE = "WATCH THIS, FLESHLINGS",--10 to 50
CLOSETOSUCCESS = "I REFUSE TO FAIL",--50 plus
},
},
DESCRIBE = {
BASEFAN = {
ON = "COOLING FAN",
LOWFUEL = "REQUIRE POWER",
},
MOONDIAL = {
APORKALYPSE = "SHADOW MAGIC DETECTED",
},
SMELTER = {
EMPTY = "HELLO, FRIEND",--original speech
DONE = "RECEIVED RETRUN VALUE",
COOKING_SHORT = "FRIEND ARE OUTPIT AT MAXIMUM POWER",
BURNT = "SORRY, FRIEND",
},
--PIG_RUINS_SOW = "",
--PIG_RUINS_MUSHROOM = "",
--PIG_RUINS_ANT = "",
PIKO_ORANGE = {
GENERIC = "MEAT MACHINE WITH BREWING PROPERTIES",--original speech
SLEEPING = "IN SLEEP MODE",--same as piko
DEAD = "NONFUNCTIONING",--same as piko
},
--Above the clouds new things
COI = "THIS ORGANIC COULDN'T DECIDE ON A COLOR",
COI_COOKED = "MISSING ADDON... CHIPS",
},
},
WICKERBOTTOM = {
ANNOUNCE_GNATS_DIED="I finally got rid of these Culicidae Drosophila.",
ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "The slits are too small for my eyes.",--1 to 10
SEARCHFORAWHILE = "It is possible if I careful enough.",--10 to 50
CLOSETOSUCCESS = "I must finish my present work first...",--50 plus
},
},
DESCRIBE = {
BASEFAN = {
ON = "Restorative.",
LOWFUEL = "It needs fuel to reboot.",
},
MOONDIAL = {
APORKALYPSE = "Hmm... It was influenced by third parties.",
},
SMELTER = {
EMPTY = "A metalsmithing tool.",--original speech
DONE = "Recooling and done.",
COOKING_SHORT = "The metal is melting into liquid state.",
BURNT = "Is anyone hurt?",
},
--PIG_RUINS_SOW = "",
--PIG_RUINS_MUSHROOM = "",
--PIG_RUINS_ANT = "",
PIKO_ORANGE = {
GENERIC = "An amusingly named mammalian fuzzball.",--original speech
SLEEPING = "It is asleep.",--same as piko
DEAD = "I feel a touch of grief at its passing.",--same as piko
},
--Above the clouds new things
COI = "Some fancy variety of gymnocypris waddellii.",
COI_COOKED = "Beautifully grilled.",
},
},
WOODIE = {
--ANNOUNCE_GNATS_DIED="我的招数多着呢。",
--[[ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "",--1 to 10
SEARCHFORAWHILE = "",--10 to 50
CLOSETOSUCCESS = "",--50 plus
},
},]]
DESCRIBE = {
BASEFAN = {
ON = "Yep. That's a nice breeze.",
LOWFUEL = "It needs firewood.",
},
MOONDIAL = {
APORKALYPSE = "I felt worse.",
},
GNAT = "Lotta those guys in the lumber camps.",
SMELTER = {
EMPTY = "It's like a giant maple syrup bucket.",
DONE = "Hrumph. A big production for a little metal.",--original speech
COOKING_SHORT = "Oh boy! Here it comes!",--ref cookpot
BURNT = "How did it get burned?!",--same as science machine
},
--PIG_RUINS_SOW = "",
--PIG_RUINS_MUSHROOM = "",
--PIG_RUINS_ANT = "",
PIKO_ORANGE = {
GENERIC = "They like trees almost as much as us.",--original speech
SLEEPING = "All tuckered out.",--same as piko
DEAD = "Poor little critter...",--same as piko
},
--Above the clouds new things
COI = "Sorry bud, but your whiskers don't hold a candle to mine.",
COI_COOKED = "Good bye bud.",
},
},
WAXWELL = {
--ANNOUNCE_GNATS_DIED="不要烦扰一位绅士。",
--[[ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "",--1 to 10
SEARCHFORAWHILE = "",--10 to 50
CLOSETOSUCCESS = "",--50 plus
},
},]]
DESCRIBE = {
BASEFAN = {
ON = "Ah. Civilization.",
LOWFUEL = "Maintaining a comfortable life comes at a price.",
},
MOONDIAL = {
APORKALYPSE = "They are coming.",
},
SMELTER = {
EMPTY = "Finally we're catching up to the Iron Age.",--original speech
--DONE = "艰难的成果。",
--COOKING_SHORT = "看好了!别让火熄灭。",
BURNT = "Back to the Stone Age.",
},
--PIG_RUINS_SOW = "",
--PIG_RUINS_MUSHROOM = "",
--PIG_RUINS_ANT = "",
PIKO_ORANGE = {
GENERIC = "How amusing.",--original speech
SLEEPING = "The pest is asleep.",--same as piko
DEAD = "It has been exterminated.",--same as piko
},
--Above the clouds new things
COI = "Fresh from the murky depths.",
COI_COOKED = "Bland... but acceptable.",
},
},
--rog
WATHGRITHR = {
--ANNOUNCE_GNATS_DIED="这就是下场,虫子。",
--[[ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "",--1 to 10
SEARCHFORAWHILE = "",--10 to 50
CLOSETOSUCCESS = "",--50 plus
},
},]]
DESCRIBE = {
BASEFAN = {
ON = "Conquers the heat!",
LOWFUEL = "Heat has return.",
},
MOONDIAL = {
APORKALYPSE = "Hati is almost there!",
},
SMELTER = {
EMPTY = "The tools of dwarves.",--original speech
DONE = "Now make me a sharp edge!",
--COOKING_SHORT = "耐心是优秀战士的必备品质。",
BURNT = "My role is warrior, not artizan.",
},
--PIG_RUINS_SOW = "",
--PIG_RUINS_MUSHROOM = "",
--PIG_RUINS_ANT = "",
PIKO_ORANGE = {
GENERIC = "It is made of meat!",--original speech
SLEEPING = "It slumbers unwisely.",--same as piko
DEAD = "It has fallen.",--same as piko
},
--Above the clouds new things
COI = "Vanquished by Huginn's hand.",
COI_COOKED = "Tis barely a morsel!",
},
},
WEBBER = {
--ANNOUNCE_GNATS_DIED="我们安全了!",
--[[ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "",--1 to 10
SEARCHFORAWHILE = "",--10 to 50
CLOSETOSUCCESS = "",--50 plus
},
},]]
DESCRIBE = {
BASEFAN = {
ON = "That breeze feels nice on our fur.",
LOWFUEL = "No power, no breeze.",
},
MOONDIAL = {
APORKALYPSE = "Is that really the moon?",
},
SMELTER = {
EMPTY = "Make material with material.",
DONE = "It's finished.",
COOKING_SHORT = "Yeesh, that's hot!",--original speech
BURNT = "All burned up.",
},
--PIG_RUINS_SOW = "",
--PIG_RUINS_MUSHROOM = "",
--PIG_RUINS_ANT = "",
PIKO_ORANGE = {
GENERIC = "I wonder if he likes tea parties.",--original speech
SLEEPING = "All that running around must have worn him out.",--same as piko
DEAD = "Aww. I liked him.",--same as piko
},
--Above the clouds new things
COI = "Nice beard!",
COI_COOKED = "It's not as nice anymore.",
},
},
--sw
WALANI = {
--ANNOUNCE_GNATS_DIED="清静了,终于。",
--[[ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "",--1 to 10
SEARCHFORAWHILE = "",--10 to 50
CLOSETOSUCCESS = "",--50 plus
},
},]]
DESCRIBE = {
BASEFAN = {
ON = "A nice breeze.",
LOWFUEL = "It needs some juice.",
},
MOONDIAL = {
APORKALYPSE = "I bet it's bad stuff.",
},
SMELTER = {
EMPTY = "I'll just let that do all the work for me.",--original speech
DONE = "Well done, bro.",
--COOKING_SHORT = "它把自己烧得通红。",
BURNT = "This is what you get for trying too hard.",
},
--PIG_RUINS_SOW = "",
--PIG_RUINS_MUSHROOM = "",
--PIG_RUINS_ANT = "",
PIKO_ORANGE = {
GENERIC = "Oh, I get it.",--original speech
SLEEPING = "I wish I could join you, buddy.",--same as piko
DEAD = "No! Little buddy!",--same as piko
},
--Above the clouds new things
COI = "Wow, that's a good fortune omen.",
COI_COOKED = "I take that fortune.",
},
},
WARLY = {
ANNOUNCE_GNATS_DIED="Mon dieu, thank heaven.",
--[[ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "",--1 to 10
SEARCHFORAWHILE = "",--10 to 50
CLOSETOSUCCESS = "",--50 plus
},
},]]
DESCRIBE = {
BASEFAN = {
ON = "Good ventilation in the kitchen is an must.",
LOWFUEL = "I have to give up my fruitwoods.",
},
MOONDIAL = {
APORKALYPSE = "Who poured the blood in it?",
},
SMELTER = {
EMPTY = "'Smelt' bad, if you ask me.",--original speech
DONE = "Fresh out of the oven! Be careful with the scalding.",
COOKING_SHORT = "The flavors are fusing.",
BURNT = "I'm better at cooking food than metal.",
},
--PIG_RUINS_SOW = "",
--PIG_RUINS_MUSHROOM = "",
--PIG_RUINS_ANT = "",
PIKO_ORANGE = {
GENERIC = "I prefer English Breakfast.",--original speech
SLEEPING = "Dreaming of nuts, no doubt.",--same as piko
DEAD = "An unfortunate end.",--same as piko
},
--Above the clouds new things
COI = "Poisson!",
COI_COOKED = "Could use a squeeze of lemon...",
},
},
WOODLEGS = {
--Omg articulate PLZ!
ANNOUNCE_GNATS_DIED="Die! Flyin' minnows!",
--[[ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "",--1 to 10
SEARCHFORAWHILE = "",--10 to 50
CLOSETOSUCCESS = "",--50 plus
},
},]]
DESCRIBE = {
BASEFAN = {
ON = "A cool wind blows from thee!",
LOWFUEL = "Thet b'lookin' mor'n a tad low.",
},
MOONDIAL = {
APORKALYPSE = "Thet water be cursed!",
},
SMELTER = {
EMPTY = "A cannon fer makin' metals.",--original speech
DONE = "She's ready ta fire!",
COOKING_SHORT = "Ye'll be done soon 'nuff.",
BURNT = "Blast the bore!",
},
--PIG_RUINS_SOW = "",
--PIG_RUINS_MUSHROOM = "",
--PIG_RUINS_ANT = "",
PIKO_ORANGE = {
GENERIC = "Aye, 'tis a useful brood.",--original speech
SLEEPING = "Grabbin' some shuteye.",--same as piko
DEAD = "Tells no tales.",--same as piko
},
--Above the clouds new things
COI = "Fish! One o'me favorites.",
COI_COOKED = "Th'fish roasted up good.",
},
},
--ham
WORMWOOD = {
ANNOUNCE_GNATS_DIED="Bzzters gone",
--[[ACTIONFAIL = {
SEARCH_MYSTERY = {
GENERIC = "",--1 to 10
SEARCHFORAWHILE = "",--10 to 50
CLOSETOSUCCESS = "",--50 plus
},
},]]
DESCRIBE = {
BASEFAN = {
ON = "Wind",
LOWFUEL = "No Wind",
},
MOONDIAL = {
APORKALYPSE = "Who?",
},
IRON = "Clinky Rock",
SMELTER = {
EMPTY = "Clinky rock cooker",
DONE = "Done!",
COOKING_SHORT = "Hot! Hot!",--original speech
BURNT = "Nothing",
},
--PIG_RUINS_SOW = "",
PIG_RUINS_MUSHROOM = "Not friend.",
PIG_RUINS_ANT = "Chr'ik rock",
PIKO_ORANGE = {
GENERIC = "Fluffy Nabber",--original speech
SLEEPING = "Sleeping. Shh...",--same as piko
DEAD = "Aw...",--same as piko
},
--Above the clouds new things
COI = "Golden Glub Glub",
COI_COOKED = "Watch for bones",
},
},
--dst
WINONA = {--[[--Does anyone really play Winona lot?
ANNOUCE_UNDERLEAFCANOPY = "树把光线都挡住了!我什么都看不见!",--unuse
ANNOUCE_ALARMOVER = "呼,平安度过。",
ANNOUCE_BATS = "蝙蝠!好像是冲着我来的!",]]
ANNOUCE_OTHERWORLD_DEED = "I'd rather count on family cabin in BC.",
--[[ANNOUNCE_TOOLCORRODED = "这些工具的质量太差了。",--unuse
ANNOUNCE_TURFTOOHARD = "这里的土层相当瓷实。",
ANNOUNCE_GAS_DAMAGE = "咳!瓦斯!咳!有瓦斯!",
ANNOUNCE_SNEEZE = "啊啾!",
ANNOUNCE_HAYFEVER = "我的鼻子好痒...",
ANNOUNCE_HAYFEVER_OFF = "呼,终于舒服了。",
ANNOUNCE_PICKPOOP = {"噫!","太脏了!","难以忍受!",},
ANNOUNCE_TOO_HUMID = {"%s一点都不透气。","这%s闷得我要喘不过气来了。"},
ANNOUNCE_DEHUMID = "这样就舒服多了。",
ANNOUNCE_PUGALISK_INVULNERABLE = {"太硬了!", "手都震麻了!", "它肯定有个软肋。"},
ANNOUNCE_MYSTERY_FOUND = "这下面有什么东西。",
ANNOUNCE_MYSTERY_NOREWARD = "我很确定这里什么都没有。",
ANNOUNCE_MYSTERY_DOOR_FOUND = "嘿!这后面有一扇暗门!",]]
ANNOUNCE_MYSTERY_DOOR_NOT_FOUND = "Jusr a wall.",
ANNOUNCE_HOUSE_DOOR = "This is illegal construction.",
ANNOUNCE_ROOM_STUCK = "We need to get out of here before the demolition.",
--ANNOUNCE_TAXDAY = "收税日到了!排好队!",
ANNOUNCE_NOTHING_FOUND = "I think it's beyond its limits.",
ANNOUNCE_SUITUP = "Fully armed!",
--new
ANNOUNCE_GNATS_DIED="I warned get away from me.",
--ANNOUNCE from Island Adventure
ANNOUNCE_BOAT_DAMAGED = "I should tape these holes up.",
ANNOUNCE_BOAT_SINKING = "I don't think tape will be enough now.",
ANNOUNCE_BOAT_SINKING_IMMINENT = "That's a lotta damage!",
ANNOUNCE_WAVE_BOOST = "Whoo nelly!",
ACTIONFAIL = {
USEDOOR = {
GENERIC = "This door doesn't work.",
LOCKED = "I need the right key.",
},
--[[SHOP = {
CANTPAY = "",
GENERIC = "",
},
SEARCH_MYSTERY = {
GENERIC = "",--1 to 10
SEARCHFORAWHILE = "",--10 to 50
CLOSETOSUCCESS = "",--50 plus
},
--ACTIONFAIL from Island Adventure
REPAIRBOAT = {
GENERIC = "",
},]]
},
DESCRIBE = {
GRASS_TALL = {
BURNING = "A Grass fire!",
GENERIC = "That's some... very tall grass.",
PICKED = "All work is done.",
},
SHEARS = "Shears for gardening.",
PEAGAWK = {
GENERIC = "Always be vigilant.",
SLEEPING = "It let down its guard.",
},
PEAGAWKFEATHER = "It's still looking at me.",
PEAGAWK_BUSH = "A vigilant bush, how strange!",
WEEVOLE = "Once you've dealt with bedbugs, weevils aren't so bad.",
WEEVOLE_CARAPACE = "It can be regarded as clean.",
ARMOR_WEEVOLE = "Not very comfortable, just let it go.",
ALOE = "Is it health benefits?",
--ALOE_COOKED = "应该不会有问题,尝试一下吧。",
ALOE_PLANTED = "A weird plant.",
ALOE_SEEDS = "A handful of seeds.", --DST seeds line
ASPARAGUS_PLANTED = "Vegetables with lot of iron.",
--RADISH = "非常火辣的萝卜。",
--RADISH_COOKED = "粗糙的加工适得其反。",
RADISH_PLANTED = "Perfectly pluckable.",
RADISH_SEEDS = "A handful of seeds.", --DST seeds line
--[[
RELIC_1 = "会有有钱人想要这个的。",
PIG_RUINS_IDOL = "一定有什么办法把上面那部分卸下来。",
RELIC_2 = "我猜它会有一些文化价值。",
PIG_RUINS_PLAQUE = "一定有什么办法把上面那部分卸下来。",
RELIC_3 = "终究是文物,没准猪人会想要。",
PIG_RUINS_HEAD = "一定有什么办法把中间那部分卸下来。",
RELIC_4 = "也许她很特殊。",
PIG_RUINS_SOW = "这个看起来不太一样,我们把它带回去吧。",--蓝母猪建筑
RELIC_5 = "小心别把它碰坏了。",
PIG_RUINS_MUSHROOM = "镶嵌了许多宝石,一定很值钱。",--宝石松露建筑
--PIG_RUINS_ANT = "",
PIG_RUINS_PIG = "未免太过于张扬了。",
PIG_SHOP_CITYHALL = {
GENERIC = "当官的工作的地方。",
BURNING= "没做好消防工作啊。",
},
PIG_SHOP_CITYHALL_PLAYER = {
GENERIC = "我的新车间。",
BURNING = "嘿!是谁干出来的?",
},
PIG_PALACE = "呃,有必要这么夸张吗?",
PIGMAN_QUEEN = "养尊处优的家伙。",
PIGMAN_MAYOR = {
GENERIC = "四体不勤的家伙。",
SLEEPING = "睡吧,懒猪。",
},
APORKALYPSE_CLOCK = "一套相当复杂的仪表装置。",]]
ANCIENT_HERALD = "Are we just gonna sit here and watch him destroy everything?",
--WALL_PIG_RUINS = "一堵年久失修的墙。",
ANCIENT_HULK ="Why is it always killer automations?",--shoul't use "robot" because the word invent in 1920
ANCIENT_ROBOTS_ASSEMBLY ="There is still work to be done.",
ANCIENT_ROBOT_CLAW ="I'll handle it.",
ANCIENT_ROBOT_HEAD ="A hideous mechanical head.",
ANCIENT_ROBOT_LEG ="This boot is not insulated at all.",
ANCIENT_ROBOT_RIBS ="Machine frame, I guess.",
INFUSED_IRON = "This is not a natural metal pattern.",
LIVING_ARTIFACT ="WX seems confused about us wearing it",
--ROCK_BASALT = "天然的石砖。",
OINC="Is that a salary?",--[[
OINC10="一点小积蓄,不要浪费。",
OINC100="勤奋是致富之本。",
--spawner]]
PORKLAND_INTRO_BASKET = "Sadly it didn't work.",
--PORKLAND_INTRO_BALLOON = "破成这样,应该补不好了。",
PORKLAND_INTRO_TRUNK = "Just a \"W\"...Hey! Whose is this?",
PORKLAND_INTRO_SUITCASE = "Just a \"W\"...Hey! Whose is this?",--[[
PORKLAND_INTRO_FLAGS = "必要的装饰。",
PORKLAND_INTRO_SANDBAG = "一大包沙子,已经没用了。",
GLOWFLY={
GENERIC="会飞的聚光灯。",
SLEEPING="检修时间到。",
DEAD="它坏掉了。",--how to examine it?
},
GLOWFLY_COCOON="改变正在发生。",
RABID_BEETLE={
GENERIC="你们到底在兴奋什么?",
SLEEPING="好好冷静一下!",
DEAD="啊,消停了。",--how to examine it?
},
TREE_PILLAR="它一直延伸到我视野的尽头。",
FLOWER_RAINFOREST="我从未见过这样的花。",
BRAMBLESPIKE="缠绕在一起的一大团东西。",
BRAMBLE_BULB="不知道这有什么用。",
BRAMBLE_CORE="这一定就是源头。",
ROOTTRUNK_CHILD = "自动化物流,这才是未来。",
CHITIN="我不知道这能拿来做什么。",]]
TURF_PIGRUINS = "That's a chunk of ground.",--unuse
TURF_RAINFOREST = "That's a chunk of ground.",
TURF_DEEPRAINFOREST = "That's a chunk of ground.",--unuse
TURF_GASJUNGLE = "That's a chunk of ground.",--unuse
TURF_LAWN = "That's a chunk of ground.",
TURF_MOSS = "That's a chunk of ground.",
TURF_FIELDS = "That's a chunk of ground.",
TURF_FOUNDATION = "That's a chunk of foundation.",
TURF_COBBLEROAD = "That's a chunk of road.",
TURF_PAINTED = "That's a chunk of ground.",
TURF_PLAINS = "That's a chunk of ground.",
TURF_DEEPRAINFOREST_NOCANOPY = "That's a chunk of ground.",
PANGOLDEN = "Living metallurgical.",
SEDIMENTPUDDLE = "The metal content is seriously over the limit.",
--GNATMOUND = "那些虫子就住在这里面。",
GNAT = "Get away from me!",
TUBERTREE = "A giant ginger I guess?",
IRON = "Invaluable material for manufacturing useful tools.",
--CUTNETTLE = "保持呼吸顺畅、提神醒脑。",--item
--[[NETTLE = {--plant
WITHERED = "土地不够好,你可真挑剔。",
MOIST = "我想它已经被伺候到位了。",
EMPTY = "它还会再长出来的。",
DEFAULT = "它散发着强烈的气味。",
},
DUG_NETTLE = "我们把它带回营地吧。",--dug plant]]
MEATED_NETTLE = "The chef really went to a lot of work to get Wigfrid eat it.",--meat
NETTLELOSANGE = "Being cruel to be kind.",
ALLOY = "Proper processing makes it better.",
HALBERD = "More suited to combat than to work.",
--ARMOR_METALPLATE = "笨重,但防护效果出奇地好。",
--METALPLATEHAT = "看起来像是殖民者会戴的东西。",
SMELTER = {
EMPTY = "Process the metallic material.",
DONE = "knock off!",
COOKING_SHORT = "Rome was not built in a day.",
--BURNT = "忘记了消防守则,是不是?",
},
BLUNDERBUSS = "Backward and advanced tools of violence.",
THUNDERBIRD = "A classic case of over much static electricity.",
THUNDERBIRDNEST = "You wouldn't wanna on it without safety boots.",
FEATHER_THUNDER = "It's definitely a safety hazard.",
THUNDERHAT = "It forms a faraday cage.",
LAWNORNAMENT = {
GENERIC = "Well, it's someone's work after all.",
BURNING = "It's fire!",
BURNT = "Maybe next time better.",
},
--SPRINKLER = "自动给我的农场送水。",
TEA = "A good pot of tea sets the spirit of the day.",
ICEDTEA = "What a enjoyment.",
TEATREE = "Enough to whole workshop's tea supply.",
TEATREE_SAPLING = "Our tea supply for next season.",
--TEATREE_NUT = "拯救我的鼻子于水火之中。",
TEATREE_NUT_COOKED = "Heat enhances its effects.",
GASMASKHAT = "Safety first, comfort second.",
BASEFAN = {
ON = "I'm sure bossman would be very interested in it.", --ref wagstaff basefan line
LOWFUEL = "It needs fuel to power itself.",
},
MOONDIAL = {
APORKALYPSE = "This seems to send some kind of danger signal.",
},
RAINFORESTTREE = {
--GENERIC = "它们的叶子是粉色的。",
--CHOPPED = "看看这年轮,它一定很老了。",
BURNING = "Evrything live in that tree is in trouble.",
--BURNT = "变成木炭了。",
},
RAINFORESTTREE_ROT = "Suffer by tumor.",
--BURR = "厚重的盔甲使它免受外界伤害。",
BURR_SAPLING = {
GENERIC = "A tiny rainforest tree.",
BURNING = "Willow! Stop!",
PICKED = "This burden was too much for it.",
WITHERED = "This burden was too much for it.",
},
POG = {
GENERIC = "I'll forgive everything for those eyes.",
FOLLOWER = "Do you like me? I like you too!",
SLEEPING = "It's sleeping.",
--APORKALYPSE = "停下!冷静一点!",
},
--[[DUNGBEETLE = {
GENERIC = "无论你看到过多少次,都是很难接受。",
UNDUNGED = "看上去像是痛失所爱。",
SLEEPING = "休息是必须的。",
DEAD = "她死了吗?",
},
DUNGBALL = "我绝对不会去碰它。",
DUNGPILE = {
GENERIC = "呃,恶心。",
PICKED = "我以为已经结束了?",
},]]
--MANDRAKEMAN = "即使是我也忍受不了这个。",
--MANDRAKEHOUSE = "它被建造成尖叫脸的样子。",
SCORPION = {
GENERIC = "I don't like you.",
SLEEPING = "Don't wake it.",
--DEAD = "呼,这下我不用时刻绷紧神经了。",
},
SNAKE_AMPHIBIOUS = "Stay away from me, you vicious creature!",
DISARMING_KIT = "Say no to unfriendly machines.",
--MAGNIFYING_GLASS = "确保你不错过哪怕最小的细节。",
GOLDPAN = "Separate the metal.",
BALLPEIN_HAMMER = "So I can take them out without damaging them.",
--GOLD_DUST = "黄金!我的好运气来了!",
--GRABBING_VINE = "我看到了一条结实的绳索。",
--HANGING_VINE = "我看到了一条结实的绳索。",
SPIDER_MONKEY_TREE = "They treat this tree like a spindle.",
--SPIDER_MONKEY_NEST = "我是不是不该在这?",
--[[SPIDER_MONKEY = {
GENERIC = "我尽量不去想它是从哪来的。",
SLEEPING = "怪物也需要睡觉。",
DEAD = "我终于不用再见着它了。",
},]]
VAMPIREBAT = {
GENERIC = "Messenger of the woes.",
--SLEEPING = "养精蓄锐。",
DEAD = "Go back to your shadow!",
},
--VAMPIREBATCAVE = "我感到脊背发凉。",
--[[PIKO = {
GENERIC = "叫人讨厌不起来的小偷。",
SLEEPING = "为捣更多乱养精蓄锐。",
DEAD = "死了。",
},
PIKO_ORANGE = {
GENERIC = "它几乎什么都吃。",
SLEEPING = "为捣更多乱养精蓄锐。",
DEAD = "死了。",
},]]
--[[PIGHOUSE_CITY = {
GENERIC = "很难想象样的座房屋是由猪完成的。",
BURNING = "付之一炬。",
},]]
PIGHOUSE_MINE = {
GENERIC = "A mine house for miner.",
BURNING = "The flames consumed everything here.",
},
PIGHOUSE_FARM = {
GENERIC = "A farm house for farmer.",
BURNING = "The flames consumed everything here.",
},
--VENUS_STALK = "就建材来说有点太水了。",--捕蝇草茎
--WALKINGSTICK = "脱水后就变成了一根耐用的拐杖。",--手杖
ADULT_FLYTRAP = {--利齿捕蝇草
--GENERIC = "只会等着食物喂到嘴里的家伙。",
SLEEPING = "It's resting.",
DEAD = "I think it was dead already.",
},
MEAN_FLYTRAP = {--幼苗
GENERIC = "Insatiable hunger for foods.",
SLEEPING = "It's resting.",
DEAD = "It's dead.",
},
--NECTAR_POD = "蜂蜜的半成品。",
--CORKBOAT = "它绝对通过不了安全性测试。",
DECO_CHAIR_CLASSIC = "A comfortable chair.",
DECO_CHAIR_CORNER = "A comfortable chair.",
DECO_CHAIR_BENCH = "A comfortable chair.",
DECO_CHAIR_HORNED = "A comfortable chair.",
DECO_CHAIR_FOOTREST = "A comfortable chair.",
DECO_CHAIR_LOUNGE = "A comfortable chair.",
DECO_CHAIR_MASSAGER = "What a cold-blooded use.",
DECO_CHAIR_STUFFED = "A comfortable chair.",
DECO_CHAIR_ROCKING = "A comfortable chair.",
DECO_CHAIR_OTTOMAN = "A comfortable chair.",
--[[
DECO_LAMP_FRINGE = "",
DECO_LAMP_STAINGLASS = "",
DECO_LAMP_DOWNBRIDGE = "",
DECO_LAMP_2EMBROIDERED = "",
DECO_LAMP_CERAMIC = "",
DECO_LAMP_GLASS = "",
DECO_LAMP_2FRINGES = "",