18 lines
300 B
GDScript
18 lines
300 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Palm Leaf"
|
|
itemDescription = "The biggest leaf ever born."
|
|
itemSprite = load("res://Items/Plants/Sprites/PalmLeaf.png")
|
|
|
|
value = 8
|
|
weight = 7.8
|
|
|
|
hardness = 5
|
|
edibility = 95
|
|
|
|
basketPower = 40
|
|
basketabilityDifficulty = 35
|
|
|
|
flammability = 90
|