18 lines
309 B
GDScript
18 lines
309 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Gear"
|
|
itemDescription = "Once belonged to a metal snake"
|
|
itemSprite = load("res://Items/Artificial/Industrial/Sprites/Gear.png")
|
|
|
|
value = 31
|
|
weight = 35
|
|
|
|
hardness = 95
|
|
edibility = 3
|
|
|
|
basketPower = 90
|
|
basketabilityDifficulty = 80
|
|
|
|
flammability = 5
|