18 lines
329 B
GDScript
18 lines
329 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Empty Relish Packet"
|
|
itemDescription = "There is no pickle in there."
|
|
itemSprite = load("res://Items/Foods/Packaged/Sprites/EmptyRelishPacket.png")
|
|
|
|
value = 1
|
|
weight = 0.1
|
|
|
|
hardness = 33
|
|
edibility = 15
|
|
|
|
basketPower = 30
|
|
basketabilityDifficulty = 30
|
|
|
|
flammability = 30
|