Warning, /education/gcompris/src/activities/adjacent_numbers/resource/5/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 -10 and 10.")
0010     difficulty: 6
0011     data: [
0012         {
0013             //~ we show two of five numbers and the missing numbers (2nd, 3rd and 4th) need to be found
0014             "title": qsTr("Find the next number."),
0015             "lowerBound": -10,
0016             "upperBound": 8, // inclusive
0017             "step": 1,
0018             "numberShown": 3, // Counting the ones to guess
0019             "indicesToGuess": [2],
0020 
0021             "numberRandomLevel": 5,
0022             "fixedLevels": [-9, 7, 2, -4, 6, -10, -1, -8, -7, -2], // Defined by the first number of the set
0023             "numberPropositions": 5
0024         },
0025         {
0026             //~ we show two of five numbers and the missing numbers (2nd, 3rd and 4th) need to be found
0027             "title": qsTr("Find the previous number."),
0028             "lowerBound": -10,
0029             "upperBound": 8, // inclusive
0030             "step": 1,
0031             "numberShown": 3, // Counting the ones to guess
0032             "indicesToGuess": [0],
0033 
0034             "numberRandomLevel": 5,
0035             "fixedLevels": [4, -6, -7, 7, 0, -3, 2, -10, -9, 8], // 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": -5,
0042             "upperBound": 3, // inclusive
0043             "step": 1,
0044             "numberShown": 3, // Counting the ones to guess
0045             "indicesToGuess": [1],
0046 
0047             "numberRandomLevel": 5,
0048             "fixedLevels": [-4, 2, 3, -2, 0, -1, 1, -3], // Defined by the first number of the set
0049             "numberPropositions": 3
0050         },
0051         {
0052             //~ we show two of four numbers and first and last need to be found
0053             "title": qsTr("Find the missing numbers."),
0054             "lowerBound": -10,
0055             "upperBound": 8, // inclusive
0056             "step": 1,
0057             "numberShown": 4, // Counting the ones to guess
0058             "indicesToGuess": [0, 3],
0059 
0060             "numberRandomLevel": 5,
0061             "fixedLevels": [2, -1, -2, -4, 6, -7, 3, 0, -5], // Defined by the first number of the set
0062             "numberPropositions": 7
0063         },
0064         {
0065             //~ we show two of five numbers and the missing numbers (2nd, 3rd and 4th) need to be found
0066             "title": qsTr("Find the in-between numbers."),
0067             "lowerBound": -10,
0068             "upperBound": 6, // inclusive
0069             "step": 1,
0070             "numberShown": 5, // Counting the ones to guess
0071             "indicesToGuess": [1, 2, 3],
0072 
0073             "numberRandomLevel": 5,
0074             "fixedLevels": [2, -1, -2, -4, 6, -7, 3, 0, -5], // Defined by the first number of the set
0075             "numberPropositions": 7
0076         },
0077     ]
0078 }