Warning, /education/gcompris/src/activities/land_safe/resource/1/Data.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris - Data.qml
0002  *
0003  * SPDX-FileCopyrightText: 2020 Johnny Jazeix <jazeix@gmail.com>
0004  *
0005  * Authors:
0006  *   Johnny Jazeix <jazeix@gmail.com>
0007  *
0008  *   SPDX-License-Identifier: GPL-3.0-or-later
0009  */
0010 import GCompris 1.0
0011 
0012 Data {
0013     objective: qsTr("The spaceship translates when you use the direction keys.")
0014     difficulty: 4
0015     data: [
0016        {
0017                 "planet": qsTr("Ceres"),
0018                 "gravity": 0.27,
0019                 "maxAccel": 0.054,
0020                 "accelSteps": 2,
0021                 "alt": 75.0,
0022                 "mode": "simple",
0023                 "fuel" : -1,
0024                 "intro": qsTr("Use the up and down keys to control the thrust."
0025                            + "<br/>Use the right and left keys to control the direction."
0026                            + "<br/>You must drive Tux's ship towards the landing platform."
0027                            + "<br/>The landing platform turns green when the velocity is safe to land.")
0028        },
0029        {
0030                 "planet": qsTr("Pluto"),
0031                 "gravity": 0.62,
0032                 "maxAccel": 0.186,
0033                 "accelSteps": 3,
0034                 "alt": 100.0,
0035                 "mode": "simple",
0036                 "fuel" : -1
0037        },
0038        {
0039                 "planet": qsTr("Titan"),
0040                 "gravity": 1.352,
0041                 "maxAccel": 0.406,
0042                 "accelSteps": 3,
0043                 "alt": 100.0,
0044                 "mode": "simple",
0045                 "fuel" : -1
0046        },
0047        {
0048                 "planet": qsTr("Moon"),
0049                 "gravity": 1.622,
0050                 "maxAccel": 0.324,
0051                 "accelSteps": 4,
0052                 "alt": 150.0,
0053                 "mode": "simple",
0054                 "fuel" : 10
0055        },
0056        {
0057                 "planet": qsTr("Mars"),
0058                 "gravity": 3.711,
0059                 "maxAccel": 0.619,
0060                 "accelSteps": 5,
0061                 "alt": 200.0,
0062                 "mode": "simple",
0063                 "fuel" : 20
0064        },
0065        {
0066                 "planet": qsTr("Venus"),
0067                 "gravity": 8.87,
0068                 "maxAccel": 1.331,
0069                 "accelSteps": 6,
0070                 "alt": 300.0,
0071                 "mode": "simple",
0072                 "fuel" : 70
0073        },
0074        {
0075                 "planet": qsTr("Earth"),
0076                 "gravity": 9.807,
0077                 "maxAccel": 1.373,
0078                 "accelSteps": 7,
0079                 "alt": 350.0,
0080                 "mode": "simple",
0081                 "fuel" : 70
0082        }
0083     ]
0084 }