summaryrefslogtreecommitdiff
path: root/technic_worldgen
diff options
context:
space:
mode:
Diffstat (limited to 'technic_worldgen')
-rw-r--r--technic_worldgen/locale/es.txt36
-rw-r--r--technic_worldgen/oregen.lua2
-rw-r--r--technic_worldgen/rubber.lua3
3 files changed, 38 insertions, 3 deletions
diff --git a/technic_worldgen/locale/es.txt b/technic_worldgen/locale/es.txt
new file mode 100644
index 0000000..a3920c2
--- /dev/null
+++ b/technic_worldgen/locale/es.txt
@@ -0,0 +1,36 @@
+# technic_worldgen traducido por Carlos Barraza
+
+###crafts.lua
+Uranium Lump = Pepita de Uranio
+Uranium Ingot = Lingote de Uranio
+Chromium Lump = Pepita de Cromo
+Chromium Ingot = Lingote de Cromo
+Zinc Lump = Pepita de Zinc
+Zinc Ingot = Lingote de Zinc
+Brass Ingot = Lingote de Latón
+Wrought Iron Ingot = Lingote de Hierro Forjado
+Cast Iron Ingot = Lingote de Hierro Fundido
+Carbon Steel Ingot = Lingote de Acero al Carbon
+Stainless Steel Ingot = Lingote de Acero inoxidable
+Iron = Lingote
+
+###nodes.lua
+Uranium Ore = Mineral de Uranio
+Chromium Ore = Mineral de Cromo
+Zinc Ore = Mineral de Zinc
+Granite = Granito
+Marble = Mármol
+Marble Bricks = Ladrillos de Mármol
+Uranium Block = Bloque de Uranio
+Chromium Block = Bloque de Cromo
+Zinc Block = Bloque de Zinc
+Wrought Iron Block = Bloque de Hierro Forjado
+Cast Iron Block = Bloque de Hierro Fundido
+Carbon Steel Block = Bloque de Acero al Carbon
+Stainless Steel Block = Bloque de Acero Inoxidable
+Brass Block = Bloque de Latón
+Wrought Iron = Hierro Forjado
+
+###rubber.lua
+Rubber Tree Sapling = Retoño de Árbol de Goma
+Rubber Tree = Árbol de Goma
diff --git a/technic_worldgen/oregen.lua b/technic_worldgen/oregen.lua
index 96a3c19..8e7af91 100644
--- a/technic_worldgen/oregen.lua
+++ b/technic_worldgen/oregen.lua
@@ -118,7 +118,7 @@ minetest.register_ore({
})
-- Sulfur
-local sulfur_buf = nil
+local sulfur_buf = {}
local sulfur_noise= nil
minetest.register_on_generated(function(minp, maxp, seed)
diff --git a/technic_worldgen/rubber.lua b/technic_worldgen/rubber.lua
index 3307b8b..11da9ca 100644
--- a/technic_worldgen/rubber.lua
+++ b/technic_worldgen/rubber.lua
@@ -10,7 +10,7 @@ minetest.register_node(":moretrees:rubber_tree_sapling", {
wield_image = "technic_rubber_sapling.png",
paramtype = "light",
walkable = false,
- groups = {dig_immediate=3, flammable=2},
+ groups = {dig_immediate=3, flammable=2, sapling=1},
sounds = default.node_sound_defaults(),
})
@@ -98,4 +98,3 @@ if technic.config:get_bool("enable_rubber_tree_generation") then
end
end)
end
-