18 lines
298 B
GDScript
18 lines
298 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Cup"
|
|
itemDescription = "A vessel for juice and other liquid."
|
|
itemSprite = load("res://Items/Dishes/Sprites/Cup.png")
|
|
|
|
value = 14
|
|
weight = 0.8
|
|
|
|
hardness = 45
|
|
edibility = 5
|
|
|
|
basketPower = 60
|
|
basketabilityDifficulty = 60
|
|
|
|
flammability = 2
|