13 lines
304 B
GDScript
13 lines
304 B
GDScript
extends Resource
|
|
|
|
class_name Item
|
|
|
|
enum ItemType {Valuable, Weapon, Hull, Shield, Engine, Ammunition}
|
|
|
|
@export var name : String
|
|
@export var description : String
|
|
@export var min_price : float
|
|
@export var max_price : float
|
|
@export var weight : float
|
|
@export var icon : Texture
|
|
@export var type : ItemType
|