2026-04-14 17:41:39 +02:00

25 lines
677 B
Lua

Config.CraftItems = {
{
name = 'weapon_pistol',
image = 'weapon_pistol',
label = 'Pistol',
finishAmount = 1,
requiredItems = {
{ name = 'iron', amount = 1, label = 'Iron', image = 'iron' },
{ name = 'plastic', amount = 1, label = 'Plastic', image = 'plastic' }
},
time = 5 -- seconds
},
{
name = 'tosti',
image = 'tosti',
label = 'Tosti',
finishAmount = 1,
requiredItems = {
{ name = 'water_bottle', amount = 1, label = 'Water', image = 'water_bottle' },
},
time = 5 -- seconds
}
}