This commit is contained in:
Eric Vande Voort
2025-01-07 16:10:03 -06:00
commit 7eb0dea424
147 changed files with 9096 additions and 0 deletions

13
scripts/modules/module.gd Normal file
View File

@@ -0,0 +1,13 @@
extends Resource
class_name Module
@export var name: String = "Base Module"
@export var description: String = "Base Module Description"
@export var texture: Texture
@export var tier: int = -1
@export var location: GameData.ModuleType
@export var active: int = -1
@export var base_fuel_max: int = 10
@export var base_speed: float = 2900.0
@export var base_maneuverability: float = 0.01

View File

@@ -0,0 +1,6 @@
extends Module
class_name StandardCockpitModule
func _init():
name = "Standard Cockpit"
location = GameData.ModuleType.COCKPIT

View File

@@ -0,0 +1,6 @@
extends Module
class_name StandardEngineModule
func _init():
name = "Standard Engine"
location = GameData.ModuleType.ENGINE