18 lines
329 B
GDScript
18 lines
329 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Relish Packet"
|
|
itemDescription = "No clue how they fit a pickle in there."
|
|
itemSprite = load("res://Items/Foods/Packaged/Sprites/RelishPacket.png")
|
|
|
|
value = 8
|
|
weight = 1.2
|
|
|
|
hardness = 25
|
|
edibility = 55
|
|
|
|
basketPower = 50
|
|
basketabilityDifficulty = 40
|
|
|
|
flammability = 40
|