Issix-mod/Modules/IssixModule/Skills/Perks/PetSpeech.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

31 lines
603 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 1
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
func hiddenWhenLocked() -> bool:
return true
func hiddenWhenUnlocked() -> bool:
return false