18 lines
331 B
GDScript
18 lines
331 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Iron Ingot"
|
|
itemDescription = "A popular ingredient in Iron Ingot Juice"
|
|
itemSprite = load("res://Items/Artificial/Industrial/Sprites/IronIngot.png")
|
|
|
|
value = 38
|
|
weight = 8
|
|
|
|
hardness = 95
|
|
edibility = -20
|
|
|
|
basketPower = 95
|
|
basketabilityDifficulty = 90
|
|
|
|
flammability = 5
|