Files
Dawn-Godot/scripts/Item/Potion.gd
2025-01-06 23:37:49 -06: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");