-
Notifications
You must be signed in to change notification settings - Fork 0
/
CC_road_to_stardom.txt
3535 lines (3301 loc) · 405 KB
/
CC_road_to_stardom.txt
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
######################################
# Adventuron #
######################################
game_information {
game_name = CC's Road to Stardom
game_version = 1.0.1
game_shortname = CC Star
written_by = OK Feather
uuid = 910e5474-beef-11ec-9d64-0242ac120002
year_of_release = 2022
short_synopsis = Help 50% cat, 50% bunny, 100% cute CC become an online idol!
}
start_theme = theme_base
themes {
theme_base : theme {
colors {
exit_list_item_pen = #fdd
}
lister_exits {
is_list_enter = true
}
theme_settings {
experimental_contextual_menus = true
layout = H G LOCK D X O
success_jingle = on
failure_jingle = on
}
}
theme_dovalingo : theme {
colors {
paper = #1b1a1f
pen = #b6b5ba
}
theme_settings {
font = userfont_dovalingo
}
}
}
######################################
# Game Settings #
######################################
game_settings {
auto_ask_sound_permissions = false
enable_standard_all_behaviour = false
precache_strategy = precache_all
experimental_anim = wait
rewind_enabled = true
experimental_new_scroll = true
}
loading_screen = loading_screen
redescribe = auto_beta
start_at = dream
#cc_room
vocabulary {
: verb / aliases = [examine, check, regarde, touch, look, see]
: verb / aliases = [give, show]
: verb / aliases = [undo, ctr]
: verb / aliases = [up, upstair, upstairs]
: verb / aliases = [down, downstair, downstairs]
: verb / aliases = [talk, say, speak, tell, ask, wave, discuss, chat, t]
: verb / aliases = [get, take, pocket, catch, pick]
: verb / aliases = [comment, comments, note, notes]
: verb / aliases = [exchange, exchanging]
: verb / aliases = [exit, leave, outside, out, flee, escape, no, refuse]
: verb / aliases = [enter, inside, in]
: verb / aliases = [use, drink, eat, consume, swallow]
: verb / aliases = [drop, throw, discard, vomit, puke]
: verb / aliases = [ring,strike]
: verb / aliases = [move, go]
: verb / aliases = [pigeon, pigoen]
: verb / aliases = [east, right]
: verb / aliases = [west, left]
: verb / aliases = [north, top]
: verb / aliases = [south, bottom]
: verb / aliases = [red]
: verb / aliases = [cosmoogang]
: verb / aliases = [opensourcenow]
: verb / aliases = [guess, reply]
: verb / aliases = [thank, thanks]
: verb / aliases = [happy, merry, feliz, joyous, feathery, great, joyeux, enjoy, warmest, jolly, cheerful, 행복한, 메리, meli]
: verb / aliases = [kill,threaten,menace,intimidate,browbeat,bully,scare,frighten,terrorize,murder,assassinate,beat,fight,combat,hurt,kick,harm,injure,insult,destroy,smash]
: verb / aliases = ["cry", ":(","=(", "='(", ":'("]
: verb / aliases = ["smile", "grin", "laugh", ":)","=)",":D","=D"]
: verb / aliases = [unlock, password, pass, type, write, input, unlcok]
: verb / aliases = [dovalingo, duolingo, davolingo, divalingo, dualingo]
: noun / aliases = [dovalingo, duolingo, davolingo, divalingo, dualingo]
: noun / aliases = [bread, croissant, pain, cookie, loaf, biscuit]
: noun / aliases = [cafe, coocoo, shop, restaurant]
: noun / aliases = [owner, vendor]
: noun / aliases = [pigeon, pigoen]
: noun / aliases = [red]
: noun / aliases = [cosmoogang]
: noun / aliases = [opensourcenow]
: noun / aliases = [child, children, kid]
: noun / aliases = [comment, note]
: noun / aliases = [bird, dove, birb]
: noun / aliases = [door, entrance]
: noun / aliases = [energydrink, energy, drink, beverage, redgull, can, potion, barrel, taurine, juice, clayrox, clorox]
: noun / aliases = [mirror, reflection]
: noun / aliases = [garden, park, yard, lawn, land, plot, greenhouse, orchard]
: noun / aliases = [stars, star]
: noun / aliases = [fight, combat, conflict]
: noun / aliases = [floor, ground, flooring]
: noun / aliases = [up, upstair, upstairs]
: noun / aliases = [laptop, computer]
: noun / aliases = [screen, display, monitor]
: noun / aliases = [porthole, window, view, sky, scenery, planet]
: noun / aliases = [snow, white, snowwhite]
: noun / aliases = [chicken, fruit, wing]
: noun / aliases = [banach, banachspherificator, spherificator, sphere]
: noun / aliases = [bull, cow, bouncy, bouncybull, bluecow]
: noun / aliases = [plush, plushie, stuffedanimal, animal, stuffed, lion, bear, teddy, teddybear, stuffie, plushtoy, stuffy, plushy]
: noun / aliases = [boat, ship, barge, gondola, yacht, sailboat, ark, bateau]
: noun / aliases = [python, pighon, pygeon, pyghon]
: noun / aliases = [puzzle, enigma, riddle, mystery, problem]
: noun / aliases = [guitar, music, bass, instrument]
: noun / aliases = [communicator, smartphone, phone, gsm, g]
: noun / aliases = [notification, notif]
: noun / aliases = [tool, machine, gadget, appliance, kirby, device, toolbox, furniture, gear, pyjeon]
: noun / aliases = [tree, pine, forest, plant]
: noun / aliases = [room, chamber, place, here]
: noun / aliases = [joystick, trackball, gamepad, joypad, trackpad, stick, controller, arcade]
: noun / aliases = [black, yellow, pink, white, colorless, rainbow, purple, green]
: noun / aliases = [seven, 7, 7C, 7Cs, sevenseas, robot, bot]
: noun / aliases = [necklace, chain, jewel, euro, gold]
: noun / aliases = [rud, ru, duri, dhxp, gamer, r]
: noun / aliases = [wool, woolion, mechanic, lion, w]
: noun / aliases = [june, inventor, jjyy, j]
: noun / aliases = [florrie, flora, f, florie]
: noun / aliases = [e, ee, etana]
: noun / aliases = [yourself, cc, myself, me, you]
}
######################################
# Variables #
######################################
booleans {
can_leave_crispy_garden : boolean "false";
help_about_commands : boolean "false";
is_sound_muted : boolean "true" scope="survivor";
music_ever_enabled : boolean "false";
is_puzzle_wool_solved : boolean "false" ;
is_puzzle_7c_solved : boolean "false" ;
can_create_june_e : boolean "false";
is_seven_seas_crispy : boolean "true";
is_wool_wheeled : boolean "true";
is_laptop_unlocked : boolean "false";
is_rud_sad : boolean "true" ;
is_hero_cc : boolean "false" ;
is_everybody_here : boolean "false" ;
is_june_in_living_room : boolean "false" ;
is_e_in_living_room : boolean "false" ;
is_florrie_alone_in_living_room : boolean "false" ;
is_florrie_in_living_room_with_cake : boolean "false" ;
is_puzzle_rud_in_progress : boolean "false" ;
is_puzzle_seven_seas_now : boolean "false" ;
is_puzzle_ee_solved : boolean "false" ;
is_puzzle_florrie_now : boolean "false" ;
is_puzzle_florrie_solved : boolean "false" ;
has_florrie_drank : boolean "false" ;
you_win : boolean "false" ;
talked_to_june : boolean "false" ;
talked_to_e : boolean "false" ;
talked_to_rud : boolean "false" ;
talked_to_mirror : boolean "false" ;
talked_to_mirror_and_solved_puzzles : boolean "false" ;
rud_sad_talked : dynamic_boolean {(
talked_to_rud &&
is_rud_sad
)}
has_blueprint : boolean "false";
in_labyrinth : boolean "false";
is_labyrinth_open : boolean "false";
is_playing_logic : boolean "false";
talked_to_someone_before_cake : boolean "false";
is_using_map : boolean "false";
dream_look_map : boolean "true";
seen_inventory_tuto : boolean "false";
tuto_used_map : boolean "false";
is_map_command : boolean "false";
dream_cc_go_left : boolean "false";
dream_cc_go_bottom : boolean "false";
has_seen_laptop_puzzle : boolean "false";
has_seen_wool_puzzle : boolean "false";
has_seen_rud_puzzle : boolean "false";
has_seen_7c_puzzle : boolean "false";
boolean_tmp : boolean "false";
has_won_previously : boolean "false" scope="survivor";
dovalingo_leave_lesson : boolean "false";
}
integers {
sound_volume : integer "16" scope="survivor";
pitch_random : integer "0";
inventory_limit : integer "30" ;
day_spend_labyrinth_enigma : integer "0";
labyrinth_position_x : integer "0";
labyrinth_position_y : integer "-13";
choking_e_solution : integer "0";
choking_e_form : integer "0";
integer_tmp : integer "0";
cc_x : integer "0";
cc_y : integer "0";
dream_cc_x : integer "0";
dream_cc_y : integer "0";
current_volume_index : integer "-1";
tuto_directions : integer "0";
dovalingo_lessons : integer "1" scope="survivor";
dovalingo_score : integer "0";
dovalingo_current_index : integer "0";
dovalingo_wordlist_size : dynamic_integer (
dovalingo_lessons < 7 ? 21 :
dovalingo_lessons < 14 ? 70 :
dovalingo_lessons < 42 ? 210 :
count "dovalingo_english");
dova_word_index_to_find : integer "0";
seed_florrie_puzzle : integer "4";
dovapingot_amount : integer "0" scope="survivor";
dovapingot_won_emotes : integer "0" scope="survivor";
dovapingot_emote_pity : integer "0" scope="survivor";
}
collections {
dovalingo_emojis : list {
items = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14"]
}
dovalingo_langs : list {
items = ["chinese", "dutch", "english", "french", "german", "korean", "spanish", "walloon"]
}
dovalingo_choices : list {
items = [0, 0, 0, 0, 0, 0, 0, 0];
}
dovalingo_wrong_choices : list {
items = [];
}
dovalingo_english : list {
items = ["Pigeon", "Time", "Way", "Year", "Work", "Government", "Day", "Man", "World", "Life", "Part", "House", "Course", "Case", "System", "Place", "End", "Group", "Company", "Party", "Information", "School", "Fact", "Money", "Point", "Example", "State", "Business", "Night", "Area", "Water", "Thing", "Family", "Head", "Hand", "Order", "Side", "Home", "Development", "Week", "Power", "Country", "Council", "Use", "Service", "Room", "Market", "Problem", "Court", "Lot", "A", "War", "Police", "Interest", "Car", "Law", "Road", "Form", "Face", "Education", "Policy", "Research", "Sort", "Office", "Body", "Person", "Health", "Mother", "Question", "Period", "Name", "Book", "Level", "Child", "Control", "Society", "Minister", "View", "Door", "Line", "Community", "South", "City", "God", "Father", "Centre", "Effect", "Staff", "Position", "Kind", "Job", "Woman", "Action", "Management", "Act", "Process", "North", "Age", "Evidence", "Idea", "West", "Support", "Moment", "Sense", "Report", "Mind", "Church", "Morning", "Death", "Change", "Industry", "Land", "Care", "Century", "Range", "Table", "Back", "Trade", "History", "Study", "Street", "Committee", "Rate", "Word", "Food", "Language", "Experience", "Result", "Team", "Other", "Sir", "Section", "Programme", "Air", "Authority", "Role", "Reason", "Price", "Town", "Class", "Nature", "Subject", "Department", "Union", "Bank", "Member", "Value", "Need", "East", "Practice", "Type", "Paper", "Date", "Decision", "Figure", "Right", "Wife", "President", "University", "Friend", "Club", "Quality", "Voice", "Lord", "Stage", "King", "Us", "Situation", "Light", "Tax", "Production", "March", "Secretary", "Art", "Board", "May", "Hospital", "Month", "Music", "Cost", "Field", "Award", "Issue", "Bed", "Project", "Chapter", "Girl", "Game", "Amount", "Basis", "Knowledge", "Approach", "Series", "Love", "Top", "News", "Front", "Future", "Manager", "Account", "Computer", "Security", "Rest", "Labour", "Structure", "Hair", "Bill", "Heart", "Force", "Attention", "Movement", "Success", "Letter", "Agreement", "Capital", "Analysis", "Population", "Environment", "Performance", "Model", "Material", "Theory", "Growth", "Fire", "Chance", "Boy", "Relationship", "Son", "Sea", "Record", "Size", "Property", "Space", "Term", "Director", "Plan", "Behaviour", "Treatment", "Energy", "Income", "Cup", "Scheme", "Design", "Response", "Association", "Choice", "Pressure", "Hall", "Couple", "Technology", "Defence", "List", "Chairman", "Loss", "Activity", "Contract", "County", "Wall", "Difference", "Army", "Hotel", "Sun", "Product", "Summer", "Set", "Village", "Colour", "Floor", "Season", "Unit", "Park", "Hour", "Investment", "Test", "Garden", "Husband", "Employment", "Style", "Science", "Look", "Deal", "Charge", "Help", "Economy", "New", "Page", "Risk", "Advice", "Event", "Picture", "Commission", "Fish", "College", "Oil", "Doctor", "Opportunity", "Film", "Conference", "Operation", "Application", "Press", "Extent", "Addition", "Station", "Window", "Shop", "Access", "Region", "Doubt", "Majority", "Degree", "Television", "Blood", "Statement", "Sound", "Election", "Parliament", "Site", "Mark", "Importance", "Title", "Species", "Increase", "Return", "Concern", "Public", "Competition", "Software", "Glass", "Lady", "Answer", "Earth", "Daughter", "Purpose", "Responsibility", "Leader", "River", "Eye", "Ability", "Appeal", "Opposition", "Campaign", "Respect", "Task", "Instance", "Sale", "Whole", "Officer", "Method", "Division", "Source", "Piece", "Pattern", "Lack", "Disease", "Equipment", "Surface", "Demand", "Post", "Mouth", "Radio", "Provision", "Attempt", "Sector", "Firm", "Status", "Peace", "Variety", "Teacher", "Show", "Speaker", "Baby", "Arm", "Base", "Miss", "Safety", "Trouble", "Culture", "Direction", "Context", "Character", "Box", "Discussion", "Past", "Weight", "Start", "Brother", "League", "Condition", "Machine", "Argument", "Sex", "Budget", "English", "Transport", "Share", "Mum", "Cash", "Principle", "Exchange", "Aid", "Library", "Version", "Rule", "Tea", "Balance", "Afternoon", "Reference", "Protection", "Truth", "District", "Turn", "Smith", "Review", "Minute", "Duty", "Survey", "Presence", "Influence", "Stone", "Dog", "Benefit", "Collection", "Executive", "Speech", "Function", "Queen", "Marriage", "Stock", "Failure", "Kitchen", "Student", "Effort", "Holiday", "Career", "Attack", "Length", "Horse", "Progress", "Plant", "Visit", "Relation", "Ball", "Memory", "Bar", "Opinion", "Quarter", "Impact", "Scale", "Race", "Image", "Trust", "Justice", "Edge", "Gas", "Railway", "Expression", "Advantage", "Gold", "Wood", "Network", "Text", "Forest", "Sister", "Chair", "Cause", "Foot", "Rise", "Half", "Winter", "Corner", "Insurance", "Step", "Damage", "Credit", "Pain", "Possibility", "Legislation", "Strength", "Speed", "Crime", "Hill", "Debate", "Will", "Supply", "Present", "Confidence", "Patient", "Wind", "Solution", "Band", "Museum", "Farm", "Pound", "Match", "Assessment", "Message", "Football", "No", "Animal", "Skin", "Scene", "Article", "Stuff", "Introduction", "Play", "Administration", "Fear", "Dad", "Proportion", "Island", "Contact", "Japan", "Claim", "Kingdom", "Video", "Tv", "Existence", "Telephone", "Move", "Traffic", "Distance", "Relief", "Cabinet", "Unemployment", "Reality", "Target", "Trial", "Rock", "Concept", "Spirit", "Accident", "Organization", "Construction", "Coffee", "Phone", "Distribution", "Train", "Sight", "Difficulty", "Factor", "Exercise", "Weekend", "Battle", "Prison", "Grant", "Aircraft", "Tree", "Bridge", "Strategy", "Contrast", "Communication", "Background", "Shape", "Wine", "Star", "Hope", "Selection", "Detail", "User", "Path", "Client", "Search", "Master", "Rain", "Offer", "Goal", "Dinner", "Freedom", "Attitude", "While", "Agency", "Seat", "Manner", "Favour", "Pair", "Crisis", "Smile", "Prince", "Danger", "Call", "Capacity", "Output", "Note", "Procedure", "Theatre", "Tour", "Recognition", "Middle", "Absence", "Sentence", "Package", "Track", "Card", "Sign", "Commitment", "Player", "Threat", "Weather", "Element", "Conflict", "Notice", "Victory", "Bottom", "Finance", "Fund", "Violence", "File", "Profit", "Standard", "Jack", "Route", "China", "Expenditure", "Second", "Discipline", "Cell", "Reaction", "Castle", "Congress", "Individual", "Lead", "Consideration", "Debt", "Option", "Payment", "Exhibition", "Reform", "Emphasis", "Spring", "Audience", "Feature", "Touch", "Estate", "Assembly", "Volume", "Youth", "Contribution", "Curriculum", "Appearance", "Martin", "Boat", "Institute", "Membership", "Branch", "Bus", "Waste", "Heat", "Neck", "Object", "Captain", "Driver", "Challenge", "Conversation", "Occasion", "Code", "Crown", "Birth", "Silence", "Literature", "Faith", "Hell", "Entry", "Transfer", "Gentleman", "Bag", "Coal", "Investigation", "Leg", "Belief", "Total", "Major", "Document", "Description", "Murder", "Aim", "Flight", "Conclusion", "Drug", "Tradition", "Pleasure", "Connection", "Owner", "Treaty", "Desire", "Professor", "Copy", "Ministry", "Acid", "Palace", "Address", "Institution", "Lunch", "Generation", "Partner", "Engine", "Newspaper", "Cross", "Reduction", "Welfare"]
}
dovalingo_french : list {
items = ["Pigeon", "Temps", "Chemin", "An", "Travail", "Gouvernement", "Journée", "Homme", "Monde", "Vie", "Partie", "Maison", "Cours", "Cas", "Système", "Lieu", "Finir", "Grouper", "Société", "Faire la fête", "Information", "École", "Fait", "Argent", "Point", "Exemple", "Etat", "Affaires", "Nuit", "Région", "Eau", "Chose", "Famille", "Tête", "Main", "Commande", "Côté", "Domicile", "Développement", "Semaine", "Puissance", "Pays", "Conseil", "Utiliser", "Service", "Salle", "Marché", "Problème", "Tribunal", "Terrain", "Un", "Guerre", "Police", "Intérêt", "Auto", "Droit", "Route", "Formulaire", "Visage", "Éducation", "Politique", "Rechercher", "Trier", "Bureau", "Corps", "Personne", "Santé", "Mère", "Question", "Période", "Nom", "Livre", "Niveau", "Enfant", "Contrôler", "Société", "Ministre", "Vue", "Porte", "Ligne", "Communauté", "Sud", "Ville", "Dieu", "Père", "Centre", "Effet", "Personnel", "Position", "Type", "Travail", "Femme", "Action", "Management", "Agir", "Processus", "Nord", "Âge", "Preuve", "Idée", "Ouest", "Support", "Moment", "Sens", "Rapport", "Écouter", "Église", "Matin", "Mort", "Monnaie", "Industrie", "Terre", "Se soucier", "Siècle", "Portée", "Table", "Arrière", "Commerce", "Histoire", "Étude", "Rue", "Comité", "Taux", "Mot", "Aliments", "Langue", "Vivre", "Résultat", "Équipe", "Autre", "Monsieur", "Section", "Programme", "Air", "Autorité", "Rôle", "Raison", "Prix", "Ville", "Classe", "Nature", "Matière", "Département", "Syndicat", "Banque", "Membre", "Valeur", "Avoir besoin", "Est", "Entrainement", "Type", "Papier", "Date", "Décision", "Chiffre", "À droite", "Épouse", "Président", "Université", "Ami", "Club", "Qualité", "Voix", "Seigneur", "Organiser", "Roi", "Nous", "Situation", "Léger", "Impôt", "Production", "Mars", "Secrétaire", "Art", "Planche", "Mai", "Hôpital", "Mois", "Musique", "Coût", "Domaine", "Décerner", "Publier", "Lit", "Projet", "Chapitre", "Fille", "Jeu", "Montant", "Base", "Connaissance", "Approcher", "Séries", "Amour", "Haut", "Nouvelles", "Face", "Futur", "Gestionnaire", "Compte", "Ordinateur", "Sécurité", "Repos", "Travail", "Structure", "Cheveu", "Facture", "Cœur", "Obliger", "Attention", "Mouvement", "Succès", "Lettre", "Accord", "Capitale", "Analyse", "Population", "Environnement", "Performance", "Maquette", "Matériel", "Théorie", "Croissance", "Feu", "Chance", "Garçon", "Relation amoureuse", "Fils", "Mer", "Record", "Taille", "Biens", "Espace", "Terme", "Réalisateur", "Plan", "Comportement", "Traitement", "Énergie", "Revenu", "Coupe", "Schème", "Motif", "Réponse", "Association", "Choix", "Pression", "Entrée", "Couple", "Technologie", "Défense", "Liste", "Président", "Perte", "Activité", "Contrat", "Comté", "Mur", "Différence", "Armée", "Hôtel", "Soleil", "Produit", "Été", "Positionner", "Village", "Couleur", "Étage", "Saison", "Unité", "Parc", "Heure", "Investissement", "Test", "Jardin", "Mari", "Emploi", "Style", "Science", "Regarder", "Accord", "Charger", "Aider", "Économie", "Nouveau", "Page", "Risque", "Conseils", "Événement", "Image", "Commission", "Poisson", "Université", "Huile", "Médecin", "Occasion", "Film", "Conférence", "Opération", "Application", "Presse", "Étendue", "Addition", "Station", "Fenêtre", "Magasin", "Accéder", "Région", "Doute", "Majorité", "Diplôme", "Télévision", "Sang", "Déclaration", "Son", "Élection", "Parlement", "Site", "Marque", "Importance", "Titre", "Espèces", "Augmenter", "Retourner", "Préoccuper", "Publique", "Concours", "Logiciel", "Verre", "Demoiselle", "Répondre", "Terre", "Fille", "But", "Responsabilité", "Dirigeant", "Fleuve", "Œil", "Capacité", "Faire appel", "Opposition", "Campagne", "Respect", "Tâche", "Exemple", "Vendre", "Entier", "Officier", "Méthode", "Division", "Source", "Pièce", "Modèle", "Manquer de", "Maladie", "Équipement", "Surface", "Demande", "Publier", "Bouche", "Radio", "Disposition", "Tenter", "Secteur", "Solidifier", "Statut", "Paix", "Variété", "Prof", "Afficher", "Conférencier", "Bébé", "Bras", "Base", "Mademoiselle", "Sécurité", "Difficulté", "Culture", "Direction", "Contexte", "Personnage", "Boîte", "Discussion", "Passé", "Masse", "Démarrer", "Frère", "Ligue", "État", "Machine", "Argument", "Sexe", "Budget", "Anglais", "Transport", "Partager", "Maman", "Espèces", "Principe", "Échanger", "Aide", "Bibliothèque", "Version", "Règle", "Thé", "Solde", "Après-midi", "Référence", "Protection", "Vérité", "District", "Tourner", "Forgeron", "Revue", "Minute", "Devoir", "Sondage", "Présence", "Influence", "Calcul", "Chien", "Avantage", "Recueil", "Exécutif", "Discours", "Fonction", "Reine", "Mariage", "Stock", "Échec", "Cuisine", "Élève", "Effort", "Vacance", "Carrière", "Attaque", "Longueur", "Cheval", "Progrès", "Plante", "Visiter", "Relation", "Balle", "Mémoire", "Bar", "Opinion", "Trimestre", "Impacter", "Échelle", "Course", "Image", "Confiance", "Justice", "Bord", "Gaz", "Chemin de fer", "Expression", "Avantage", "Or", "Bois", "Réseau", "Texte", "Forêt", "Sœur", "Chaise", "Cause", "Pied", "Monter", "Moitié", "Hiver", "Coin", "Assurance", "Étape", "Dégâts", "Crédit", "Douleur", "Possibilité", "Législation", "Force", "Vitesse", "Criminalité", "Colline", "Débat", "Sera", "Fourniture", "Cadeau", "Confiance", "Patient", "Vent", "Solution", "Bande", "Musée", "Ferme", "Broyer", "Correspondre", "Évaluation", "Message", "Football", "Non", "Animal", "Peau", "Scène", "Article", "Truc", "Introduction", "Joue", "Administration", "Crainte", "Père", "Proportion", "Île", "Contactez", "Japon", "Réclamation", "Royaume", "Vidéo", "Télé", "Existence", "Téléphone", "Mouvement", "Circulation", "Distance", "Soulagement", "Cabinet", "Chômage", "Réalité", "Cibler", "Essai", "Rocher", "Concept", "Esprit", "Accident", "Organisme", "Construction", "Café", "Téléphoner", "Distribution", "Train", "Vue", "Difficulté", "Facteur", "Exercer", "Week-end", "Bataille", "Prison", "Accorder", "Avion", "Arbre", "Pont", "Stratégie", "Contraste", "Communication", "Contexte", "Façonner", "Vin", "Étoile", "Espoir", "Sélection", "Détail", "Utilisateur", "Chemin", "Client", "Chercher", "Maître", "Pluie", "Offre", "But", "Dîner", "Liberté", "Attitude", "Pendant que", "Agence", "Siège", "Manière", "Favoriser", "Paire", "Crise", "Sourire", "Prince", "Danger", "Appel", "Capacité", "Production", "Remarque", "Procédure", "Théâtre", "Visiter", "Reconnaissance", "Milieu", "Absence", "Phrase", "Emballer", "Piste", "Carte", "Signe", "Engagement", "Joueur", "Menace", "Météo", "Élément", "Conflit", "Avis", "Victoire", "Bas", "Finance", "Fonds", "Violence", "Dossier", "Profit", "Norme", "Jack", "Itinéraire", "Chine", "Dépense", "Seconde", "Discipline", "Cellule", "Réaction", "Château", "Congrès", "Individuel", "Mener", "Considération", "Dette", "Option", "Paiement", "Exposition", "Réforme", "Accent", "Printemps", "Spectateurs", "Fonctionnalité", "Touche", "Domaine", "Assemblée", "Volume", "Jeunesse", "Contribution", "Programme d'études", "Apparence", "Martin", "Bateau", "Institut", "Adhésion", "Succursale", "Autobus", "Gaspillage", "Chauffer", "Cou", "Objet", "Capitaine", "Conducteur", "Défi", "Conversation", "Occasion", "Code", "Couronne", "Naissance", "Silence", "Littérature", "Foi", "Enfer", "Entrée", "Transférer", "Gentilhomme", "Sac", "Charbon", "Enquête", "Jambe", "Croyance", "Total", "Majeur", "Document", "Description", "Meurtre", "Objectif", "Vol", "Conclusion", "Médicament", "Tradition", "Plaisir", "Lien", "Propriétaire", "Traité", "Désir", "Professeur", "Copie", "Ministère", "Acide", "Palais", "Adresse", "Institution", "Déjeuner", "Génération", "Partenaire", "Moteur", "Journal", "Croix", "Réduction", "Bien-être"]
}
dovalingo_german : list {
items = ["Taube", "Zeit", "Weg", "Jahr", "Arbeit", "Regierung", "Tag", "Mann", "Welt", "Leben", "Teil", "Haus", "Kurs", "Fall", "System", "Ort", "Ende", "Gruppe", "Unternehmen", "Party", "Information", "Schule", "Tatsache", "Geld", "Punkt", "Beispiel", "Zustand", "Geschäft", "Nacht", "Bereich", "Wasser", "Sache", "Familie", "Kopf", "Hand", "Befehl", "Seite", "Heimat", "Entwicklung", "Woche", "Energie", "Land", "Rat", "Benutzen", "Service", "Zimmer", "Markt", "Problem", "Gericht", "Viel", "Ein", "Krieg", "Polizei", "Interesse", "Wagen", "Gesetz", "Straße", "Form", "Gesicht", "Bildung", "Politik", "Forschung", "Sortieren", "Sekretariat", "Karosserie", "Person", "Gesundheit", "Mutter", "Frage", "Zeitraum", "Name", "Buchen", "Stufe", "Kind", "Steuerung", "Gesellschaft", "Minister", "Aussicht", "Tür", "Linie", "Gemeinschaft", "Süden", "Stadt", "Gott", "Vater", "Center", "Wirkung", "Mitarbeiter", "Position", "Nett", "Arbeit", "Frau", "Handlung", "Management", "Handlung", "Prozess", "Norden", "Alter", "Beweis", "Idee", "Westen", "Unterstützung", "Moment", "Sinn", "Prüfbericht", "Geist", "Kirche", "Morgen", "Tod", "Veränderung", "Industrie", "Land", "Pflege", "Jahrhundert", "Angebot", "Tisch", "Zurück", "Handeln", "Geschichte", "Lernen", "Straße", "Komitee", "Bewertung", "Wort", "Lebensmittel", "Sprache", "Erfahrung", "Ergebnis", "Team", "Sonstiges", "Herr", "Sektion", "Programm", "Luft", "Behörde", "Rolle", "Grund", "Preis", "Stadt, dorf", "Klasse", "Natur", "Gegenstand", "Abteilung", "Union", "Bank", "Mitglied", "Wert", "Brauchen", "Ost", "Trainieren", "Typ", "Papier", "Datum", "Entscheidung", "Zahl", "Rechts", "Ehefrau", "Präsident", "Universität", "Freund", "Verein", "Qualität", "Stimme", "Herr", "Bühne", "König", "Uns", "Lage", "Hell", "Mwst", "Produktion", "März", "Sekretär", "Kunst", "Planke", "Kann", "Krankenhaus", "Monat", "Musik", "Kosten", "Feld", "Vergeben", "Ausgabe", "Bett", "Projekt", "Kapitel", "Mädchen", "Spiel", "Menge", "Basis", "Wissen", "Sich nähern", "Serie", "Liebe", "Oben", "Nachrichten", "Vorderseite", "Zukunft", "Manager", "Konto", "Computer", "Sicherheit", "Sich ausruhen", "Arbeit", "Struktur", "Haar", "Rechnung", "Herz", "Gewalt", "Beachtung", "Bewegung", "Erfolg", "Buchstabe", "Zustimmung", "Hauptstadt", "Analyse", "Population", "Umgebung", "Leistung", "Modell", "Material", "Theorie", "Wachstum", "Feuer", "Chance", "Junge", "Verhältnis", "Sohn", "Meer", "Aufzeichnung", "Größe", "Eigentum", "Platz", "Begriff", "Direktor", "Planen", "Verhalten", "Behandlung", "Energie", "Einkommen", "Tasse", "Planen", "Design", "Antwort", "Verband", "Auswahl", "Druck", "Halle", "Paar", "Technologie", "Verteidigung", "Aufführen", "Vorsitzende", "Verlust", "Aktivität", "Vertrag", "Bezirk", "Wand", "Unterschied", "Armee", "Hotel", "Sonne", "Produkt", "Sommer", "Einstellen", "Dorf", "Farbe", "Boden", "Jahreszeit", "Einheit", "Park", "Stunde", "Anlage", "Prüfung", "Garten", "Ehemann", "Anstellung", "Stil", "Wissenschaft", "Suchen", "Handeln", "Aufladen", "Hilfe", "Wirtschaft", "Neu", "Seite", "Risiko", "Rat", "Veranstaltung", "Bild", "Kommission", "Fisch", "Uni", "Öl", "Arzt", "Gelegenheit", "Film", "Konferenz", "Betrieb", "Anwendung", "Drücken sie", "Ausmaß", "Zusatz", "Bahnhof", "Fenster", "Geschäft", "Zugriff", "Region", "Zweifel", "Mehrheitlich", "Grad", "Fernsehen", "Blut", "Erklärung", "Klang", "Wahl", "Parlament", "Seite? ˅", "Kennzeichen", "Bedeutung", "Titel", "Spezies", "Zunahme", "Rückkehr", "Anliegen", "Öffentlich", "Wettbewerb", "Software", "Glas", "Dame", "Antworten", "Erde", "Tochter", "Zweck", "Verantwortung", "Führer", "Fluss", "Auge", "Fähigkeit", "Appellieren", "Opposition", "Kampagne", "Respekt", "Aufgabe", "Beispiel", "Verkauf", "Ganz", "Offizier", "Methode", "Aufteilung", "Quelle", "Stück", "Muster", "Mangel", "Krankheit", "Ausrüstung", "Fläche", "Nachfrage", "Post", "Mund", "Radio", "Bestimmung", "Versuch", "Sektor", "Feste", "Status", "Frieden", "Vielfalt", "Lehrer", "Show", "Lautsprecher", "Baby", "Arm", "Base", "Vermissen", "Sicherheit", "Problem", "Kultur", "Richtung", "Kontext", "Charakter", "Kasten", "Diskussion", "Vergangenheit", "Last", "Anfang", "Bruder", "Liga", "Zustand", "Maschine", "Streit", "Sex", "Budget", "Englisch", "Transport", "Teilen", "Mama", "Kasse", "Prinzip", "Austausch", "Hilfe", "Bücherei", "Ausführung", "Regel", "Tee", "Balance", "Nachmittag", "Hinweis", "Schutz", "Wahrheit", "Kreis", "Wende", "Schmied", "Überprüfung", "Minute", "Pflicht", "Umfrage", "Gegenwart", "Beeinflussen", "Stein", "Hund", "Nutzen", "Sammlung", "Exekutive", "Rede", "Funktion", "Königin", "Ehe", "Aktie", "Fehler", "Küche", "Schüler", "Anstrengung", "Urlaub", "Werdegang", "Attacke", "Länge", "Pferd", "Fortschritt", "Pflanze, anlage", "Besuch", "Beziehung", "Ball", "Erinnerung", "Bar", "Meinung", "Quartal", "Einschlag", "Skala", "Rennen", "Bild", "Vertrauen", "Gerechtigkeit", "Kante", "Gas", "Eisenbahn", "Ausdruck", "Vorteil", "Gold", "Holz", "Netzwerk", "Text", "Wald", "Schwester", "Stuhl", "Weil", "Fuß", "Erhebt euch", "Halb", "Winter", "Ecke", "Versicherung", "Schritt", "Schaden", "Anerkennung", "Schmerz", "Wahrscheinlichkeit", "Gesetzgebung", "Stärke", "Geschwindigkeit", "Verbrechen", "Hügel", "Debatte", "Wille", "Liefern", "Geschenk", "Vertrauen", "Geduldig", "Wind", "Lösung", "Band", "Museum", "Bauernhof", "Pfund", "Spiel", "Bewertung", "Botschaft", "Fußball", "Nein", "Tier", "Haut", "Szene", "Artikel", "Sachen", "Einleitung", "Abspielen", "Verwaltung", "Furcht", "Vati", "Anteil", "Insel", "Kontakt", "Japan", "Anspruch", "Königreich", "Video", "Fernseher", "Existenz", "Telefon", "Bewegung", "Verkehr", "Distanz", "Erleichterung", "Kabinett", "Arbeitslosigkeit", "Wirklichkeit", "Ziel", "Studie", "Felsen", "Konzept", "Geist", "Unfall", "Organisation", "Konstruktion", "Kaffee", "Telefon", "Verteilung", "Zug", "Sicht", "Schwierigkeit", "Faktor", "Die übung", "Wochenende", "Schlacht", "Gefängnis", "Gewähren", "Flugzeug", "Baum", "Brücke", "Strategie", "Kontrast", "Kommunikation", "Hintergrund", "Gestalten", "Wein", "Stern", "Hoffnung", "Auswahl", "Detail", "Benutzer", "Weg", "Klient", "Suche", "Meister", "Regen", "Angebot", "Tor", "Abendessen", "Freiheit", "Attitüde", "Während", "Agentur", "Sitz", "Benehmen", "Gefallen", "Paar", "Krise", "Lächeln", "Prinz", "Achtung", "Forderung", "Kapazität", "Ausgang", "Hinweis", "Verfahren", "Theater", "Tour", "Erkennung", "Mitte", "Abwesenheit", "Satz", "Paket", "Spur", "Karte", "Schild", "Engagement", "Spieler", "Drohung", "Wetter", "Element", "Konflikt", "Notiz", "Sieg", "Unterseite", "Finanzen", "Fonds", "Gewalt", "Datei", "Profitieren", "Standard", "Jack", "Route", "China", "Ausgaben", "Zweite", "Disziplin", "Zelle", "Reaktion", "Schloss", "Kongress", "Individuell", "Führen", "Rücksichtnahme", "Schuld", "Möglichkeit", "Zahlung", "Ausstellung", "Reform", "Betonung", "Frühling", "Publikum", "Merkmal", "Berühren", "Anwesen", "Montage", "Volumen", "Jugend", "Beitrag", "Lehrplan", "Aussehen", "Martin", "Boot", "Institut", "Mitgliedschaft", "Zweig", "Bus", "Abfall", "Wärme", "Nacken", "Objekt", "Kapitän", "Treiber", "Herausforderung", "Konversation", "Gelegenheit", "Code", "Krone", "Geburt", "Schweigen", "Literatur", "Vertrauen", "Hölle", "Eintrag", "Transfer", "Gentleman", "Tasche", "Kohle", "Ermittlung", "Bein", "Glauben", "Gesamt", "Wesentlich", "Dokumentieren", "Bezeichnung", "Mord", "Ziel", "Flug", "Fazit", "Arzneimittel", "Tradition", "Vergnügen", "Verbindung", "Inhaber", "Vertrag", "Verlangen", "Professor", "Kopieren", "Ministerium", "Säure", "Palast", "Die anschrift", "Institution", "Mittagessen", "Generation", "Partner", "Motor", "Zeitung", "Kreuz", "Ermäßigung", "Wohlfahrt"]
}
dovalingo_dutch : list {
items = ["Duif", "Tijd", "Manier", "Jaar", "Het werk", "Regering", "Dag", "Mens", "Wereld-", "Leven", "Deel", "Huis", "Cursus", "Geval", "Systeem", "Plaats", "Einde", "Groep", "Bedrijf", "Partij", "Informatie", "School", "Feit", "Geld", "Punt", "Voorbeeld", "Staat", "Bedrijf", "Nacht", "Oppervlakte", "Water", "Ding", "Familie", "Hoofd", "Hand", "Volgorde", "Kant", "Thuis", "Ontwikkeling", "Week", "Stroom", "Land", "Raad", "Gebruik", "Onderhoud", "Kamer", "Markt", "Probleem", "Rechtbank", "Kavel", "Een", "Oorlog", "Politie", "Interesse", "Auto", "Wet", "Weg", "Formulier", "Gezicht", "Opleiding", "Het beleid", "Onderzoek", "Soort", "Kantoor", "Lichaam", "Persoon", "Gezondheid", "Moeder", "Vraag", "Punt uit", "Naam", "Boek", "Peil", "Kind", "Controle", "Samenleving", "Minister", "Weergave", "Deur-", "Lijn", "Gemeenschap", "Zuiden", "Stad", "God", "Vader", "Centrum", "Effect", "Personeel", "Positie", "Vriendelijk", "Functie", "Vrouw", "Actie", "Beheer", "Handelen", "Verwerken", "Noorden", "Leeftijd", "Bewijs", "Idee", "West", "Steun", "Moment", "Gevoel", "Verslag", "Verstand", "Kerk", "Ochtend", "Dood", "Wijzigen", "Industrie", "Land-", "Zorg", "Eeuw", "Bereik", "Tafel", "Rug", "Handel", "Geschiedenis", "Studie", "Straat", "Commissie", "Tarief", "Woord", "Voedsel", "Taal", "Beleven", "Resultaat", "Team", "Ander", "Meneer", "Sectie", "Programma", "Lucht", "Gezag", "Rol", "Reden", "Prijs", "Dorp", "Klas", "Natuur", "Onderwerp", "Afdeling", "Unie", "Bank", "Lid", "Waarde", "Behoefte", "Oosten-", "Oefening", "Type", "Papier", "Datum", "Beslissing", "Figuur", "Rechtsaf", "Vrouw", "President", "Universiteit", "Vriend", "Club", "Kwaliteit", "Stem", "Heer", "Fase", "Koning", "Ons", "Situatie", "Licht", "Belasting", "Productie", "Maart", "Secretaris", "Kunst", "Bord", "Kunnen", "Ziekenhuis", "Maand", "Muziek", "Kosten", "Veld", "Prijs", "Kwestie", "Bed", "Projecteren", "Hoofdstuk", "Meisje", "Spel", "Hoeveelheid", "Basis", "Kennis", "Nadering", "Serie", "Liefde", "Bovenkant", "Nieuws", "Voorkant", "Toekomst", "Manager", "Rekening", "Computer", "Beveiliging", "Rest", "Werk", "Structuur", "Haar", "Rekening", "Hart", "Kracht", "Aandacht", "Beweging", "Succes", "Brief", "Akkoord", "Kapitaal", "Analyse", "Bevolking", "Omgeving", "Uitvoering", "Model-", "Materiaal", "Theorie", "Groei", "Vuur", "Kans", "Jongen", "Relatie", "Zoon", "Zee", "Vermelding", "Maat", "Eigendom", "Ruimte", "Termijn", "Regisseur", "Plan", "Gedrag", "Behandeling", "Energie", "Inkomen", "Beker", "Schema", "Ontwerp", "Antwoord", "Vereniging", "Keuze", "Druk", "Hal", "Stel", "Technologie", "Verdediging", "Lijst", "Voorzitter", "Verlies", "Werkzaamheid", "Contract", "District", "Muur", "Verschil", "Leger", "Hotel", "Zon", "Product", "Zomer", "Set", "Dorp", "Kleur", "Vloer", "Seizoen", "Eenheid", "Park", "Uur", "Investering", "Test", "Tuin", "Echtgenoot", "Werkgelegenheid", "Stijl", "Wetenschap", "Look", "Overeenkomst", "Aanval", "Helpen", "Economie", "Nieuwe", "Bladzijde", "Risico", "Het advies", "Evenement", "Afbeelding", "Commissie", "Vis", "Middelbare school", "Olie-", "Arts", "Mogelijkheid", "Film", "Conferentie", "Operatie", "Sollicitatie", "Druk op", "Omvang", "Toevoeging", "Station", "Raam", "Winkel", "Toegang", "Regio", "Twijfel", "Meerderheid", "Rang", "Televisie", "Bloed", "Uitspraak", "Geluid", "Verkiezing", "Parlement", "Site", "Markering", "Belang", "Titel", "Soort", "Toenemen", "Opbrengst", "Zorg", "Openbaar", "Concurrentie", "Software", "Glas", "Dame", "Antwoord", "Aarde", "Dochter", "Doel", "Verantwoordelijkheid", "Leider", "Rivier", "Oog", "Vermogen", "Hoger beroep", "Oppositie", "Campagne", "Respect", "Taak", "Voorbeeld", "Uitverkoop", "Geheel", "Officier", "Methode", "Divisie", "Bron", "Deel", "Patroon", "Gebrek", "Ziekte", "Apparatuur", "Oppervlakte", "Vraag", "Na", "Mond", "Radio-", "Voorraad", "Poging", "Sector", "Firma", "Toestand", "Vrede", "Verscheidenheid", "Docent", "Tonen", "Spreker", "Baby", "Arm", "Baseren", "Missen", "Veiligheid", "Probleem", "Cultuur", "Richting", "Context", "Karakter", "Doos", "Discussie", "Verleden", "Gewicht", "Begin", "Broer", "Liga", "Voorwaarde", "Machine", "Argument", "Seks", "Begroting", "Engels", "Vervoer-", "Delen", "Mamma", "Contant geld", "Beginsel", "Aandelenbeurs", "Hulp", "Bibliotheek", "Versie", "Regel", "Thee", "Balans", "Namiddag", "Verwijzing", "Bescherming", "Waarheid", "Wijk", "Draai", "Smid", "Beoordeling", "Minuut", "Plicht", "Vragenlijst", "Aanwezigheid", "Invloed", "Steen", "Hond", "Voordeel", "Verzameling", "Leidinggevend", "Toespraak", "Functie", "Koningin", "Huwelijk", "Voorraad", "Mislukking", "Keuken", "Student", "Poging", "Vakantie", "Carrière", "Aanval", "Lengte", "Paard", "Voortgang", "Plant", "Op bezoek komen", "Relatie", "Bal", "Geheugen", "Bar", "Mening", "Kwartaal", "Gevolg", "Schaal", "Ras", "Afbeelding", "Vertrouwen", "Gerechtigheid", "Kant", "Gas-", "Spoorweg", "Uitdrukking", "Voordeel", "Goud", "Hout", "Netwerk", "Tekst", "Woud", "Zus", "Stoel", "Oorzaak", "Voet", "Opstaan", "Voor de helft", "Winter", "Hoek", "Verzekering", "Stap", "Schade", "Credit", "Pijn", "Mogelijkheid", "Wetgeving", "Kracht", "Snelheid", "Misdaad", "Heuvel", "Debat", "Zullen", "Leveren", "Cadeau", "Vertrouwen", "Geduldig", "Wind", "Oplossing", "Band", "Museum", "Boerderij", "Pond", "Wedstrijd", "Beoordeling", "Bericht", "Amerikaans voetbal", "Nee", "Dier", "Huid", "Tafereel", "Artikel", "Spullen", "Invoering", "Speel", "Administratie", "Angst", "Pa", "Proportie", "Eiland", "Contact", "Japan", "Claim", "Koninkrijk", "Video-", "TV", "Bestaan", "Telefoon", "Actie", "Verkeer", "Afstand", "Opluchting", "Kastje", "Werkloosheid", "Realiteit", "Doel", "Proces", "Steen", "Concept", "Geest", "Ongeluk", "Organisatie", "Bouw", "Koffie", "Telefoon", "Verdeling", "Trein", "Zicht", "Moeilijkheid", "Factor", "Oefening", "Weekend", "Strijd", "Gevangenis", "Studiebeurs", "Vliegtuigen", "Boom", "Brug", "Strategie", "Contrast", "Communicatie", "Achtergrond", "Vorm", "Wijn", "Ster", "Hoop", "Selectie", "Detail-", "Gebruiker", "Pad", "Cliënt", "Zoekopdracht", "Meester", "Regen", "Bieden", "Doel", "Avondeten", "Vrijheid", "Houding", "Terwijl", "Bureau", "Zitplaats", "Wijze", "Gunst", "Paar-", "Crisis", "Glimlach", "Prins", "Gevaar", "Telefoongesprek", "Capaciteit", "Uitvoer", "Notitie", "Procedure", "Theater", "Tour", "Erkenning", "Midden-", "Afwezigheid", "Zin", "Pakket", "Spoor", "Kaart", "Teken", "Inzet", "Speler", "Bedreiging", "Het weer", "Element", "Conflict", "Merk op", "Zege", "Onderkant", "Financiën", "Fonds", "Geweld", "Dossier", "Winst", "Standaard-", "Jack", "Route", "China", "Uitgaven", "Tweede", "Discipline", "Cel", "Reactie", "Kasteel", "Congres", "Individueel", "Leiding", "Overweging", "Schuld", "Optie", "Betaling", "Tentoonstelling", "Hervorming", "Nadruk", "De lente", "Publiek", "Functie", "Aanraken", "Landgoed", "Bijeenkomst", "Volume", "Jeugd", "Bijdrage", "Leerplan", "Verschijning", "Martin", "Boot", "Instituut", "Lidmaatschap", "Tak", "Bus", "Afval", "Warmte", "Nek", "Voorwerp", "Kapitein", "Bestuurder", "Uitdaging", "Gesprek", "Gelegenheid", "Code", "Kroon", "Geboorte", "Stilte", "Literatuur", "Vertrouwen", "Hel", "Binnenkomst", "Overdracht", "Heer", "Tas", "Steenkool", "Onderzoek", "Been", "Geloof", "Totaal", "Belangrijk", "Document", "Omschrijving", "Moord", "Doel", "Vlucht", "Conclusie", "Drugs", "Traditie", "Plezier", "Verbinding", "Baasje", "Verdrag", "Verlangen", "Professor", "Kopiëren", "Ministerie", "Zuur", "Paleis", "Adres", "Instelling", "Lunch", "Generatie", "Partner", "Motor", "Krant-", "Kruis", "Afname", "Welzijn"]
}
dovalingo_spanish : list {
items = ["Paloma", "Tiempo", "Camino", "Año", "Trabaja", "Gobierno", "Día", "Hombre", "Mundo", "La vida", "Parte", "Casa", "Curso", "Caso", "Sistema", "Lugar", "Fin", "Grupo", "Empresa", "Fiesta", "Información", "Colegio", "Hecho", "Dinero", "Punto", "Ejemplo", "Expresar", "Negocio", "Noche", "Área", "Agua", "Cosa", "Familia", "Cabeza", "Mano", "Pedido", "Lado", "Casa", "Desarrollo", "Semana", "Energía", "País", "Concejo", "Usar", "Servicio", "Habitación", "Mercado", "Problema", "Corte", "Lote", "UN", "Guerra", "Policía", "Interés", "Coche", "Ley", "La carretera", "Forma", "Rostro", "Educación", "Política", "Investigar", "Clasificar", "Oficina", "Cuerpo", "Persona", "Salud", "Madre", "Pregunta", "Período", "Nombre", "Libro", "Nivel", "Niño", "Control", "Sociedad", "Ministro", "Vista", "Puerta", "Línea", "Comunidad", "Sur", "Ciudad", "Dios", "Padre", "Centro", "Efecto", "Personal", "Posición", "Clase", "Trabajo", "Mujer", "Acción", "administración", "Actuar", "Proceso", "Norte", "Edad", "Evidencia", "Ocurrencia", "Oeste", "Apoyo", "Momento", "Sentido", "Reporte", "Mente", "Iglesia", "Mañana", "Muerte", "Cambio", "Industria", "Tierra", "Cuidado", "Siglo", "Distancia", "Mesa", "Atrás", "Comercio", "Historia", "Estudio", "Calle", "Comité", "Velocidad", "Palabra", "Alimento", "Idioma", "Experiencia", "Resultado", "Equipo", "Otro", "Señor", "Sección", "Programa", "Aire", "Autoridad", "Role", "Razón", "Precio", "Pueblo", "Clase", "Naturaleza", "Asunto", "Departamento", "Unión", "Banco", "Miembro", "Valor", "Necesidad", "Este", "Práctica", "Tipo", "Papel", "Fecha", "Decisión", "Figura", "Derecha", "Esposa", "Presidente", "Universidad", "Amigo", "Club", "Calidad", "Voz", "Señor", "Escenario", "Rey", "A nosotros", "Situación", "Luz", "Impuesto", "Producción", "Marzo", "Secretario", "Arte", "Junta", "Puede", "Hospital", "Mes", "Música", "Costo", "Campo", "Premio", "Tema", "Cama", "Proyecto", "Capítulo", "Muchacha", "Juego", "Monto", "Base", "Conocimiento", "Enfoque", "Serie", "Amar", "Cima", "Noticias", "Parte delantera", "Futuro", "Gerente", "Cuenta", "Ordenador", "Seguridad", "Descanso", "Mano de obra", "Estructura", "Pelo", "Factura", "Corazón", "Fuerza", "Atención", "Movimienot", "Éxito", "Carta", "Convenio", "Capital", "Análisis", "Población", "Medioambiente", "Actuación", "Modelo", "Material", "Teoría", "Crecimiento", "Fuego", "Oportunidad", "Chico", "Relación", "Hijo", "Mar", "Registro", "Tamaño", "Propiedad", "Espacio", "Término", "Director", "Plan", "Comportamiento", "Tratamiento", "Energía", "Ingreso", "Taza", "Esquema", "Diseño", "Respuesta", "Asociación", "Elección", "Presión", "Sala", "Pareja", "Tecnología", "Defensa", "Lista", "Presidente", "Pérdida", "Actividad", "Contrato", "Condado", "Pared", "Diferencia", "Ejército", "Hotel", "Sol", "Producto", "Verano", "Colocar", "Aldea", "Color", "Piso", "Estación", "Unidad", "Parque", "Hora", "Inversión", "Prueba", "Jardín", "Esposo", "Empleo", "Estilo", "Ciencia", "Mirar", "Negociar", "Cargo", "Ayudar", "Economía", "Nuevo", "Página", "Riesgo", "Consejo", "Evento", "Imagen", "Comisión", "Pescado", "Colega", "Petróleo", "Doctor", "Oportunidad", "Película", "Conferencia", "Operación", "Solicitud", "Presionar", "Medida", "Suma", "Estación", "Ventana", "Tienda", "Acceso", "Región", "Duda", "Mayoria", "Grado", "Televisión", "Sangre", "Declaración", "Sonar", "Elección", "Parlamento", "Sitio", "Marca", "Importancia", "Título", "Especies", "Incrementar", "Devolver", "Inquietud", "Público", "Competencia", "Software", "Copa", "Señora", "Responder", "Tierra", "Hija", "Objetivo", "Responsabilidad", "Líder", "Río", "Ojo", "Habilidad", "Apelación", "Oposición", "Campaña", "Respeto", "Tarea", "Instancia", "Rebaja", "Todo", "Oficial", "Método", "División", "Fuente", "Pedazo", "Patrón", "Carencia", "Enfermedad", "Equipo", "Superficie", "Pedir", "Correo", "Boca", "Radio", "Disposición", "Intento", "Sector", "Firma", "Estado", "Paz", "Variedad", "Maestro", "Show", "Vocero", "Bebé", "Brazo", "Base", "Señorita", "La seguridad", "Problema", "Cultura", "Dirección", "Contexto", "Personaje", "Caja", "Discusión", "Pasado", "Peso", "Comienzo", "Hermano", "Liga", "Condición", "Máquina", "Argumento", "Sexo", "Presupuesto", "inglés", "Transporte", "Cuota", "Mamá", "Dinero en efectivo", "Principio", "Intercambio", "Ayuda", "Biblioteca", "Versión", "Regla", "Té", "Equilibrio", "Tarde", "Referencia", "Proteccion", "Verdad", "Distrito", "Doblar", "Herrero", "Revisar", "Minuto", "Deber", "Encuesta", "Presencia", "Influencia", "Roca", "Perro", "Beneficio", "Recopilación", "Ejecutivo", "Habla", "Función", "Reina", "Casamiento", "Valores", "Falla", "Cocina", "Alumno", "Esfuerzo", "Fiesta", "Carrera", "Ataque", "Largo", "Caballo", "Progreso", "Planta", "Visitar", "Relación", "Pelota", "Memoria", "Bar", "Opinión", "Cuarta parte", "Impacto", "Escala", "Carrera", "Imagen", "Confianza", "Justicia", "Borde", "Gas", "Ferrocarril", "Expresión", "Ventaja", "Oro", "Madera", "Red", "Texto", "Bosque", "Hermana", "Silla", "Causa", "Pie", "Subir", "Medio", "Invierno", "Esquina", "Seguro", "Paso", "Daño", "Crédito", "Dolor", "Posibilidad", "Legislación", "Fuerza", "Velocidad", "Delito", "Colina", "Debate", "Será", "Suministro", "Presente", "Confianza", "Paciente", "Viento", "Solución", "Banda", "Museo", "Granja", "Libra", "Partido", "Evaluación", "Mensaje", "Fútbol americano", "No", "Animal", "Piel", "Escena", "Artículo", "Cosa", "Introducción", "Jugar", "Administración", "Miedo", "Padre", "Proporción", "Isla", "Contacto", "Japón", "Afirmar", "Reino", "Video", "Televisión", "Existencia", "Teléfono", "Moverse", "Tráfico", "Distancia", "Alivio", "Gabinete", "Desempleo", "La realidad", "Objetivo", "Ensayo", "Rock", "Concepto", "Espíritu", "Accidente", "Organización", "Construcción", "Café", "Teléfono", "Distribución", "Tren", "Visión", "Dificultad", "Factor", "Ejercicio", "Fin de semana", "Batalla", "Prisión", "Conceder", "Aeronave", "Árbol", "Puente", "Estrategia", "Contraste", "Comunicación", "Fondo", "Forma", "Vino", "Estrella", "Esperar", "Selección", "Detalle", "Usuario", "Sendero", "Cliente", "Búsqueda", "Maestría", "Lluvia", "Oferta", "Meta", "Cena", "Libertad", "Actitud", "Mientras", "Agencia", "Asiento", "Conducta", "Favor", "Par", "Crisis", "Sonreír", "Príncipe", "Peligro", "Llamar", "Capacidad", "Producción", "Nota", "Procedimiento", "Teatro", "Recorrido", "Reconocimiento", "Medio", "Ausencia", "Frase", "Paquete", "Pista", "Tarjeta", "Señal", "Compromiso", "Jugador", "Amenaza", "Tiempo", "Elemento", "Conflicto", "darse cuenta", "Victoria", "Abajo", "Finanzas", "Fondo", "Violencia", "Archivo", "Ganancia", "Estándar", "Jacobo", "Ruta", "Porcelana", "Gasto", "Segundo", "Disciplina", "Celúla", "Reacción", "Castillo", "Congreso", "Individual", "Plomo", "Consideración", "Deuda", "Opción", "Pago", "Exhibición", "Reforma", "Énfasis", "Primavera", "Audiencia", "Rasgo", "Toque", "Bienes", "Asamblea", "Volumen", "Juventud", "Contribución", "Plan de estudios", "Apariencia", "Martín", "Bote", "Instituto", "Afiliación", "Sucursal", "Autobús", "Desperdiciar", "Calor", "Cuello", "Objeto", "Capitán", "Conductor", "Desafío", "Conversacion", "Ocasión", "Código", "Corona", "Nacimiento", "Silencio", "Literatura", "Fe", "Infierno", "Entrada", "Transferir", "Hidalgo", "Bolso", "Carbón", "Investigación", "Pierna", "Creencia", "Total", "Principal", "Documento", "Descripción", "Asesinato", "Apuntar", "Vuelo", "Conclusión", "Droga", "Tradición", "Placer", "Conexión", "Propietario", "Tratado", "Deseo", "Profesor", "Dupdo", "Ministerio", "Ácido", "Palacio", "Dirección", "Institución", "Almuerzo", "Generación", "Compañero", "Motor", "Periódico", "Equis", "Reducción", "Bienestar"]
}
dovalingo_walloon : list {
items = ["Colon", "Fèye", "Vôye", "An", "Ovrer", "Gouvèrnèmint", "Djoûrnêye", "Ome", "Monde", "Vèye", "Pårt", "Barake", "Scole", "Cas", "Sistinme", "Plèce", "Fini", "Rassonler", "Kipagnêye", "Fièsse", "Infôrmåcion", "Scole", "Fêt", "Manôye", "Pont", "Ègzimpe", "Acèrtiner", "Afêre", "Al-nut'", "Redjon", "Êwe", "Tchwè", "Famile", "Tièsse", "Rimète", "Ôr", "Pårti", "Famile", "", "Saminne", "Pwissance", "Payis", "Consèy", "Si sièrvu di", "Chèrvice", "Plaece", "Fôre", "Problème", "Tribunål", "Tèrin", "In", "Guêre", "Jandarmèrèye", "Intèrèt", "Tchår", "Dreût", "Vôye", "", "Afronter", "Éducåtion", "Politike", "Ricwèrèdje", "Triyî", "Burô", "Cwér", "Pèrsone", "Santé", "Mére", "Kèstion", "Trèvint", "Nom", "Lîve", "Lèvê", "Tètåde", "Controler", "Sôcièté", "Minisse", "Vuwe", "Ouf", "Rôye", "Comeune", "Sûd", "Vèye", "Bon diu", "Pére", "Mitan", "Èfèt", "Pèrsonél", "Pôchon", "Sôr", "Ovrèdje", "Feume", "Ac'", "Administråchon", "Adji", "Trêtî", "Nôrd", "Viyî", "Sène", "Îdèye", "Ouwèss", "Aspoyî", "Moumint", "Sins'", "Rapwèrt", "Spér", "Èglîhe", "Matin", "Dièrin", "Candjî", "Industrèye", "Abwèrder", "", "Siéke", "", "Tåvlê", "Rèscouler", "Comèrce", "Fåve", "Ètude", "Rowe", "", "", "Mot", "Amagnî", "Langue", "Èspèriyince", "", "", "Ôte", "Moncheû", "", "", "Êr", "", "Role", "Cåse", "Pris", "Vèye", "", "Nateûre", "", "", "", "Banke", "", "Valeûr", "", "Èst", "", "", "Papî", "", "", "Cogne", "Dreût", "Feume", "", "Ûnivêrsité", "Ami", "", "Cålité", "Vwès", "Sègneûr", "", "Rwè", "Nos-ôtes", "Situwåcion", "Lèdjîr", "", "", "Cotî", "Sécrètêre", "Årt", "Plantche", "Pouvwér", "Ospitå", "Meûs", "Muzike", "Costèdje", "Dôminne", "Ad'djudjî", "Publiyî", "Lét", "Projèt", "Chapite", "Båcèle", "Djeû", "Montant", "", "Kinohance", "Aprocher", "", "Amoûr", "", "Novèle", "D'vant", "Tins", "Administrateûr", "Compte", "", "", "Ripwès", "", "", "Dj'vè", "Factûre", "Coûr", "Fwèce", "Astème", "Mouvemint", "", "Lète", "Acwérd", "", "", "Pôpulåtion", "", "", "", "", "", "", "", "", "Valèt", "", "Fi", "", "Plake", "Grandeûr", "", "", "", "", "Intanchon", "", "", "Èhowe", "", "Côpe", "", "Dèssin", "", "", "", "", "", "Ome", "", "", "", "", "", "Abèyisté", "", "", "Pareûse", "Difèrince", "", "Ôtél", "Solo", "", "Osté", "", "Viyèdje", "", "", "Acomôder", "", "", "Eûre", "", "", "Cotehê", "Ome", "Plèce", "", "Syince", "Êrèdje", "Pièle", "", "", "", "Novê", "Pådje", "Wèzeûr", "Consèy", "", "Îmådje", "", "Pèhî", "", "Ôle", "Docteûr", "Ocåzion", "Toûrniker", "", "Opèråchon", "", "", "", "", "Gåre", "Fignèsse", "", "", "Payis", "Doter", "", "", "Télévûzion", "Song'", "", "", "Chwès", "", "", "", "Importance", "", "", "", "Rinde", "Importance", "", "Concoûrs", "", "Veûle", "Dame", "Rèsponde", "Têre", "Fèye", "Dèssin", "", "", "Scole", "", "", "", "", "Campagne", "", "Deûr", "Ègzimpe", "Vinte", "", "", "", "", "Sûr", "Pårt", "", "", "Maladèye", "", "", "", "", "Boke", "Posse", "", "Intrèprinde", "", "Fèrme", "", "Påye", "Sôr", "Mêsse", "", "", "", "", "", "Måquer", "", "", "Cultûre", "", "", "Caractére", "Bwète", "", "", "Balance", "", "Fré", "", "", "", "", "Sacwè", "", "", "", "Pårtajer", "Mére", "", "", "Discandjî", "", "Bibiliotéque", "", "", "Té", "", "Après-dîner", "", "", "Vèrité", "", "Tchèrî k'twért", "", "", "", "Deûr", "", "", "", "Pîre", "", "Avantèdje", "", "", "", "", "Rinne", "Marièdje", "", "", "Couhène", "Ètudiant", "", "Candjî", "", "Ataker", "", "Dj'vå", "", "", "", "Abôrd", "", "Mémwére", "", "Îdêye", "", "", "Håle", "Coûsse", "Îmådje", "", "Djustice", "", "", "", "", "Avantèdjî", "Ôr", "Bwès", "", "", "Bwès", "Soûr", "", "Djåzer", "Pî", "", "Mitan", "Iviér", "", "", "", "Abîmer", "", "Doleûr", "", "", "Fwèce", "Vitèsse", "Crime", "Gridjète", "", "", "", "", "Fwè", "", "Vint", "", "", "Mûzéye", "Fèrme", "", "", "", "Mèssèdje", "", "", "Bièsse", "Pê", "Sinne", "Årtike", "", "", "Djouwer", "", "", "Papa", "", "", "", "", "", "", "", "Télévûzion", "Vikèdje", "Tèlèphoner", "Mouwer", "", "Trote", "", "Årmå", "", "", "Dèssin", "", "Halcoter", "", "Spér", "Acsidint", "", "", "Cafè", "", "", "", "Alèdje", "Difigulté", "", "", "", "Bate", "Prîhon", "", "", "Åbe", "Pont", "", "Contrasse", "", "", "", "Vin", "", "", "Chwès", "", "", "Vôye", "", "", "Aprinde", "Plêve", "", "Dèssin", "Dîner", "Lîbèrté", "", "Tot fant qui", "Ajance", "", "Manîre", "Avantèdjî", "Apêrî", "", "", "", "Dandjî", "", "Cont'nince", "", "", "", "Tèyåte", "", "Rik'nohance", "", "", "Fråse", "", "", "Carte", "Trace", "", "Acteûr", "Mènace", "", "", "", "", "", "Fond", "", "", "", "Poyîre", "", "", "Valèt", "Vôye", "Chine", "", "", "", "", "", "Tchèstê", "", "", "", "", "", "", "Påyemint", "", "", "", "", "", "", "Atoucher", "", "", "", "Djonnèsse", "", "", "", "", "", "", "", "", "", "Trifôgnî", "", "", "Camatche", "", "", "", "D'vize", "", "Côde", "", "Natål(e)", "Silince", "", "Fwè", "Infér", "", "", "Moncheû", "", "Tchèrbon", "", "Pate", "Crèyince", "", "", "", "", "Moude", "", "Volêye", "", "Drogue", "", "Plêzîr", "", "", "", "Lèmer", "Profèsseûr", "", "", "", "Palå", "Adrèssî", "", "Dîner", "Jènèråchon", "", "", "Gazète", "", "Abahèdje", ""]
}
dovalingo_korean : list {
items = ["비둘기 / Bidulgi", "시각 / Sigag", "방법 / Bangbeob", "년도 / Nyeondo", "일하다 / Ilhada", "정부 / Jeongbu", "낮 / Naj", "남성 / Namseong", "세계 / Segye", "삶 / Salm", "부분 / Bubun", "집 / Jib", "강의 / Gang-ui", "사례 / Salye", "체계 / Chegye", "장소 / Jangso", "끝 / Kkeut", "그룹 / Geulub", "회사 / Hoesa", "파티 / Pati", "정보 / Jeongbo", "학교 / Haggyo", "사실 / Sasil", "돈 / Don", "가리키다 / Galikida", "예시 / Yesi", "상태 / Sangtae", "사업 / Sa-eob", "밤 / Bam", "영역 / Yeong-yeog", "물 / Mul", "물건 / Mulgeon", "가족 / Gajog", "머리 / Meoli", "손 / Son", "주문하다 / Jumunhada", "옆 / Yeop", "집 / Jib", "개발 / Gaebal", "주 / Ju", "힘 / Him", "국가 / Gugga", "이사회 / Isahoe", "사용 / Sayong", "서비스 / Seobiseu", "방 / Bang", "시장 / Sijang", "문제 / Munje", "법원 / Beob-won", "많은 / Manh-eun", "ㅏ / A", "전쟁 / Jeonjaeng", "경찰 / Gyeongchal", "관심 / Gwansim", "차 / Cha", "법 / Beob", "도로 / Dolo", "형태 / Hyeongtae", "얼굴 / Eolgul", "교육 / Gyoyug", "정책 / Jeongchaeg", "연구 / Yeongu", "종류 / Jonglyu", "사무실 / Samusil", "신체 / Sinche", "사람 / Salam", "건강 / Geongang", "어머니 / Eomeoni", "문제 / Munje", "기간 / Gigan", "이름 / Ileum", "도서 / Doseo", "수준 / Sujun", "어린이 / Eolin-i", "제어 / Jeeo", "사회 / Sahoe", "장관 / Jang-gwan", "보다 / Boda", "문 / Mun", "라인 / Lain", "지역 사회 / Jiyeog sahoe", "남쪽 / Namjjog", "도시 / Dosi", "하느님 / Haneunim", "아버지 / Abeoji", "센터 / Senteo", "효과 / Hyogwa", "직원 / Jig-won", "위치 / Wichi", "친절한 / Chinjeolhan", "직업 / Jig-eob", "여성 / Yeoseong", "행동 / Haengdong", "관리 / Gwanli", "행동 / Haengdong", "프로세스 / Peuloseseu", "북쪽 / Bugjjog", "나이 / Nai", "증거 / Jeung-geo", "아이디어 / Aidieo", "서쪽 / Seojjog", "지원하다 / Jiwonhada", "순간 / Sungan", "감각 / Gamgag", "보고서 / Bogoseo", "정신 / Jeongsin", "교회에 / Gyohoee", "아침 / Achim", "죽음 / Jug-eum", "변화 / Byeonhwa", "산업 / San-eob", "땅 / Ttang", "케어 / Keeo", "세기 / Segi", "범위 / Beom-wi", "테이블 / Teibeul", "뒤 / Dwi", "거래 / Geolae", "역사 / Yeogsa", "공부하다 / Gongbuhada", "거리 / Geoli", "위원회 / Wiwonhoe", "비율 / Biyul", "단어 / Dan-eo", "음식 / Eumsig", "언어 / Eon-eo", "경험 / Gyeongheom", "결과 / Gyeolgwa", "팀 / Tim", "다른 / Daleun", "선생님 / Seonsaengnim", "부분 / Bubun", "프로그램 / Peulogeulaem", "공기 / Gong-gi", "권한 / Gwonhan", "역할 / Yeoghal", "이유 / Iyu", "가격 / Gagyeog", "도시 / Dosi", "수업 / Sueob", "자연 / Jayeon", "주제 / Juje", "학과 / Haggwa", "노동 조합 / Nodong johab", "은행 / Eunhaeng", "회원 / Hoewon", "값 / Gabs", "필요 / Pil-yo", "동쪽 / Dongjjog", "관행 / Gwanhaeng", "유형 / Yuhyeong", "종이 / Jong-i", "데이트 / Deiteu", "결정 / Gyeoljeong", "수치 / Suchi", "오른쪽 / Oleunjjog", "부인 / Bu-in", "대통령 / Daetonglyeong", "대학교 / Daehaggyo", "친구 / Chingu", "클럽 / Keulleob", "품질 / Pumjil", "목소리 / Mogsoli", "주님 / Junim", "단계 / Dangye", "왕 / Wang", "우리를 / Ulileul", "상황 / Sanghwang", "빛 / Bich", "세 / Se", "생산 / Saengsan", "3월 / 3wol", "비서 / Biseo", "미술 / Misul", "판자 / Panja", "5월 / 5wol", "병원 / Byeong-won", "월 / Wol", "음악 / Eum-ag", "비용 / Biyong", "들 / Deul", "상 / Sang", "문제 / Munje", "침대 / Chimdae", "프로젝트 / Peulojegteu", "장 / Jang", "소녀 / Sonyeo", "게임 / Geim", "양 / Yang", "기초 / Gicho", "지식 / Jisig", "접근하다 / Jeobgeunhada", "시리즈 / Silijeu", "사랑 / Salang", "맨 위 / Maen wi", "소식 / Sosig", "앞쪽 / Apjjog", "미래 / Milae", "관리자 / Gwanlija", "계정 / Gyejeong", "컴퓨터 / Keompyuteo", "보안 / Boan", "나머지 / Nameoji", "노동 / Nodong", "구조 / Gujo", "머리카락 / Meolikalag", "청구서 / Cheong-guseo", "마음 / Ma-eum", "힘 / Him", "주목 / Jumog", "움직임 / Umjig-im", "성공 / Seong-gong", "편지 / Pyeonji", "합의 / Hab-ui", "수도 / Sudo", "분석 / Bunseog", "인구 / Ingu", "환경 / Hwangyeong", "성능 / Seongneung", "모델 / Model", "재료 / Jaelyo", "이론 / Ilon", "성장 / Seongjang", "불 / Bul", "가능성 / Ganeungseong", "소년 / Sonyeon", "관계 / Gwangye", "아들 / Adeul", "바다 / Bada", "기록 / Gilog", "크기 / Keugi", "특성 / Teugseong", "우주 / Uju", "기간 / Gigan", "감독 / Gamdog", "계획 / Gyehoeg", "행동 / Haengdong", "치료 / Chilyo", "에너지 / Eneoji", "소득 / Sodeug", "컵 / Keob", "계획 / Gyehoeg", "설계 / Seolgye", "응답 / Eungdab", "협회 / Hyeobhoe", "선택 / Seontaeg", "압력 / Ablyeog", "홀 / Hol", "커플 / Keopeul", "기술 / Gisul", "방어 / Bang-eo", "목록 / Moglog", "의장 / Uijang", "상실 / Sangsil", "활동 / Hwaldong", "계약 / Gyeyag", "군 / Gun", "벽 / Byeog", "차이점 / Chaijeom", "군대 / Gundae", "호텔 / Hotel", "태양 / Taeyang", "제품 / Jepum", "여름 / Yeoleum", "세트 / Seteu", "마을 / Ma-eul", "색깔 / Saegkkal", "바닥 / Badag", "계절 / Gyejeol", "단위 / Dan-wi", "공원 / Gong-won", "시간 / Sigan", "투자 / Tuja", "시험 / Siheom", "정원 / Jeong-won", "남편 / Nampyeon", "고용 / Goyong", "스타일 / Seutail", "과학 / Gwahag", "바라보다 / Balaboda", "거래 / Geolae", "요금 / Yogeum", "돕다 / Dobda", "경제 / Gyeongje", "새로운 / Saeloun", "페이지 / Peiji", "위험 / Wiheom", "조언 / Jo-eon", "이벤트 / Ibenteu", "그림 / Geulim", "수수료 / Susulyo", "생선 / Saengseon", "대학 / Daehag", "기름 / Gileum", "박사님 / Bagsanim", "기회 / Gihoe", "필름 / Pilleum", "회의 / Hoeui", "작업 / Jag-eob", "애플리케이션 / Aepeullikeisyeon", "누르다 / Nuleuda", "정도 / Jeongdo", "덧셈 / Deos-sem", "역 / Yeog", "창문 / Changmun", "가게 / Gage", "접속하다 / Jeobsoghada", "지역 / Jiyeog", "의심 / Uisim", "다수 / Dasu", "도 / Do", "텔레비전 / Tellebijeon", "피 / Pi", "성명 / Seongmyeong", "소리 / Soli", "선거 / Seongeo", "의회 / Uihoe", "대지 / Daeji", "표시 / Pyosi", "중요성 / Jung-yoseong", "제목 / Jemog", "종 / Jong", "증가하다 / Jeung-gahada", "반품 / Banpum", "우려 / Ulyeo", "공공의 / Gong-gong-ui", "경쟁 / Gyeongjaeng", "소프트웨어 / Sopeuteuweeo", "유리 / Yuli", "숙녀 / Sugnyeo", "답변 / Dabbyeon", "지구 / Jigu", "딸 / Ttal", "목적 / Mogjeog", "책임 / Chaeg-im", "지도자 / Jidoja", "강 / Gang", "눈 / Nun", "능력 / Neunglyeog", "항소 / Hangso", "반대 / Bandae", "운동 / Undong", "존경 / Jongyeong", "직무 / Jigmu", "사례 / Salye", "판매 / Panmae", "전부의 / Jeonbuui", "장교 / Jang-gyo", "방법 / Bangbeob", "분할 / Bunhal", "원천 / Woncheon", "조각 / Jogag", "무늬 / Munui", "부족 / Bujog", "질병 / Jilbyeong", "장비 / Jangbi", "표면 / Pyomyeon", "수요 / Suyo", "게시하다 / Gesihada", "입 / Ib", "라디오 / Ladio", "공급 / Gong-geub", "시도 / Sido", "부문 / Bumun", "단단한 / Dandanhan", "상태 / Sangtae", "평화 / Pyeonghwa", "다양성 / Dayangseong", "선생님 / Seonsaengnim", "보여주다 / Boyeojuda", "스피커 / Seupikeo", "아기 / Agi", "팔 / Pal", "베이스 / Beiseu", "놓치다 / Nohchida", "안전 / Anjeon", "문제 / Munje", "문화 / Munhwa", "방향 / Banghyang", "문맥 / Munmaeg", "캐릭터 / Kaeligteo", "상자 / Sangja", "논의 / Non-ui", "과거 / Gwageo", "무게 / Muge", "시작 / Sijag", "형제 / Hyeongje", "리그 / Ligeu", "상태 / Sangtae", "기계 / Gigye", "논쟁 / Nonjaeng", "섹스 / Segseu", "예산 / Yesan", "영어 / Yeong-eo", "수송 / Susong", "공유하다 / Gong-yuhada", "침묵 / Chimmug", "현금 / Hyeongeum", "원칙 / Wonchig", "교환 / Gyohwan", "지원 / Jiwon", "도서관 / Doseogwan", "버전 / Beojeon", "규칙 / Gyuchig", "차 / Cha", "균형 / Gyunhyeong", "오후 / Ohu", "참조 / Chamjo", "보호 / Boho", "진실 / Jinsil", "구역 / Guyeog", "회전하다 / Hoejeonhada", "스미스 / Seumiseu", "검토 / Geomto", "분 / Bun", "의무 / Uimu", "서베이 / Seobei", "있음 / Iss-eum", "영향 / Yeonghyang", "결석 / Gyeolseog", "개 / Gae", "혜택 / Hyetaeg", "수집 / Sujib", "경영진 / Gyeong-yeongjin", "연설 / Yeonseol", "기능 / Gineung", "퀸 / Kwin", "결혼 / Gyeolhon", "스톡 / Seutog", "실패 / Silpae", "주방 / Jubang", "학생 / Hagsaeng", "노력 / Nolyeog", "휴일 / Hyuil", "직업 / Jig-eob", "공격 / Gong-gyeog", "길이 / Gil-i", "말 / Mal", "진전 / Jinjeon", "공장 / Gongjang", "방문 / Bangmun", "관계 / Gwangye", "공 / Gong", "메모리 / Memoli", "술집 / Suljib", "의견 / Uigyeon", "4분의 1 / 4bun-ui 1", "영향 / Yeonghyang", "규모 / Gyumo", "경주 / Gyeongju", "영상 / Yeongsang", "신뢰하다 / Sinloehada", "정당성 / Jeongdangseong", "가장자리 / Gajangjali", "가스 / Gaseu", "철도 / Cheoldo", "표현 / Pyohyeon", "이점 / Ijeom", "금 / Geum", "목재 / Mogjae", "회로망 / Hoelomang", "텍스트 / Tegseuteu", "숲 / Sup", "자매 / Jamae", "의자 / Uija", "원인 / Won-in", "발 / Bal", "증가 / Jeung-ga", "반 / Ban", "겨울 / Gyeoul", "모서리 / Moseoli", "보험 / Boheom", "단계 / Dangye", "피해를 주다 / Pihaeleul juda", "신용 거래 / Sin-yong geolae", "통증 / Tongjeung", "가능성 / Ganeungseong", "법률 제정 / Beoblyul jejeong", "힘 / Him", "속도 / Sogdo", "범죄 / Beomjoe", "언덕 / Eondeog", "토론 / Tolon", "~ 할 것이다 / ~ hal geos-ida", "공급 / Gong-geub", "선물 / Seonmul", "신뢰 / Sinloe", "인내심 있는 / Innaesim issneun", "바람 / Balam", "해결책 / Haegyeolchaeg", "밴드 / Baendeu", "박물관 / Bagmulgwan", "농장 / Nongjang", "파운드 / Paundeu", "성냥 / Seongnyang", "평가 / Pyeong-ga", "메시지 / Mesiji", "축구 / Chuggu", "아니요 / Aniyo", "동물 / Dongmul", "피부 / Pibu", "장면 / Jangmyeon", "기사 / Gisa", "물건 / Mulgeon", "소개 / Sogae", "플레이 / Peullei", "관리 / Gwanli", "두려움 / Dulyeoum", "아빠 / Appa", "비율 / Biyul", "섬 / Seom", "연락하다 / Yeonlaghada", "일본 / Ilbon", "주장하다 / Jujanghada", "왕국 / Wang-gug", "동영상 / Dong-yeongsang", "TV / Tv", "존재 / Jonjae", "전화 / Jeonhwa", "이동하다 / Idonghada", "교통 / Gyotong", "거리 / Geoli", "안도 / Ando", "내각 / Naegag", "실업 / Sil-eob", "현실 / Hyeonsil", "표적 / Pyojeog", "재판 / Jaepan", "바위 / Bawi", "개념 / Gaenyeom", "영혼 / Yeonghon", "사고 / Sago", "조직 / Jojig", "건설 / Geonseol", "커피 / Keopi", "핸드폰 / Haendeupon", "분포 / Bunpo", "기차 / Gicha", "시력 / Silyeog", "어려움 / Eolyeoum", "요인 / Yoin", "연습 / Yeonseub", "주말 / Jumal", "전투 / Jeontu", "감옥 / Gam-og", "승인하다 / Seung-inhada", "항공기 / Hang-gong-gi", "나무 / Namu", "다리 / Dali", "전략 / Jeonlyag", "차이 / Chai", "의사소통 / Uisasotong", "배경 / Baegyeong", "모양 / Moyang", "와인 / Wain", "별 / Byeol", "희망 / Huimang", "선택 / Seontaeg", "세부 사항 / Sebu sahang", "사용자 / Sayongja", "길 / Gil", "고객 / Gogaeg", "검색 / Geomsaeg", "주인 / Ju-in", "비 / Bi", "권하다 / Gwonhada", "목표 / Mogpyo", "저녁 / Jeonyeog", "자유 / Jayu", "태도 / Taedo", "동안 / Dong-an", "대행사 / Daehaengsa", "좌석 / Jwaseog", "방법 / Bangbeob", "호의 / Houi", "쌍 / Ssang", "위기 / Wigi", "웃다 / Usda", "왕자 / Wangja", "위험 / Wiheom", "전화 / Jeonhwa", "용량 / Yonglyang", "산출 / Sanchul", "노트 / Noteu", "절차 / Jeolcha", "극장 / Geugjang", "관광 / Gwangwang", "인식 / Insig", "가운데 / Gaunde", "결석 / Gyeolseog", "문장 / Munjang", "패키지 / Paekiji", "과정 / Gwajeong", "카드 / Kadeu", "징후 / Jinghu", "약속 / Yagsog", "플레이어 / Peulleieo", "위협 / Wihyeob", "날씨 / Nalssi", "요소 / Yoso", "갈등 / Galdeung", "알아채다 / Al-achaeda", "승리 / Seungli", "맨 아래 / Maen alae", "재원 / Jaewon", "축적 / Chugjeog", "폭행 / Poghaeng", "파일 / Pail", "이익 / Iig", "기준 / Gijun", "잭 / Jaeg", "노선 / Noseon", "중국 / Jung-gug", "지출 / Jichul", "두번째 / Dubeonjjae", "규율 / Gyuyul", "셀 / Sel", "반응 / Ban-eung", "성 / Seong", "회의 / Hoeui", "개인 / Gaein", "리드 / Lideu", "고려 사항 / Golyeo sahang", "빚 / Bij", "옵션 / Obsyeon", "지불 / Jibul", "전시회 / Jeonsihoe", "개정 / Gaejeong", "중요성 / Jung-yoseong", "봄 / Bom", "청중 / Cheongjung", "특징 / Teugjing", "접촉 / Jeobchog", "사유지 / Sayuji", "집회 / Jibhoe", "용량 / Yonglyang", "청소년 / Cheongsonyeon", "기부금 / Gibugeum", "과정 / Gwajeong", "모습 / Moseub", "남자 이름 / Namja ileum", "보트 / Boteu", "학회 / Haghoe", "회원 / Hoewon", "나뭇가지 / Namusgaji", "버스 / Beoseu", "쓰레기 / Sseulegi", "열 / Yeol", "목 / Mog", "물체 / Mulche", "선장 / Seonjang", "운전사 / Unjeonsa", "도전 / Dojeon", "대화 / Daehwa", "기회 / Gihoe", "암호 / Amho", "왕관 / Wang-gwan", "출생 / Chulsaeng", "고요 / Goyo", "문학 / Munhag", "믿음 / Mid-eum", "지옥 / Jiog", "기입 / Giib", "옮기다 / Olmgida", "신사 / Sinsa", "가방 / Gabang", "석탄 / Seogtan", "조사 / Josa", "다리 / Dali", "믿음 / Mid-eum", "총 / Chong", "주요한 / Juyohan", "문서 / Munseo", "설명 / Seolmyeong", "살인 / Sal-in", "목표 / Mogpyo", "비행 / Bihaeng", "결론 / Gyeollon", "의약품 / Uiyagpum", "전통 / Jeontong", "기쁨 / Gippeum", "연결 / Yeongyeol", "소유자 / Soyuja", "조약 / Joyag", "욕구 / Yoggu", "교수 / Gyosu", "복사 / Bogsa", "내각 / Naegag", "산 / San", "궁전 / Gungjeon", "주소 / Juso", "기관 / Gigwan", "점심 / Jeomsim", "세대 / Sedae", "파트너 / Pateuneo", "엔진 / Enjin", "신문 / Sinmun", "가로 질러 가다 / Galo jilleo gada", "절감 / Jeolgam", "복지 / Bogji"]
}
dovalingo_chinese : list {
items = ["鸽子 / Gēzi", "时间 / Shíjiān", "方式 / Fāngshì", "年 / Nián", "工作 / Gōngzuò", "政府 / Zhèngfǔ", "天 / Tiān", "男人 / Nánrén", "世界 / Shìjiè", "生活 / Shēnghuó", "部分 / Bùfèn", "房子 / Fángzi", "课程 / Kèchéng", "案子 / Ànzi", "系统 / Xìtǒng", "地方 / Dìfāng", "结尾 / Jiéwěi", "团体 / Tuántǐ", "公司 / Gōngsī", "聚会 / Jùhuì", "信息 / Xìnxī", "学校 / Xuéxiào", "事实 / Shìshí", "钱 / Qián", "观点 / Guāndiǎn", "例子 / Lìzi", "状态 / Zhuàngtài", "商业 / Shāngyè", "夜晚 / Yèwǎn", "区域 / Qūyù", "水 / Shuǐ", "事物 / Shìwù", "家庭 / Jiātíng", "头 / Tóu", "手 / Shǒu", "命令 / Mìnglìng", "边 / Biān", "家 / Jiā", "发展 / Fāzhǎn", "星期 / Xīngqí", "力量 / Lìliàng", "国家 / Guójiā", "理事会 / Lǐshì huì", "采用 / Cǎiyòng", "服务 / Fúwù", "房间 / Fángjiān", "市场 / Shìchǎng", "问题 / Wèntí", "法庭 / Fǎtíng", "很多 / Hěnduō", "一种 / Yī zhǒng", "战争 / Zhànzhēng", "警察 / Jǐngchá", "兴趣 / Xìngqù", "车 / Chē", "法律 / Fǎlǜ", "路 / Lù", "形式 / Xíngshì", "脸 / Liǎn", "教育 / Jiàoyù", "政策 / Zhèngcè", "研究 / Yánjiū", "种类 / Zhǒnglèi", "办公室 / Bàngōngshì", "身体 / Shēntǐ", "人 / Rén", "健康 / Jiànkāng", "母亲 / Mǔqīn", "问题 / Wèntí", "时期 / Shíqí", "姓名 / Xìngmíng", "书 / Shū", "等级 / Děngjí", "孩子 / Háizi", "控制 / Kòngzhì", "社会 / Shèhuì", "部长 / Bùzhǎng", "看法 / Kànfǎ", "门 / Mén", "线 / Xiàn", "社区 / Shèqū", "南 / Nán", "城市 / Chéngshì", "上帝 / Shàngdì", "父亲 / Fùqīn", "中心 / Zhōngxīn", "影响 / Yǐngxiǎng", "职员 / Zhíyuán", "位置 / Wèizhì", "种类 / Zhǒnglèi", "工作 / Gōngzuò", "女士 / Nǚshì", "行动 / Xíngdòng", "管理 / Guǎnlǐ", "行为 / Xíngwéi", "过程 / Guòchéng", "北 / Běi", "年龄 / Niánlíng", "证据 / Zhèngjù", "主意 / Zhǔyì", "西方 / Xīfāng", "支持 / Zhīchí", "片刻 / Piànkè", "感觉 / Gǎnjué", "报告 / Bàogào", "头脑 / Tóunǎo", "教会 / Jiàohuì", "早晨 / Zǎochén", "死亡 / Sǐwáng", "改变 / Gǎibiàn", "行业 / Hángyè", "土地 / Tǔdì", "关心 / Guānxīn", "世纪 / Shìjì", "范围 / Fànwéi", "桌子 / Zhuōzi", "后退 / Hòutuì", "贸易 / Màoyì", "历史 / Lìshǐ", "学习 / Xuéxí", "街道 / Jiēdào", "委员会 / Wěiyuánhuì", "速度 / Sùdù", "单词 / Dāncí", "食物 / Shíwù", "语言 / Yǔyán", "经验 / Jīngyàn", "结果 / Jiéguǒ", "团队 / Tuánduì", "其他 / Qítā", "先生 / Xiānshēng", "部分 / Bùfèn", "程序 / Chéngxù", "空气 / Kōngqì", "权威 / Quánwēi", "角色 / Juésè", "原因 / Yuányīn", "价格 / Jiàgé", "镇 / Zhèn", "班级 / Bānjí", "自然 / Zìrán", "学科 / Xuékē", "部门 / Bùmén", "联盟 / Liánméng", "银行 / Yínháng", "成员 / Chéngyuán", "价值 / Jiàzhí", "需要 / Xūyào", "东方 / Dōngfāng", "实践 / Shíjiàn", "类型 / Lèixíng", "纸 / Zhǐ", "日期 / Rìqí", "决定 / Juédìng", "数字 / Shùzì", "对 / Duì", "妻子 / Qīzi", "总统 / Zǒngtǒng", "大学 / Dàxué", "朋友 / Péngyǒu", "俱乐部 / Jùlèbù", "质量 / Zhìliàng", "嗓音 / Sǎngyīn", "主 / Zhǔ", "阶段 / Jiēduàn", "国王 / Guówáng", "我们 / Wǒmen", "情况 / Qíngkuàng", "光 / Guāng", "税 / Shuì", "生产 / Shēngchǎn", "行进 / Xíngjìn", "秘书 / Mìshū", "艺术 / Yìshù", "木板 / Mùbǎn", "可能 / Kěnéng", "医院 / Yīyuàn", "月 / Yuè", "音乐 / Yīnyuè", "成本 / Chéngběn", "场地 / Chǎngdì", "奖 / Jiǎng", "问题 / Wèntí", "床 / Chuáng", "项目 / Xiàngmù", "章节 / Zhāngjié", "女孩 / Nǚhái", "游戏 / Yóuxì", "数量 / Shùliàng", "基础 / Jīchǔ", "知识 / Zhīshì", "方法 / Fāngfǎ", "系列 / Xìliè", "爱 / Ài", "最佳 / Zuì jiā", "消息 / Xiāoxī", "正面 / Zhèngmiàn", "未来 / Wèilái", "经理 / Jīnglǐ", "帐户 / Zhànghù", "电脑 / Diànnǎo", "安全 / Ānquán", "休息 / Xiūxí", "劳动 / Láodòng", "结构 / Jiégòu", "头发 / Tóufǎ", "账单 / Zhàngdān", "心 / Xīn", "力量 / Lìliàng", "注意力 / Zhùyì lì", "移动 / Yídòng", "成功 / Chénggōng", "信 / Xìn", "协议 / Xiéyì", "首都 / Shǒudū", "分析 / Fēnxī", "人口 / Rénkǒu", "环境 / Huánjìng", "表现 / Biǎoxiàn", "模型 / Móxíng", "材料 / Cáiliào", "理论 / Lǐlùn", "生长 / Shēngzhǎng", "火 / Huǒ", "机会 / Jīhuì", "男生 / Nánshēng", "关系 / Guānxì", "儿子 / Érzi", "海 / Hǎi", "记录 / Jìlù", "尺寸 / Chǐcùn", "财产 / Cáichǎn", "空间 / Kōngjiān", "学期 / Xuéqí", "导向器 / Dǎoxiàng qì", "计划 / Jìhuà", "行为 / Xíngwéi", "治疗 / Zhìliáo", "活力 / Huólì", "收入 / Shōurù", "杯子 / Bēizi", "方案 / Fāng'àn", "设计 / Shèjì", "回复 / Huífù", "协会 / Xiéhuì", "选择 / Xuǎnzé", "压力 / Yālì", "大厅 / Dàtīng", "一对 / Yī duì", "技术 / Jìshù", "防御 / Fángyù", "列表 / Lièbiǎo", "主席 / Zhǔxí", "损失 / Sǔnshī", "活动 / Huódòng", "合同 / Hétóng", "县 / Xiàn", "墙 / Qiáng", "不同之处 / Bùtóng zhī chù", "军队 / Jūnduì", "酒店 / Jiǔdiàn", "太阳 / Tàiyáng", "产品 / Chǎnpǐn", "夏天 / Xiàtiān", "放 / Fàng", "村庄 / Cūnzhuāng", "颜色 / Yánsè", "地面 / Dìmiàn", "季节 / Jìjié", "单元 / Dānyuán", "公园 / Gōngyuán", "小时 / Xiǎoshí", "投资 / Tóu zī", "测试 / Cèshì", "花园 / Huāyuán", "丈夫 / Zhàngfū", "就业 / Jiùyè", "风格 / Fēnggé", "科学 / Kēxué", "看 / Kàn", "交易 / Jiāoyì", "收费 / Shōufèi", "帮助 / Bāngzhù", "经济 / Jīngjì", "新的 / Xīn de", "页 / Yè", "风险 / Fēngxiǎn", "建议 / Jiànyì", "事件 / Shìjiàn", "图片 / Túpiàn", "委员会 / Wěiyuánhuì", "鱼 / Yú", "大学 / Dàxué", "油 / Yóu", "医生 / Yīshēng", "机会 / Jīhuì", "电影 / Diànyǐng", "会议 / Huìyì", "手术 / Shǒushù", "应用 / Yìngyòng", "按 / Àn", "程度 / Chéngdù", "添加 / Tiānjiā", "车站 / Chēzhàn", "窗户 / Chuānghù", "店铺 / Diànpù", "使用权 / Shǐyòng quán", "地区 / Dìqū", "怀疑 / Huáiyí", "多数 / Duōshù", "程度 / Chéngdù", "电视 / Diànshì", "血液 / Xiěyè", "陈述 / Chénshù", "声音 / Shēngyīn", "选举 / Xuǎnjǔ", "议会 / Yìhuì", "地点 / Dìdiǎn", "标记 / Biāojì", "重要性 / Zhòngyào xìng", "标题 / Biāotí", "物种 / Wùzhǒng", "增加 / Zēngjiā", "返回 / Fǎnhuí", "忧虑 / Yōulǜ", "上市 / Shàngshì", "竞赛 / Jìngsài", "软件 / Ruǎnjiàn", "玻璃 / Bōlí", "女士 / Nǚshì", "回答 / Huídá", "地球 / Dìqiú", "女儿 / Nǚ'ér", "目的 / Mùdì", "责任 / Zérèn", "领导者 / Lǐngdǎo zhě", "河 / Hé", "眼睛 / Yǎnjīng", "能力 / Nénglì", "上诉 / Shàngsù", "反对 / Fǎnduì", "活动 / Huódòng", "尊重 / Zūnzhòng", "任务 / Rènwù", "实例 / Shílì", "销售 / Xiāoshòu", "所有的 / Suǒyǒu de", "官 / Guān", "方法 / Fāngfǎ", "分配 / Fēnpèi", "来源 / Láiyuán", "片 / Piàn", "图案 / Tú'àn", "缺少 / Quēshǎo", "疾病 / Jíbìng", "设备 / Shèbèi", "表面 / Biǎomiàn", "要求 / Yāoqiú", "邮政 / Yóuzhèng", "嘴 / Zuǐ", "收音机 / Shōuyīn jī", "条款 / Tiáokuǎn", "试图 / Shìtú", "部门 / Bùmén", "公司 / Gōngsī", "地位 / Dìwèi", "和平 / Hépíng", "种类 / Zhǒnglèi", "老师 / Lǎoshī", "显示 / Xiǎnshì", "扬声器 / Yángshēngqì", "婴儿 / Yīng'ér", "手臂 / Shǒubì", "根据 / Gēnjù", "错过 / Cuòguò", "安全 / Ānquán", "麻烦 / Máfan", "文化 / Wénhuà", "方向 / Fāngxiàng", "语境 / Yǔ jìng", "特点 / Tèdiǎn", "盒子 / Hézi", "讨论 / Tǎolùn", "过去的 / Guòqù de", "重量 / Zhòngliàng", "开始 / Kāishǐ", "兄弟 / Xiōngdì", "联盟 / Liánméng", "健康)状况 / Jiànkāng) zhuàngkuàng", "机器 / Jīqì", "争论 / Zhēnglùn", "性别 / Xìngbié", "预算 / Yùsuàn", "英语 / Yīngyǔ", "运输 / Yùnshū", "分享 / Fēnxiǎng", "妈妈 / Māmā", "现金 / Xiànjīn", "原则 / Yuánzé", "交换 / Jiāohuàn", "援助 / Yuánzhù", "图书馆 / Túshū guǎn", "版本 / Bǎnběn", "规则 / Guīzé", "茶 / Chá", "平衡 / Pínghéng", "下午 / Xiàwǔ", "参考 / Cānkǎo", "保护 / Bǎohù", "真相 / Zhēnxiàng", "区 / Qū", "转动 / Zhuǎndòng", "史密斯 / Shǐmìsī", "审查 / Shěnchá", "分钟 / Fēnzhōng", "义务 / Yìwù", "民意调查 / Mínyì diàochá", "在场 / Zàichǎng", "影响 / Yǐngxiǎng", "结石 / Jiéshí", "狗 / Gǒu", "益处 / Yìchu", "收藏 / Shōucáng", "管理人员 / Guǎn lǐ rényuán", "演讲 / Yǎnjiǎng", "功能 / Gōngnéng", "女王 / Nǚwáng", "婚姻 / Hūnyīn", "库存 / Kùcún", "失败 / Shībài", "厨房 / Chúfáng", "学生 / Xuéshēng", "努力 / Nǔlì", "假期 / Jiàqī", "职业 / Zhíyè", "攻击 / Gōngjí", "长度 / Chángdù", "马 / Mǎ", "进步 / Jìnbù", "植物 / Zhíwù", "访问 / Fǎngwèn", "关系 / Guānxì", "球 / Qiú", "记忆 / Jìyì", "酒吧 / Jiǔbā", "观点 / Guāndiǎn", "四分之一 / Sì fēnzhī yī", "影响 / Yǐngxiǎng", "规模 / Guīmó", "种族 / Zhǒngzú", "图片 / Túpiàn", "相信 / Xiāngxìn", "正义 / Zhèngyì", "边缘 / Biānyuán", "气体 / Qìtǐ", "铁路 / Tiělù", "表达 / Biǎodá", "优势 / Yōushì", "金子 / Jīnzi", "木头 / Mùtou", "网络 / Wǎngluò", "文本 / Wénběn", "森林 / Sēnlín", "姐姐 / Jiějiě", "椅子 / Yǐzi", "原因 / Yuányīn", "脚丫子 / Jiǎoyāzi", "上升 / Shàngshēng", "一半 / Yībàn", "冬天 / Dōngtiān", "角落 / Jiǎoluò", "保险 / Bǎoxiǎn", "步 / Bù", "损害 / Sǔnhài", "信用 / Xìnyòng", "痛 / Tòng", "可能性 / Kěnéng xìng", "立法 / Lìfǎ", "力量 / Lìliàng", "速度 / Sùdù", "犯罪 / Fànzuì", "爬坡道 / Pá pō dào", "辩论 / Biànlùn", "将要 / Jiāngyào", "供应 / Gōngyìng", "展示 / Zhǎnshì", "信心 / Xìnxīn", "病人 / Bìngrén", "风 / Fēng", "解决方案 / Jiějué fāng'àn", "乐队 / Yuèduì", "博物馆 / Bówùguǎn", "农场 / Nóngchǎng", "磅 / Bàng", "匹配 / Pǐpèi", "评估 / Pínggū", "信息 / Xìnxī", "足球 / Zúqiú", "不 / Bù", "动物 / Dòngwù", "皮肤 / Pífū", "场景 / Chǎngjǐng", "文章 / Wénzhāng", "东西 / Dōngxī", "介绍 / Jièshào", "玩 / Wán", "行政 / Xíngzhèng", "恐惧 / Kǒngjù", "爸爸 / Bàba", "部分 / Bùfèn", "岛 / Dǎo", "接触 / Jiēchù", "日本 / Rìběn", "宣称 / Xuānchēng", "王国 / Wángguó", "视频 / Shìpín", "电视 / Diànshì", "存在 / Cúnzài", "电话 / Diànhuà", "移动 / Yídòng", "交通 / Jiāotōng", "距离 / Jùlí", "宽慰 / Kuānwèi", "内阁 / Nèigé", "失业 / Shīyè", "现实 / Xiànshí", "目标 / Mùbiāo", "审判 / Shěnpàn", "岩石 / Yánshí", "概念 / Gàiniàn", "精神 / Jīngshén", "事故 / Shìgù", "组织 / Zǔzhī", "建造 / Jiànzào", "咖啡 / Kāfēi", "电话 / Diànhuà", "分配 / Fēnpèi", "火车 / Huǒchē", "视线 / Shìxiàn", "困难 / Kùnnán", "因素 / Yīnsù", "锻炼 / Duànliàn", "周末 / Zhōumò", "战斗 / Zhàndòu", "监狱 / Jiānyù", "授予 / Shòuyǔ", "飞机 / Fēijī", "树 / Shù", "桥 / Qiáo", "战略 / Zhànlüè", "对比 / Duìbǐ", "沟通 / Gōutōng", "背景 / Bèijǐng", "形状 / Xíngzhuàng", "葡萄酒 / Pútáojiǔ", "星星 / Xīngxīng", "希望 / Xīwàng", "选择 / Xuǎnzé", "细节 / Xìjié", "用户 / Yònghù", "小路 / Xiǎo lù", "客户 / Kèhù", "搜索 / Sōusuǒ", "掌握 / Zhǎngwò", "雨 / Yǔ", "提供 / Tígōng", "目标 / Mùbiāo", "晚餐 / Wǎncān", "自由 / Zìyóu", "态度 / Tàidù", "尽管 / Jǐnguǎn", "机构 / Jīgòu", "座位 / Zuòwèi", "方式 / Fāngshì", "青睐 / Qīnglài", "一对 / Yī duì", "危机 / Wéijī", "微笑 / Wéixiào", "王子 / Wángzǐ", "危险 / Wéixiǎn", "称呼 / Chēnghu", "容量 / Róngliàng", "输出 / Shūchū", "笔记 / Bǐjì", "程序 / Chéngxù", "剧院 / Jùyuàn", "旅游 / Lǚyóu", "认出 / Rèn chū", "中间 / Zhōngjiān", "缺席 / Quēxí", "句子 / Jùzi", "包裹 / Bāoguǒ", "追踪 / Zhuīzōng", "卡片 / Kǎpiàn", "符号 / Fúhào", "承诺 / Chéngnuò", "播放器 / Bòfàng qì", "威胁 / Wēixié", "天气 / Tiānqì", "元素 / Yuánsù", "冲突 / Chōngtú", "注意 / Zhùyì", "胜利 / Shènglì", "底部 / Dǐbù", "金融 / Jīnróng", "基金 / Jījīn", "暴力 / Bàolì", "文件 / Wénjiàn", "利润 / Lìrùn", "标准 / Biāozhǔn", "杰克 / Jiékè", "路线 / Lùxiàn", "中国 / Zhōngguó", "支出 / Zhīchū", "第二 / Dì èr", "纪律 / Jìlǜ", "细胞 / Xìbāo", "反应 / Fǎnyìng", "城堡 / Chéngbǎo", "国会 / Guóhuì", "个人 / Gèrén", "带领 / Dàilǐng", "考虑 / Kǎolǜ", "债务 / Zhàiwù", "选项 / Xuǎnxiàng", "支付 / Zhīfù", "展览 / Zhǎnlǎn", "改革 / Gǎigé", "强调 / Qiángdiào", "春天 / Chūntiān", "观众 / Guānzhòng", "特征 / Tèzhēng", "触碰 / Chù pèng", "财产 / Cáichǎn", "集会 / Jíhuì", "体积 / Tǐjī", "青年 / Qīngnián", "贡献 / Gòngxiàn", "课程 / Kèchéng", "外貌 / Wàimào", "马丁 / Mǎdīng", "船 / Chuán", "研究所 / Yánjiū suǒ", "会员资格 / Huìyuán zīgé", "分支 / Fēn zhī", "公共汽车 / Gōnggòng qìchē", "浪费 / Làngfèi", "热 / Rè", "脖子 / Bózi", "目的 / Mùdì", "队长 / Duìzhǎng", "司机 / Sījī", "挑战 / Tiǎozhàn", "对话 / Duìhuà", "场合 / Chǎnghé", "代码 / Dàimǎ", "王冠 / Wángguàn", "出生 / Chūshēng", "安静 / Ānjìng", "文学 / Wénxué", "信仰 / Xìnyǎng", "地狱 / Dìyù", "入口 / Rùkǒu", "转移 / Zhuǎnyí", "绅士 / Shēnshì", "包 / Bāo", "煤炭 / Méitàn", "调查 / Diàochá", "腿 / Tuǐ", "信仰 / Xìnyǎng", "全部的 / Quánbù de", "主要的 / Zhǔyào de", "文档 / Wéndàng", "描述 / Miáoshù", "谋杀 / Móushā", "目标 / Mùbiāo", "航班 / Hángbān", "结论 / Jiélùn", "药品 / Yàopǐn", "传统 / Chuántǒng", "乐趣 / Lèqù", "联系 / Liánxì", "所有者 / Suǒyǒu zhě", "条约 / Tiáoyuē", "欲望 / Yùwàng", "教授 / Jiàoshòu", "复制 / Fùzhì", "部 / Bù", "酸 / Suān", "宫 / Gōng", "地址 / Dìzhǐ", "机构 / Jīgòu", "午餐 / Wǔcān", "一代 / Yīdài", "伙伴 / Huǒbàn", "引擎 / Yǐnqíng", "报纸 / Bàozhǐ", "叉 / Chā", "减少 / Jiǎnshǎo", "福利 / Fúlì"]
}
labyrinth_dir : list {
items = [ "1_1", "1_2", "1_3", "1_4", "1_5", "2_1", "2_2", "2_3", "2_4", "2_5", "3_1", "3_2", "3_3", "3_4", "3_5", "4_1", "4_2", "4_3", "4_4", "4_5", "5_1", "5_2", "5_3", "5_4", "5_5", "ship_destroyed"]
}
sound_volume_labels : list {
items = ["lowest", "low", "normal", "high", "highest"]
}
sound_volume_values : list {
items = [1, 7, 16, 40, 100]
}
choking_e_choices: list {
items = [
"Alternate between 5 blows and 5 thrusts until the blockage is dislodged.",
"Give 5 abdominal thrusts (also known as the Heimlich maneuver).",
"Give 5 back blows.",
]
}
choking_current_e_choices: list {
items = []
}
choking_e_response_1: list {
items = [
"Yes, you are awesome!!!! You give 5 back blows, and E looks a bit better. {rescue_person_1} also helps.",
"{rescue_person_2} begins to give 5 back blows, you stay behind and observe. {rescue_person_3} also helps.",
]
}
choking_e_response_2: list {
items = [
"Yes, you are awesome!!!! You do the Heimlich maneuver, and E seems a bit more alive.",
"{rescue_person_4} begins to do the Heimlich maneuver, you stay behind and observe.",
]
}
choking_e_responses: list {
items = [choking_e_response_1, choking_e_response_2]
}
choking_e_introductions: list {
items = [
"We need to save E!"
]
}
choking_e_queries: list {
items = [
"We need to save E! What is the first step to help him?",
"It's not over yet! What is the second step to help him?",
]
}
rescue_people: set {items = [June, SevenSeas, Wool, RuD, Kirby, Pyjeon]}
}
strings {
next_track : string "";
current_track : string "";
string_tmp : string "";
comments : string "";
nothing_message : string "";
string_correction : string "";
rescue_person_1 : string "";
rescue_person_2 : string "";
rescue_person_3 : string "";
rescue_person_4 : string "";
laptop_password : string "pigeon";
hat_color : string "red";
hat_blue : string "blue";
choking_current_solution : string "";
correct_game : string "cosmoogang";
incorrect_game_1 : string "akafeather";
incorrect_game_2 : string "brooms";
florrie_code : string "opensourcenow";
random_music_labyrinth : dynamic_string (
chance(33) ? "music_labyrinth" :
chance(34) ? "music_labyrinth_2" : "music_beat_1");
previous_command : string "";
jingle_song : string "";
dovalingo_src_lang : string "" scope="survivor";
dovalingo_dst_lang : string "" scope="survivor";
dova_word_to_find : string "";
dovalingo_league_name: dynamic_string(
dovalingo_lessons < 7 ? "Squab" :
dovalingo_lessons < 14 ? "Young Pigeon" :
dovalingo_lessons < 42 ? "Pigeon" :
dovalingo_lessons < 100 ? "Wise Pigeon" : "Ultimate Pigeon");
emoji_0 : string "";
emoji_1 : string "";
emoji_2 : string "";
emoji_3 : string "";
emoji_4 : string "";
}
######################################
# Locations #
######################################
locations {
cc_room : location "Hello CC! This is your bedroom, typical of rooms in spaceships nowadays. Today is your birthday, so your inventor friend <June<#cc0>>[click june] made a custom magic <mirror<#cc0>>[click mirror] that answers your questions. Feel free to <TALK<#cc0>>[talk] to the mirror." ;
cc_hero_june : location "June helped you transform into HeroCC thanks to her magic <beak<#cc0>>[look beak]." ;
cc_win : location "Everybody is here, finally we can eat cake!" ;
crispy_garden : location "You are in the Crispy Garden. You see trees where <chicken wings<#cc0>>[look wings] grow.";
living_room : location "You are in the common living room." ;
party_planet : location "You are in front of Party Game Planet, the gaming room. Maybe you should ENTER?" ;
party_planet_inside : location "You are inside the gaming room." ;
wools_wheels : location "You are at Wool's Wheels, <Wool<#cc0>>[click wool]'s vehicle and ship repair area." ;
puzzle_florrie_laptop : location "You are in front of Florrie's laptop. Can you <UNLOCK<#cc0>>[unlock] or <TYPE<#cc0>>[type] her password? You see she left a password <HINT<#cc0>>[hint] to help herself remember!";
puzzle_hat : location "Wool says: \'I can show you my favorite puzzle of when I was your age. <TALK<#cc0>>[talk] to me whenever you are ready.\'";
puzzle_labyrinth : location "The only path through the asteroid belt is filled with drones! Their sensors only see in front of their purple cannon. But there's one we can hack to get the blueprint. We can turn this situation around!";
labyrinth_1_1: location "Be careful of their purple laser cannons, and get the blueprint!";
labyrinth_1_2: location "";
labyrinth_1_3: location "It was a trap, there's no way to continue!";
labyrinth_1_4: location "";
labyrinth_1_5: location "How did you get there?";
labyrinth_2_1: location "";
labyrinth_2_2: location "";
labyrinth_2_3: location (has_blueprint ? "You have found a path my processors could not imagine!" : "You won't be able to get the blueprint...");
labyrinth_2_4: location "";
labyrinth_2_5: location "Almost there...";
labyrinth_3_1: location "It was a trap, there's no way to continue!";
labyrinth_3_2: location "";
labyrinth_3_3: location "";
labyrinth_3_4: location "";
labyrinth_3_5: location "Closer...";
labyrinth_4_1: location "";
labyrinth_4_2: location "Hack successful! You got the blueprint!";
labyrinth_4_3: location "The hacking tool is ready, just go in front of the blue sensor!";
labyrinth_4_4: location "";
labyrinth_4_5: location "";
labyrinth_5_1: location "We need to exit this mine field...";
labyrinth_5_2: location "";
labyrinth_5_3: location "";
labyrinth_5_4: location "We're so close, yet so far!";
labyrinth_5_5: location "You made it! Congratulations!";
labyrinth_ship_destroyed: location "Oh no, we got in front of the cannon's lines of fire! Oops!\nStart again with <RETRY<#cc0>>[retry], <UNDO<#cc0>>[undo] to go back one step, go back to the living room with <EXIT<#cc0>>[exit].";
dream : location (!is_carried "map" ? "You are learning how to play, to skip type <WAKE UP<#cc0>>[wake up] to wake up." : !seen_inventory_tuto ? "You can check all objects you have by typing <INVENTORY<#cc0>>[inventory] (then pressing Enter)." : !tuto_used_map ? "You got a map, you can use it with <USE map<#cc0>>[use map] or <M<#cc0>>[m]." : tuto_directions < 4 ? "During the game, you will be in a room and have to navigate between rooms by entering directions such as <North<#cc0>>[north], <South<#cc0>>[south], <West<#cc0>>[west], <East<#cc0>>[east].\nTry it now "+(tuto_directions == 0 ? "several" : (4 - tuto_directions)+" more" )+" times and see how CC will go in the direction you commanded." : "Last step, to get a list of available commands type <HELP<#cc0>>[help] then press Enter.");
}
######################################
# Connections #
######################################
connections {
from, direction, to = [
cc_room, south, living_room,
living_room, west, wools_wheels,
wools_wheels, south, party_planet,
party_planet, enter, party_planet_inside,
party_planet, east, crispy_garden,
crispy_garden, north, living_room,
living_room, enter, puzzle_labyrinth,
labyrinth_1_1, east_oneway, labyrinth_1_2,
labyrinth_1_1, south_oneway, labyrinth_2_1,
labyrinth_1_2, east_oneway, labyrinth_1_3,
labyrinth_1_2, south_oneway, labyrinth_2_2,
labyrinth_1_3, east_oneway, labyrinth_ship_destroyed,
labyrinth_1_3, south_oneway, labyrinth_ship_destroyed,
labyrinth_1_4, east_oneway, labyrinth_ship_destroyed,
labyrinth_1_5, south_oneway, labyrinth_2_5,
labyrinth_2_1, east_oneway, labyrinth_ship_destroyed,
labyrinth_2_1, south_oneway, labyrinth_3_1,
labyrinth_2_2, south_oneway, labyrinth_3_2,
labyrinth_2_3, west_oneway, labyrinth_ship_destroyed,
labyrinth_2_3, east_oneway, labyrinth_2_4,
labyrinth_2_4, east_oneway, labyrinth_2_5,
labyrinth_2_5, south_oneway, labyrinth_3_5,
labyrinth_3_1, south_oneway, labyrinth_ship_destroyed,
labyrinth_3_1, east_oneway, labyrinth_ship_destroyed,
labyrinth_3_2, east_oneway, labyrinth_3_3,
labyrinth_3_3, south_oneway, labyrinth_4_3,
labyrinth_3_3, north_oneway, labyrinth_2_3,
labyrinth_3_4, west_oneway, labyrinth_ship_destroyed,
labyrinth_3_4, north_oneway, labyrinth_2_4,
labyrinth_3_5, west_oneway, labyrinth_ship_destroyed,
labyrinth_3_5, south_oneway, labyrinth_4_5,
labyrinth_4_1, south_oneway, labyrinth_5_1,
labyrinth_4_2, west_oneway, labyrinth_4_1,
labyrinth_4_2, south_oneway, labyrinth_ship_destroyed,
labyrinth_4_2, north_oneway, labyrinth_3_2,
labyrinth_4_3, west_oneway, labyrinth_4_2,
labyrinth_4_3, south_oneway, labyrinth_ship_destroyed,
labyrinth_4_4, north_oneway, labyrinth_3_4,
labyrinth_4_4, east_oneway, labyrinth_ship_destroyed,
labyrinth_4_4, west_oneway, labyrinth_ship_destroyed,
labyrinth_4_5, south_oneway, labyrinth_5_5,
labyrinth_5_1, east_oneway, labyrinth_5_2,
labyrinth_5_2, east_oneway, labyrinth_5_3,
labyrinth_5_3, east_oneway, labyrinth_5_4,
labyrinth_5_4, east_oneway, labyrinth_ship_destroyed,
labyrinth_5_4, north_oneway, labyrinth_4_4,
]
}
######################################
# Objects #
######################################
objects {
tree : object "a typical <chicken tree<#cc0>>[tree]" at = "crispy_garden" ;
ee : scenery "<pigeon E<#cc0>>[click e], a friend of June who made a few viral videos" ;
florrie : scenery "programmer <Florrie<#cc0>>[click florrie]" ;
june : scenery "inventor <June<#cc0>>[click june], who made you the custom <mirror<#cc0>>[click mirror]" ;
laptop : scenery "a <laptop<#cc0>>[look laptop] computer" at = "living_room";
screen : scenery "a large digital <screen<#cc0>>[click screen]" at = "living_room";
map : object "a <map<#cc0>>[click map] of the ship" at = "dream";
communicator : object "Florrie <communicator<#cc0>>[look communicator]" at ="cc_room";
energydrink : object "a brand new can of energy <drink<#cc0>>[drink]";
chicken_wing : object "a ripe chicken wing" at = "crispy_garden";
spherificator : object "a Banach-Spherificator" at = "wools_wheels";
stars : object "a bunch of beautiful shining stars" at ="dream" plural = "true" listed = "false" ;
mirror : object "the <mirror<#cc0>>[look mirror] June made for you" at = "cc_room";
blueprint : object "the <blueprint<#cc0>>[look blueprint] allowing us to pass through the asteroid belt safely";
rud_happy : scenery "<RuD<#cc0>>[click rud], who looks way more energized now";
rud_sad : scenery "<RuD<#cc0>>[click rud], who is almost always there" at = "party_planet_inside";
seven_seas : scenery "one of the most data savvy robots, called <SevenSeas<#cc0>>[click 7c] or <7Cs<#cc0>>[click 7c]" ;
wool : scenery "mechanic <Wool<#cc0>>[click wool], who does all kinds of repair work here" at = "wools_wheels";
wool_puzzled : scenery "mechanic <Wool<#cc0>>[click wool], showing his favorite puzzle";
wool_kitchen : scenery "<Wool<#cc0>>[click wool]" ;
sevenseas_kitchen : scenery "<SevenSeas<#cc0>>[click 7c]" ;
rud_kitchen : scenery "<RuD<#cc0>>[click rud]" ;
june_kitchen : scenery "<June<#cc0>>[click june]" ;
ee_kitchen : scenery "<E<#cc0>>[click e]" ;
}
######################################
# Barriers #
######################################
barriers {
block_cc_room_exit : block_path {
from = cc_room
to = living_room
message = Why leave? You have all your toys here, including the brand-new <mirror<#cc0>>[look mirror] June gave you!
block_when_not = talked_to_mirror
}
block_laptop_wools_wheels : block_path {
from = living_room
to = wools_wheels
message = Curiosity makes your mind more active and open to new ideas. That's why health professionals would recommend unlocking this computer for your personal growth.
block_when_not = has_seen_laptop_puzzle
}
block_wool : block_path {
from = wools_wheels
to = party_planet
message = You should talk to Wool first, he spends way too much time alone, that's not healthy at all.
block_when_not = has_seen_wool_puzzle
show_blocked_exit = true
}
block_leave_party_planet : block_path {
from = party_planet_inside
to = party_planet
message = Please assist RuD and show some compassion, he has to finish his game and cannot lose face.
block_when = rud_sad_talked
show_blocked_exit = true
}
block_rud_sad : block_path {
from = party_planet
to = crispy_garden
message = The yard is still chilly, let's stay here for a bit.
block_when -> (is_rud_sad || !is_puzzle_wool_solved || !is_laptop_unlocked)
show_blocked_exit = true
}
block_seven_seas : block_path {
from = crispy_garden
to = living_room
message = You should enjoy the view a little longer.
block_when -> (is_rud_sad || !is_puzzle_wool_solved || !is_laptop_unlocked)
show_blocked_exit = true
}
block_living_room_to_crispy_garden : block_path {
from = living_room
to = crispy_garden
message = The yard is too chilly, let's stay here for a bit.
block_when = is_rud_sad
show_blocked_exit = true
}
block_labyrinth : block_path {
from = living_room
to = puzzle_labyrinth
message = There is nothing interesting on the screen. Navigation data, space information... how boring.
block_when_not = is_labyrinth_open
show_blocked_exit = true
}
}
######################################
# On Startup #
######################################
on_startup {
: collection_sort collection="dovalingo_emojis" algorithm="shuffle" ;
: if (has_won_previously) {
: set_integer var="seed_florrie_puzzle" (random(674));
}
: iterate "labyrinth_dir" {
: set_graphic {
graphic -> ("puzzle_labyrinth")
target -> ("labyrinth_" + item())
}
}
: if (!sysvar_bool "sysvar_has_asked_sound") {
: print "CC's Road to Stardom uses background music.\n\nYou can lower the volume or stop the music at any moment using <SOUND LOWEST<#cc0>>[sound lowest] or <SOUND OFF<#cc0>>[sound off].\n\nDo you wish to enable the music?\n";
: gosub "set_sound_on";
: if (!sysvar_bool "sysvar_music_enabled") {
: print "You can enable the music at any moment with <SOUND ON<#cc0>>[sound on].";
: press_any_key;
}
: clear_screen;
}
: else_if (sysvar_bool "sysvar_music_enabled") {
: set_true "music_ever_enabled";
: if (sysvar_bool "sysvar_sound_enabled") {
: set_false "is_sound_muted";
: print "You can lower or stop the sound at any moment with <SOUND LOWEST<#cc0>>[sound lowest] or <SOUND OFF<#cc0>>[sound off].\n";
: press_any_key;
}
: else {
: print "CC's Road to Stardom uses background music. You can enable the music at any moment with <SOUND ON<#cc0>>[sound on] or <SOUND LOWEST<#cc0>>[sound lowest] for lower volume.\n";
: press_any_key;
}
}
: gosub "update_volume";
: play_music "music_dream";
: print "Type <VERB NOUN<#cc0>>[verb noun] with the keyboard to advance in the game." ;
: if (is_mobile()) {
: print "You can touch some colored words to copy them, or touch and hold to choose an action.";
}
: else {
: print "You can click some colored words to copy them, or right-click to choose an action.";
}
: print "e.g. <EXAMINE PIGEON<#cc0>>[examine pigeon] (or <X<#cc0>>[x]) to take a closer look at a PIGEON." ;
: print "<GET CHICKEN<#cc0>>[get chicken] to take CHICKEN and add it to your inventory." ;
: press_any_key ;
: print "To travel, type <NORTH<#cc0>>[north], <EAST<#cc0>>[east], <SOUTH<#cc0>>[south], <WEST<#cc0>>[west] (or <N<#cc0>>[n], <E<#cc0>>[e], <S<#cc0>>[s], <W<#cc0>>[w]), <ENTER<#cc0>>[enter], <EXIT<#cc0>>[exit]." ;
: press_any_key ;
: print "To check your inventory, type <INVENTORY<#cc0>>[inventory] (or <I<#cc0>>[i])." ;
: press_any_key ;
: print "To see available commands at a location, use <HELP<#cc0>>[help] and <HINT<#cc0>>[hint]." ;
: press_any_key ;
}
######################################
# Subroutines #
######################################
subroutines {
success_jingle : subroutine {
: play_incidental "incidental_success";
}
failure_jingle : subroutine {
: play_incidental "incidental_failure";
}
play_jingle : subroutine {
: if (!is_sound_muted) {
: set_music_vol volume -> (sound_volume / 5);
: play_incidental (jingle_song);
: if (jingle_song == "incidental_failing_failure") {
: pause "2850";
} : else_if (jingle_song == "incidental_success") {
: pause "2460";
} : else {
: pause "1000";
}
: set_music_vol volume -> (sound_volume);
}
}
set_sound_on : subroutine {
: if (!sysvar_bool "sysvar_sound_enabled") {
: ask_permission ask_again_and_again = "true" category = "sound" ;
}
: if (sysvar_bool "sysvar_sound_enabled" && !sysvar_bool "sysvar_music_enabled") {
: ask_permission ask_again_and_again = "true" category = "music" ;
}
: if (sysvar_bool "sysvar_music_enabled") {
: set_false "is_sound_muted";
: gosub "update_volume";
: set_true "music_ever_enabled";
}
}
random_music : subroutine {
: if (is_sound_muted) {
: return;
}
: store_random var = "pitch_random";
: if (pitch_random < 20) {
: beep millis="200" pitch="30";
}
: else_if (pitch_random < 40) {
: beep millis="200" pitch="33";
}
: else_if (pitch_random < 60) {
: beep millis="200" pitch="36";
}
: else_if (pitch_random < 80) {
: beep millis="200" pitch="39";
}
: else {
: beep millis="200" pitch="42";
}
}
play_music : subroutine {
: if (is_sound_muted) {
: return;
}
: if (is_at "dream") {
: set_string var="next_track" value="music_dream";
}
: if (is_at "cc_room") {
: set_string var="next_track" value="music_beat_2";
}
: else_if (is_at "party_planet") {
: set_string var="next_track" value="music_party_planet_outside";
}
: else_if (is_at "puzzle_florrie_laptop") {
: set_string var="next_track" value="music_laptop";
}
: else_if (is_at "wools_wheels") {
: set_string var="next_track" value="music_wools_wheels";
}
: else_if (is_at "crispy_garden") {
: set_string var="next_track" value="music_crispy_garden";
}
: else_if (is_at "living_room" && (is_present "june" || is_present "ee")) {
: set_string var="next_track" value="music_living_room_pigeon";
}
: else_if (is_at "living_room" && (is_everybody_here || is_florrie_in_living_room_with_cake)) {
: set_string var="next_track" value="music_win";
}
: else_if (is_at "living_room") {
: set_string var="next_track" value="music_living_room";
}
: else_if (is_at "party_planet_inside") {
: set_string var="next_track" value="music_party_planet_inside";
}
: else_if (in_labyrinth || is_at "puzzle_labyrinth") {
: set_string var="next_track" value="music_labyrinth";
}
: else_if (is_at "cc_win") {
: set_string var="next_track" value="music_win";
}
: if (next_track != current_track) {
: if (next_track == "music_labyrinth") {
: play_music (random_music_labyrinth);
}
: else {
: play_music (next_track);
}
}
: set_string var="current_track" {(next_track)}
}
update_volume : subroutine {
: if (is_sound_muted) {
: set_music_vol volume="0";
: set_incidental_vol volume="0";
}
: else {
: set_music_vol volume -> (sound_volume);
: set_incidental_vol volume -> (sound_volume);
}
}
play_choking_e_puzzle : subroutine {
: collection_sort collection="rescue_people" algorithm="shuffle";
: set_string var="rescue_person_1" (rescue_people[0]);
: set_string var="rescue_person_2" (rescue_people[1]);
: set_string var="rescue_person_3" (rescue_people[2]);
: set_string var="rescue_person_4" (rescue_people[3]);
: set_integer var="integer_tmp" value="0";
: clear "choking_current_e_choices";
: collection_union {
collection_1 = choking_e_choices
collection_2 = choking_current_e_choices
result = choking_current_e_choices
}
: while (count "choking_current_e_choices" > 1) {
: set_integer var="integer_tmp" (3 - count "choking_current_e_choices");
: set_string var="choking_current_solution" (choking_current_e_choices[count "choking_current_e_choices" - 1]);
: iterate "choking_current_e_choices" {
: add_choice text -> (item()) {
: if (chosen() == choking_current_solution) {
: collection_pop collection="choking_current_e_choices" var="string_tmp";
: print (collection_get { collection -> (choking_e_responses[integer_tmp]) index -> (0)});
: set_string var="jingle_song" value="incidental_ok";
: gosub "play_jingle";
} : else {
: print (collection_get { collection -> (choking_e_responses[integer_tmp]) index -> (1)});
: set_string var="jingle_song" value="incidental_failure";
: gosub "play_jingle";
}
}
}
: set_string var="string_tmp" (choking_e_queries[integer_tmp]);
: choose "{string_tmp}" hint="numeric_list_always" order = "random" ;
}
: print "Almost there! What is the third step to help him?";
: press_any_key;
: print "Yes, you are awesome!!!! It's the only remaining step! You alternate between 5 blows and 5 thrusts, and it really looks like the last step to save E!";
: set_string var="jingle_song" value="incidental_success";
: gosub "play_jingle";
: set_true "is_puzzle_ee_solved";
: goto "living_room" ;
}
play_dovalingo : subroutine {
: set_integer var="integer_tmp" value="0";
: if (!dovalingo_leave_lesson) {
: clear_screen;
: set_theme "theme_dovalingo";
: print ("Welcome back to Dovalingo™ "+(is_present "ee" ? "E" : "Florrie")+"!\n\nYou have <"+dovapingot_amount+"₫<#007700>> and are still in the <"+(dovalingo_league_name)+" league<#adff68>> "+(is_present "ee" ? "totally behind Florrie" : "with enormous advance over E")+".\n\n");
} : else {
: set_false "dovalingo_leave_lesson";
}
: if (dovalingo_src_lang != "") {
: while (true) {
: add_choice text -> ("Continue playing from "+title_case(dovalingo_src_lang)+" to "+title_case(dovalingo_dst_lang)) {
: break;
}
: add_choice text -> ("Inverse and play from "+title_case(dovalingo_dst_lang)+" to "+title_case(dovalingo_src_lang)) {
: set_string var="string_tmp" (dovalingo_src_lang);
: set_string var="dovalingo_src_lang" (dovalingo_dst_lang);
: set_string var="dovalingo_dst_lang" (string_tmp);
: break;
}
: add_choice "Change languages and play" {
: clear "dovalingo_wrong_choices";
: set_string var="dovalingo_src_lang" value="";
: break;
}
: if (dovapingot_amount > 159) {
: add_choice text -> ("Pull some Coop boxes open with your <"+dovapingot_amount+" Dovapingots<#007700>>") {
: while (dovapingot_amount > 159) {
: ask_bool question -> ("Open one Coop box by spending <160₫<#007700>>?") var = "boolean_tmp";
: if (boolean_tmp) {
: set_integer var="dovapingot_amount" (dovapingot_amount - 160);
: print ("New Dovapingots amount: <"+dovapingot_amount+"₫<#007700>>.");
: increment "dovapingot_emote_pity";
: if (chance(7) || dovapingot_emote_pity >= 10) {
: increment "dovapingot_won_emotes";
: print ((chance(50)?"Hooray":"Hurrah")+", you got a new emoticoone!! You now have {dovapingot_won_emotes} emoticoone"+(dovapingot_won_emotes > 1 ? "s":"")+" \\o/");
: if (dovapingot_won_emotes > 14) {
: print "Currently we only have 15 emoticoones and you already have all of tem, congratulations!";
}
: set_integer var="dovapingot_emote_pity" value="0";
: play_incidental "incidental_success";
} : else {
: print "Nothing in this Coop box, but next time for sure.";
}
} : else {
: break;
}
}
: print "You are lighter after spending so many Dovapingots, come back soon <<3";
}
}
: if (dovapingot_won_emotes > 0) {
: add_choice text -> ("Display "+(dovapingot_won_emotes>1?"all":"")+" my "+(dovapingot_won_emotes> 15 ? 15:dovapingot_won_emotes)+" emoticoone"+(dovapingot_won_emotes>1?"s":"")) {
: iterate "dovalingo_emojis" {
: if (index() >= dovapingot_won_emotes - 1) {
: break;
}
:set_string var -> ("emoji_" + (index()%5)) ("emoji_"+item());
: if (index() % 5 == 4) {
: print_graphic "transparent_cover";
: set_string var="emoji_0" value="";
: set_string var="emoji_1" value="";
: set_string var="emoji_2" value="";
: set_string var="emoji_3" value="";
: set_string var="emoji_4" value="";
: press_any_key;
}
}
: if (emoji_0 != "") {
: print_graphic "transparent_cover";
: set_string var="emoji_0" value="";
: set_string var="emoji_1" value="";
: set_string var="emoji_2" value="";
: set_string var="emoji_3" value="";
: press_any_key;
}
: if (dovapingot_won_emotes < 15) {
: print "Congratulations, you have {dovapingot_won_emotes} out of 15 emoticoones!";
} : else {
: print "Congratulations, you have all 15 emoticoones!";
}
}
}
: add_choice "<Quit<#bb8f8f>>" {
: set_integer var="integer_tmp" value="1";
}
: choose hint="numeric_list_always" ;
: if (integer_tmp == 1) {
: break;
}
}
} : else {
: print "It's the first time you are playing, please choose your lessons language.";
: add_choice "Choose languages and play" {
: clear "dovalingo_wrong_choices";
: set_string var="dovalingo_src_lang" value="";
}
: add_choice "<Quit<#bb8f8f>>" {
: set_integer var="integer_tmp" value="1";
}
: choose hint="numeric_list_always" ;
}
: if (integer_tmp == 1) {
: print "Thank you for using <Dovalingo<#cc0>>[dovalingo]™. Come back at any time to learn new words!";
: press_any_key ;
: set_theme "theme_base";
: redescribe;
:return;
}
: if (dovalingo_src_lang == "") {
: iterate "dovalingo_langs" {
: add_choice text -> ("<"+title_case(item())+"<#adff68>>") payload -> (item()) {
: set_string var="dovalingo_src_lang" (lower(chosen()));
}
}
: choose "What language do you want to learn?" columns="3" hint="numeric_list_always" ;
: iterate "dovalingo_langs" filter -> (item() != dovalingo_src_lang) {
: add_choice text -> ("<"+title_case(item())+"<#adff68>>") payload -> (item()) {
: set_string var="dovalingo_dst_lang" (lower(chosen()));
}
}
: choose "What language do you speak?" columns="3" hint="numeric_list_always" ;
}
: while (true) {
: set_integer var="dovalingo_score" value="0";
: print "Lesson {dovalingo_lessons} - exercise 1";
: gosub "dovalingo_do_exercice";
: if (!dovalingo_leave_lesson) {
: print "Lesson {dovalingo_lessons} - exercise 2";
: gosub "dovalingo_do_exercice";
}
: if (!dovalingo_leave_lesson) {
: print "Lesson {dovalingo_lessons} - exercise 3";
: gosub "dovalingo_do_exercice";
}
: if (dovalingo_score > 1) {
: if (dovalingo_score == 3 ) {
: set_integer var="integer_tmp" (42 + random(7));
} :else {
: set_integer var="integer_tmp" (21 + random(7));
}
: set_integer var="dovapingot_amount" (dovapingot_amount + integer_tmp);
: if (dovalingo_leave_lesson) {
: print ("You left the lesson and got 2 correct answers."+" <+"+integer_tmp+"₫<#007700>>");
} : else {
: print ((chance(50) ? "Great" : "Well done")+", you finished lesson {dovalingo_lessons} by getting {dovalingo_score} correct answers."+" <+"+integer_tmp+"₫<#007700>>");
}
: if (dovalingo_leave_lesson) {
: increment "dovalingo_lessons";
}
}
: else {
: if (dovalingo_score == 1 ) {
: set_integer var="integer_tmp" (7 + random(7));
} :else {
: set_integer var="integer_tmp" value="0";
}
: set_integer var="dovapingot_amount" (dovapingot_amount + integer_tmp);
: print ((dovalingo_leave_lesson ? "You left": "So sad, you failed")+" the lesson with "+(dovalingo_score == 1 ? "only one" : "no") +" correct answer. Try again any time." + (integer_tmp > 0? " <+"+integer_tmp+"₫<#007700>>":""));
}
: press_any_key;
: if (dovalingo_leave_lesson) {