Continued work on Azazel's corruption scene - added Lamia and Issix dialogues Fixed countless bugs, including perks having wrong skill tier
27 lines
434 B
GDScript
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
|