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
45 lines
807 B
GDScript
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"
|