18 lines
403 B
GDScript
18 lines
403 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Parallelogram Bone"
|
|
itemDescription = "A bone in one of the most cool shapes, a wonderful find. Must have been shed by a parallelogram skeleton."
|
|
itemSprite = load("res://Items/Natural/Bones/Sprites/ParallelogramBone.png")
|
|
|
|
value = 44
|
|
weight = 2
|
|
|
|
hardness = 90
|
|
edibility = 10
|
|
|
|
basketPower = 20
|
|
basketabilityDifficulty = 75
|
|
|
|
flammability = 20
|