config.lua (3.2 KB)
added some basic colors in the config for people to use.
-- auto spuiten
['white_paint'] = {['name'] = 'white_paint', ['label'] = 'Spuitbus Wit', ['weight'] = 100, ['type'] = 'item', ['image'] = 'white_paint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = true, ['description'] = "Witte autolak"},
['red_paint'] = {['name'] = 'red_paint', ['label'] = 'Spuitbus Rood', ['weight'] = 100, ['type'] = 'item', ['image'] = 'red_paint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = true, ['description'] = "Rode autolak"},
['blue_paint'] = {['name'] = 'blue_paint', ['label'] = 'Spuitbus Blauw', ['weight'] = 100, ['type'] = 'item', ['image'] = 'blue_paint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = true, ['description'] = "Blauwe autolak"},
['green_paint'] = {['name'] = 'green_paint', ['label'] = 'Spuitbus Groen', ['weight'] = 100, ['type'] = 'item', ['image'] = 'green_paint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = true, ['description'] = "Groene autolak"},
['yellow_paint'] = {['name'] = 'yellow_paint', ['label'] = 'Spuitbus Geel', ['weight'] = 100, ['type'] = 'item', ['image'] = 'yellow_paint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = true, ['description'] = "Gele autolak"},
['pink_paint'] = {['name'] = 'pink_paint', ['label'] = 'Spuitbus Roze', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pink_paint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = true, ['description'] = "Roze autolak"},
['grey_paint'] = {['name'] = 'grey_paint', ['label'] = 'Spuitbus Grijs', ['weight'] = 100, ['type'] = 'item', ['image'] = 'grey_paint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = true, ['description'] = "Grijze autolak"}, ```