deadlock crating and stacking recipes

This commit is contained in:
Brevven 2020-11-08 20:22:18 -08:00
parent ac668b9019
commit 31cd5b74b3
10 changed files with 31 additions and 11 deletions

1
.gitignore vendored Normal file
View file

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

View file

@ -1,16 +1,15 @@
.PHONY: zip install
.PHONY: copy install
v = bztitanium_$(shell jq -r .version info.json)
copy:
rm -rf ../$(v)
mkdir -p ../$(v)
cp -rf * ../$(v)
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
cp -f ../$(v).zip ../../mods/

View file

@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.6.5
Date: 2020-11-08
Changes:
- Deadlock stacking & crating recipes
---------------------------------------------------------------------------------------------------
Version: 0.6.4
Date: 2020-11-08
Changes:

View file

@ -1,3 +1,4 @@
require("titanium-recipe-final")
require("titanium-recipe-final-stacking")
require("titanium-recipe-final-transport")
require("titanium-data-final-settings")

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

View file

@ -1,19 +1,21 @@
{
"name": "bztitanium",
"version": "0.6.4",
"version": "0.6.5",
"factorio_version": "1.0",
"title": "Titanium",
"author": "Brevven",
"contact": "",
"homepage": "",
"dependencies": [
"base >= 0.18",
"base >= 1.0.0",
"? aai-industry",
"? space-exploration",
"? Krastorio2",
"? FactorioExtended-Plus-Core",
"? 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."
}

View 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