21 lines
422 B
GDScript
21 lines
422 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Birch Beer"
|
|
itemDescription = "A type of Rooted Beer. But it's made from bark so not really I guess."
|
|
itemSprite = load("res://Items/Foods/Liquids/Sprites/BirchBeer.png")
|
|
|
|
value = 16
|
|
weight = 2.2
|
|
|
|
hardness = 22
|
|
edibility = 78
|
|
|
|
basketPower = 30
|
|
basketabilityDifficulty = 30
|
|
|
|
flammability = 25
|
|
|
|
itemTypes.append(types.Juice)
|
|
itemTypes.append(types.Reformable)
|