18 lines
373 B
GDScript
18 lines
373 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Basket Plan 1"
|
|
itemDescription = "It reads: Sort the baskets from highest to lowest edibility, left to right then top to bottom."
|
|
itemSprite = load("res://Items/Paper/Sprite/BasketPlan1.png")
|
|
|
|
value = 8
|
|
weight = 0.3
|
|
|
|
hardness = 8
|
|
edibility = 40
|
|
|
|
basketPower = 15
|
|
basketabilityDifficulty = 15
|
|
|
|
flammability = 100
|