summaryrefslogtreecommitdiff
path: root/technic_worldgen
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-06-16 18:12:21 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-06-16 18:12:21 -0400
commit75e0a665ce2a45e1158a427d3f70f854f5f4d5a8 (patch)
tree881209e2c8f7efcbce69482bc3caa19b4828e290 /technic_worldgen
parentb8cd2f723c7c9079e631d7a4078862ff47b24915 (diff)
downloaddreambuilder_modpack-75e0a665ce2a45e1158a427d3f70f854f5f4d5a8.tar
dreambuilder_modpack-75e0a665ce2a45e1158a427d3f70f854f5f4d5a8.tar.gz
dreambuilder_modpack-75e0a665ce2a45e1158a427d3f70f854f5f4d5a8.tar.bz2
dreambuilder_modpack-75e0a665ce2a45e1158a427d3f70f854f5f4d5a8.tar.xz
dreambuilder_modpack-75e0a665ce2a45e1158a427d3f70f854f5f4d5a8.zip
Updated several mods for Minetest 0.4.16
castles modpack, areas, biome_lib, blox, boost_cart, plantlife modpack caverealms, coloredwood, concrete, currency, farming redo, home decor, ilights, mesecons, moreores, pipeworks, signs_lib, technic, unified inventory unified bricks, unified dyes, worldedit, and xban2
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
-