21 lines
373 B
GDScript
21 lines
373 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Blue Soda"
|
|
itemDescription = "Soda - Blue Flavored"
|
|
itemSprite = load("res://Items/Foods/Liquids/Sprites/BlueSoda.png")
|
|
|
|
value = 11
|
|
weight = 1.6
|
|
|
|
hardness = 12
|
|
edibility = 110
|
|
|
|
basketPower = 60
|
|
basketabilityDifficulty = 30
|
|
|
|
flammability = -10
|
|
|
|
itemTypes.append(types.Juice)
|
|
itemTypes.append(types.Reformable)
|