2024-12-24 22:16:45 +00:00
|
|
|
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():
|
2025-01-10 22:19:05 +00:00
|
|
|
return 1
|
2024-12-24 22:16:45 +00:00
|
|
|
|
|
|
|
func getPicture():
|
|
|
|
return "res://Modules/IssixModule/Skills/Images/name.png"
|
|
|
|
|
|
|
|
func toggleable():
|
|
|
|
return false
|
|
|
|
|
|
|
|
func unlockable():
|
|
|
|
return false
|
|
|
|
|
|
|
|
func hiddenWhenLocked():
|
|
|
|
return true
|