Warning, /education/gcompris/src/activities/magic-hat-plus/resource/4/Data.qml is written in an unsupported language. File is not indexed.
0001 /* GCompris - Data.qml
0002 *
0003 * SPDX-FileCopyrightText: 2019 Akshay Kumar <email.akshay98@gmail.com>
0004 *
0005 * Authors:
0006 * Akshay Kumar <email.akshay98@gmail.com>
0007 *
0008 * SPDX-License-Identifier: GPL-3.0-or-later
0009 */
0010 import GCompris 1.0
0011
0012 Data {
0013 objective: qsTr("Add stars up to 10.")
0014 difficulty: 2
0015 data: [
0016 {
0017 "maxValue": 10,
0018 "minStars" : [2, 0, 0],
0019 "maxStars" : [3, 0, 0]
0020 },
0021 {
0022 "maxValue": 10,
0023 "minStars" : [2, 0, 0],
0024 "maxStars" : [4, 0, 0]
0025 },
0026 {
0027 "maxValue": 10,
0028 "minStars" : [2, 0, 0],
0029 "maxStars" : [5, 0, 0]
0030 },
0031 {
0032 "maxValue": 10,
0033 "minStars" : [2, 0, 0],
0034 "maxStars" : [6, 0, 0]
0035 },
0036 {
0037 "maxValue": 10,
0038 "minStars" : [2, 0, 0],
0039 "maxStars" : [7, 0, 0]
0040 },
0041 {
0042 "maxValue": 10,
0043 "minStars" : [2, 0, 0],
0044 "maxStars" : [8, 0, 0]
0045 },
0046 {
0047 "maxValue": 10,
0048 "minStars" : [2, 0, 0],
0049 "maxStars" : [9, 0, 0]
0050 }
0051 ]
0052 }