2024-12-24 22:16:45 +00:00
|
|
|
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():
|
2025-01-10 22:19:05 +00:00
|
|
|
return 2
|
2024-12-24 22:16:45 +00:00
|
|
|
|
|
|
|
func getPicture():
|
|
|
|
return "res://Modules/IssixModule/Skills/Images/clicker.png"
|
|
|
|
|
|
|
|
func toggleable():
|
|
|
|
return false
|
|
|
|
|
|
|
|
func unlockable():
|
|
|
|
return false
|
|
|
|
|
|
|
|
func hiddenWhenLocked():
|
|
|
|
return true
|