-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Date: 17.03.2021 Features: - Add deadlock tier by draddy82 - https://github.com/draddy82 - Add next_upgrade to entities - Add related_underground_belt to normal belts - Thanks JanSharp - https://github.com/JanSharp
- Loading branch information
1 parent
31dc517
commit 0dfa9a8
Showing
6 changed files
with
65 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
if deadlock then | ||
deadlock.add_tier({ | ||
transport_belt = "BetterBelts_ultra-transport-belt", | ||
colour = {r=0,g=211,b=37}, | ||
technology = "logistics-3", | ||
order = "d", | ||
loader = "BetterBelts_ultra-deadlock-loader", | ||
loader_ingredients = { | ||
{"express-transport-belt-loader",1}, | ||
{"iron-gear-wheel",40}, | ||
}, | ||
beltbox = "BetterBelts_ultra-deadlock-beltbox", | ||
beltbox_ingredients = { | ||
{"express-transport-belt-beltbox",1}, | ||
{"steel-plate",40}, | ||
{"iron-gear-wheel",40}, | ||
{"processing-unit",5}, | ||
}, | ||
beltbox_technology = "deadlock-stacking-3", | ||
}) | ||
|
||
if data.raw.furnace["BetterBelts_ultra-transport-belt-beltbox"] then | ||
data.raw.furnace["express-transport-belt-beltbox"].next_upgrade = "BetterBelts_ultra-transport-belt-beltbox" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"item": | ||
[ | ||
["Ultra-CompactLoader", "BetterBelts_ultra-deadlock-loader"], | ||
["Ultra-Beltbox", "BetterBelts_ultra-deadlock-beltbox"] | ||
], | ||
"recipe": | ||
[ | ||
["Ultra-CompactLoader", "BetterBelts_ultra-deadlock-loader"], | ||
["Ultra-Beltbox", "BetterBelts_ultra-deadlock-beltbox"] | ||
], | ||
"entity": | ||
[ | ||
["Ultra-CompactLoader", "BetterBelts_ultra-deadlock-loader"], | ||
["Ultra-Beltbox", "BetterBelts_ultra-deadlock-beltbox"] | ||
] | ||
} |