diff --git a/README.md b/README.md index eae2b61..b53480b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,11 @@ # ModuleRequester_RecipeOverride - [Factorio Mod] Makes module requesters cost nothing to crft, 0.18 style. +![mod thumbnail](https://raw.githubusercontent.com/Wyrrrd/ModuleRequester_RecipeOverride/master/thumbnail.png) + +(Please note: This is a quick and dirty port to 0.18. As soon as the original is ported to 0.18, this will be removed.) + +Description: +- Overrides the recipes from Module Requestor so they are free. Still has to be researched. + +Credit: +- Thanks to [Trylobot](https://mods.factorio.com/user/trylobot) for the [original mod](https://mods.factorio.com/mod/module-requestor-recipe-override). +- Thanks to [shanemadden](https://mods.factorio.com/user/shanemadden) for [Module Requesters](https://mods.factorio.com/mod/module-requestor). \ No newline at end of file diff --git a/changelog.txt b/changelog.txt new file mode 100644 index 0000000..3210dfd --- /dev/null +++ b/changelog.txt @@ -0,0 +1,9 @@ +--------------------------------------------------------------------------------------------------- +Version: 0.18.0 +Date: 20. 2. 2020 + Changes: + - Ported to 0.18 + - Shortened code + - Renamed mod + - Matched versioning to Factorio versions +--------------------------------------------------------------------------------------------------- \ No newline at end of file diff --git a/data.lua b/data.lua new file mode 100644 index 0000000..8f01a58 --- /dev/null +++ b/data.lua @@ -0,0 +1,12 @@ +if data.raw.item["speed-module-requestor"] then + data.raw.recipe["speed-module-requestor"].ingredients = {} +end +if data.raw.item["efficiency-module-requestor"] then + data.raw.recipe["efficiency-module-requestor"].ingredients = {} +end +if data.raw.item["productivity-module-requestor"] then + data.raw.recipe["productivity-module-requestor"].ingredients = {} +end +if data.raw.item["custom-module-requestor"] then + data.raw.recipe["custom-module-requestor"].ingredients = {} +end \ No newline at end of file diff --git a/info.json b/info.json new file mode 100644 index 0000000..548d85f --- /dev/null +++ b/info.json @@ -0,0 +1,13 @@ +{ + "name": "ModuleRequester_RecipeOverride", + "version": "0.18.0", + "title": "Module Requester Recipe Override", + "author": "Wyrrrd", + "homepage": "", + "factorio_version": "0.18", + "dependencies": [ + "base >= 0.18", + "module-requestor >= 0.18.0" + ], + "description": "Removes cost for crafting Module Requesters" +} \ No newline at end of file diff --git a/thumbnail.png b/thumbnail.png new file mode 100644 index 0000000..0895e3d Binary files /dev/null and b/thumbnail.png differ