summaryrefslogtreecommitdiff
path: root/moreores/mg.lua
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 /moreores/mg.lua
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 'moreores/mg.lua')
-rw-r--r--moreores/mg.lua53
1 files changed, 53 insertions, 0 deletions
diff --git a/moreores/mg.lua b/moreores/mg.lua
new file mode 100644
index 0000000..e323b74
--- /dev/null
+++ b/moreores/mg.lua
@@ -0,0 +1,53 @@
+--[[
+More Ores: `mg` mod support
+
+Copyright (c) 2011-2015 Calinou and contributors.
+Licensed under the zlib license. See LICENSE.md for more information.
+--]]
+
+mg.register_ore({
+ name = "moreores:mineral_tin",
+ wherein = "default:stone",
+ seeddiff = 8,
+ maxvdistance = 10.5,
+ maxheight = 8,
+ seglenghtn = 15,
+ seglenghtdev = 6,
+ segincln = 0,
+ segincldev = 0.6,
+ turnangle = 57,
+ forkturnangle = 57,
+ numperblock = 2
+})
+
+mg.register_ore({
+ name = "moreores:mineral_silver",
+ wherein = "default:stone",
+ seeddiff = 9,
+ maxvdistance = 10.5,
+ maxheight = -2,
+ seglenghtn = 15,
+ seglenghtdev = 6,
+ sizen = 60,
+ sizedev = 30,
+ segincln = 0,
+ segincldev = 0.6,
+ turnangle = 57,
+ forkturnangle = 57,
+ numperblock = 2
+})
+
+mg.register_ore({
+ name = "moreores:mineral_mithril",
+ wherein = "default:stone",
+ seeddiff = 10,
+ maxvdistance = 10.5,
+ maxheight = -512,
+ seglenghtn = 2,
+ seglenghtdev = 4,
+ sizen = 12,
+ sizedev = 5,
+ segincln = 0,
+ segincldev = 0.6,
+ turnangle = 57,
+})