Continued work on Azazel's corruption scene - added Lamia and Issix dialogues Fixed countless bugs, including perks having wrong skill tier
21 lines
251 B
GDScript
21 lines
251 B
GDScript
extends SkillBase
|
|
|
|
func _init():
|
|
id = "Pet"
|
|
|
|
func getVisibleName():
|
|
return "Pet"
|
|
|
|
func getVisibleDescription():
|
|
return "Shows how used you are to being a pet"
|
|
|
|
func getPerkTiers():
|
|
return [
|
|
[0],
|
|
[5],
|
|
[10],
|
|
]
|
|
|
|
func scripted():
|
|
return false
|