RustHacker/inv_system/item_data.gd
2026-01-23 16:12:01 +11:00

13 lines
374 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 = ""
@export var rarity : String = ""