-
Notifications
You must be signed in to change notification settings - Fork 0
/
se-game-options.json
126 lines (126 loc) · 4.18 KB
/
se-game-options.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"game": "spaceengineers",
"data": [
{
"action": "meteors",
"title": "Meteor storm",
"description": "Spawn meteor storms around the player",
"message": true,
"settings": [
{
"title": "Radius",
"description": "The distance around the player to spawn a meteor storm, 1 is vanilla",
"key": "radius",
"type": "number",
"default": 1
},
{
"title": "Amount",
"description": "The amount of metor storms that will spawn",
"key": "amount",
"type": "number",
"default": 1
}
]
},
{
"action": "enable_power",
"title": "Enable vehicle power",
"description": "Turns the power on in the current vehicle",
"message": true
},
{
"action": "disable_power",
"title": "Disable vehicle power",
"description": "Toggles the power off in the current vehicle",
"message": true
},
{
"action": "toggle_power",
"title": "Toggle vehicle power",
"description": "Toggles the power of the current vehicle",
"message": true
},
{
"action": "refill",
"title": "Refill player",
"description": "Refills health, O2, H2 and energy on the player",
"message": true
},
{
"action": "power_up",
"title": "Power up",
"description": "Refills the batteries in the current vehicle",
"message": true
},
{
"action": "power_down",
"title": "Power down",
"description": "Empties the batteries in the current vehicle",
"message": true,
"settings": [
{
"title": "Amount",
"description": "The amount to remove from the vehicle in MWh",
"key": "amount",
"type": "options",
"default": -1,
"options": [
{
"type": "fixed",
"title": "All",
"value": -1
},
{
"type": "number",
"title": "Custom",
"value": 1
}
]
}
]
},
{
"action": "enable_dampeners",
"title": "Enable dampeners",
"description": "Enables the dampeners of either vehicle or player",
"message": true
},
{
"action": "disable_dampeners",
"title": "Disable dampeners",
"description": "Disables the dampeners of either vehicle or player",
"message": true
},
{
"action": "toggle_dampeners",
"title": "Toggle dampeners",
"description": "Toggles the dampeners of either vehicle or player",
"message": true
},
{
"action": "toggle_thrusters",
"title": "Toggle thrusters",
"description": "Toggles the thrusters of either vehicle or player",
"message": true
},
{
"action": "toggle_thrusters",
"title": "Toggle thrusters",
"description": "Enables the thrusters of either vehicle or player",
"message": true
},
{
"action": "toggle_thrusters",
"title": "Toggle thrusters",
"description": "Disables the thrusters of either vehicle or player",
"message": true
},
{
"action": "fulfill_buildplanner",
"title": "Fulfill buildplanner",
"description": "Gives the player all items that fit from the current build planner",
"message": true
}
]
}