nodecore-cd2025/.cdbrelease.lua

48 lines
1.3 KiB
Lua
Raw Normal View History

2019-03-31 09:05:33 -04:00
-- LUALOCALS < ---------------------------------------------------------
local dofile
= dofile
-- LUALOCALS > ---------------------------------------------------------
2020-03-28 06:48:57 -04:00
-- luacheck: push
2020-03-28 08:53:35 -04:00
-- luacheck: globals config readtext readbinary
2020-03-28 06:48:57 -04:00
2020-03-28 08:53:35 -04:00
readtext = readtext or function() end
readbinary = readbinary or function() end
2020-03-28 06:48:57 -04:00
local alpha = config and config.branch == "dev"
2019-03-31 09:05:33 -04:00
return {
2020-05-18 10:54:50 -04:00
pkg = alpha and "nodecore_alpha" or "nodecore",
2020-03-28 06:48:57 -04:00
version = dofile("./mods/nc_api/version.lua"),
2021-02-28 08:18:09 -05:00
type = "game",
2020-03-28 08:53:35 -04:00
title = "NodeCore" .. (alpha and " ALPHA" or ""),
short_description = (alpha
2020-05-18 07:46:41 -04:00
and "Experimental early-access release of NodeCore."
or "Original, immersive puzzle/adventure game with NO popup GUIs, minimal HUDs."),
tags = {
"building",
"crafting",
"environment",
"inventory",
"oneofakind__original",
"player_effects",
"puzzle",
"pve",
"technology"
},
content_warnings = {},
license = "MIT",
media_license = "MIT",
long_description = alpha and readtext('.cdb-alpha.md') or readtext('.cdb-release.md'),
repo = "https://gitlab.com/sztest/nodecore",
website = "https://nodecore.mine.nu",
issue_tracker = "https://discord.gg/NNYeF6f",
forums = 24857,
maintainers = {"Warr1024"},
screenshots = (alpha
and {readbinary('.cdb-alpha.jpg'), readbinary('.cdb-release.jpg')}
or {readbinary('.cdb-release.jpg')})
2019-03-31 09:05:33 -04:00
}
2020-03-28 06:48:57 -04:00
-- luacheck: pop