RustHacker/inv_system/item_data.gd
2026-01-17 17:07:53 +11:00

12 lines
341 B
GDScript

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
@export var buy_value : int = 10
@export var botnet_power : int = 0
@export var can_buy : bool = false
@export var description : String = ""