Added base items on buy/sell, new valuables icons

This commit is contained in:
2ndbeam 2024-05-20 18:29:44 +03:00
commit 20de519cd1
25 changed files with 113 additions and 22 deletions

View file

@ -2,10 +2,12 @@ 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 : Game.ITEM_TYPE
@export var type : ItemType