18 lines
317 B
GDScript
18 lines
317 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Old Ketchup"
|
|
itemDescription = "Ketchup that's kinda gone bad."
|
|
itemSprite = load("res://Items/Foods/Condiments/Sprites/OldKetchup.png")
|
|
|
|
value = 6
|
|
weight = 0.8
|
|
|
|
hardness = 8
|
|
edibility = 52
|
|
|
|
basketPower = 65
|
|
basketabilityDifficulty = 85
|
|
|
|
flammability = 16
|