Files
Dawn-Godot/scripts/Item/Potion.gd
2025-05-01 19:08:20 -05:00

14 lines
264 B
GDScript

class_name Potion extends "res://scripts/Item/Item.gd"
func getName() -> String:
return "Potion"
func getCategory() -> ItemCategory:
return ItemCategory.MEDICINE;
func isConsumable() -> bool:
return true;
func consume() -> void:
print("Consuming Potion");