Warning, /education/gcompris/src/activities/magic-hat-minus/resource/7/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("Calculate remaining stars up to 1000 with coefficients.")
0015 difficulty: 5
0016 data: [
0017 {
0018 "maxValue": 1000,
0019 "minStars" : [2, 0, 0],
0020 "maxStars" : [100, 0, 0]
0021 },
0022 {
0023 "maxValue": 1000,
0024 "minStars" : [2, 2, 0],
0025 "maxStars" : [100, 100, 0]
0026 },
0027 {
0028 "maxValue": 1000,
0029 "minStars" : [2, 2, 2],
0030 "maxStars" : [200, 200, 100]
0031 },
0032 {
0033 "maxValue": 1000,
0034 "minStars" : [2, 2, 2],
0035 "maxStars" : [300, 300, 100]
0036 },
0037 {
0038 "maxValue": 1000,
0039 "minStars" : [2, 2, 2],
0040 "maxStars" : [400, 400, 200]
0041 }
0042 ]
0043 }