Files
Dawn-Godot/scripts/Cooking/Recipe/VerticalSlice.gd
2025-01-15 22:18:44 -06:00

11 lines
286 B
GDScript

class_name VerticalSlice extends "res://scripts/Cooking/Recipe/CookingRecipe.gd"
const ItemSystem = preload("res://scripts/System/ItemSystem.gd")
func _init() -> void:
super._init();
func getIngredients() -> Array[ItemStack]:
return [
ItemStack.new(ItemSystem.ITEM_POTION, 1)
];