Skip to content
Merged
4 changes: 2 additions & 2 deletions bobassembly/prototypes/assembly-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ if data.raw.item["bob-nitinol-alloy"] then
bobmods.lib.tech.add_prerequisite("automation-6", "bob-nitinol-processing")
end

if data.raw.item["bob-tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-assembling-machine-6", "iron-plate", "bob-tungsten-carbide")
if data.raw.item["tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-assembling-machine-6", "iron-plate", "tungsten-carbide")
bobmods.lib.tech.add_prerequisite("automation-6", "bob-tungsten-alloy-processing")
end

Expand Down
4 changes: 2 additions & 2 deletions bobassembly/prototypes/centrifuge-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ if settings.startup["bobmods-assembly-centrifuge"].value == true then
bobmods.lib.tech.add_prerequisite("bob-centrifuge-3", "bob-nitinol-processing")
end

if data.raw.item["bob-tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-centrifuge-3", "refined-concrete", "bob-tungsten-carbide")
if data.raw.item["tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-centrifuge-3", "refined-concrete", "tungsten-carbide")
bobmods.lib.tech.add_prerequisite("bob-centrifuge-3", "bob-tungsten-alloy-processing")
end

Expand Down
8 changes: 2 additions & 6 deletions bobassembly/prototypes/chemical-mixing-furnace-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,8 @@ then
bobmods.lib.tech.add_prerequisite("bob-multi-purpose-furnace-2", "bob-tungsten-alloy-processing")
end

if data.raw.item["bob-tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient(
"bob-electric-chemical-mixing-furnace-2",
"stone-brick",
"bob-tungsten-carbide"
)
if data.raw.item["tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-electric-chemical-mixing-furnace-2", "stone-brick", "tungsten-carbide")
bobmods.lib.tech.add_prerequisite("bob-multi-purpose-furnace-2", "bob-tungsten-alloy-processing")
end

Expand Down
4 changes: 2 additions & 2 deletions bobassembly/prototypes/electric-furnace-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ if settings.startup["bobmods-assembly-furnaces"].value == true and data.raw.furn
bobmods.lib.tech.add_prerequisite("advanced-material-processing-4", "bob-tungsten-alloy-processing")
end

if data.raw.item["bob-tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-electric-furnace-3", "stone-brick", "bob-tungsten-carbide")
if data.raw.item["tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-electric-furnace-3", "stone-brick", "tungsten-carbide")
bobmods.lib.tech.add_prerequisite("advanced-material-processing-4", "bob-tungsten-alloy-processing")
end

Expand Down
4 changes: 2 additions & 2 deletions bobassembly/prototypes/electrolyser-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ then
bobmods.lib.recipe.replace_ingredient("bob-electrolyser-4", "pipe", "bob-ceramic-pipe")
end

if data.raw.item["bob-tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-electrolyser-5", "plastic-bar", "bob-tungsten-carbide")
if data.raw.item["tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-electrolyser-5", "plastic-bar", "tungsten-carbide")
end

if data.raw.item["bob-nitinol-alloy"] then
Expand Down
4 changes: 2 additions & 2 deletions bobequipment/prototypes/armor-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ if not mods["bobwarfare"] then
bobmods.lib.recipe.replace_ingredient("bob-power-armor-mk4", "plastic-bar", "bob-silicon-nitride")
bobmods.lib.tech.add_prerequisite("bob-power-armor-4", "bob-ceramics")
end
if data.raw.item["bob-tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-power-armor-mk5", "steel-plate", "bob-tungsten-carbide")
if data.raw.item["tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-power-armor-mk5", "steel-plate", "tungsten-carbide")
bobmods.lib.tech.add_prerequisite("bob-power-armor-5", "bob-tungsten-alloy-processing")
end

Expand Down
4 changes: 2 additions & 2 deletions bobequipment/prototypes/recipe/updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -575,10 +575,10 @@ if data.raw.item["bob-titanium-plate"] then
bobmods.lib.tech.add_prerequisite("bob-fission-reactor-equipment-2", "bob-titanium-processing")
end

if data.raw.item["bob-tungsten-carbide"] then
if data.raw.item["tungsten-carbide"] then
bobmods.lib.recipe.add_ingredient(
"bob-fission-reactor-equipment-3",
{ type = "item", name = "bob-tungsten-carbide", amount = 80 }
{ type = "item", name = "tungsten-carbide", amount = 80 }
)
bobmods.lib.tech.add_prerequisite("bob-fission-reactor-equipment-3", "bob-tungsten-alloy-processing")
end
Expand Down
2 changes: 1 addition & 1 deletion boblogistics/prototypes/item/pipes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ if data.raw.item["bob-titanium-plate"] then
})
end

