commit 1cee04386b7ba3e94d4cda9f16a9b883878c580e Author: npc-strider Date: Mon Jul 23 19:44:45 2018 +0800 Template 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