Prepping cooking

This commit is contained in:
2026-01-15 17:28:39 -06:00
parent 098a9d47f9
commit 3b7de160dc
27 changed files with 151 additions and 19 deletions

View File

@@ -12,7 +12,7 @@ enum InteractType {
NONE,
CONVERSATION,
ONE_TIME_ITEM,
TEST_BATTLE
CUTSCENE
};
@export_category("Identification")
@@ -29,9 +29,8 @@ var button := func():
@export_category("Interactions")
@export var interactType:InteractType = InteractType.NONE
@export var conversation:Array[ConversationResource] = []
@export_category("One-Time Item")
@export var oneTimeItem:ItemResource = null
@export var cutscene:CutsceneResource = null
# TEST BATTLE
@export_category("Test Battle")