updated filter icons

This commit is contained in:
Joey De Pauw 2019-10-07 20:10:54 +02:00
parent ad19689b3d
commit 3054712b19
19 changed files with 35 additions and 15 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -5,8 +5,11 @@ air-filter-machine-3=Air filter machine 3
[item-name] [item-name]
expendable-air-filter=Expendable air FIlter expendable-air-filter=Expendable air FIlter
unused-air-filter=Unused air filter air-filter=Air filter
used-air-filter=Used air filter used-air-filter=Used air filter
liquid-filter=Liquid filter
used-liquid-filter=Used liquid filter
[fluid-name] [fluid-name]
pollution=Pollution pollution=Pollution

View File

@ -51,8 +51,8 @@ data:extend({
}, },
{ {
type = "item", type = "item",
name = "unused-air-filter", name = "air-filter",
icon = "__better-air-filtering__/graphics/icons/unused-air-filter.png", icon = "__better-air-filtering__/graphics/icons/air-filter.png",
icon_size = 32, icon_size = 32,
flags = {}, flags = {},
subgroup = "raw-material", subgroup = "raw-material",
@ -65,7 +65,14 @@ data:extend({
{ {
type = "item", type = "item",
name = "used-air-filter", name = "used-air-filter",
icon = "__better-air-filtering__/graphics/icons/used-air-filter.png", icons = {
{
icon = "__better-air-filtering__/graphics/icons/air-filter.png"
},
{
icon = "__better-air-filtering__/graphics/icons/used-air-filter-mask.png",
},
},
icon_size = 32, icon_size = 32,
flags = {}, flags = {},
subgroup = "raw-material", subgroup = "raw-material",
@ -74,8 +81,8 @@ data:extend({
}, },
{ {
type = "item", type = "item",
name = "unused-liquid-filter", name = "liquid-filter",
icon = "__better-air-filtering__/graphics/icons/unused-liquid-filter.png", icon = "__better-air-filtering__/graphics/icons/liquid-filter.png",
icon_size = 32, icon_size = 32,
flags = {}, flags = {},
subgroup = "raw-material", subgroup = "raw-material",
@ -85,7 +92,14 @@ data:extend({
{ {
type = "item", type = "item",
name = "used-liquid-filter", name = "used-liquid-filter",
icon = "__better-air-filtering__/graphics/icons/used-liquid-filter.png", icons = {
{
icon = "__better-air-filtering__/graphics/icons/liquid-filter.png"
},
{
icon = "__better-air-filtering__/graphics/icons/used-liquid-filter-mask.png",
},
},
icon_size = 32, icon_size = 32,
flags = {}, flags = {},
subgroup = "raw-material", subgroup = "raw-material",

View File

@ -61,10 +61,10 @@ data:extend({
}, },
{ {
type = "recipe", type = "recipe",
name = "unused-air-filter", name = "air-filter",
category = "crafting", category = "crafting",
subgroup = "raw-material", subgroup = "raw-material",
order = "f[plastic-bar]-f[unused-air-filter]", order = "f[plastic-bar]-f[air-filter]",
energy_required = 5, energy_required = 5,
enabled = "false", enabled = "false",
ingredients = ingredients =
@ -73,7 +73,7 @@ data:extend({
{ "plastic-bar", 4 }, { "plastic-bar", 4 },
{ "steel-plate", 2 } { "steel-plate", 2 }
}, },
result = "unused-air-filter" result = "air-filter"
}, },
{ {
type = "recipe", type = "recipe",
@ -124,7 +124,7 @@ data:extend({
ingredients = ingredients =
{ {
{ type = "fluid", name = "pollution", amount = 20, fluidbox_index = 1 }, { type = "fluid", name = "pollution", amount = 20, fluidbox_index = 1 },
{ type = "item", name = "unused-air-filter", amount = 1 }, { type = "item", name = "air-filter", amount = 1 },
}, },
results = { { type = "item", name = "used-air-filter", amount = 1 } } results = { { type = "item", name = "used-air-filter", amount = 1 } }
}, },
@ -149,7 +149,10 @@ data:extend({
name = "air-filter-recycling", name = "air-filter-recycling",
icons = { icons = {
{ {
icon = "__better-air-filtering__/graphics/icons/used-air-filter.png" icon = "__better-air-filtering__/graphics/icons/air-filter.png"
},
{
icon = "__better-air-filtering__/graphics/icons/used-air-filter-mask.png",
}, },
{ {
icon = "__better-air-filtering__/graphics/icons/recipe/recycle.png", icon = "__better-air-filtering__/graphics/icons/recipe/recycle.png",
@ -160,7 +163,7 @@ data:extend({
icon_size = 32, icon_size = 32,
category = "crafting", category = "crafting",
subgroup = "raw-material", subgroup = "raw-material",
order = "f[unused-air-filter]-f[air-filter-recycling]", order = "f[air-filter]-f[air-filter-recycling]",
energy_required = 5, energy_required = 5,
enabled = "false", enabled = "false",
ingredients = ingredients =
@ -168,6 +171,6 @@ data:extend({
{ "used-air-filter", 1 }, { "used-air-filter", 1 },
{ "coal", 5 } { "coal", 5 }
}, },
result = "unused-air-filter" result = "air-filter"
} }
}) })

View File

@ -17,7 +17,7 @@ data:extend({
}, },
{ {
type = "unlock-recipe", type = "unlock-recipe",
recipe = "unused-air-filter" recipe = "air-filter"
} }
}, },
unit = unit =

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB