Doing some more quest stuff

This commit is contained in:
2025-05-19 07:24:46 -05:00
parent f625415939
commit 0c5675e1b4
8 changed files with 56 additions and 19 deletions

View File

@@ -1,17 +1,17 @@
class_name Item
enum ItemType {
enum Type {
POTION,
ONION
};
enum ItemCategory {
enum Category {
MEDICINE,
KEY_ITEM,
INGREDIENT
};
static func isStackable(itemType:ItemType) -> bool:
static func isStackable(itemType:Type) -> bool:
match itemType:
_:
return true