deadlock crating and stacking recipes
This commit is contained in:
parent
ac668b9019
commit
31cd5b74b3
10 changed files with 31 additions and 11 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
*.bak
|
||||||
7
Makefile
7
Makefile
|
|
@ -1,16 +1,15 @@
|
||||||
|
.PHONY: copy install
|
||||||
.PHONY: zip install
|
|
||||||
|
|
||||||
v = bztitanium_$(shell jq -r .version info.json)
|
v = bztitanium_$(shell jq -r .version info.json)
|
||||||
|
|
||||||
copy:
|
copy:
|
||||||
rm -rf ../$(v)
|
rm -rf ../$(v)
|
||||||
mkdir -p ../$(v)
|
mkdir -p ../$(v)
|
||||||
cp -rf * ../$(v)
|
cp -rf * ../$(v)
|
||||||
rm -f ../$(v).zip
|
rm -f ../$(v).zip
|
||||||
cd ..; zip -9 -r -y $(v).zip $(v) -x "*.xcf" -x "*.git*"
|
cd ..; zip -9 -r -y $(v).zip $(v) -x "*.xcf" -x "*.git*" -x "*.bak"
|
||||||
|
|
||||||
|
|
||||||
install: copy
|
install: copy
|
||||||
cp -f ../$(v).zip ../../mods/
|
cp -f ../$(v).zip ../../mods/
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,9 @@
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 0.6.5
|
||||||
|
Date: 2020-11-08
|
||||||
|
Changes:
|
||||||
|
- Deadlock stacking & crating recipes
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 0.6.4
|
Version: 0.6.4
|
||||||
Date: 2020-11-08
|
Date: 2020-11-08
|
||||||
Changes:
|
Changes:
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
require("titanium-recipe-final")
|
require("titanium-recipe-final")
|
||||||
|
require("titanium-recipe-final-stacking")
|
||||||
require("titanium-recipe-final-transport")
|
require("titanium-recipe-final-transport")
|
||||||
require("titanium-data-final-settings")
|
require("titanium-data-final-settings")
|
||||||
|
|
|
||||||
BIN
graphics/icons/titanium-ore-stacked.png
Normal file
BIN
graphics/icons/titanium-ore-stacked.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.1 KiB |
BIN
graphics/icons/titanium-ore-stacked.xcf
Normal file
BIN
graphics/icons/titanium-ore-stacked.xcf
Normal file
Binary file not shown.
BIN
graphics/icons/titanium-plate-stacked.png
Normal file
BIN
graphics/icons/titanium-plate-stacked.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.1 KiB |
BIN
graphics/icons/titanium-plate-stacked.xcf
Normal file
BIN
graphics/icons/titanium-plate-stacked.xcf
Normal file
Binary file not shown.
|
|
@ -1,19 +1,21 @@
|
||||||
{
|
{
|
||||||
"name": "bztitanium",
|
"name": "bztitanium",
|
||||||
"version": "0.6.4",
|
"version": "0.6.5",
|
||||||
"factorio_version": "1.0",
|
"factorio_version": "1.0",
|
||||||
"title": "Titanium",
|
"title": "Titanium",
|
||||||
"author": "Brevven",
|
"author": "Brevven",
|
||||||
"contact": "",
|
"contact": "",
|
||||||
"homepage": "",
|
"homepage": "",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"base >= 0.18",
|
"base >= 1.0.0",
|
||||||
"? aai-industry",
|
"? aai-industry",
|
||||||
"? space-exploration",
|
"? space-exploration",
|
||||||
"? Krastorio2",
|
"? Krastorio2",
|
||||||
"? FactorioExtended-Plus-Core",
|
"? FactorioExtended-Plus-Core",
|
||||||
"? Pre0-17-60Oil",
|
"? Pre0-17-60Oil",
|
||||||
"? Deadlock-SE-bridge"
|
"? Deadlock-SE-bridge",
|
||||||
|
"? deadlock-beltboxes-loaders",
|
||||||
|
"? DeadlockCrating"
|
||||||
],
|
],
|
||||||
"description": "Adds titanium to the base game.\n\nTitanium is used in Low Density Structures, Flying Robot Frames and a few other places.\n\nCompatible with Krastorio 2, Space Exploration, Aircraft, FE+ and other mods."
|
"description": "Adds titanium to the base game.\n\nTitanium is used in Low Density Structures, Flying Robot Frames and a few other places.\n\nCompatible with Krastorio 2, Space Exploration, Aircraft, FE+ and other mods."
|
||||||
}
|
}
|
||||||
|
|
|
||||||
12
titanium-recipe-final-stacking.lua
Normal file
12
titanium-recipe-final-stacking.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
-- Deadlock stacking recipes
|
||||||
|
if deadlock then
|
||||||
|
deadlock.add_stack("titanium-ore", "__bztitanium__/graphics/icons/titanium-ore-stacked.png", "deadlock-stacking-2", 32)
|
||||||
|
deadlock.add_stack("titanium-plate", "__bztitanium__/graphics/icons/titanium-plate-stacked.png" , "deadlock-stacking-2", 32)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Deadlock crating recipes
|
||||||
|
if deadlock_crating then
|
||||||
|
deadlock_crating.add_crate("titanium-ore", "deadlock-crating-2")
|
||||||
|
deadlock_crating.add_crate("titanium-plate", "deadlock-crating-2")
|
||||||
|
end
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue