Cow_Life_Sim_RPG/Items/Foods/Liquids/MapleTea.gd

21 lines
380 B
GDScript

extends Item
func initialize_stats():
itemName = "Maple Tea"
itemDescription = "Tea made from a maple leave"
itemSprite = load("res://Items/Foods/Liquids/Sprites/MapleTeaMug.png")
value = 9
weight = 1.3
hardness = 12
edibility = 90
basketPower = 20
basketabilityDifficulty = 20
flammability = 10
itemTypes.append(types.Juice)
itemTypes.append(types.Reformable)