-New graphics (ore, icons, technology) -New mod icon -Added mipmaps to icon -changelog updated -file cleanup (old files in a folder, isolated tech and stacked) -version bumped to 0.10.0
18 lines
798 B
Lua
18 lines
798 B
Lua
-- Deadlock stacking recipes
|
|
if deadlock then
|
|
deadlock.add_stack("titanium-ore", "__bztitanium__/graphics/icons/stacked/titanium-ore-stacked.png", "deadlock-stacking-2", 64)
|
|
deadlock.add_stack("titanium-plate", "__bztitanium__/graphics/icons/stacked/titanium-plate-stacked.png" , "deadlock-stacking-2", 64)
|
|
if mods["Krastorio2"] then
|
|
deadlock.add_stack("enriched-titanium", "__bztitanium__/graphics/icons/stacked/enriched-titanium-stacked.png" , "deadlock-stacking-2", 64)
|
|
end
|
|
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")
|
|
if mods["Krastorio2"] then
|
|
deadlock_crating.add_crate("enriched-titanium", "deadlock-crating-2")
|
|
end
|
|
end
|
|
|