1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-04 00:15:45 +02:00

food balance

This commit is contained in:
MewMew 2019-11-06 17:54:54 +01:00
parent 8d171d8ae8
commit 9227fda072

View File

@ -4,8 +4,8 @@ local raffle = {
["military-science-pack"] = {{}, 3},
["chemical-science-pack"] = {{}, 4},
["production-science-pack"] = {{}, 5},
["utility-science-pack"] = {{}, 6},
["space-science-pack"] = {{}, 7},
["utility-science-pack"] = {{}, 5},
["space-science-pack"] = {{}, 6},
}
local t = raffle["automation-science-pack"][1]
@ -13,37 +13,41 @@ 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, 32, 1 do table.insert(t, "small-biter") end
for _ = 1, 8, 1 do table.insert(t, "small-spitter") end
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, 8, 1 do table.insert(t, "small-biter") end
for _ = 1, 2, 1 do table.insert(t, "small-spitter") end
for _ = 1, 16, 1 do table.insert(t, "medium-biter") end
for _ = 1, 4, 1 do table.insert(t, "medium-spitter") end
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, 8, 1 do table.insert(t, "medium-biter") end
for _ = 1, 2, 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
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, 12, 1 do table.insert(t, "big-biter") end
for _ = 1, 3, 1 do table.insert(t, "big-spitter") end
local t = raffle["utility-science-pack"][1]
for _ = 1, 32, 1 do table.insert(t, "big-biter") end
for _ = 1, 8, 1 do table.insert(t, "big-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