mirror of
https://github.com/Refactorio/RedMew.git
synced 2025-03-05 15:05:57 +02:00
22 lines
386 B
Lua
22 lines
386 B
Lua
-- source: https://lua-api.factorio.com/latest/concepts/MapGenSize.html
|
|
|
|
local sqrt2 = math.sqrt(2)
|
|
|
|
return {
|
|
none = 0,
|
|
very_low = 1 / 2,
|
|
very_small = 1 / 2,
|
|
very_poor = 1 / 2,
|
|
low = 1 / sqrt2,
|
|
small = 1 / sqrt2,
|
|
poor = 1 / sqrt2,
|
|
normal = 1,
|
|
medium = 1,
|
|
regular = 1,
|
|
high = sqrt2,
|
|
big = sqrt2,
|
|
good = sqrt2,
|
|
very_high = 2,
|
|
very_big = 2,
|
|
very_good = 2,
|
|
} |