2022-01-24 08:48:42 -05:00
|
|
|
-- LUALOCALS < ---------------------------------------------------------
|
|
|
|
local math, tonumber
|
|
|
|
= math, tonumber
|
|
|
|
local math_floor
|
|
|
|
= math.floor
|
|
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
|
|
|
|
-- luacheck: push
|
|
|
|
-- luacheck: globals config readtext readbinary
|
|
|
|
|
|
|
|
readtext = readtext or function() end
|
|
|
|
readbinary = readbinary or function() end
|
|
|
|
|
|
|
|
local stamp = tonumber("$Format:%at$")
|
|
|
|
if not stamp then return end
|
|
|
|
stamp = math_floor((stamp - 1540612800) / 60)
|
|
|
|
stamp = ("00000000" .. stamp):sub(-8)
|
|
|
|
|
|
|
|
return {
|
|
|
|
user = "Warr1024",
|
|
|
|
pkg = "nc_sky_ultra_mulligan",
|
|
|
|
type = "mod",
|
|
|
|
dev_state = "ACTIVELY_DEVELOPED",
|
|
|
|
version = stamp .. "-$Format:%h$",
|
2022-01-24 09:17:16 -05:00
|
|
|
title = "Antipyre",
|
2022-01-24 08:48:42 -05:00
|
|
|
short_description = "Safety net against falling off your island",
|
|
|
|
tags = {"building", "player_effects", "survival", "transport"},
|
|
|
|
content_warnings = {},
|
|
|
|
license = "MIT",
|
|
|
|
media_license = "MIT",
|
|
|
|
long_description = readtext('README.md'),
|
|
|
|
repo = "https://gitlab.com/sztest/nc_sky_ultra_mulligan",
|
|
|
|
issue_tracker = "https://discord.gg/NNYeF6f",
|
|
|
|
maintainers = {"Warr1024"},
|
2024-07-27 13:24:14 -04:00
|
|
|
screenshots = {readbinary('.cdb1.webp')}
|
2022-01-24 08:48:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
-- luacheck: pop
|