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