initial commit

This commit is contained in:
2026-06-25 03:18:13 -05:00
commit 73a9a6dbdb
4 changed files with 779 additions and 0 deletions

27
thrusters.lua Normal file
View File

@@ -0,0 +1,27 @@
return {
gyroscopic_propeller_bearing_0 = {
type = "rotator",
name = "gyroscopic_propeller_bearing_0",
thruster = nil,
transmission = nil,
affectVectors = {
yaw = nil,
pitch = "up",
roll = "star",
lateral = nil
},
power = nil
},
gyroscopic_propeller_bearing_1 = {
type = "rotator",
name = "gyroscopic_propeller_bearing_1",
thruster = nil,
affectVectors = {
yaw = nil,
pitch = "up",
roll = "port",
lateral = nil
},
power = nil
}
}