-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsummary.json
2498 lines (2498 loc) · 97 KB
/
summary.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": {
"de": "Zufallssieger",
"en": "Zufallssieger",
"nl": "Zufallssieger",
"fr": "Zufallssieger",
"es": "Zufallssieger",
"ua": "Zufallssieger"
},
"rating": 1,
"description": {
"de": "Wer läuft weiter? Der Hase oder der Igel?",
"en": "Zufallssieger",
"nl": "Zufallssieger",
"fr": "Zufallssieger",
"es": "Zufallssieger",
"ua": "Zufallssieger"
},
"filename": "Zufallssieger.cubi",
"solution_exists": true,
"template_exists": false,
"tutorial_exists": false,
"isModule": false,
"isProject": true,
"isDeveloper": false
},
{
"title": {
"de": "Esuri und der Apfel",
"en": "Esuri and the Apple",
"nl": "Esuri en de appel",
"fr": "Esuri et la pomme",
"es": "Esuri y la manzana",
"ua": "Есурі та яблуко"
},
"rating": 1,
"description": {
"de": "Führe Raupe Esuri zum Apfel, damit sie ihren Hunger stillen kann. (Basislevel Modul 1)",
"en": "Basic Level of Module 1",
"nl": "Basisniveau van module 1",
"fr": "Niveau de base du module 1",
"es": "Tarea básico del módulo 1",
"ua": "Модуль 1 базового рівня"
},
"filename": "Esuri_und_der_Apfel.cubi",
"solution_exists": true,
"template_exists": false,
"tutorial_exists": false,
"isModule": true,
"isProject": false,
"isDeveloper": true
},
{
"title": {
"de": "Bauernhof",
"en": "Farm",
"nl": "Bauernhof",
"fr": "Bauernhof",
"es": "Bauernhof",
"ua": "Bauernhof"
},
"rating": 1,
"description": {
"de": "Zeige der Kuh den Weg zurück in ihren Stall.",
"en": "Show the cow the way to her barn.",
"nl": "Zeige der Kuh den Weg zurück in ihren Stall.",
"fr": "Zeige der Kuh den Weg zurück in ihren Stall.",
"es": "Zeige der Kuh den Weg zurück in ihren Stall.",
"ua": "Zeige der Kuh den Weg zurück in ihren Stall."
},
"filename": "Bauernhof.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": true,
"isModule": false,
"isProject": true,
"isDeveloper": false
},
{
"title": {
"de": "Bauernhof automatisch",
"en": "Farm automatically",
"nl": "Bauernhof automatisch",
"fr": "Bauernhof automatisch",
"es": "Bauernhof automatisch",
"ua": "Bauernhof automatisch"
},
"rating": 1,
"description": {
"de": "Eine Version von Bauernhof, die das Level automatisch spielt.",
"en": "A version of farm that plays the level automatically.",
"nl": "Eine Version von Bauernhof, die das Level spielt automatisch.",
"fr": "Eine Version von Bauernhof, die das Level spielt automatisch.",
"es": "Eine Version von Bauernhof, die das Level spielt automatisch.",
"ua": "Eine Version von Bauernhof, die das Level spielt automatisch."
},
"filename": "Bauernhof_Auto.cubi",
"solution_exists": false,
"template_exists": false,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Esuri und die Birne",
"en": "Esuri and the Pear",
"nl": "Esuri en de peer",
"fr": "Esuri et la poire",
"es": "Esuri y la pera",
"ua": "Есурі та груша"
},
"rating": 2,
"description": {
"de": "Führe Raupe Esuri zur Birne. Aber Achtung: Laufe nicht in die Blumen! (Vertiefungslevel Modul 1)",
"en": "Advanced Level of Module 1",
"nl": "Gevorderd niveau van module 1",
"fr": "Niveau d'approfondissement du module 1",
"es": "Tarea avanzado de módulo 1",
"ua": "Просунутий рівень Модуль 1"
},
"filename": "Esuri_und_die_Birne.cubi",
"solution_exists": true,
"template_exists": false,
"tutorial_exists": false,
"isModule": true,
"isProject": false,
"isDeveloper": true
},
{
"title": {
"de": "Maus zum Käse",
"en": "Mouse to the cheese",
"nl": "Maus zum Käse",
"fr": "Maus zum Käse",
"es": "Maus zum Käse",
"ua": "Maus zum Käse"
},
"rating": 1,
"description": {
"de": "Die Maus soll den leckeren Käse erreichen. Hilf ihr den Weg über die Brücke zu finden, ohne herunterzufallen.",
"en": "The mouse should reach the delicious cheese. Help her find the way across the bridge without falling down.",
"nl": "Programmiere die Maus so, dass sie über die Brücke zum Käse läuft und dabei nicht ins Wasser fällt.",
"fr": "Programmiere die Maus so, dass sie über die Brücke zum Käse läuft und dabei nicht ins Wasser fällt.",
"es": "Programmiere die Maus so, dass sie über die Brücke zum Käse läuft und dabei nicht ins Wasser fällt.",
"ua": "Programmiere die Maus so, dass sie über die Brücke zum Käse läuft und dabei nicht ins Wasser fällt."
},
"filename": "Maus_zum_Kaese.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": true,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Labyrinth",
"en": "Labyrinth",
"nl": "Labyrinth",
"fr": "Labyrinth",
"es": "Labyrinth",
"ua": "Labyrinth"
},
"rating": 1,
"description": {
"de": "Zeige der Maus den Weg durch das Labyrinth. Um das Tor zu ̈öffnen, braucht sie vorher den Schlüssel.",
"en": "Guide the mouse through the labyrinth. To open the gate, she needs the key first.",
"nl": "Führe die Maus durch das Labyrinth: Erst zum Schlüssel, dann zum Tor.",
"fr": "Führe die Maus durch das Labyrinth: Erst zum Schlüssel, dann zum Tor.",
"es": "Führe die Maus durch das Labyrinth: Erst zum Schlüssel, dann zum Tor.",
"ua": "Führe die Maus durch das Labyrinth: Erst zum Schlüssel, dann zum Tor."
},
"filename": "Labyrinth.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": true,
"isModule": false,
"isProject": false,
"isDeveloper": true
},
{
"title": {
"de": "Bonuslevel - Käselabyrinth",
"en": "",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"rating": 1,
"description": {
"de": "",
"en": "",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"filename": "Käselabyrinth.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Iruse und die Erdbeere",
"en": "Iruse and the Strawberry",
"nl": "Iruse en de aardbei",
"fr": "Iruse et la fraise",
"es": "Iruse y la fresa",
"ua": "Ірусе та полуниця"
},
"rating": 3,
"description": {
"de": "Warum findet Raupe Iruse den Weg zur Erdbeere nicht? (Code-Detektiv Modul 1)",
"en": "Code-Detective Module 1",
"nl": "Codedetective uit module 1",
"fr": "Code Détective du module 1",
"es": "Detective de códigos del Módulo 1",
"ua": "Кодовий детектив з модуля 1"
},
"filename": "Iruse_und_die_Erdbeere.cubi",
"solution_exists": true,
"template_exists": false,
"tutorial_exists": false,
"isModule": true,
"isProject": false,
"isDeveloper": true
},
{
"title": {
"de": "Synchronsprechen",
"en": "Voice Acting",
"nl": "Gesynchroniseerde spraak",
"fr": "Parole synchronisée",
"es": "Voz sincronizada",
"ua": "Синхронізоване мовлення"
},
"rating": 3,
"description": {
"de": "Gestalte den Dialog zwischen Igel Kim und Cubi. (Zusatz-Lektion Modul 1)",
"en": "Additional Level Module 1",
"nl": "Extra les uit module 1",
"fr": "Leçon supplémentaire du module 1",
"es": "Lección adicional del módulo 1",
"ua": "Додатковий урок з модуля 1"
},
"filename": "Synchronsprechen.cubi",
"solution_exists": true,
"template_exists": false,
"tutorial_exists": false,
"isModule": true,
"isProject": false,
"isDeveloper": true
},
{
"title": {
"de": "Wellenreiten mit Natari",
"en": "Riding the Waves with Natari",
"nl": "Surfen met Natari",
"fr": "Surfer avec Natari",
"es": "Surfear con Natari",
"ua": "Серфінг з Натарі"
},
"rating": 1,
"description": {
"de": "Lass die Robben Tarina und Natari durchs Wasser gleiten. (Basislevel Modul 2)",
"en": "Basic Level of Module 2",
"nl": "Basisniveau van module 2",
"fr": "Niveau de base du module 2",
"es": "Tarea básico del módulo 2",
"ua": "Модуль 2 базового рівня"
},
"filename": "Wellenreiten_mit_Natari.cubi",
"solution_exists": true,
"template_exists": false,
"tutorial_exists": false,
"isModule": true,
"isProject": true,
"isDeveloper": true
},
{
"title": {
"de": "Nataris Kunststück",
"en": "Natari",
"nl": "Natari",
"fr": "Le tour de force de Natari",
"es": "El truco de Natari",
"ua": "Трюк Натарі"
},
"rating": 2,
"description": {
"de": "Robbe Natari möchte ein Kunststück vorführen. Hilfst du ihm? (Vertiefungslevel Modul 2)",
"en": "Advanced Level of Module 2",
"nl": "Gevorderd niveau van module 2",
"fr": "Niveau d'approfondissement du module 2",
"es": "Tarea avanzado de módulo 2",
"ua": "Просунутий рівень Модуль 2"
},
"filename": "Nataris_Kunststück.cubi",
"solution_exists": true,
"template_exists": false,
"tutorial_exists": false,
"isModule": true,
"isProject": false,
"isDeveloper": true
},
{
"title": {
"de": "Muschelsuche",
"en": "Muschelsuche",
"nl": "Muschelsuche",
"fr": "Muschelsuche",
"es": "Muschelsuche",
"ua": "Muschelsuche"
},
"rating": 3,
"description": {
"de": "Warum findet der Fisch den Weg zur Muschel nicht? (Code-Detektiv Modul 2)",
"en": "Code-Detective Module 2",
"nl": "Codedetective uit module 2",
"fr": "Code Détective du module 2",
"es": "Detective de códigos del Módulo 2",
"ua": "Кодовий детектив з модуля 2"
},
"filename": "Muschelsuche.cubi",
"solution_exists": true,
"template_exists": false,
"tutorial_exists": false,
"isModule": true,
"isProject": false,
"isDeveloper": true
},
{
"title": {
"de": "Natari weicht aus",
"en": "Natari weicht aus",
"nl": "Natari weicht aus",
"fr": "Natari weicht aus",
"es": "Natari weicht aus",
"ua": "Natari weicht aus"
},
"rating": 3,
"description": {
"de": "Warum stößt Natari auf dem Weg zu ihrer Freundin Tarina immer wieder gegen ein Hindernis? (Code-Detektiv Modul 2)",
"en": "Code-Detective Module 2",
"nl": "Codedetective uit module 2",
"fr": "Code Détective du module 2",
"es": "Detective de códigos del Módulo 2",
"ua": "Кодовий детектив з модуля 2"
},
"filename": "Natari_weicht_aus.cubi",
"solution_exists": true,
"template_exists": false,
"tutorial_exists": false,
"isModule": true,
"isProject": false,
"isDeveloper": true
},
{
"title": {
"de": "Begrüßung",
"en": "Welcoming",
"nl": "Begrüßung",
"fr": "Begrüßung",
"es": "Begrüßung",
"ua": "Begrüßung"
},
"rating": 1,
"description": {
"de": "In diesem Tutorial wirst du Schritt für Schritt durch Cubi geführt.",
"en": "In this tutorial, you will be guided step-by-step through Cubi.",
"nl": "In diesem Tutorial wirst du Schritt für Schritt durch Cubi geführt.",
"fr": "In diesem Tutorial wirst du Schritt für Schritt durch Cubi geführt.",
"es": "In diesem Tutorial wirst du Schritt für Schritt durch Cubi geführt.",
"ua": "In diesem Tutorial wirst du Schritt für Schritt durch Cubi geführt."
},
"filename": "Begrüßung.cubi",
"solution_exists": false,
"template_exists": false,
"tutorial_exists": true,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Sternejagd",
"en": "Star chase",
"nl": "Sternejagd",
"fr": "Sternejagd",
"es": "Sternejagd",
"ua": "Sternejagd"
},
"rating": 1,
"description": {
"de": "Hilf dem Baumwesen, den Stern einzusammeln.",
"en": "Help the tree creature to collect the star",
"nl": "Hilf dem Baumwesen, den Stern einzusammeln",
"fr": "Hilf dem Baumwesen, den Stern einzusammeln",
"es": "Hilf dem Baumwesen, den Stern einzusammeln",
"ua": "Hilf dem Baumwesen, den Stern einzusammeln"
},
"filename": "Sternejagd.cubi",
"solution_exists": false,
"template_exists": false,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "RunAndJump",
"en": "RunAndJump",
"nl": "RunAndJump",
"fr": "RunAndJump",
"es": "RunAndJump",
"ua": "RunAndJump"
},
"rating": 2,
"description": {
"de": "Steuere den Vogel und weiche rechtzeitig den Bällen aus.",
"en": "Steer the bird and avoid the balls in good time.",
"nl": "Steuere den Vogel und weiche rechtzeitig den Bällen aus.",
"fr": "Steuere den Vogel und weiche rechtzeitig den Bällen aus.",
"es": "Steuere den Vogel und weiche rechtzeitig den Bällen aus.",
"ua": "Steuere den Vogel und weiche rechtzeitig den Bällen aus."
},
"filename": "RunAndJump.cubi",
"solution_exists": false,
"template_exists": false,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Märchenbuch zu Bewegung",
"en": "Fairy tale book for movement",
"nl": "Verhaalboek over beweging",
"fr": "Livre de contes sur le mouvement",
"es": "Libro de cuentos sobre el movimiento",
"ua": "Книга оповідань про рух"
},
"rating": 1,
"description": {
"de": "Erstelle dein eigenes Level.",
"en": "Creat your own project.",
"nl": "Erstelle dein eigenes Level.",
"fr": "Erstelle dein eigenes Level.",
"es": "Erstelle dein eigenes Level.",
"ua": "Erstelle dein eigenes Level."
},
"filename": "Maerchenbuch_Bewegung.cubi",
"solution_exists": false,
"template_exists": true,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Code-Detektiv 1",
"en": "Code-Detectiv 1",
"nl": "Code-Detektiv 1",
"fr": "Code-Detektiv 1",
"es": "Code-Detektiv 1",
"ua": "Code-Detektiv 1"
},
"rating": 1,
"description": {
"de": "Finde die drei Fehler aus dem Level Labyrinth und lerne dabei etwas über die Fehlersuche.",
"en": "Find the three mistakes from the level Labyrinth and learn about debugging.",
"nl": "Finde die drei Fehler aus dem Level Labyrinth und lerne dabei etwas über die Fehlersuche.",
"fr": "Finde die drei Fehler aus dem Level Labyrinth und lerne dabei etwas über die Fehlersuche.",
"es": "Finde die drei Fehler aus dem Level Labyrinth und lerne dabei etwas über die Fehlersuche.",
"ua": "Finde die drei Fehler aus dem Level Labyrinth und lerne dabei etwas über die Fehlersuche."
},
"filename": "Codedetektiv_1.cubi",
"solution_exists": false,
"template_exists": true,
"tutorial_exists": true,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Iruse und die Erdbeere",
"en": "",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"rating": 1,
"description": {
"de": "Warum findet Raupe Iruse den Weg zur Erdbeere nicht?",
"en": "",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"filename": "Iruse_und_die_Erdbeere.cubi",
"solution_exists": false,
"template_exists": true,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Karneval",
"en": "Carnival",
"nl": "Karneval",
"fr": "Karneval",
"es": "Karneval",
"ua": "Karneval"
},
"rating": 1,
"description": {
"de": "Cubi möchte sich verkleiden, aber er ist noch nicht sicher, was er anziehen muss. Probiere alle Kostüme mit ihm durch, indem du ihn drückst.",
"en": "Cubi wants to dress up, but he's not sure what to wear. Try on all the costumes with him by tapping on him.",
"nl": "Cubi möchte sich verkleiden, aber er ist noch nicht sicher, was er anziehen muss. Probiere alle Kostüme mit ihm durch, indem du ihn drückst.",
"fr": "Cubi möchte sich verkleiden, aber er ist noch nicht sicher, was er anziehen muss. Probiere alle Kostüme mit ihm durch, indem du ihn drückst.",
"es": "Cubi möchte sich verkleiden, aber er ist noch nicht sicher, was er anziehen muss. Probiere alle Kostüme mit ihm durch, indem du ihn drückst.",
"ua": "Cubi möchte sich verkleiden, aber er ist noch nicht sicher, was er anziehen muss. Probiere alle Kostüme mit ihm durch, indem du ihn drückst."
},
"filename": "Karneval.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": true,
"isModule": false,
"isProject": true,
"isDeveloper": false
},
{
"title": {
"de": "Synchronsprechen",
"en": "Voice Acting",
"nl": "Gesynchroniseerde spraak",
"fr": "Parole synchronisée",
"es": "Voz sincronizada",
"ua": "Синхронізоване мовлення"
},
"rating": 1,
"description": {
"de": "Gestalte den Dialog zwischen Igel Kim und Cubi.",
"en": "Gestalte den Dialog zwischen Igel Kim und Cubi.",
"nl": "Gestalte den Dialog zwischen Igel Kim und Cubi.",
"fr": "Gestalte den Dialog zwischen Igel Kim und Cubi.",
"es": "Gestalte den Dialog zwischen Igel Kim und Cubi.",
"ua": "Gestalte den Dialog zwischen Igel Kim und Cubi."
},
"filename": "Synchronsprechen.cubi",
"solution_exists": false,
"template_exists": true,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": true
},
{
"title": {
"de": "Maulwurf",
"en": "Mole",
"nl": "Maulwurf",
"fr": "Maulwurf",
"es": "Maulwurf",
"ua": "Maulwurf"
},
"rating": 1,
"description": {
"de": "Die zwei Maulwürfe sind auf dem Weg durch ihre Tunnel zu den Regenwürmern.",
"en": "The two moles are on their way through their tunnels to the earthworms.",
"nl": "Die zwei Maulwürfe sind auf dem Weg durch ihre Tunnel zu den Regenwürmern.",
"fr": "Die zwei Maulwürfe sind auf dem Weg durch ihre Tunnel zu den Regenwürmern.",
"es": "Die zwei Maulwürfe sind auf dem Weg durch ihre Tunnel zu den Regenwürmern.",
"ua": "Die zwei Maulwürfe sind auf dem Weg durch ihre Tunnel zu den Regenwürmern."
},
"filename": "Maulwurf.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": true,
"isModule": false,
"isProject": true,
"isDeveloper": false
},
{
"title": {
"de": "Bonuslevel - Abenteuer im All",
"en": "",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"rating": 1,
"description": {
"de": "",
"en": "",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"filename": "Abenteuer_im_All.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Bonuslevel - Obsttransport",
"en": "",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"rating": 1,
"description": {
"de": "",
"en": "",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"filename": "Obsttransport.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Nataris Kunststück",
"en": "Natari",
"nl": "Natari",
"fr": "Le tour de force de Natari",
"es": "El truco de Natari",
"ua": "Трюк Натарі"
},
"rating": 1,
"description": {
"de": "Robbe Natari möchte ein Kunststück vorführen. Hilfst du ihm?",
"en": "",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"filename": "Nataris_Kunststück.cubi",
"solution_exists": false,
"template_exists": true,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Bonuslevel - Cubi Hood",
"en": "",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"rating": 1,
"description": {
"de": "",
"en": "",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"filename": "Cubi_Hood.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Sternlabyrinth",
"en": "Starlabyrinth",
"nl": "Sternlabyrinth",
"fr": "Sternlabyrinth",
"es": "Sternlabyrinth",
"ua": "Sternlabyrinth"
},
"rating": 1,
"description": {
"de": "Sammle das Herz, den Stern, die Münze und den Schlüssel in der richtigen Reihenfolge ein.",
"en": "Collect the heart, the star, the coin, and the key in the correct order.",
"nl": "Sammle das Herz, den Stern, die Münze und den Schlüssel in der richtigen Reihenfolge ein.",
"fr": "Sammle das Herz, den Stern, die Münze und den Schlüssel in der richtigen Reihenfolge ein.",
"es": "Sammle das Herz, den Stern, die Münze und den Schlüssel in der richtigen Reihenfolge ein.",
"ua": "Sammle das Herz, den Stern, die Münze und den Schlüssel in der richtigen Reihenfolge ein."
},
"filename": "Sternlabyrinth.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": true,
"isModule": false,
"isProject": false,
"isDeveloper": true
},
{
"title": {
"de": "Märchenbuch zu Schleifen",
"en": "Fairy tale book for loops",
"nl": "Sprookjesboek voor strikken",
"fr": "Livre de contes en boucle",
"es": "Libro de cuentos para bucles",
"ua": "Книжка казок для бантиків"
},
"rating": 1,
"description": {
"de": "Erstelle dein eigenes Level.",
"en": "Creat your own project.",
"nl": "Erstelle dein eigenes Level.",
"fr": "Erstelle dein eigenes Level.",
"es": "Erstelle dein eigenes Level.",
"ua": "Erstelle dein eigenes Level."
},
"filename": "Maerchenbuch_Schleifen.cubi",
"solution_exists": false,
"template_exists": true,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Training mit Pilu",
"en": "Training with Pilu",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"rating": 1,
"description": {
"de": "Pilu übt für den großen Wettbewerb. (Basislevel Bedingungen Modul 3)",
"en": "Pilu is training for his big competition.",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"filename": "Training_mit_Pilu.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": false,
"isModule": true,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Parcour mit Pilu",
"en": "Parkour with Pilu",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"rating": 1,
"description": {
"de": "Pilu muss in diesem Pacor eine Reihe an Aufgaben bewältigen.",
"en": "Pilu has to overcome a number of challenges to complete this parkour.",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"filename": "Parcour_mit_Pilu.cubi",
"solution_exists": false,
"template_exists": true,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Reaktionstest",
"en": "Reaction Test",
"nl": "Reaktionstest",
"fr": "Reaktionstest",
"es": "Reaktionstest",
"ua": "Reaktionstest"
},
"rating": 1,
"description": {
"de": "Drücke so schnell es geht die Taste sobald der Hintergrund sich ändert!",
"en": "Press the button as quickly as possible when the background changes!",
"nl": "Drücke so schnell es geht die Taste sobald der Hintergrund sich ändert!",
"fr": "Drücke so schnell es geht die Taste sobald der Hintergrund sich ändert!",
"es": "Drücke so schnell es geht die Taste sobald der Hintergrund sich ändert!",
"ua": "Drücke so schnell es geht die Taste sobald der Hintergrund sich ändert!"
},
"filename": "Reaktionstest.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": true,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Ballon platzen",
"en": "Balloon popping",
"nl": "Ballon platzen",
"fr": "Ballon platzen",
"es": "Ballon platzen",
"ua": "Ballon platzen"
},
"rating": 1,
"description": {
"de": "Wie schnell kannst du den Ballon zum Platzen bringen?",
"en": "How fast can you burst the balloon?",
"nl": "Wie schnell kannst du den Ballon zum Platzen bringen?",
"fr": "Wie schnell kannst du den Ballon zum Platzen bringen?",
"es": "Wie schnell kannst du den Ballon zum Platzen bringen?",
"ua": "Wie schnell kannst du den Ballon zum Platzen bringen?"
},
"filename": "Ballon_platzen.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": true,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Märchenbuch zu Bedingungen",
"en": "Fairy tale book for conditions",
"nl": "Sprookjesboek over voorwaarden",
"fr": "Livre de contes à conditions",
"es": "Libro de cuentos en condiciones",
"ua": "Книжка казок на умовах"
},
"rating": 1,
"description": {
"de": "Erstelle dein eigenes Level.",
"en": "Creat your own project.",
"nl": "Erstelle dein eigenes Level.",
"fr": "Erstelle dein eigenes Level.",
"es": "Erstelle dein eigenes Level.",
"ua": "Erstelle dein eigenes Level."
},
"filename": "Maerchenbuch_Bedingungen.cubi",
"solution_exists": false,
"template_exists": true,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Parcour mit Pilu",
"en": "Parkour with Pilu",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"rating": 2,
"description": {
"de": "Pilu muss in diesem Pacor eine Reihe an Aufgaben bewältigen. (Vertiefungslevel Bedingungen Modul 3",
"en": "Pilu has to overcome a number of challenges to complete this parkour.",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"filename": "Parcour_mit_Pilu.cubi",
"solution_exists": true,
"template_exists": false,
"tutorial_exists": false,
"isModule": true,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Pilu trifft Entscheidungen",
"en": "Pilu makes decisions",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"rating": 1,
"description": {
"de": "Pilu muss sich richtig entscheiden und den Ball in das gleichfarbige Körbchen legen. (Basislevel Verzweigungen Modul 3) ",
"en": "Pilu has to make the right decisions to bring the ball to the correct basket.",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"filename": "Pilu_trifft_Entscheidungen.cubi",
"solution_exists": true,
"template_exists": true,
"tutorial_exists": false,
"isModule": true,
"isProject": false,
"isDeveloper": true
},
{
"title": {
"de": "Pilus großer Wettbewerb",
"en": "Pilus big competition",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"rating": 2,
"description": {
"de": "Der große Wettbewerb steht an. Pilu muss den Ball in das richtige Körbchen legen. (Vertiefungslevel Verzweigungen Modul 3)",
"en": "Pilus big competition is right around the corner. He has to bring the ball to the correct basket.",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"filename": "Pilus_großer_Wettbewerb.cubi",
"solution_exists": true,
"template_exists": false,
"tutorial_exists": false,
"isModule": true,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Pilus großer Wettbewerb",
"en": "Pilus big competition",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"rating": 1,
"description": {
"de": "Der große Wettbewerb steht an. Pilu muss den Ball in das richtige Körbchen legen.",
"en": "Pilus big competition is right around the corner. He has to bring the ball to the correct basket.",
"nl": "",
"fr": "",
"es": "",
"ua": ""
},
"filename": "Pilus_großer_Wettbewerb.cubi",
"solution_exists": false,
"template_exists": true,
"tutorial_exists": false,
"isModule": false,
"isProject": false,
"isDeveloper": false
},
{
"title": {
"de": "Farben",
"en": "Colors",
"nl": "Farben",
"fr": "Farben",
"es": "Colores",
"ua": "Farben"
},
"rating": 1,
"description": {