wip Components/Customizable
This commit is contained in:
9
scripts/resources/Equipment/EquipmentStats.gd
Normal file
9
scripts/resources/Equipment/EquipmentStats.gd
Normal file
@@ -0,0 +1,9 @@
|
||||
extends Resource
|
||||
|
||||
class_name EquipmentStats
|
||||
|
||||
@export var max_health: MaxHealth
|
||||
@export var armor: Armor
|
||||
@export var shield: Shield
|
||||
@export var movementSpeed: MovementSpeed
|
||||
@export var damage: Damage
|
||||
3
scripts/resources/Equipment/MechParts/Arms.gd
Normal file
3
scripts/resources/Equipment/MechParts/Arms.gd
Normal file
@@ -0,0 +1,3 @@
|
||||
extends MechPart
|
||||
|
||||
class_name Arms
|
||||
3
scripts/resources/Equipment/MechParts/Boots.gd
Normal file
3
scripts/resources/Equipment/MechParts/Boots.gd
Normal file
@@ -0,0 +1,3 @@
|
||||
extends MechPart
|
||||
|
||||
class_name Boots
|
||||
3
scripts/resources/Equipment/MechParts/Hydraulics.gd
Normal file
3
scripts/resources/Equipment/MechParts/Hydraulics.gd
Normal file
@@ -0,0 +1,3 @@
|
||||
extends MechPart
|
||||
|
||||
class_name Hydraulics
|
||||
7
scripts/resources/Equipment/MechParts/MechBase.gd
Normal file
7
scripts/resources/Equipment/MechParts/MechBase.gd
Normal file
@@ -0,0 +1,7 @@
|
||||
extends MechPart
|
||||
|
||||
class_name MechBase
|
||||
|
||||
@export var boots: Boots
|
||||
@export var arms: Arms
|
||||
@export var hydraulics: Hydraulics
|
||||
6
scripts/resources/Equipment/MechParts/MechPart.gd
Normal file
6
scripts/resources/Equipment/MechParts/MechPart.gd
Normal file
@@ -0,0 +1,6 @@
|
||||
extends Resource
|
||||
|
||||
class_name MechPart
|
||||
|
||||
@export var name: String
|
||||
@export var stats: EquipmentStats
|
||||
Reference in New Issue
Block a user