Issix-mod/Modules/IssixModule/Skills/Perks/BowlTraining.gd

27 lines
513 B
GDScript3
Raw Normal View History

2024-12-24 22:16:45 +00:00
extends PerkBase
func _init():
id = "BowlTraining"
skillGroup = "Pet"
func getVisibleName():
return "Undignified eater"
func getVisibleDescription():
return "You learned how to eat from the common pet bowl."
func getMoreDescription():
return "You can now only eat like a pet, from the bowl without using your paws or tools."
func getSkillTier():
return 0
func getPicture():
return "res://Modules/IssixModule/Skills/Images/bowl.png"
func toggleable():
return false
func unlockable():
return false