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