diff --git a/lignumis-cf/data.lua b/lignumis-cf/data.lua new file mode 100644 index 0000000..6ec24cb --- /dev/null +++ b/lignumis-cf/data.lua @@ -0,0 +1 @@ +require("prototypes/tips-and-tricks") \ No newline at end of file diff --git a/lignumis-cf/graphics/dc.png b/lignumis-cf/graphics/dc.png new file mode 100644 index 0000000..64daac1 Binary files /dev/null and b/lignumis-cf/graphics/dc.png differ diff --git a/lignumis-cf/locale/en/strings.cfg b/lignumis-cf/locale/en/strings.cfg index 4e2e34f..b309a32 100644 --- a/lignumis-cf/locale/en/strings.cfg +++ b/lignumis-cf/locale/en/strings.cfg @@ -2,4 +2,10 @@ lignumis-cf=○🌐Lignumis - Director's Cut [mod-description] -lignumis-cf=Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis is the version that represents the original idea of the mod author. For a more isolated planet mod experience, install the regular version. \ No newline at end of file +lignumis-cf=Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis is the version that represents the original idea of the mod author. For a more isolated planet mod experience, install the regular version. + +[tips-and-tricks-item-name] +lignumis-directors-cut=Director's Cut + +[tips-and-tricks-item-description] +lignumis-directors-cut=Thanks for playing the Lignumis Dircetor's Cut!\nThis is how I wanted the mod to be, but most people don't like how it changes the whole game by adding wood to everything. Be prepared to need wood on every planet and even on space ships.\n\n[img=utility/warning_icon] Many mod settings are enforced and therefore hidden. If you can't find a setting, it's because you play the Director's Cut.\n[img=utility/warning_icon] When adding more modded planets, also look for wood mods for those planets like "Wooden Cerys: Lunaponics" and "Wooden Moshine: Solaponics". \ No newline at end of file diff --git a/lignumis-cf/prototypes/tips-and-tricks.lua b/lignumis-cf/prototypes/tips-and-tricks.lua new file mode 100644 index 0000000..4f2ea89 --- /dev/null +++ b/lignumis-cf/prototypes/tips-and-tricks.lua @@ -0,0 +1,29 @@ +data:extend({ + { + type = "sprite", + name = "lignumis-directors-cut", + filename = "__lignumis-cf__/graphics/dc.png", + priority = "very-low", + width = 64, + height = 64, + flags = {"gui-icon"}, + mipmap_count = 1, + scale = 0.5 + }, + { + type = "tips-and-tricks-item", + name = "lignumis-directors-cut", + tag = "[img=lignumis-directors-cut]", + category = "space-age", + order = "0-[lignumis]-b", + indent = 1, + trigger = { + type = "research", + technology = "wood-science-pack" + }, + skip_trigger = { + type = "research", + technology = "automation-science-pack" + } + } +}) \ No newline at end of file