Continued work on Azazel's corruption scene - added Lamia and Issix dialogues Fixed countless bugs, including perks having wrong skill tier
27 lines
427 B
GDScript
27 lines
427 B
GDScript
extends PerkBase
|
|
|
|
func _init():
|
|
id = "Commands"
|
|
skillGroup = "Pet"
|
|
|
|
func getVisibleName():
|
|
return "Commands"
|
|
|
|
func getVisibleDescription():
|
|
return "You learned basic commands that others can give you"
|
|
|
|
func getSkillTier():
|
|
return 2
|
|
|
|
func getPicture():
|
|
return "res://Modules/IssixModule/Skills/Images/commands.png"
|
|
|
|
func toggleable():
|
|
return false
|
|
|
|
func unlockable():
|
|
return false
|
|
|
|
func hiddenWhenLocked():
|
|
return true
|