18 lines
307 B
GDScript
18 lines
307 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Stick"
|
|
itemDescription = "Not a stick of gum haha, just poking fun!"
|
|
itemSprite = load("res://Items/Plants/Sprites/stick.png")
|
|
|
|
value = 2
|
|
weight = 0.4
|
|
|
|
hardness = 50
|
|
edibility = 50
|
|
|
|
basketPower = 25
|
|
basketabilityDifficulty = 1
|
|
|
|
flammability = 99
|