Warning, /education/gcompris/src/activities/magic-hat-plus/resource/8/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 10000 with coefficients.") 0015 difficulty: 6 0016 data: [ 0017 { 0018 "maxValue": 10000, 0019 "minStars" : [2, 0, 0], 0020 "maxStars" : [1000, 0, 0] 0021 }, 0022 { 0023 "maxValue": 10000, 0024 "minStars" : [2, 2, 0], 0025 "maxStars" : [1000, 1000, 0] 0026 }, 0027 { 0028 "maxValue": 10000, 0029 "minStars" : [2, 2, 2], 0030 "maxStars" : [2000, 2000, 1000] 0031 }, 0032 { 0033 "maxValue": 10000, 0034 "minStars" : [2, 2, 2], 0035 "maxStars" : [3000, 3000, 1000] 0036 }, 0037 { 0038 "maxValue": 10000, 0039 "minStars" : [2, 2, 2], 0040 "maxStars" : [4000, 4000, 2000] 0041 } 0042 ] 0043 }