Compare commits

...

2 commits

Author SHA1 Message Date
msmods
776584841c Enhances icon for bronze-spring recipe
Adds a little bronze plate icon to the top left of the bronze-spring icon.
2025-12-12 02:07:14 -05:00
msmods
2ad5a16998 Fix recipe name for bronze-spring
Fixes the name of the bronze spring recipe, reverting a previous attempt.
2025-12-12 02:06:20 -05:00
2 changed files with 9 additions and 1 deletions

View file

@ -54,6 +54,7 @@ aluminium-hydroxide-smelting=Aluminium hydroxide smelting
sodium-hydroxide-reaction=Sodium hydroxide reaction sodium-hydroxide-reaction=Sodium hydroxide reaction
silica-extraction=Silica extraction silica-extraction=Silica extraction
sodium-aluminate=Sodium aluminate sodium-aluminate=Sodium aluminate
bronze-spring=Spring (Bronze)
slag=slag slag=slag
iron-extraction=Iron extraction iron-extraction=Iron extraction

View file

@ -200,9 +200,16 @@ data:extend({
{ {
type = "recipe", type = "recipe",
name = "bronze-spring", name = "bronze-spring",
localised_name = { "item-name.bronze-spring" },
category = "crafting", category = "crafting",
order = "s2[spring]", order = "s2[spring]",
icons = (mods["bztin2"] and
{
{ icon = "__IntermediatesForYou2__/graphics/icons/spring.png", icon_size = 64 },
{ icon = "__bztin2__/graphics/icons/bronze-plate.png", icon_size = 128, scale = 0.125, shift = { -8, -8 } },
} or {
{ icon = "__IntermediatesForYou2__/graphics/icons/spring.png", icon_size = 128 }
}
),
enabled = false, enabled = false,
energy_required = 2, energy_required = 2,
ingredients = {{type="item", name="bronze-plate", amount=1}}, ingredients = {{type="item", name="bronze-plate", amount=1}},