Commit 75f42aaa authored by Milan's avatar Milan
Browse files

merge minetest-mods/moreores

parents f96a9f02 84a9198a
Loading
Loading
Loading
Loading

CHANGELOG.md

0 → 100644
+10 −0
Original line number Diff line number Diff line
# Change Log

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.0.0] - 2017-02-19

- Initial versioned release.
 No newline at end of file

CONTRIBUTING.md

0 → 100644
+10 −0
Original line number Diff line number Diff line
# Contribution Guide

Thank you for your interest in this mod! Before contributing, be sure to know
about these few guidelines:

- Contributions have to be under the zlib license (or compatible) for code,
  and CC BY-SA 3.0 license (or compatible) for assets.
- Make sure to update the change log, keeping the
  [change log format](http://keepachangelog.com/) we use.
- Don't bump the version yourself. Maintainers will do this when necessary.
+2 −3
Original line number Diff line number Diff line
zlib license
============
# zlib license

Copyright (c) 2011-2015 Calinou and contributors
Copyright (c) 2011-2017 Hugo Locurcio and contributors

**This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.**

+2 −3
Original line number Diff line number Diff line
More Ores
=========
# More Ores

More Ores for Minetest <http://minetest.net>, a free/libre infinite
More Ores for [Minetest](http://minetest.net), a free and open source infinite
world block sandbox game.

To install, just clone this repository into your "mods" directory.
+12 −12
Original line number Diff line number Diff line
@@ -7,21 +7,21 @@
------------------------------------------------------------------------------

-- Chunk sizes for ore generation (bigger = ore deposits are more scattered around)
moreores_tin_chunk_size = 7
moreores_silver_chunk_size = 11
moreores_mithril_chunk_size = 11
moreores.tin_chunk_size = 7
moreores.silver_chunk_size = 11
moreores.mithril_chunk_size = 11

-- Amount of ore per chunk (higher = bigger ore deposits)
moreores_tin_ore_per_chunk = 3
moreores_silver_ore_per_chunk = 4
moreores_mithril_ore_per_chunk = 1
moreores.tin_ore_per_chunk = 3
moreores.silver_ore_per_chunk = 4
moreores.mithril_ore_per_chunk = 1

-- Minimal depths of ore generation (Y coordinate, 0 being sea level by default)
moreores_tin_min_depth = -31000
moreores_silver_min_depth = -31000
moreores_mithril_min_depth = -31000
moreores.tin_min_depth = -31000
moreores.silver_min_depth = -31000
moreores.mithril_min_depth = -31000

-- Maximal depths of ore generation (Y coordinate, 0 being sea level by default)
moreores_tin_max_depth = 8
moreores_silver_max_depth = -2
moreores_mithril_max_depth = -512
moreores.tin_max_depth = 8
moreores.silver_max_depth = -2
moreores.mithril_max_depth = -512
Loading