18 lines
312 B
GDScript
18 lines
312 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Branch"
|
|
itemDescription = "Only skilled branch managers can handle this"
|
|
itemSprite = load("res://Items/Plants/Sprites/Branch.png")
|
|
|
|
value = 6
|
|
weight = 12
|
|
|
|
hardness = 60
|
|
edibility = 45
|
|
|
|
basketPower = 40
|
|
basketabilityDifficulty = 25
|
|
|
|
flammability = 95
|