18 lines
310 B
GDScript
18 lines
310 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Maple Tea Bag"
|
|
itemDescription = "Made from Maple Leafs."
|
|
itemSprite = load("res://Items/Foods/Packaged/Sprites/MapleTeaBag.png")
|
|
|
|
value = 6
|
|
weight = 0.2
|
|
|
|
hardness = 12
|
|
edibility = 85
|
|
|
|
basketPower = 8
|
|
basketabilityDifficulty = 20
|
|
|
|
flammability = 95
|