update graphics

This commit is contained in:
Brevven 2021-05-22 04:34:51 -07:00
parent 5400e72e8a
commit 61dc7b4a79
19 changed files with 39 additions and 12 deletions

View file

@ -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:

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Before After
Before After

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Before After
Before After

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 91 KiB

Before After
Before After

View file

@ -1,6 +1,6 @@
{
"name": "bztungsten",
"version": "0.0.8",
"version": "0.0.10",
"factorio_version": "1.1",
"title": "Tungsten",
"author": "Brevven",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 39 KiB

Before After
Before After

Binary file not shown.

View file

@ -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

View file

@ -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",

View file

@ -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},

View file

@ -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

View file

@ -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}},
},
},

View file

@ -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

View file

@ -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]",