summaryrefslogtreecommitdiff
path: root/external_legacy
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 20:02:19 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 21:09:33 -0400
commitda66780a569712c23ae4f2996cfb4608a9f9d69d (patch)
tree217556029a78bc23ad4564720afc86de97228a04 /external_legacy
parent615b22df4d423aded3613db7716943a2f389b047 (diff)
downloaddreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.tar
dreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.tar.gz
dreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.tar.bz2
dreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.tar.xz
dreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.zip
copy all standard Dreambuilder mods in from the old subgame
(exactly as last supplied there, updates to these mods will follow later)
Diffstat (limited to 'external_legacy')
-rw-r--r--external_legacy/README.txt18
-rw-r--r--external_legacy/init.lua24
2 files changed, 42 insertions, 0 deletions
diff --git a/external_legacy/README.txt b/external_legacy/README.txt
new file mode 100644
index 0000000..6451fec
--- /dev/null
+++ b/external_legacy/README.txt
@@ -0,0 +1,18 @@
+Minetest 0.4 mod: external_legacy
+=================================
+
+License of source code:
+-----------------------
+Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation; either version 2.1 of the License, or
+(at your option) any later version.
+
+http://www.gnu.org/licenses/lgpl-2.1.html
+
+License of media (textures and sounds)
+--------------------------------------
+Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)
+http://creativecommons.org/licenses/by-sa/3.0/
diff --git a/external_legacy/init.lua b/external_legacy/init.lua
new file mode 100644
index 0000000..c4d8bb0
--- /dev/null
+++ b/external_legacy/init.lua
@@ -0,0 +1,24 @@
+-- Minetest 0.4 mod: external_legacy
+-- See README.txt for licensing and other information.
+
+-- Aliases to support moreores' ores
+minetest.register_alias("moreores:mineral_gold", "default:stone_with_gold")
+minetest.register_alias("moreores:gold_block", "default:goldblock")
+minetest.register_alias("moreores:gold_lump", "default:gold_lump")
+minetest.register_alias("moreores:gold_ingot", "default:gold_ingot")
+minetest.register_alias("moreores:mineral_copper", "default:stone_with_copper")
+minetest.register_alias("moreores:copper_lump", "default:copper_lump")
+minetest.register_alias("moreores:copper_ingot", "default:copper_ingot")
+minetest.register_alias("moreores:copper_block", "default:copperblock")
+minetest.register_alias("moreores:bronze_ingot", "default:bronze_ingot")
+minetest.register_alias("moreores:bronze_block", "default:bronzeblock")
+
+-- Aliases for the diamonds mod by InfinityProject
+minetest.register_alias("diamonds:diamond_in_ground", "default:stone_with_diamond")
+minetest.register_alias("diamonds:block", "default:diamondblock")
+minetest.register_alias("diamonds:sword", "default:sword_diamond")
+minetest.register_alias("diamonds:pick", "default:pick_diamond")
+minetest.register_alias("diamonds:shovel", "default:shovel_diamond")
+minetest.register_alias("diamonds:axe", "default:axe_diamond")
+minetest.register_alias("diamonds:diamond", "default:diamond")
+minetest.register_alias("diamonds:ingot", "default:diamond")