24 lines
549 B
GDScript
24 lines
549 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Croc Puppet"
|
|
itemDescription = "A puppet of a cool crocodile."
|
|
itemSprite = load("res://Items/Toys/Puppets/Sprites/crocPuppet1.png")
|
|
|
|
additionalSprites.append(load("res://Items/Toys/Puppets/Sprites/crocPuppet1.png"))
|
|
additionalSprites.append(load("res://Items/Toys/Puppets/Sprites/crocPuppet2.png"))
|
|
|
|
value = 21
|
|
weight = 0.8
|
|
|
|
hardness = 10
|
|
edibility = 10
|
|
|
|
basketPower = 65
|
|
basketabilityDifficulty = 30
|
|
|
|
flammability = 85
|
|
|
|
itemTypes.append(types.Puppet)
|
|
itemTypes.append(types.Toy)
|