20 lines
345 B
GDScript
20 lines
345 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Ball"
|
|
itemDescription = "https://pajamabeevegan.itch.io/pong-with-friends"
|
|
itemSprite = load("res://Items/Toys/Beach/Sprites/Ball.png")
|
|
|
|
value = 28
|
|
weight = 2
|
|
|
|
hardness = 3
|
|
edibility = 0
|
|
|
|
basketPower = 99
|
|
basketabilityDifficulty = 99
|
|
|
|
flammability = 0
|
|
|
|
itemTypes.append(types.Toy)
|