mirror of
https://github.com/mt-mods/basic_materials.git
synced 2024-11-12 05:20:35 +01:00
Merge branch 'master' into 'master'
german translation , finetune brass crafting See merge request VanessaE/basic_materials!3
This commit is contained in:
commit
97e2bd7fb8
33
locale/basic_materials.de.tr
Normal file
33
locale/basic_materials.de.tr
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# textdomain: basic_materials
|
||||||
|
Silicon lump=Silikonklumpen
|
||||||
|
Simple Integrated Circuit=einfacher Integrierter Schaltkreis
|
||||||
|
Simple Motor=einfacher Motor
|
||||||
|
Heating element=Heizelement
|
||||||
|
Simple energy crystal=einfacher Energiekristall
|
||||||
|
|
||||||
|
Spool of steel wire=Spule mit Stahldraht
|
||||||
|
Spool of copper wire=Spule mit Kupferdraht
|
||||||
|
Spool of silver wire=Spule mit Silberdraht
|
||||||
|
Spool of gold wire=Spule mit Golddraht
|
||||||
|
Steel Strip=Stahlstreifen
|
||||||
|
Copper Strip=Kupferstreifen
|
||||||
|
Steel Bar=Stahlstab
|
||||||
|
Chainlinks (brass)=Messing-Kettenglieder
|
||||||
|
Chainlinks (steel)=Stahl-Kettenglieder
|
||||||
|
Brass Ingot=Messingbarren
|
||||||
|
Steel gear=Stahlzahnrad
|
||||||
|
Padlock=Vorhängeschloss
|
||||||
|
Chain (steel, hanging)=Stahlkette
|
||||||
|
Chain (brass, hanging)=Messingkette
|
||||||
|
Brass Block=Messingblock
|
||||||
|
|
||||||
|
Oil extract=raffiniertes Öl
|
||||||
|
Unprocessed paraffin=unbearbeitetes Paraffin
|
||||||
|
Uncooked Terracotta Base=ungebranntes Terrakotta
|
||||||
|
Wet Cement=nasser Zement
|
||||||
|
Cement=Zement
|
||||||
|
Concrete Block=Betonblock
|
||||||
|
|
||||||
|
Plastic sheet=Kunststoffplatte
|
||||||
|
Plastic strips=Kunststoffstreifen
|
||||||
|
Empty wire spool=leere Drahtspule
|
12
metals.lua
12
metals.lua
|
@ -245,6 +245,18 @@ minetest.register_craft( {
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if not minetest.get_modpath("moreores") then
|
||||||
|
-- Without moreores, there still should be a way to create brass.
|
||||||
|
minetest.register_craft( {
|
||||||
|
output = "basic_materials:brass_ingot 9",
|
||||||
|
recipe = {
|
||||||
|
{"default:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
|
||||||
|
{"default:gold_ingot", "default:copper_ingot", "default:gold_ingot"},
|
||||||
|
{"default:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "basic_materials:brass_ingot 9",
|
output = "basic_materials:brass_ingot 9",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user