18 lines
316 B
GDScript
18 lines
316 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Tire"
|
|
itemDescription = "Once belonged to a large metal horse"
|
|
itemSprite = load("res://Items/Artificial/Industrial/Sprites/Tire.png")
|
|
|
|
value = 24
|
|
weight = 30
|
|
|
|
hardness = 70
|
|
edibility = 7
|
|
|
|
basketPower = 40
|
|
basketabilityDifficulty = 20
|
|
|
|
flammability = 75
|