18 lines
345 B
GDScript
18 lines
345 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Empty Ketchup Packet"
|
|
itemDescription = "A small container that once held a tomato."
|
|
itemSprite = load("res://Items/Foods/Packaged/Sprites/EmptyKetchupPacket.png")
|
|
|
|
value = 1
|
|
weight = 0.1
|
|
|
|
hardness = 33
|
|
edibility = 15
|
|
|
|
basketPower = 30
|
|
basketabilityDifficulty = 30
|
|
|
|
flammability = 30
|