From da66780a569712c23ae4f2996cfb4608a9f9d69d Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 1 Apr 2016 20:02:19 -0400 Subject: copy all standard Dreambuilder mods in from the old subgame (exactly as last supplied there, updates to these mods will follow later) --- display_blocks/technic.lua | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 display_blocks/technic.lua (limited to 'display_blocks/technic.lua') diff --git a/display_blocks/technic.lua b/display_blocks/technic.lua new file mode 100644 index 0000000..56adb5d --- /dev/null +++ b/display_blocks/technic.lua @@ -0,0 +1,40 @@ +if enable_display_uranium == false then + minetest.register_alias("display_blocks:uranium_dust", "technic:uranium_block") + minetest.register_alias("display_blocks:uranium_block", "technic:uranium_block") + minetest.register_alias("display_blocks:uranium_ore", "technic:mineral_uranium") +end + +if technic_uranium_new_ore_gen == true then + minetest.register_ore({ + ore_type = "scatter", + ore = "technic:mineral_uranium", + wherein = "default:stone", + clust_scarcity = 20*20*20, + clust_num_ores = 18, + clust_size = 3, + y_min = -3000, + y_max = -2000, + }) + + minetest.register_ore({ + ore_type = "scatter", + ore = "technic:mineral_uranium", + wherein = "default:stone", + clust_scarcity =30*30*30, + clust_num_ores = 40, + clust_size = 4, + y_min = -7000, + y_max = -5000, + }) +end + +if enable_technic_recipe == true then + minetest.register_craft({ + output = 'display_blocks:uranium_base 5', + recipe = { + {'', 'default:mese_crystal_fragment', ''}, + {'technic:uranium_block', 'display_blocks:empty_display', 'technic:uranium_block'}, + {'', 'technic:uranium_block', ''}, + } + }) +end -- cgit v1.2.3