diff --git a/changelog.txt b/changelog.txt index fab9829..45d3e9d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,21 @@ --------------------------------------------------------------------------------------------------- +Version: 0.0.11 +Date: 2021-05-23 + Features: + - New thumbnail +--------------------------------------------------------------------------------------------------- +Version: 0.0.10 +Date: 2021-05-22 + Features: + - New icon for plate +--------------------------------------------------------------------------------------------------- +Version: 0.0.9 +Date: 2021-05-21 + Features: + - Compatibility with Geothermal, FastFurnaces, TA Miners + Changes: + - Wolframite patches are wider (same overall richness) +--------------------------------------------------------------------------------------------------- Version: 0.0.8 Date: 2021-05-20 Changes: diff --git a/graphics/icons/Untitled.png b/graphics/icons/Untitled.png deleted file mode 100644 index 07b9dde..0000000 Binary files a/graphics/icons/Untitled.png and /dev/null differ diff --git a/graphics/icons/stacked/tungsten-plate-stacked.png b/graphics/icons/stacked/tungsten-plate-stacked.png index befd08c..645a023 100644 Binary files a/graphics/icons/stacked/tungsten-plate-stacked.png and b/graphics/icons/stacked/tungsten-plate-stacked.png differ diff --git a/graphics/icons/stacked/tungsten-plate-stacked.xcf b/graphics/icons/stacked/tungsten-plate-stacked.xcf index c46f61b..eb39422 100644 Binary files a/graphics/icons/stacked/tungsten-plate-stacked.xcf and b/graphics/icons/stacked/tungsten-plate-stacked.xcf differ diff --git a/graphics/icons/tungsten-plate-new.xcf b/graphics/icons/tungsten-plate-new.xcf new file mode 100644 index 0000000..b038043 Binary files /dev/null and b/graphics/icons/tungsten-plate-new.xcf differ diff --git a/graphics/icons/tungsten-plate.png b/graphics/icons/tungsten-plate.png index 393ec8f..cedc8eb 100644 Binary files a/graphics/icons/tungsten-plate.png and b/graphics/icons/tungsten-plate.png differ diff --git a/graphics/icons/tungsten-plate.xcf b/graphics/icons/tungsten-plate.xcf index cc96537..935aa21 100644 Binary files a/graphics/icons/tungsten-plate.xcf and b/graphics/icons/tungsten-plate.xcf differ diff --git a/graphics/technology/tungsten-processing.png b/graphics/technology/tungsten-processing.png index 63d2900..703a119 100644 Binary files a/graphics/technology/tungsten-processing.png and b/graphics/technology/tungsten-processing.png differ diff --git a/graphics/technology/tungsten-processing.xcf b/graphics/technology/tungsten-processing.xcf index 9ea1530..a3cf7c2 100644 Binary files a/graphics/technology/tungsten-processing.xcf and b/graphics/technology/tungsten-processing.xcf differ diff --git a/info.json b/info.json index ac2b779..a829ce4 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "bztungsten", - "version": "0.0.8", + "version": "0.0.10", "factorio_version": "1.1", "title": "Tungsten", "author": "Brevven", diff --git a/thumbnail.png b/thumbnail.png index b4eca2b..97eb3fc 100644 Binary files a/thumbnail.png and b/thumbnail.png differ diff --git a/thumbnail.xcf b/thumbnail.xcf index 6dd1f09..765daeb 100644 Binary files a/thumbnail.xcf and b/thumbnail.xcf differ diff --git a/tungsten-compressed.lua b/tungsten-compressed.lua index fcbae24..498e84c 100644 --- a/tungsten-compressed.lua +++ b/tungsten-compressed.lua @@ -24,7 +24,7 @@ if simpleCompress then tungstenRecipe.results = { {type="item", name = "tungsten-plate", amount=simpleCompress.CompressedSmeltAmount}, } - tungstenRecipe.icons = {{ icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 64 }} + tungstenRecipe.icons = {{ icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 128 }} tungstenRecipe.subgroup = "raw-material" tungstenRecipe.order = "d[tungsten-plate]" end diff --git a/tungsten-enriched.lua b/tungsten-enriched.lua index fddc205..9c6341a 100644 --- a/tungsten-enriched.lua +++ b/tungsten-enriched.lua @@ -55,7 +55,7 @@ data:extend({ name = "enriched-tungsten-plate", icons = { - { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 64, icon_mipmaps = 3, }, + { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 128, icon_mipmaps = 3, }, { icon = "__bztungsten__/graphics/icons/enriched-tungsten.png", icon_size = 64, scale=0.25, shift= {-8, -8}}, }, category = "smelting", diff --git a/tungsten-ore.lua b/tungsten-ore.lua index 2e91014..4923624 100644 --- a/tungsten-ore.lua +++ b/tungsten-ore.lua @@ -44,7 +44,7 @@ data:extend({ order = "b-z", base_density = 4, has_starting_area_placement = false, - regular_rq_factor_multiplier = 1.0 + regular_rq_factor_multiplier = 1.2 }, stage_counts = {15000, 9500, 5500, 2900, 1300, 400, 150, 80}, diff --git a/tungsten-recipe-final-stacking.lua b/tungsten-recipe-final-stacking.lua index ce1cee1..831b88d 100644 --- a/tungsten-recipe-final-stacking.lua +++ b/tungsten-recipe-final-stacking.lua @@ -4,7 +4,7 @@ local util = require("__bztungsten__.tungsten-util"); if deadlock then deadlock.add_stack("tungsten-ore", "__bztungsten__/graphics/icons/stacked/tungsten-ore-stacked.png", "deadlock-stacking-2", 64) - deadlock.add_stack("tungsten-plate", "__bztungsten__/graphics/icons/stacked/tungsten-plate-stacked.png" , "deadlock-stacking-2", 64) + deadlock.add_stack("tungsten-plate", "__bztungsten__/graphics/icons/stacked/tungsten-plate-stacked.png" , "deadlock-stacking-2", 128) deadlock.add_stack("tungsten-carbide", "__bztungsten__/graphics/icons/stacked/tungsten-carbide-stacked.png" , "deadlock-stacking-2", 128) deadlock.add_stack("rocket-engine-nozzle", "__bztungsten__/graphics/icons/stacked/rocket-engine-nozzle-stacked.png" , "deadlock-stacking-2", 128) if mods["Krastorio2"] then diff --git a/tungsten-recipe-se.lua b/tungsten-recipe-se.lua index 4f32344..243d7b5 100644 --- a/tungsten-recipe-se.lua +++ b/tungsten-recipe-se.lua @@ -24,7 +24,7 @@ if mods["space-exploration"] then }, icons = { - { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 64, icon_mipmaps = 3 }, + { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 128, icon_mipmaps = 3 }, { icon = "__space-exploration-graphics__/graphics/icons/vulcanite-block.png", icon_size = 64, scale=0.25, shift= {-10, -10}}, }, }, @@ -53,7 +53,7 @@ if mods["space-exploration"] then }, icons = { - { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 64, icon_mipmaps = 3,}, + { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 128, icon_mipmaps = 3,}, { icon = "__space-exploration-graphics__/graphics/icons/vulcanite-block.png", icon_size = 64, scale=0.25, shift= {-10, -10}}, }, }, diff --git a/tungsten-recipe-updates.lua b/tungsten-recipe-updates.lua index 2134252..c2509ce 100644 --- a/tungsten-recipe-updates.lua +++ b/tungsten-recipe-updates.lua @@ -223,6 +223,10 @@ util.add_ingredient("tiny-electric-mining-drill-1", "tungsten-carbide", 1) util.add_ingredient("tiny-electric-mining-drill-3", "tungsten-carbide", 2) util.add_ingredient("tiny-electric-mining-drill-5", "tungsten-carbide", 3) +-- TA Miners +util.add_ingredient("crust_extractor", "tungsten-carbide", 50) +util.add_ingredient("moho_extractor", "tungsten-carbide", 50) +util.add_ingredient("mantle_extractor", "tungsten-carbide", 100) -- other mining drills util.add_ingredient("electric-mining-drill-lv2", "tungsten-carbide", 5) @@ -232,6 +236,12 @@ util.add_ingredient("passive-furnace", "tungsten-carbide", 2) util.add_ingredient("quarry-mk3", "tungsten-carbide", 20) +-- Geothermal +util.replace_some_ingredient("geothermal-heat-exchanger", "copper-plate", 120, "tungsten-plate", 120) + +-- FastFurnaces +util.replace_some_ingredient("reika-fast-electric-mining-drill", "steel-plate", 10, "tungsten-carbide", 10) + -- Asteroid mining diff --git a/tungsten-recipe.lua b/tungsten-recipe.lua index b846cc1..c14b105 100644 --- a/tungsten-recipe.lua +++ b/tungsten-recipe.lua @@ -15,10 +15,10 @@ data:extend( order = "d[tungsten-plate]", icons = (mods["Krastorio2"] and { - { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 64, icon_mipmaps = 3, }, - { icon = "__bztungsten__/graphics/icons/tungsten-ore.png", icon_size = 64, icon_mipmaps = 3, scale=0.25, shift= {-8, -8}}, + { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 128, icon_mipmaps = 3, }, + { icon = "__bztungsten__/graphics/icons/tungsten-ore.png", icon_size = 128, icon_mipmaps = 3, scale=0.25, shift= {-8, -8}}, } or { - { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 64, icon_mipmaps = 3, }, + { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 128, icon_mipmaps = 3, }, } ), normal = (mods["Krastorio2"] and @@ -47,7 +47,7 @@ data:extend( type = "item", name = util.tungsten_plate, icon = "__bztungsten__/graphics/icons/tungsten-plate.png", - icon_size = 64, icon_mipmaps = 3, + icon_size = 128, icon_mipmaps = 3, subgroup = "raw-material", order = "b[tungsten-plate]", stack_size = util.get_stack_size(100) @@ -88,7 +88,7 @@ data:extend( mods["TheBigFurnace"] and { type = "recipe", name = "big-tungsten-plate", - icons = { { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 64 }, }, + icons = { { icon = "__bztungsten__/graphics/icons/tungsten-plate.png", icon_size = 128 }, }, subgroup = "raw-material", category = "big-smelting", order = "d[tungsten-plate]",