mirror of
https://github.com/Wyrrrd/bbr-fix.git
synced 2026-06-05 07:20:22 +02:00
Initial release
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
*.zip
|
||||||
@@ -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.
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 0.18.0
|
||||||
|
Date: 2020-03-19
|
||||||
|
Features:
|
||||||
|
- Changed BBR's recipes
|
||||||
|
- Added mod setting for more expensive recipes
|
||||||
@@ -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
|
||||||
@@ -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."
|
||||||
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
[mod-description]
|
||||||
|
Autofilter=Fügt Schienen zu Rezepten hinzu.
|
||||||
|
|
||||||
|
[mod-setting-name]
|
||||||
|
bbr_fix_expensive=Teure Rezepte
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
[mod-description]
|
||||||
|
Autofilter=Adds rails to recipes.
|
||||||
|
|
||||||
|
[mod-setting-name]
|
||||||
|
bbr_fix_expensive=Expensive recipes
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
data:extend({
|
||||||
|
{
|
||||||
|
type = "bool-setting",
|
||||||
|
name = "bbr_fix_expensive",
|
||||||
|
default_value = "false",
|
||||||
|
setting_type = "startup",
|
||||||
|
},
|
||||||
|
})
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
Reference in New Issue
Block a user