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

30 lines
626 B
GDScript3
Raw Permalink Normal View History

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"
2025-02-18 16:42:09 +00:00
func getMoreDescription():
return "Master Issix taught you various commands such as Sit, Roll, Give a paw, Stand. Guards and Master Issix can command you with Roll and Sit commands to skip turns."
2024-12-24 22:16:45 +00:00
func getSkillTier():
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