Skip to content

Commit

Permalink
Add additional icons, set release date, hide alien lab setting
Browse files Browse the repository at this point in the history
  • Loading branch information
kirazy committed Dec 25, 2020
1 parent 8290469 commit 33016a1
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 2 deletions.
3 changes: 2 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
---------------------------------------------------------------------------------------------------
Version: 1.1.1
Date: 2020.12.XX
Date: 2020.12.25
Features:
- Implemented the greenhouse
- Added item icon for silicon plate, credit to Vigil for the sprite
- Added icons for calcium chloride, sodium hydroxide and alumina
- Finished implementation of personal and vehicle equipment and related technologies, excluding those related to plasma cannons
Changes:
- Burner electric generator now lights up at night
Expand Down
Binary file added graphics/icons/plates/items/alumina.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added graphics/icons/plates/items/calcium-chloride.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added graphics/icons/plates/items/sodium-hydroxide.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions prototypes/item/plates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ local intermediaries = {
["rubber"] = {mod = "lib", group = "shared", subgroup = "items"}, -- Shared with Bob's Electronics, Angels
["resin"] = {subgroup = "items"}, -- Shared with Bob's Electronics
["enriched-fuel"] = {subgroup = "items"},
["alumina"] = {subgroup = "items"},
["calcium-chloride"] = {subgroup = "items"},
["sodium-hydroxide"] = {subgroup = "items"},

----------------------------------------------------------------------------------------------------
-- Recipes
Expand Down
10 changes: 9 additions & 1 deletion prototypes/item/revamp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,12 @@ if not mods["bobplates"] then
intermediaries["solid-fuel-from-sour-gas"] = {type = "recipe", group = "plates", subgroup = "recipes"}
end

reskins.lib.create_icons_from_list(intermediaries, inputs)
reskins.lib.create_icons_from_list(intermediaries, inputs)

local composite_recipes = {
["ammonium-chloride-recycling"] = {["ammonium-chloride"] = {}, ["ammonia"] = {type = "fluid", scale = 0.375, shift = {-10, 11}}, ["calcium-chloride"] = {scale = 0.375, shift = {10, 11}}},
}

for name, sources in pairs(composite_recipes) do
reskins.lib.composite_existing_icons(name, "recipe", sources)
end
1 change: 1 addition & 0 deletions settings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ if mods["bobtech"] then
name = "reskins-bobs-show-alien-decoratives-on-lab",
setting_type = "startup",
default_value = true,
hidden = true,
},
})
end
Expand Down

0 comments on commit 33016a1

Please sign in to comment.