Warning, /education/gcompris/src/activities/reversecount/resource/12/Data.qml is written in an unsupported language. File is not indexed.
0001 /* GCompris - Data.qml 0002 * 0003 * SPDX-FileCopyrightText: 2021 Harsh Kumar <hadron43@yahoo.com> 0004 * 0005 * Authors: 0006 * Harsh Kumar <hadron43@yahoo.com> 0007 * 0008 * SPDX-License-Identifier: GPL-3.0-or-later 0009 */ 0010 import GCompris 1.0 0011 0012 Data { 0013 objective: qsTr("Numbers between %1 and %2.").arg(11).arg(15) 0014 difficulty: 3 0015 data: [ 0016 { 0017 "maxNumber": 9, /* Max number on each domino side */ 0018 /* One of the values is picked from this array randomly 0019 * increase the frequency of value that you want to be picked more frequently 0020 */ 0021 "values" : [11,12,13,14,14,15,15,15], 0022 "numberOfFish": 5 0023 } 0024 ] 0025 }