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

25 lines
506 B
GDScript

extends PerkBase
func _init():
id = "PetSpeech"
skillGroup = "Pet"
func getVisibleName():
return "Meow bark"
func getVisibleDescription():
return "You have learned the speech of animals without losing ability to communicate with humanoids"
func getSkillTier():
return 5
func getPicture():
return "res://Modules/IssixModule/Skills/Images/petspeech.png"
func toggleable():
var ch = npc if npc != null else GM.pc
return !(ch.getSkillsHolder().hasPerk(self.id))
func unlockable():
return false