Warning, /education/gcompris/src/activities/magic-hat-plus/resource/6/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     //: Coefficients are the numbers by which the numbers of stars are multiplied to get the total
0014     objective: qsTr("Add stars up to 100 with coefficients.")
0015     difficulty: 4
0016     data: [
0017         {
0018             "maxValue": 100,
0019             "minStars" : [2, 2, 0],
0020             "maxStars" : [20, 10, 0]
0021         },
0022         {
0023             "maxValue": 100,
0024             "minStars" : [2, 2, 2],
0025             "maxStars" : [20, 20, 10]
0026         },
0027         {
0028             "maxValue": 100,
0029             "minStars" : [2, 2, 2],
0030             "maxStars" : [20, 20, 20]
0031         },
0032         {
0033             "maxValue": 100,
0034             "minStars" : [2, 2, 2],
0035             "maxStars" : [30, 30, 20]
0036         },
0037         {
0038             "maxValue": 100,
0039             "minStars" : [2, 2, 2],
0040             "maxStars" : [40, 40, 20]
0041         }
0042     ]
0043 }