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:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
*.zip
|
||||
8
README.md
Normal file
8
README.md
Normal 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
6
changelog.txt
Normal 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
9
data-updates.lua
Normal 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
12
info.json
Normal 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
5
locale/de/strings.cfg
Normal 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
5
locale/en/strings.cfg
Normal 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
8
settings.lua
Normal 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
BIN
thumbnail.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
Reference in New Issue
Block a user