RustHacker/inv_system/item_data.gd

11 lines
268 B
GDScript3
Raw Normal View History

2026-01-10 18:05:09 +11:00
extends Resource
class_name ItemData
@export var item_name : String
@export var icon : Texture2D
@export var value : String
@export var custom_panel_style : StyleBox
@export var bin_chance : int = 5
2026-01-14 19:00:40 +11:00
@export var buy_value : int = 10
@export var can_buy : bool = false