Warning, /education/gcompris/src/activities/adjacent_numbers/resource/1/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 1 and 10.")
0010 difficulty: 2
0011 data: [
0012 {
0013 //~ we show two of three numbers and the third one needs to be found
0014 "title": qsTr("Find the next number."),
0015 "lowerBound": 0,
0016 "upperBound": 8, // inclusive
0017 "step": 1,
0018 "numberShown": 3,
0019 "indicesToGuess": [2],
0020
0021 "numberRandomLevel": 5,
0022 "fixedLevels": [1, 6, 3, 7, 5, 2, 4, 8, 0], // Defined by the first number of the set
0023 "numberPropositions": 3
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": 8, // inclusive
0030 "step": 1,
0031 "numberShown": 3, // Counting the one to guess
0032 "indicesToGuess": [0],
0033
0034 "numberRandomLevel": 5,
0035 "fixedLevels": [4, 7, 5, 2, 6, 1, 3, 8, 0], // Defined by the first number of the set
0036 "numberPropositions": 3
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": 8, // inclusive
0043 "step": 1,
0044 "numberShown": 3, // Counting the ones to guess
0045 "indicesToGuess": [1],
0046
0047 "numberRandomLevel": 5,
0048 "fixedLevels": [4, 2, 7, 6, 3, 1, 0, 8], // Defined by the first number of the set
0049 "numberPropositions": 3
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": 8, // inclusive
0056 "step": 1,
0057 "numberShown": 3, // Counting the ones to guess
0058 "indicesToGuess": [0, 2],
0059
0060 "numberRandomLevel": 5,
0061 "fixedLevels": [3, 6, 4, 7, 2, 1, 0, 5, 8], // Defined by the first number of the set
0062 "numberPropositions": 5
0063 },
0064 ]
0065 }