Issix-mod/Modules/IssixModule/Skills/Perks/PavlovsDog.gd
Frisk 91be974366 10.01 updates
Continued work on Azazel's corruption scene - added Lamia and Issix dialogues
Fixed countless bugs, including perks having wrong skill tier
2025-01-10 23:19:05 +01:00

27 lines
454 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 2
func getPicture():
return "res://Modules/IssixModule/Skills/Images/clicker.png"
func toggleable():
return false
func unlockable():
return false
func hiddenWhenLocked():
return true