if data.raw.item["bob-tungsten-plate"] then
if data.raw.item["tungsten-plate"] then
data:extend({
{
type = "item",
Expand Down
6 changes: 3 additions & 3 deletions boblogistics/prototypes/recipe/pipes-recipe.lua
Original file line number Diff line number Diff line change
Expand Up @@ -184,14 +184,14 @@ if data.raw.item["bob-titanium-plate"] then
})
end

if data.raw.item["bob-tungsten-plate"] then
if data.raw.item["tungsten-plate"] then
data:extend({
{
type = "recipe",
name = "bob-tungsten-pipe",
enabled = false,
ingredients = {
{ type = "item", name = "bob-tungsten-plate", amount = 1 },
{ type = "item", name = "tungsten-plate", amount = 1 },
},
results = { { type = "item", name = "bob-tungsten-pipe", amount = 1 } },
},
Expand All @@ -202,7 +202,7 @@ if data.raw.item["bob-tungsten-plate"] then
enabled = false,
ingredients = {
{ type = "item", name = "bob-tungsten-pipe", amount = 16 },
{ type = "item", name = "bob-tungsten-plate", amount = 5 },
{ type = "item", name = "tungsten-plate", amount = 5 },
},
results = { { type = "item", name = "bob-tungsten-pipe-to-ground", amount = 2 } },
},
Expand Down
4 changes: 2 additions & 2 deletions boblogistics/prototypes/recipe/robots-recipe-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,10 @@ if data.raw.recipe["bob-robot-tool-construction"] then
{ type = "item", name = "bob-nitinol-bearing", amount = 1 }
)
end
if data.raw.item["bob-tungsten-carbide"] then
if data.raw.item["tungsten-carbide"] then
bobmods.lib.recipe.add_ingredient(
"bob-robot-tool-logistic-4",
{ type = "item", name = "bob-tungsten-carbide", amount = 1 }
{ type = "item", name = "tungsten-carbide", amount = 1 }
)
bobmods.lib.tech.add_prerequisite("bob-robots-3", "bob-tungsten-alloy-processing")
end
Expand Down
14 changes: 7 additions & 7 deletions boblogistics/prototypes/recipe/train-recipe-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ if settings.startup["bobmods-logistics-trains"].value == true then
bobmods.lib.recipe.replace_ingredient("bob-armoured-fluid-wagon-2", "iron-gear-wheel", "bob-titanium-gear-wheel")
end

if data.raw.item["bob-tungsten-carbide"] then
if data.raw.item["tungsten-carbide"] then
bobmods.lib.tech.add_prerequisite("bob-armoured-railway-2", "bob-tungsten-alloy-processing")
bobmods.lib.tech.add_prerequisite("bob-armoured-fluid-wagon-2", "bob-tungsten-alloy-processing")
if data.raw.item["bob-silicon-nitride"] then
bobmods.lib.recipe.remove_ingredient("bob-armoured-locomotive-2", "steel-plate")
bobmods.lib.recipe.add_ingredient(
"bob-armoured-locomotive-2",
{ type = "item", name = "bob-tungsten-carbide", amount = 15 }
{ type = "item", name = "tungsten-carbide", amount = 15 }
)
bobmods.lib.recipe.add_ingredient(
"bob-armoured-locomotive-2",
Expand All @@ -100,7 +100,7 @@ if settings.startup["bobmods-logistics-trains"].value == true then
bobmods.lib.recipe.remove_ingredient("bob-armoured-cargo-wagon-2", "steel-plate")
bobmods.lib.recipe.add_ingredient(
"bob-armoured-cargo-wagon-2",
{ type = "item", name = "bob-tungsten-carbide", amount = 15 }
{ type = "item", name = "tungsten-carbide", amount = 15 }
)
bobmods.lib.recipe.add_ingredient(
"bob-armoured-cargo-wagon-2",
Expand All @@ -110,7 +110,7 @@ if settings.startup["bobmods-logistics-trains"].value == true then
bobmods.lib.recipe.remove_ingredient("bob-armoured-fluid-wagon-2", "steel-plate")
bobmods.lib.recipe.add_ingredient(
"bob-armoured-fluid-wagon-2",
{ type = "item", name = "bob-tungsten-carbide", amount = 15 }
{ type = "item", name = "tungsten-carbide", amount = 15 }
)
bobmods.lib.recipe.add_ingredient(
"bob-armoured-fluid-wagon-2",
Expand All @@ -120,9 +120,9 @@ if settings.startup["bobmods-logistics-trains"].value == true then
bobmods.lib.tech.add_prerequisite("bob-armoured-railway-2", "bob-ceramics")
bobmods.lib.tech.add_prerequisite("bob-armoured-fluid-wagon-2", "bob-ceramics")
else
bobmods.lib.recipe.replace_ingredient("bob-armoured-locomotive-2", "steel-plate", "bob-tungsten-carbide")
bobmods.lib.recipe.replace_ingredient("bob-armoured-cargo-wagon-2", "steel-plate", "bob-tungsten-carbide")
bobmods.lib.recipe.replace_ingredient("bob-armoured-fluid-wagon-2", "steel-plate", "bob-tungsten-carbide")
bobmods.lib.recipe.replace_ingredient("bob-armoured-locomotive-2", "steel-plate", "tungsten-carbide")
bobmods.lib.recipe.replace_ingredient("bob-armoured-cargo-wagon-2", "steel-plate", "tungsten-carbide")
bobmods.lib.recipe.replace_ingredient("bob-armoured-fluid-wagon-2", "steel-plate", "tungsten-carbide")
end
else
if data.raw.item["bob-silicon-nitride"] then
Expand Down
4 changes: 2 additions & 2 deletions boblogistics/prototypes/repair-pack-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if data.raw.item["bob-advanced-processing-unit"] then
bobmods.lib.tech.add_prerequisite("bob-repair-pack-5", "bob-advanced-processing-unit")
end

if data.raw.item["bob-tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-repair-pack-5", "steel-plate", "bob-tungsten-carbide")
if data.raw.item["tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-repair-pack-5", "steel-plate", "tungsten-carbide")
bobmods.lib.tech.add_prerequisite("bob-repair-pack-5", "bob-tungsten-alloy-processing")
end
4 changes: 2 additions & 2 deletions bobmining/prototypes/areadrill-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ if settings.startup["bobmods-mining-areadrills"].value == true then
bobmods.lib.tech.add_prerequisite("bob-area-drills-4", "bob-advanced-processing-unit")
end

if data.raw.item["bob-tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-area-mining-drill-4", "steel-plate", "bob-tungsten-carbide")
if data.raw.item["tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-area-mining-drill-4", "steel-plate", "tungsten-carbide")
bobmods.lib.tech.add_prerequisite("bob-area-drills-4", "bob-tungsten-alloy-processing")
end

Expand Down
2 changes: 1 addition & 1 deletion bobmining/prototypes/axes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ if settings.startup["bobmods-mining-miningaxes"].value == true then
},
},
prerequisites = { "bob-steel-axe-3", "bob-tungsten-processing" },
research_trigger = { type = "craft-item", item = "bob-tungsten-plate", count = 50 },
research_trigger = { type = "craft-item", item = "tungsten-plate", count = 50 },
upgrade = true,
},
{
Expand Down
4 changes: 2 additions & 2 deletions bobmining/prototypes/drill-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ if settings.startup["bobmods-mining-miningdrills"].value == true then
bobmods.lib.tech.add_prerequisite("bob-drills-5", "bob-advanced-processing-unit")
end

if data.raw.item["bob-tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-mining-drill-4", "steel-plate", "bob-tungsten-carbide")
if data.raw.item["tungsten-carbide"] then
bobmods.lib.recipe.replace_ingredient("bob-mining-drill-4", "steel-plate", "tungsten-carbide")
bobmods.lib.tech.add_prerequisite("bob-drills-5", "bob-tungsten-alloy-processing")
end

Expand Down
2 changes: 2 additions & 0 deletions bobores/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 2.0.4
Date: ???
Changes:
- Set item weights #553
- Combined Bob's Tungsten and Space Age's Tungsten #579
---------------------------------------------------------------------------------------------------
Version: 2.0.3
Date: 15. 01. 2026
Expand Down
2 changes: 1 addition & 1 deletion bobores/control.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ remote.add_interface("bobores", {
regenerate_entity("bob-gold-ore")
regenerate_entity("bob-bauxite-ore")
regenerate_entity("bob-rutile-ore")
regenerate_entity("bob-tungsten-ore")
regenerate_entity("tungsten-ore")

regenerate_entity("bob-nickel-ore")
regenerate_entity("bob-cobalt-ore")
Expand Down
6 changes: 6 additions & 0 deletions bobores/data-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -139,3 +139,9 @@ data.raw.item["stone"].subgroup = "bob-ores"
data.raw.item["iron-ore"].subgroup = "bob-ores"
data.raw.item["copper-ore"].subgroup = "bob-ores"
data.raw.item["uranium-ore"].subgroup = "bob-ores"

if mods["space-age"] then
data.raw.item["calcite"].subgroup = "bob-ores"
data.raw.item["holmium-ore"].subgroup = "bob-ores"
data.raw.item["tungsten-ore"].subgroup = "bob-ores"
end
2 changes: 1 addition & 1 deletion bobores/locale/cs/bobores.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bob-gold-ore=Zlatá ruda
bob-lead-ore=Galenit (Olovo)
bob-silver-ore=Stříbrná ruda
bob-tin-ore=Cínová ruda
bob-tungsten-ore=Wolframová ruda
tungsten-ore=Wolframová ruda
bob-zinc-ore=Zinková ruda
bob-bauxite-ore=Bauxit (Hliníková ruda)
bob-rutile-ore=Rutil (Titanová ruda)
Expand Down
6 changes: 3 additions & 3 deletions bobores/locale/de/bobores.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bob-gold-ore=Golderz
bob-lead-ore=Galenit (Bleierz)
bob-silver-ore=Silbererz
bob-tin-ore=Zinnerz
bob-tungsten-ore=Wolframerz
tungsten-ore=Wolframerz
bob-zinc-ore=Zinkerz
bob-bauxite-ore=Bauxit (Aluminiumerz)
bob-rutile-ore=Rutil (Titanerz)
Expand All @@ -20,7 +20,7 @@ bob-gold-ore=__ENTITY__bob-gold-ore__
bob-lead-ore=__ENTITY__bob-lead-ore__
bob-silver-ore=__ENTITY__bob-silver-ore__
bob-tin-ore=__ENTITY__bob-tin-ore__
bob-tungsten-ore=__ENTITY__bob-tungsten-ore__
tungsten-ore=__ENTITY__bob-tungsten-ore__
bob-zinc-ore=__ENTITY__bob-zinc-ore__
bob-bauxite-ore=__ENTITY__bob-bauxite-ore__
bob-rutile-ore=__ENTITY__bob-rutile-ore__
Expand Down Expand Up @@ -48,7 +48,7 @@ bob-gold-ore=__ENTITY__bob-gold-ore__
bob-lead-ore=__ENTITY__bob-lead-ore__
bob-silver-ore=__ENTITY__bob-silver-ore__
bob-tin-ore=__ENTITY__bob-tin-ore__
bob-tungsten-ore=__ENTITY__bob-tungsten-ore__
tungsten-ore=__ENTITY__bob-tungsten-ore__
bob-zinc-ore=__ENTITY__bob-zinc-ore__
bob-bauxite-ore=__ENTITY__bob-bauxite-ore__
bob-rutile-ore=__ENTITY__bob-rutile-ore__
Expand Down
6 changes: 3 additions & 3 deletions bobores/locale/en/bobores.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bob-gold-ore=Gold ore
bob-lead-ore=Galena (Lead ore)
bob-silver-ore=Silver ore
bob-tin-ore=Tin ore
bob-tungsten-ore=Tungsten ore
tungsten-ore=Tungsten ore
bob-zinc-ore=Zinc ore
bob-bauxite-ore=Bauxite (Aluminium ore)
bob-rutile-ore=Rutile (Titanium ore)
Expand All @@ -20,7 +20,7 @@ bob-gold-ore=__ENTITY__bob-gold-ore__
bob-lead-ore=__ENTITY__bob-lead-ore__
bob-silver-ore=__ENTITY__bob-silver-ore__
bob-tin-ore=__ENTITY__bob-tin-ore__
bob-tungsten-ore=__ENTITY__bob-tungsten-ore__
tungsten-ore=__ENTITY__bob-tungsten-ore__
bob-zinc-ore=__ENTITY__bob-zinc-ore__
bob-bauxite-ore=__ENTITY__bob-bauxite-ore__
bob-rutile-ore=__ENTITY__bob-rutile-ore__
Expand Down Expand Up @@ -48,7 +48,7 @@ bob-gold-ore=__ENTITY__bob-gold-ore__
bob-lead-ore=__ENTITY__bob-lead-ore__
bob-silver-ore=__ENTITY__bob-silver-ore__
bob-tin-ore=__ENTITY__bob-tin-ore__
bob-tungsten-ore=__ENTITY__bob-tungsten-ore__
tungsten-ore=__ENTITY__bob-tungsten-ore__
bob-zinc-ore=__ENTITY__bob-zinc-ore__
bob-bauxite-ore=__ENTITY__bob-bauxite-ore__
bob-rutile-ore=__ENTITY__bob-rutile-ore__
Expand Down
2 changes: 1 addition & 1 deletion bobores/locale/es-ES/bobores.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bob-gold-ore=Mena de oro
bob-lead-ore=Galena (Mena de plomo)
bob-silver-ore=Mena de plata
bob-tin-ore=Mena de estaño
bob-tungsten-ore=Mena de tungsteno
tungsten-ore=Mena de tungsteno
bob-zinc-ore=Mena de zinc
bob-bauxite-ore=Bauxita (Mena de aluminio)ee
bob-rutile-ore=Rutilo (Mena de titanio)
Expand Down
2 changes: 1 addition & 1 deletion bobores/locale/fr/bobores.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bob-gold-ore=Minerai d'or
bob-lead-ore=Galène (Minerai de plomb)
bob-silver-ore=Minerai d'argent
bob-tin-ore=Cassitérite (Minerai d'étain)
bob-tungsten-ore=Minerai de tungstène
tungsten-ore=Minerai de tungstène
bob-zinc-ore=Minerai de zinc
bob-bauxite-ore=Bauxite (Minerai d'aluminium)
bob-rutile-ore=Rutile (Minerai de titane)
Expand Down
2 changes: 1 addition & 1 deletion bobores/locale/it/bobores.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bob-gold-ore=Oro
bob-lead-ore=Piombo
bob-silver-ore=Argento
bob-tin-ore=Stagno
bob-tungsten-ore=Tungsteno
tungsten-ore=Tungsteno
bob-zinc-ore=Zinco
bob-bauxite-ore=Bauxite (Alluminio)
bob-rutile-ore=Rutilo (Titanio)
Expand Down
2 changes: 1 addition & 1 deletion bobores/locale/ja/bobores.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bob-gold-ore=金鉱石
bob-lead-ore=鉛鉱石
bob-silver-ore=銀鉱石
bob-tin-ore=錫鉱石
bob-tungsten-ore=タングステン鉱石
tungsten-ore=タングステン鉱石
bob-zinc-ore=亜鉛鉱石
bob-bauxite-ore=アルミニウム鉱石
bob-rutile-ore=チタニウム鉱石
Expand Down
2 changes: 1 addition & 1 deletion bobores/locale/ko/bobores.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ bob-gold-ore=금 광석
bob-lead-ore=납 광석
bob-silver-ore=은 광석
bob-tin-ore=주석 광석
bob-tungsten-ore=텅스텐 광석
tungsten-ore=텅스텐 광석
bob-zinc-ore=아연 광석
bob-bauxite-ore=알루미늄 광석
bob-rutile-ore=티타늄 광석
Expand Down
2 changes: 1 addition & 1 deletion bobores/locale/nl/bobores.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bob-gold-ore=Gouderts
bob-lead-ore=Galeniet (Looderts)
bob-silver-ore=Zilvererts
bob-tin-ore=Tinerts
bob-tungsten-ore=Wolfraamerts
tungsten-ore=Wolfraamerts
bob-zinc-ore=Zinkerts
bob-bauxite-ore=Bauxiet (Aluminiumerts)
bob-rutile-ore=Rutiel (Titaniumerts)
Expand Down
2 changes: 1 addition & 1 deletion bobores/locale/pl/bobores.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bob-gold-ore=Ruda złota
bob-lead-ore=Galena (Ruda ołowiu)
bob-silver-ore=Ruda srebra
bob-tin-ore=Ruda cyny
bob-tungsten-ore=Ruda wolframu
tungsten-ore=Ruda wolframu
bob-zinc-ore=Ruda cynku
bob-bauxite-ore=Boksyt (Ruda aluminium)
bob-rutile-ore=Tytanit (Ruda tytanu)
Expand Down
2 changes: 1 addition & 1 deletion bobores/locale/pt-BR/bobores.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bob-gold-ore=Minério de ouro
bob-lead-ore=Galena (Minério de chumbo)
bob-silver-ore=Minério de prata
bob-tin-ore=Minério de estanho
bob-tungsten-ore=Minério de tungstênio
tungsten-ore=Minério de tungstênio
bob-zinc-ore=Minério de zinco
bob-bauxite-ore=Bauxita (Minério de alumínio)
bob-rutile-ore=Rutilo (Minério de titânio)
Expand Down
Loading
Loading