1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-08 00:39:30 +02:00
ComfyFactorio/maps/biter_hatchery/raffle_tables.lua
2019-11-06 17:54:54 +01:00

55 lines
2.2 KiB
Lua

local raffle = {
["automation-science-pack"] = {{}, 1},
["logistic-science-pack"] = {{}, 2},
["military-science-pack"] = {{}, 3},
["chemical-science-pack"] = {{}, 4},
["production-science-pack"] = {{}, 5},
["utility-science-pack"] = {{}, 5},
["space-science-pack"] = {{}, 6},
}
local t = raffle["automation-science-pack"][1]
for _ = 1, 4, 1 do table.insert(t, "small-biter") end
for _ = 1, 1, 1 do table.insert(t, "small-spitter") end
local t = raffle["logistic-science-pack"][1]
for _ = 1, 40, 1 do table.insert(t, "small-biter") end
for _ = 1, 10, 1 do table.insert(t, "small-spitter") end
for _ = 1, 4, 1 do table.insert(t, "medium-biter") end
for _ = 1, 1, 1 do table.insert(t, "medium-spitter") end
local t = raffle["military-science-pack"][1]
for _ = 1, 40, 1 do table.insert(t, "small-biter") end
for _ = 1, 10, 1 do table.insert(t, "small-spitter") end
for _ = 1, 40, 1 do table.insert(t, "medium-biter") end
for _ = 1, 10, 1 do table.insert(t, "medium-spitter") end
for _ = 1, 4, 1 do table.insert(t, "big-biter") end
for _ = 1, 1, 1 do table.insert(t, "big-spitter") end
local t = raffle["chemical-science-pack"][1]
for _ = 1, 4, 1 do table.insert(t, "small-biter") end
for _ = 1, 1, 1 do table.insert(t, "small-spitter") end
for _ = 1, 32, 1 do table.insert(t, "medium-biter") end
for _ = 1, 8, 1 do table.insert(t, "medium-spitter") end
for _ = 1, 12, 1 do table.insert(t, "big-biter") end
for _ = 1, 3, 1 do table.insert(t, "big-spitter") end
local t = raffle["production-science-pack"][1]
for _ = 1, 4, 1 do table.insert(t, "medium-biter") end
for _ = 1, 1, 1 do table.insert(t, "medium-spitter") end
for _ = 1, 40, 1 do table.insert(t, "big-biter") end
for _ = 1, 10, 1 do table.insert(t, "big-spitter") end
for _ = 1, 4, 1 do table.insert(t, "behemoth-biter") end
for _ = 1, 1, 1 do table.insert(t, "behemoth-spitter") end
local t = raffle["utility-science-pack"][1]
for _ = 1, 56, 1 do table.insert(t, "big-biter") end
for _ = 1, 14, 1 do table.insert(t, "big-spitter") end
for _ = 1, 8, 1 do table.insert(t, "behemoth-biter") end
for _ = 1, 2, 1 do table.insert(t, "behemoth-spitter") end
local t = raffle["space-science-pack"][1]
for _ = 1, 4, 1 do table.insert(t, "behemoth-biter") end
for _ = 1, 1, 1 do table.insert(t, "behemoth-spitter") end
return raffle