1/* GCompris
2 *
3 * SPDX-FileCopyrightText: 2016 Divyam Madaan <divyam3897@gmail.com>
4 *
5 * Authors:
6 *   Divyam Madaan <divyam3897@gmail.com>
7 *
8 *   SPDX-License-Identifier: GPL-3.0-or-later
9 */
10import QtQuick 2.9
11
12QtObject{
13    property bool isEmbedded: false
14    property bool allowExpertMode: true
15    property string imagesPrefix: "qrc:/gcompris/data/words/animals/"
16    property var levels:[
17        {
18            "type": "lesson",
19            "name": qsTr("Animals"),
20            "image": imagesPrefix + "animalsherd.jpg",
21            "content": [
22                {
23                    "instructions": qsTr("Place the ANIMALS to the right and other objects to the left"),
24                    "image": imagesPrefix + "tiger.jpg",
25                    "maxNumberOfGood": 6,
26                    "maxNumberOfBad": 6,
27                    "prefix": "qrc:/gcompris/data/words/",
28                    "good": ["animals/baboon.jpg","animals/bosmutus.jpg","animals/camel.jpg","animals/cow.jpg","animals/dog.jpg","birds/bird10.jpg"],
29                    "bad": ["nature/nature5.jpg","householdGoods/chair.jpg","food/biryani.jpg","others/electricfan.jpg","others/clock.jpg","nature/nature10.jpg"]
30                },
31                {
32                    "instructions": qsTr("Place the ANIMALS to the right and other objects to the left"),
33                    "image": imagesPrefix + "tiger.jpg",
34                    "maxNumberOfGood": 6,
35                    "maxNumberOfBad": 6,
36                    "prefix": "qrc:/gcompris/data/words/",
37                    "good": ["animals/lion.jpg","birds/bird7.jpg","birds/bird8.jpg","animals/mouse1.jpg","animals/opossum.jpg","animals/pig.jpg"],
38                    "bad": ["nature/nature3.jpg","food/milk.jpg","food/butter.jpg","fruits/apple.jpg","transport/rickshaw.jpg","transport/bus.jpg"]
39                },
40                {
41                    "instructions": qsTr("Place the ANIMALS to the right and other objects to the left"),
42                    "image": imagesPrefix + "opossum.jpg",
43                    "maxNumberOfGood": 6,
44                    "maxNumberOfBad": 6,
45                    "prefix": "qrc:/gcompris/data/words/",
46                    "good": ["animals/snowcat.jpg","animals/spidermonkey.jpg","animals/squirrel.jpg","animals/squirrel1.jpg","animals/tasmaniandevil.jpg","birds/bird22.jpg"],
47                    "bad": ["transport/helicopter.jpg","nature/nature2.jpg","others/house.jpg","transport/plane2.jpg","plants/plant4.jpg","nature/nature5.jpg"]
48                },
49                {
50                    "instructions": qsTr("Place the ANIMALS to the right and other objects to the left"),
51                    "image": imagesPrefix + "tortoise.jpg",
52                    "maxNumberOfGood": 5,
53                    "maxNumberOfBad": 4,
54                    "prefix": "qrc:/gcompris/data/words/",
55                    "good": ["animals/redeyedfrog.jpg","animals/scorpian.jpg","animals/sealion.jpg","animals/sheep.jpg","animals/snake.jpg"],
56                    "bad": ["fruits/grapes.jpg","others/broom1.jpg","transport/car1.jpg","food/icecream.jpg"]
57                },
58                {
59                    "instructions": qsTr("Place the ANIMALS to the right and other objects to the left"),
60                    "image": imagesPrefix + "koala.jpg",
61                    "maxNumberOfGood": 5,
62                    "maxNumberOfBad": 4,
63                    "prefix": "qrc:/gcompris/data/words/",
64                    "good": ["animals/donkey.jpg","animals/elephant.jpg","insects/insect20.jpg","animals/tiger.jpg","animals/zebra.jpg"],
65                    "bad": ["vegetables/pumpkin.jpg","vegetables/carrots.jpg","transport/cycle.jpg","plants/tree3.jpg"]
66                },
67                {
68                    "instructions": qsTr("Place the ANIMALS to the right and other objects to the left"),
69                    "image": imagesPrefix + "hedgehog.jpg",
70                    "maxNumberOfGood": 4,
71                    "maxNumberOfBad": 5,
72                    "prefix": "qrc:/gcompris/data/words/",
73                    "good": ["animals/giraffe.jpg","birds/bird25.jpg","animals/hedgehog.jpg","insects/insect7.jpg"],
74                    "bad": ["vegetables/potato.jpg","transport/balloon.jpg","food/cheese.jpg","others/mobile.jpg","transport/bus1.jpg"]
75                },
76                {
77                    "instructions": qsTr("Place the ANIMALS to the right and other objects to the left"),
78                    "image": imagesPrefix + "lion.jpg",
79                    "maxNumberOfGood": 3 ,
80                    "maxNumberOfBad": 3,
81                    "prefix": "qrc:/gcompris/data/words/",
82                    "good": ["animals/koala.jpg","animals/kodiak-bear.jpg","birds/bird27.jpg"],
83                    "bad": ["nature/nature6.jpg","transport/ferry.jpg","food/eggs.jpg","food/hamburger.jpg"]
84                },
85                {
86                    "instructions": qsTr("Place the ANIMALS to the right and other objects to the left"),
87                    "image": imagesPrefix + "pig.jpg",
88                    "maxNumberOfGood": 3,
89                    "maxNumberOfBad": 3,
90                    "prefix": "qrc:/gcompris/data/words/",
91                    "good": ["animals/tiger.jpg","animals/tortoise.jpg","animals/tortoise1.jpg"],
92                    "bad": ["transport/car1.jpg","fruits/papaya.jpg","food/hotdog.jpg"]
93                },
94                {
95                    "instructions": qsTr("Place the ANIMALS to the right and other objects to the left"),
96                    "image": imagesPrefix + "snowcat.jpg",
97                    "maxNumberOfGood": 3,
98                    "maxNumberOfBad": 3,
99                    "prefix": "qrc:/gcompris/data/words/",
100                    "good": ["animals/porcupine.jpg","animals/cow.jpg","birds/bird29.jpg"],
101                    "bad": ["nature/nature8.jpg","food/macroni.jpg","others/house.jpg"]
102                }
103            ]
104        }
105    ]
106}
107