diff --git a/changelog.txt b/changelog.txt index 06839b6..56a02e7 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 0.6.7 +Date: 2020-11-14 + Changes: + - Attempt at a new, hi-def titanium plate (no ore graphics update yet) +--------------------------------------------------------------------------------------------------- Version: 0.6.6 Date: 2020-11-09 Changes: diff --git a/graphics/icons/titanium-plate-old.png b/graphics/icons/titanium-plate-old.png new file mode 100644 index 0000000..aba7eea Binary files /dev/null and b/graphics/icons/titanium-plate-old.png differ diff --git a/graphics/icons/titanium-plate.png b/graphics/icons/titanium-plate.png index aba7eea..ed384ce 100644 Binary files a/graphics/icons/titanium-plate.png and b/graphics/icons/titanium-plate.png differ diff --git a/graphics/icons/titanium-plate.xcf b/graphics/icons/titanium-plate.xcf index b8f17d1..ef9d82b 100644 Binary files a/graphics/icons/titanium-plate.xcf and b/graphics/icons/titanium-plate.xcf differ diff --git a/info.json b/info.json index c572c50..9501b73 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "bztitanium", - "version": "0.6.6", + "version": "0.6.7", "factorio_version": "1.0", "title": "Titanium", "author": "Brevven", diff --git a/titanium-enriched.lua b/titanium-enriched.lua index f31e354..9d37140 100644 --- a/titanium-enriched.lua +++ b/titanium-enriched.lua @@ -48,7 +48,7 @@ data:extend( name = "enriched-titanium-plate", icons = { - { icon = "__bztitanium__/graphics/icons/titanium-plate.png", icon_size = 32 }, + { icon = "__bztitanium__/graphics/icons/titanium-plate.png", icon_size = 64 }, { icon = "__bztitanium__/graphics/icons/enriched-titanium.png", icon_size = 64, scale=0.25, shift= {-8, -8}}, }, category = "smelting", diff --git a/titanium-recipe.lua b/titanium-recipe.lua index d7dcfe7..33c142d 100644 --- a/titanium-recipe.lua +++ b/titanium-recipe.lua @@ -18,7 +18,7 @@ data:extend( order = "d[titanium-plate]", icons = (mods["Krastorio2"] and { - { icon = "__bztitanium__/graphics/icons/titanium-plate.png", icon_size = 32 }, + { icon = "__bztitanium__/graphics/icons/titanium-plate.png", icon_size = 64 }, { icon = "__bztitanium__/graphics/icons/titanium-ore.png", icon_size = 32, scale=0.5, shift= {-8, -8}}, } or nil), normal = (mods["Krastorio2"] and @@ -46,7 +46,7 @@ data:extend( type = "item", name = util.titanium_plate, icon = "__bztitanium__/graphics/icons/titanium-plate.png", - icon_size = 32, + icon_size = 64, subgroup = "raw-material", order = "b[titanium-plate]", stack_size = (mods["Krastorio2"] and 200 or 100)