From 1cee04386b7ba3e94d4cda9f16a9b883878c580e Mon Sep 17 00:00:00 2001 From: npc-strider Date: Mon, 23 Jul 2018 19:44:45 +0800 Subject: [PATCH] Template --- README.md | 5 +++++ mod/data.lua | 4 ++++ mod/info.json | 10 ++++++++++ mod/prototypes/entities.lua | 6 ++++++ mod/prototypes/items.lua | 6 ++++++ mod/prototypes/recipes.lua | 6 ++++++ mod/prototypes/technologies.lua | 6 ++++++ 7 files changed, 43 insertions(+) create mode 100644 README.md create mode 100644 mod/data.lua create mode 100644 mod/info.json create mode 100644 mod/prototypes/entities.lua create mode 100644 mod/prototypes/items.lua create mode 100644 mod/prototypes/recipes.lua create mode 100644 mod/prototypes/technologies.lua diff --git a/README.md b/README.md new file mode 100644 index 0000000..5071c02 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Oil refinery overhaul + +Removes the vanilla oil-refinery entity and +aims to replace it with an in-world solution +based around heat exchangers. \ No newline at end of file diff --git a/mod/data.lua b/mod/data.lua new file mode 100644 index 0000000..ce07504 --- /dev/null +++ b/mod/data.lua @@ -0,0 +1,4 @@ +require("prototypes.entities") +require("prototypes.items") +require("prototypes.recipes") +require("prototypes.technologies") \ No newline at end of file diff --git a/mod/info.json b/mod/info.json new file mode 100644 index 0000000..7a45248 --- /dev/null +++ b/mod/info.json @@ -0,0 +1,10 @@ +{ + "name": "Template_MOD", + "version": "0.0.1", + "factorio_version": "0.16", + "title": "Template MOD", + "author": "npc_strider(morley376)", + "contact": "", + "homepage": "http://steamcommunity.com/id/morley376", + "description": "Template Description" +} \ No newline at end of file diff --git a/mod/prototypes/entities.lua b/mod/prototypes/entities.lua new file mode 100644 index 0000000..7a89db8 --- /dev/null +++ b/mod/prototypes/entities.lua @@ -0,0 +1,6 @@ +data:extend( +{ + { + } +} +) \ No newline at end of file diff --git a/mod/prototypes/items.lua b/mod/prototypes/items.lua new file mode 100644 index 0000000..7a89db8 --- /dev/null +++ b/mod/prototypes/items.lua @@ -0,0 +1,6 @@ +data:extend( +{ + { + } +} +) \ No newline at end of file diff --git a/mod/prototypes/recipes.lua b/mod/prototypes/recipes.lua new file mode 100644 index 0000000..7a89db8 --- /dev/null +++ b/mod/prototypes/recipes.lua @@ -0,0 +1,6 @@ +data:extend( +{ + { + } +} +) \ No newline at end of file diff --git a/mod/prototypes/technologies.lua b/mod/prototypes/technologies.lua new file mode 100644 index 0000000..7a89db8 --- /dev/null +++ b/mod/prototypes/technologies.lua @@ -0,0 +1,6 @@ +data:extend( +{ + { + } +} +) \ No newline at end of file