18 lines
323 B
GDScript
18 lines
323 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Pinecone"
|
|
itemDescription = "Some say they're not actually cones but I disagree"
|
|
itemSprite = load("res://Items/Plants/Sprites/PineCone.png")
|
|
|
|
value = 5
|
|
weight = 0.5
|
|
|
|
hardness = 40
|
|
edibility = 65
|
|
|
|
basketPower = 10
|
|
basketabilityDifficulty = 70
|
|
|
|
flammability = 92
|