1
0

Initial commit

This commit is contained in:
FoxSpellCaster
2025-04-16 18:12:10 -04:00
commit 99bea1a1f0
53 changed files with 4804 additions and 0 deletions

11
item.gd Normal file
View File

@@ -0,0 +1,11 @@
class_name Item
extends Resource
@export var display_name : String
@export var icon : Texture2D
@export var max_stack_size : int = 12
@export var world_item_scene : PackedScene
func _on_use (player) -> bool:
print("Use")
return false