18 lines
339 B
GDScript
18 lines
339 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Fake Relish"
|
|
itemDescription = "Seems like it's make of pickles, but you're not sure."
|
|
itemSprite = load("res://Items/Foods/Condiments/Sprites/FakeRelish.png")
|
|
|
|
value = 8
|
|
weight = 1
|
|
|
|
hardness = 25
|
|
edibility = 54
|
|
|
|
basketPower = 65
|
|
basketabilityDifficulty = 72
|
|
|
|
flammability = 28
|