Warning, /education/gcompris/src/activities/land_safe/resource/2/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 rotates when you use the direction keys.") 0014 difficulty: 5 0015 data: [ 0016 { 0017 "planet": qsTr("Ceres"), 0018 "gravity": 0.27, 0019 "maxAccel": 0.054, 0020 "accelSteps": 2, 0021 "alt": 75.0, 0022 "mode": "rotation", 0023 "fuel" : -1, 0024 "intro": qsTr("The up and down keys control the thrust of the rear engine." 0025 + "<br/>The right and left keys now control the rotation of the ship." 0026 + "<br/>To move the ship in horizontal direction you must first rotate and then accelerate.") 0027 }, 0028 { 0029 "planet": qsTr("Pluto"), 0030 "gravity": 0.62, 0031 "maxAccel": 0.186, 0032 "accelSteps": 3, 0033 "alt": 100.0, 0034 "mode": "rotation", 0035 "fuel" : -1 0036 }, 0037 { 0038 "planet": qsTr("Titan"), 0039 "gravity": 1.352, 0040 "maxAccel": 0.406, 0041 "accelSteps": 3, 0042 "alt": 100.0, 0043 "mode": "rotation", 0044 "fuel" : -1 0045 }, 0046 { 0047 "planet": qsTr("Moon"), 0048 "gravity": 1.622, 0049 "maxAccel": 0.324, 0050 "accelSteps": 4, 0051 "alt": 150.0, 0052 "mode": "rotation", 0053 "fuel" : 10 0054 }, 0055 { 0056 "planet": qsTr("Mars"), 0057 "gravity": 3.711, 0058 "maxAccel": 0.619, 0059 "accelSteps": 5, 0060 "alt": 200.0, 0061 "mode": "rotation", 0062 "fuel" : 20 0063 }, 0064 { 0065 "planet": qsTr("Venus"), 0066 "gravity": 8.87, 0067 "maxAccel": 1.331, 0068 "accelSteps": 6, 0069 "alt": 300.0, 0070 "mode": "rotation", 0071 "fuel" : 70 0072 }, 0073 { 0074 "planet": qsTr("Earth"), 0075 "gravity": 9.807, 0076 "maxAccel": 1.373, 0077 "accelSteps": 7, 0078 "alt": 350.0, 0079 "mode": "rotation", 0080 "fuel" : 70 0081 } 0082 ] 0083 }