2024-12-24 22:16:45 +00:00
|
|
|
extends PerkBase
|
|
|
|
|
|
|
|
func _init():
|
|
|
|
id = "Commands"
|
|
|
|
skillGroup = "Pet"
|
|
|
|
|
|
|
|
func getVisibleName():
|
|
|
|
return "Commands"
|
|
|
|
|
|
|
|
func getVisibleDescription():
|
|
|
|
return "You learned basic commands that others can give you"
|
|
|
|
|
|
|
|
func getSkillTier():
|
2025-02-17 23:38:55 +00:00
|
|
|
return 1
|
2024-12-24 22:16:45 +00:00
|
|
|
|
|
|
|
func getPicture():
|
|
|
|
return "res://Modules/IssixModule/Skills/Images/commands.png"
|
|
|
|
|
|
|
|
func toggleable():
|
|
|
|
return false
|
|
|
|
|
|
|
|
func unlockable():
|
|
|
|
return false
|
|
|
|
|
|
|
|
func hiddenWhenLocked():
|
|
|
|
return true
|