18 lines
320 B
GDScript
18 lines
320 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Sticky Goo"
|
|
itemDescription = "Goo. Not ooze, not goop, sticky goo."
|
|
itemSprite = load("res://Items/Artificial/Goo/Sprites/StickyGoo.png")
|
|
|
|
value = 3
|
|
weight = 0.7
|
|
|
|
hardness = 4
|
|
edibility = 2
|
|
|
|
basketPower = 80
|
|
basketabilityDifficulty = 90
|
|
|
|
flammability = 100
|