16 lines
354 B
Lua
16 lines
354 B
Lua
return {
|
|
maxItemsReceived = 5,
|
|
minItemReceivedQty = 2,
|
|
maxItemReceivedQty = 6,
|
|
chanceItem = 'cryptostick',
|
|
luckyItem = 'rubber',
|
|
itemTable = {
|
|
[1] = 'metalscrap',
|
|
[2] = 'plastic',
|
|
[3] = 'copper',
|
|
[4] = 'iron',
|
|
[5] = 'aluminum',
|
|
[6] = 'steel',
|
|
[7] = 'glass',
|
|
}
|
|
} |