23 lines
508 B
GDScript
23 lines
508 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Magic Stick"
|
|
itemDescription = "Not a stick of gum haha, just poking fun!"
|
|
itemSprite = load("res://Items/Plants/Sprites/MagicStick.png")
|
|
|
|
additionalSprites.append(load("res://Items/Plants/Sprites/MagicStick1.png"))
|
|
additionalSprites.append(load("res://Items/Plants/Sprites/MagicStick2.png"))
|
|
|
|
value = 60
|
|
weight = 4
|
|
|
|
hardness = 70
|
|
edibility = 70
|
|
|
|
basketPower = 100
|
|
basketabilityDifficulty = 40
|
|
|
|
flammability = 50
|
|
|
|
itemTypes.append(types.Toy)
|