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

27 lines
434 B
GDScript

extends PerkBase
func _init():
id = "PetName"
skillGroup = "Pet"
func getVisibleName():
return "New name"
func getVisibleDescription():
return "You have received a completely new name from your Master - Seir"
func getSkillTier():
return 1
func getPicture():
return "res://Modules/IssixModule/Skills/Images/name.png"
func toggleable():
return false
func unlockable():
return false
func hiddenWhenLocked():
return true