Warning, /education/gcompris/src/activities/adjacent_numbers/resource/2/Data.qml is written in an unsupported language. File is not indexed.
0001 /* GCompris - Data.qml
0002 *
0003 * SPDX-FileCopyrightText: 2023 Alexandre Laurent <littlewhite.dev@gmail.com>
0004 * SPDX-License-Identifier: GPL-3.0-or-later
0005 */
0006 import GCompris 1.0
0007
0008 Data {
0009 objective: qsTr("Find numbers between 0 and 20.")
0010 difficulty: 3
0011 data: [
0012 {
0013 //~ we show two numbers and the third one needs to be found
0014 "title": qsTr("Find the next number."),
0015 "lowerBound": 0,
0016 "upperBound": 18, // inclusive
0017 "step": 1,
0018 "numberShown": 3, // Counting the ones to guess
0019 "indicesToGuess": [2],
0020
0021 "numberRandomLevel": 5,
0022 "fixedLevels": [10, 8, 6, 13, 5, 16, 7, 11, 4, 1], // Defined by the first number of the set
0023 "numberPropositions": 5
0024 },
0025 {
0026 //~ we show two of three numbers and the first one needs to be found
0027 "title": qsTr("Find the previous number."),
0028 "lowerBound": 0,
0029 "upperBound": 18, // inclusive
0030 "step": 1,
0031 "numberShown": 3, // Counting the one to guess
0032 "indicesToGuess": [0],
0033
0034 "numberRandomLevel": 5,
0035 "fixedLevels": [7, 11, 16, 2, 9, 14, 10, 6, 17], // Defined by the first number of the set
0036 "numberPropositions": 5
0037 },
0038 {
0039 //~ we show two of three numbers and the one in the middle needs to be found
0040 "title": qsTr("Find the in-between number."),
0041 "lowerBound": 0,
0042 "upperBound": 18, // inclusive
0043 "step": 1,
0044 "numberShown": 3, // Counting the ones to guess
0045 "indicesToGuess": [1],
0046
0047 "numberRandomLevel": 5,
0048 "fixedLevels": [17, 10, 8, 6, 12, 3, 0, 15], // Defined by the first number of the set
0049 "numberPropositions": 5
0050 },
0051 {
0052 //~ we show one of three numbers and first and third need to be found
0053 "title": qsTr("Find the missing numbers."),
0054 "lowerBound": 0,
0055 "upperBound": 18, // inclusive
0056 "step": 1,
0057 "numberShown": 3, // Counting the ones to guess
0058 "indicesToGuess": [0, 2],
0059
0060 "numberRandomLevel": 5,
0061 "fixedLevels": [15, 1, 8, 13, 10, 8, 5, 14, 3], // Defined by the first number of the set
0062 "numberPropositions": 7
0063 }
0064 ]
0065 }