mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-01-10 00:43:27 +02:00
f539fe2fb5
Changes: - Extra hold and power upgrades now can only be purchased at captain's cabin instead of docks.
21 lines
452 B
Lua
21 lines
452 B
Lua
-- This file is part of thesixthroc's Pirate Ship softmod, licensed under GPLv3 and stored at https://github.com/danielmartin0/ComfyFactorio-Pirates.
|
|
|
|
|
|
local Public = {}
|
|
|
|
local enum = {
|
|
STANDARD = '1',
|
|
FIRST = '2',
|
|
WALKWAYS = '3',
|
|
RED_DESERT = '4',
|
|
RADIOACTIVE = '5',
|
|
STANDARD_VARIANT = '6',
|
|
HORSESHOE = '7',
|
|
SWAMP = '8',
|
|
MAZE = '9',
|
|
CAVE = '10',
|
|
CAVE_SOURCE = '11', -- Used as extra layer for cave island
|
|
}
|
|
Public.enum = enum
|
|
|
|
return Public |