21 lines
490 B
GDScript
21 lines
490 B
GDScript
extends Item
|
|
|
|
func initialize_stats():
|
|
itemName = "Gasoline"
|
|
itemDescription = "A yummy rainbow liquid. note: kids please do not drink gasoline in real life for legal reasons and also probably health reasons thanks"
|
|
itemSprite = load("res://Items/Artificial/Industrial/Sprites/Gasoline.png")
|
|
|
|
value = 4
|
|
weight = 2
|
|
|
|
hardness = 1
|
|
edibility = -15
|
|
|
|
basketPower = 100
|
|
basketabilityDifficulty = 99
|
|
|
|
flammability = 99
|
|
|
|
itemTypes.append(types.Juice)
|
|
itemTypes.append(types.Reformable)
|