Issix-mod/Modules/IssixModule/Items/LuckToken.gd
Frisk e1f8dfbcd8 Countless fixes, hiisi scene, BDSM donation system, lamia dialogue
Fixed litter guessing minigame
Fixed Hiisi's name dialogue being unavailable (#4)
Fixed Lamia's logic error where player can lock themselves of being able to help
Added donation system for player to donate their leftover BDSM gear and get something in return
Added Hiisi's first scene
2024-12-31 23:36:04 +01:00

45 lines
807 B
GDScript

extends ItemBase
func _init():
id = "LuckToken"
func getVisibleName():
return "Luck Token"
func getDescription():
return "A flashy gold colored metal square with circular indention in the center, it weights quite a bit. According to Issix it may be possible to exchange it for something in the prison..."
func canUseInCombat():
return false
func getPossibleActions():
return []
func getPrice():
return 0
func canSell():
return false
func canCombine():
return true
func tryCombine(_otherItem):
return .tryCombine(_otherItem)
func getTags():
return []
func getItemCategory():
return ItemCategory.Generic
func saveData():
var data = .saveData()
return data
func loadData(data):
.loadData(data)
func getInventoryImage():
return "res://Modules/IssixModule/Items/Icons/lucktoken.png"