Issix-mod/Modules/IssixModule/Skills/Perks/PavlovsDog.gd
2024-12-24 23:16:45 +01:00

27 lines
455 B
GDScript

extends PerkBase
func _init():
id = "Clicker"
skillGroup = "Pet"
func getVisibleName():
return "Pavlov's Dog"
func getVisibleDescription():
return "You have unconditional urge to stop what you are doing when you hear a click"
func getSkillTier():
return 10
func getPicture():
return "res://Modules/IssixModule/Skills/Images/clicker.png"
func toggleable():
return false
func unlockable():
return false
func hiddenWhenLocked():
return true