nc_sky_ultra_mulligan/.cdbrelease.lua

39 lines
1.1 KiB
Lua

-- 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$",
title = "Antipyre",
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"},
screenshots = {readbinary('.cdb1.jpg')}
}
-- luacheck: pop