This commit is contained in:
Peter 2018-07-23 19:44:45 +08:00
commit 1cee04386b
7 changed files with 43 additions and 0 deletions

5
README.md Normal file
View File

@ -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.

4
mod/data.lua Normal file
View File

@ -0,0 +1,4 @@
require("prototypes.entities")
require("prototypes.items")
require("prototypes.recipes")
require("prototypes.technologies")

10
mod/info.json Normal file
View File

@ -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"
}

View File

@ -0,0 +1,6 @@
data:extend(
{
{
}
}
)

6
mod/prototypes/items.lua Normal file
View File

@ -0,0 +1,6 @@
data:extend(
{
{
}
}
)

View File

@ -0,0 +1,6 @@
data:extend(
{
{
}
}
)

View File

@ -0,0 +1,6 @@
data:extend(
{
{
}
}
)