1
0
mirror of https://github.com/Wyrrrd/bbr-fix.git synced 2026-03-26 00:09:50 +01:00

Initial release

This commit is contained in:
Wyrrrd
2020-03-19 23:05:23 +01:00
parent 0d049160c9
commit afcb091b3d
9 changed files with 54 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
*.zip

8
README.md Normal file
View File

@@ -0,0 +1,8 @@
# Beautiful Bridge Railway - Recipe Fix
<img src="https://raw.githubusercontent.com/Wyrrrd/bbr-fix/master/thumbnail.png" width="128" height="128">
### Features
Changes the recipes of BBR to depend on rails to be more in line with modded rail recipes. You can also enable more expensive recipes via mod settings.
### Credits
Thanks to [kapaer](https://mods.factorio.com/user/kapaer) for the [mod](https://mods.factorio.com/mod/beautiful_bridge_railway) this depends on.

6
changelog.txt Normal file
View File

@@ -0,0 +1,6 @@
---------------------------------------------------------------------------------------------------
Version: 0.18.0
Date: 2020-03-19
Features:
- Changed BBR's recipes
- Added mod setting for more expensive recipes

9
data-updates.lua Normal file
View File

@@ -0,0 +1,9 @@
if settings.startup["bbr_fix_expensive"].value then
data.raw["recipe"]["bbr-rail-wood"].ingredients = {{"rail",1},{"wood",5}}
data.raw["recipe"]["bbr-rail-iron"].ingredients = {{"rail",1},{"iron-plate",5}}
data.raw["recipe"]["bbr-rail-brick"].ingredients = {{"rail",1},{"stone-brick",5}}
else
data.raw["recipe"]["bbr-rail-wood"].ingredients = {{"rail",1},{"wood",1}}
data.raw["recipe"]["bbr-rail-iron"].ingredients = {{"rail",1},{"iron-plate",1}}
data.raw["recipe"]["bbr-rail-brick"].ingredients = {{"rail",1},{"stone-brick",1}}
end

12
info.json Normal file
View File

@@ -0,0 +1,12 @@
{
"name": "bbr-fix",
"version": "0.18.0",
"title": "Beautiful Bridge Railway - Recipe Fix",
"author": "Wyrrrd",
"factorio_version": "0.18",
"dependencies": [
"base >= 0.18",
"beautiful_bridge_railway >= 0.18.1"
],
"description": "Adds rails to recipes."
}

5
locale/de/strings.cfg Normal file
View File

@@ -0,0 +1,5 @@
[mod-description]
Autofilter=Fügt Schienen zu Rezepten hinzu.
[mod-setting-name]
bbr_fix_expensive=Teure Rezepte

5
locale/en/strings.cfg Normal file
View File

@@ -0,0 +1,5 @@
[mod-description]
Autofilter=Adds rails to recipes.
[mod-setting-name]
bbr_fix_expensive=Expensive recipes

8
settings.lua Normal file
View File

@@ -0,0 +1,8 @@
data:extend({
{
type = "bool-setting",
name = "bbr_fix_expensive",
default_value = "false",
setting_type = "startup",
},
})

BIN
thumbnail.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB