A minetest mod that adds vertical magma conduits to mapgen
Go to file
2018-12-26 01:08:27 -07:00
locale add doc support, remove height settings on account of issue #7364 2018-05-22 00:27:28 -06:00
textures add heating of adjacent rock 2018-05-18 01:39:19 -06:00
.gitignore Initial commit 2017-04-08 20:02:59 -06:00
config.lua improve findvolcano command 2018-12-25 22:25:26 -07:00
cook_soil.lua generalizing the heating/cooling ABM 2018-11-20 22:49:44 -07:00
depends.txt add doc support, remove height settings on account of issue #7364 2018-05-22 00:27:28 -06:00
description.txt cosmetic tweaks, slight change to default slope range 2018-11-09 00:32:44 -07:00
hot_rock.lua very strange, abms don't seem to be updating node groups somehow. 2018-12-11 22:42:39 -07:00
init.lua more volcano options, also add soil cooking 2018-11-08 23:08:48 -07:00
intllib.lua add heating of adjacent rock 2018-05-18 01:39:19 -06:00
LICENSE.txt add obsidian_lining option, clean up mapgen code 2018-05-12 17:03:43 -06:00
magma_veins.lua remove the lava cutoff setting, no longer needed now that veins are fixed 2018-12-25 18:20:49 -07:00
mod.conf Initial commit 2017-04-08 20:16:07 -06:00
README.md generalizing the heating/cooling ABM 2018-11-20 22:49:44 -07:00
screenshot.png cosmetic tweaks, slight change to default slope range 2018-11-09 00:32:44 -07:00
settingtypes.txt improve findvolcano command 2018-12-25 22:25:26 -07:00
volcano_lava.lua using the same solution for v7 mapgen bug as for the lava crash 2018-12-25 23:25:14 -07:00
volcanoes.lua extinct volcano lava depth wasn't working right either 2018-12-26 01:08:27 -07:00
voxelarea_iterator.lua add obsidian_lining option, clean up mapgen code 2018-05-12 17:03:43 -06:00

This mapgen mod modifies how lava is distributed and how lava interacts with neighboring nodes in a variety of ways. Its various features can be enabled or disabled independently via configuration settings.

This mod makes magma more sparsely distributed across the map, but where it is found it will be available in massive quantities. Using this mod in conjunction with the dynamic_liquid mod can result in !!fun!! lava flows when caves intersect with magma conduits.

Lava interaction with adjacent nodes

This mod provides an ABM that causes some types of nodes adjacent to lava to slowly convert into glowing "hot" forms, and then back to cool forms again if the lava goes away. Stone is converted into hot cobble and obsidian converts to a glowing red form.

Other mods can hook into this ABM by adding the following to node definitions:

group:lava_heatable
_magma_conduits_heats_to = hot node name

and

group:lava_heated
_magma_conduits_cools_to = cool node name

so for example default:stone is added to the lava_heatable group and given _magma_conduits_heats_to = "magma_conduits:hot_cobble" and magma_conduits:hot_cobble is in the lava_heated group and is given _magma_conduits_cools_to = "default:cobble".

Also included is an ABM that causes soil adjacent to lava to be cooked into barren sand.

Magma veins

Magma veins are magma-filled conduits that thread through the ground somewhat like a cave system. The veins have a bias toward vertical orientation but can curve and twist in any direction.

Magma veins can be optionally be lined with a layer of obsidian. The density of vein generation is configurable.

Volcanoes

Volcanoes are large cone-shaped mountains formed from magma that rises through a central vertical pipe. This mod can scatter randomly sized and shaped volcanoes across the map, with configurable spacing and probability. Volcanoes come in "extinct", "dormant" and "active" forms, and tall volcanoes can have a mantle of snow clinging to their peaks.

If a player has the "findvolcano" priviledge he can use the "findvolcano" console command to locate nearby volcanoes.