forked from bytebin/deepworld-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-dialogs.json
1521 lines (1521 loc) · 46.6 KB
/
config-dialogs.json
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
{
"dialogs": {
"tutorial_gift_home_world": {
"title": "Welcome!",
"sections": [
{
"text": "Deepworld is a big place! There's lots to explore, but it's good to have a home base, too. Take these crowns and buy a home world so you can get started!"
},
{
"title": "Received 200 crowns!",
"image": "shop/crowns"
}
]
},
"home_world": {
"sections": [
{
"title": "Home World"
},
{
"text": "This is your home world to explore and build. Roam around, mine resources, and see what you find! Once you have leveled up, you can tap the orange spawn portals to head out and meet other players!"
}
]
},
"spawn_teleport": {
"sections": [
{
"text": "This teleporter will take you into the wilds of Deepworld! You can explore, build, and chat with other players as much as you'd like. If you want to check out other worlds, look for other teleporters like this to continue your journey!"
}
]
},
"spawn_level_up": {
"sections": [
{
"text": "You need to level up before you can use this teleporter! Try to mine 20 different things with your pickaxe and earn the Scavenger achievement. That will help you level up!"
}
]
},
"world_help": {
"sections": [
{
"title": "Private World Help"
},
{
"text": "/whelp - Display this help menu "
},
{
"text": "/winfo - Display members & access code"
},
{
"text": "/wadd [player] - Add a new member "
},
{
"text": "/wremove [player] - Remove an existing member "
},
{
"text": "/wrecode - Generate a new access code "
},
{
"text": "/wrename [name] - Rename world (once per day) "
},
{
"text": "/wpvp [on/off] - Turn pvp on or off "
},
{
"text": "/wpublic [on/off] - Change to public "
},
{
"text": "/wprotected off - Turn off protected status "
}
]
},
"guild_owner_help": {
"sections": [
{
"title": "Guild Help"
},
{
"text": "/ghelp - Display this help menu "
},
{
"text": "/ginfo - Display guild members and info "
},
{
"text": "/ginvite [player] - Invite a player to the guild "
},
{
"text": "/gremove [player] - Remove a player from the guild "
},
{
"text": "/gleader [player] - Pass on your leadership "
},
{
"text": "/gquit - Leave the guild "
}
]
},
"guild_member_help": {
"sections": [
{
"title": "Guild Help"
},
{
"text": "/ghelp - Display this help menu "
},
{
"text": "/ginfo - Display guild members and info "
},
{
"text": "/gquit - Leave your guild "
}
]
},
"photograph": {
"sections": [
{
"title": "How much zoom would you like in your photograph?",
"input": {
"type": "text select",
"options": [
"Normal",
"Large",
"Huge"
],
"key": "zoom"
}
}
]
},
"request_registration": {
"title": "Register your account",
"actions": [
"Not now",
"Register with Facebook",
"Register with email"
],
"sections": [
{
"text": "Registering allows you to log on from multiple devices and always keep your progress.",
"text-scale": 0.6
}
]
},
"request_email_registration": {
"padding": 10,
"horizontal_title_tiny": 100,
"sections": [
{
"title": "Register to continue and save your progress!"
},
{
"title": "Email",
"input": {
"type": "text",
"key": "email",
"max": 128
}
},
{
"title": "Password",
"input": {
"type": "text",
"key": "password",
"password": true,
"max": 64
}
}
]
},
"request_name_change": {
"padding": 10,
"sections": [
{
"title": "Change your name",
"text": "Enter your new name. No spaces or special characters please.",
"text-color": "30201a",
"input": {
"type": "text",
"key": "playername",
"max": 20
}
}
]
},
"mod_mute": {
"sections": [
{
"title": "Mute player",
"text": "Duration (in days, may be a decimal)",
"input": {
"type": "text",
"key": "duration"
}
},
{
"text": "Reason",
"input": {
"type": "text",
"key": "reason",
"maxlength": 200
}
}
]
},
"mod_restrict": {
"sections": [
{
"title": "Restrict player",
"text": "Duration (in days, may be a decimal)",
"input": {
"type": "text",
"key": "duration"
}
},
{
"text": "Reason",
"input": {
"type": "text",
"key": "reason",
"maxlength": 200
}
}
]
},
"tutorial_registration_complete": {
"padding": 10,
"sections": [
{
"title": "Registration complete!",
"text": "You're now ready to venture into the wilds of Deepworld. Press 'okay' and you will be teleported into your first world. Get ready to make friends, battle foes, and plunder!"
}
]
},
"facebook_permissions": {
"actions": "yesno",
"sections": [
{
"title": "Post to Facebook and earn 25 crowns!",
"text": "Help spread the word about Deepworld on Facebook! Let friends know about your achievements, mobs defeated, worlds visited, and more. It's unobtrusive and a great way to help Deepworld grow!"
}
]
},
"invite_to_upgrade": {
"actions": "facebook-invite",
"sections": [
{
"title": "Invite friends to unlock new biomes!",
"text": "For every three friends you invite who play Deepworld, a new biome will be unlocked for you to explore. You can also upgrade to premium in the shop to instantly have access to all biomes, unlimited skill levels, and more!"
}
]
},
"private_message": {
"sections": [
{
"title": "Send Private Message"
},
{
"title": "Recipient",
"input": {
"type": "text",
"key": "recipient"
}
},
{
"title": "Message",
"input": {
"type": "text",
"rows": 5,
"key": "message",
"max": 500
}
}
]
},
"skill_reset": {
"sections": [
{
"title": "Skill Reset",
"text": "One level has been removed from each of your skills and added to your point pool. You can now reapply them as you like!"
}
]
},
"skill_upgrade": {
"sections": [
{
"title": "Choose a skill to upgrade:",
"text": "Note: Additional skills like Combat and Engineering are unlocked as you progress.",
"input": {
"type": "select",
"key": "skill"
}
}
]
},
"skill_upgrade_v3": {
"sections": [
{
"title": "Choose a skill to upgrade:",
"text": "Note: Additional skills like Combat and Engineering are unlocked as you progress.",
"input": {
"type": "select",
"key": "skill",
"prefab": "SelectDetailed"
}
}
]
},
"skill_upgrade_no_points": "Sorry, you are out of skill points. Level up to earn some more!",
"skill_upgrade_no_skills": "You've maxed out all available skills!",
"skill_upgrade_maxed": "That skill is already maxed out!",
"skill_upgrade_success": "$1 upgraded to level $2!",
"competition": {
"sections": [
{
"title": "Official Deepworld Competition",
"text": "The current competition is \"Brain Bazaar\", through May 17th: build outlandish or creative structures in the new brain biome! Entries must be done in official competition worlds, and you must claim a green protector there to enter. The worlds are:"
},
{
"text": "- Brackhu Peak [Competition]"
}
]
},
"settings_v3": [
{
"name": "Controls",
"settings": [
{
"title": "Action Style",
"key": "actionStyle",
"default": 1,
"platforms": [
"ios"
],
"options": [
"Direct",
"Joystick"
]
},
{
"title": "Joystick Style",
"key": "joystickStyle",
"default": 1,
"platforms": [
"ios"
],
"options": [
"Floating",
"Fixed"
]
},
{
"title": "Joystick Side",
"key": "joystickSide",
"default": 0,
"platforms": [
"ios"
],
"options": [
"Left",
"Right"
]
},
{
"title": "Joystick Opacity",
"key": "joystickOpacity",
"style": "tiny",
"default": 4,
"platforms": [
"ios"
],
"options": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10"
]
},
{
"title": "Joystick Size",
"key": "joystickSize",
"style": "tiny",
"default": 6,
"platforms": [
"ios"
],
"options": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10"
]
},
{
"title": "HUD Opacity",
"key": "hudOpacity",
"style": "tiny",
"default": 8,
"options": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10"
]
}
]
},
{
"name": "Game",
"settings": [
{
"title": "Graphics Quality",
"key": "graphicsQuality",
"default": 0,
"options": [
"High",
"Medium",
"Low"
],
"alerts": {
"desktop": "Please restart Deepworld in order to process graphics quality changes."
}
},
{
"title": "Audio Volume",
"key": "volume",
"style": "tiny",
"default": 9,
"options": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10"
]
},
{
"title": "Chat Sounds",
"key": "chatSounds",
"default": 0,
"options": [
"On",
"Off"
]
},
{
"title": "Player Sounds",
"key": "playerSounds",
"default": 0,
"account": true,
"options": [
"Male",
"Female"
]
},
{
"title": "Daily Loot Preference",
"key": "lootPreference",
"default": 0,
"account": true,
"options": [
"Male",
"Female"
]
}
]
},
{
"name": "Account",
"settings": [
{
"title": "Notify me of PMs",
"key": "pushMessages",
"default": 0,
"account": true,
"options": [
"On",
"Off"
]
}
]
}
],
"settings_controls": {
"sections": [
{
"title": "Action Style",
"key": "actionStyle",
"default": 1,
"platforms": [
"ios"
],
"options": [
"Direct",
"Joystick"
]
},
{
"title": "Joystick Style",
"key": "joystickStyle",
"default": 1,
"platforms": [
"ios"
],
"options": [
"Floating",
"Fixed"
]
},
{
"title": "Joystick Side",
"key": "joystickSide",
"default": 0,
"platforms": [
"ios"
],
"options": [
"Left",
"Right"
]
},
{
"title": "Joystick Opacity",
"key": "joystickOpacity",
"style": "tiny",
"default": 4,
"platforms": [
"ios"
],
"options": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10"
]
},
{
"title": "Joystick Size",
"key": "joystickSize",
"style": "tiny",
"default": 6,
"platforms": [
"ios"
],
"options": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10"
]
},
{
"title": "HUD Opacity",
"key": "hudOpacity",
"style": "tiny",
"default": 8,
"options": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10"
]
}
]
},
"settings_game": {
"sections": [
{
"title": "Graphics Quality",
"key": "graphicsQuality",
"default": 0,
"options": [
"High",
"Medium",
"Low"
]
},
{
"title": "Audio Volume",
"key": "volume",
"style": "tiny",
"default": 9,
"options": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10"
]
},
{
"title": "Chat Sounds",
"key": "chatSounds",
"default": 0,
"options": [
"On",
"Off"
]
},
{
"title": "Player Sounds",
"key": "playerSounds",
"default": 0,
"account": true,
"options": [
"Male",
"Female"
]
},
{
"title": "Daily Loot Preference",
"key": "lootPreference",
"default": 0,
"account": true,
"options": [
"Male",
"Female"
]
}
]
},
"settings_account": {
"sections": [
{
"title": "Notify me of PMs",
"key": "pushMessages",
"default": 0,
"account": true,
"options": [
"On",
"Off"
]
}
]
},
"follow": {
"title": "Follow a player by name:",
"input": {
"type": "text",
"max": 20,
"key": "playerName"
}
},
"visibility": {
"title": "Specify who can see your location:",
"input": {
"type": "text index",
"options": [
"Everyone",
"People I follow",
"Nobody"
],
"key": "visibility"
}
},
"exo": {
"sections": [
{
"title": "Exo Visibility"
},
{
"text": "Headset",
"input": {
"type": "text select",
"options": [
"Visible",
"Hidden"
],
"key": "headset"
}
},
{
"text": "Torso",
"input": {
"type": "text select",
"options": [
"Visible",
"Hidden"
],
"key": "torso"
}
},
{
"text": "Legs",
"input": {
"type": "text select",
"options": [
"Visible",
"Hidden"
],
"key": "legs"
}
}
]
},
"order": {
"sections": [
{
"title": "Change the Order displayed by your name",
"input": {
"type": "text select",
"options": [
"None"
],
"key": "order"
}
}
]
},
"no_order": "You don't belong to any order!",
"guild": {
"colors": [
"620f06",
"6d4f40",
"c5b485",
"b09d42",
"465c40",
"4b393f",
"222638",
"1a1816"
],
"symbols": [
"signs/crests/android",
"signs/crests/apple",
"signs/crests/bird",
"signs/crests/bomb",
"signs/crests/book",
"signs/crests/brain",
"signs/crests/club",
"signs/crests/daisy",
"signs/crests/diamond",
"signs/crests/eye",
"signs/crests/face",
"signs/crests/fish",
"signs/crests/foot",
"signs/crests/gear",
"signs/crests/globe",
"signs/crests/gun",
"signs/crests/hammer",
"signs/crests/hand",
"signs/crests/hat",
"signs/crests/heart",
"signs/crests/lantern",
"signs/crests/lightning",
"signs/crests/lion",
"signs/crests/moon",
"signs/crests/pickaxe",
"signs/crests/rose",
"signs/crests/scale",
"signs/crests/silverware",
"signs/crests/snake",
"signs/crests/spade",
"signs/crests/sun",
"signs/crests/terrapus",
"signs/crests/tesla",
"signs/crests/tree"
]
},
"trade": {
"sections": [
{
"title": "Give to player",
"input": {
"type": "text select",
"options": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"15",
"20",
"25",
"50",
"100",
"200",
"500",
"1000",
"5000",
"10000",
"25000",
"100000"
],
"key": "quantity"
}
}
]
},
"craft": {
"multi": [
1,
2,
3,
4,
5,
10,
15,
20,
25,
50,
75,
100,
200,
500,
1000,
5000,
10000,
25000,
100000
]
},
"redeem": {
"sections": [
{
"title": "Enter redemption code:",
"input": {
"type": "text",
"max": 10,
"key": "code"
}
}
]
},
"welcome": {
"title": "Welcome!",
"subtitle": "It's a little dangerous out there, so you'll want to boost your skills by earning achievements. Try this one out:"
},
"report": [
{
"title": "Report a player"
},
{
"text": "Press one of the following options to report this player:",
"text-color": "3a3a3a"
},
{
"text": "I want to mute them",
"choice": "mute"
},
{
"text": "They are griefing",
"choice": "griefing"
},
{
"text": "They are abusive / offensive",
"choice": "abuse"
},
{
"text": "Never mind, they're OK.",
"choice": "cancel"
},
{
"text": " "
}
],
"rate_on_steam": {
"title": "Please rate us on Steam!",
"actions": [
"Cancel",
"Write Review"
],
"sections": [
{
"text": "We're thrilled you've joined us on Steam! If you can, please take a minute to leave us a review. The more visiblity we get on Steam, the more new goodies we can bring you in future versions. Thanks for your consideration!"
}
]
},
"android_dialog": {
"sections": [
{
"title": "Send Private Message"
},
{
"title": "Recipient"
}
]
},
"android": {
"craft": "Can you craft anything for me?",
"craft_response": "Sure, just drag a figurine to me and I'll see what I can do.",
"cannot_craft": "Sorry, I can't do anything with that item.",
"cannot_load_memory": [
"I'm sorry, my memory unit is already functioning properly.",
"My memory unit is in perfect working condition. You aren't trying to BLANK me, are you??",
"Thanks but no thanks, I enjoy my consciousness as it is.",
"Apologies, human, I am already configured.",
"I have a fully operational memory unit already, but I appreciate your kind gesture to destroy my consciousness."
],
"joke": "Heard any good jokes lately?",
"quest": "Have any quests for me?",
"no_quest": "Sorry, I don't have any quests for you yet. But some other androids might. Maybe talk to an Arthur model!",
"protected": "Sorry, this area is protected.",
"configure": {
"sections": [
{
"title": "Name",
"input": {
"type": "text",
"max": 20,
"key": "name"
}
},
{
"title": "Job",
"input": {
"type": "text",
"max": 20,
"key": "job"
}
}
]
},
"load_memory": [
{
"sections": [
{
"title": "Load basic memory unit in android?",
"input": {
"type": "text select",
"options": [
"Newton",
"Arthur",
"Isabella",
"Victoria"
],
"key": "name"
}
}
]
},
{
"sections": [
{
"title": "Load diamond memory unit in android?",
"input": {
"type": "text select",
"options": [
"Newton II",
"Arthur II",
"Isabella II",
"Victoria II"
],
"key": "name"
}
}
]
},
{
"sections": [
{