18 lines
344 B
GDScript
18 lines
344 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Blue Soda Can"
|
|
itemDescription = "Crunched and smunched to get all the blue outta there."
|
|
itemSprite = load("res://Items/Foods/Liquids/Sprites/EmptyBlueSoda.png")
|
|
|
|
value = 2
|
|
weight = 0.4
|
|
|
|
hardness = 65
|
|
edibility = 15
|
|
|
|
basketPower = 45
|
|
basketabilityDifficulty = 25
|
|
|
|
flammability = 25
|