18 lines
303 B
GDScript
18 lines
303 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Palm Fiber"
|
|
itemDescription = "The biggest leaf ever born."
|
|
itemSprite = load("res://Items/Plants/Sprites/PalmFiber.png")
|
|
|
|
value = 7
|
|
weight = 0.4
|
|
|
|
hardness = 5
|
|
edibility = 63
|
|
|
|
basketPower = 60
|
|
basketabilityDifficulty = 15
|
|
|
|
flammability = 100
|