Imported from trollstream "ContentDB"

master
OldCoder 2022-09-04 22:00:50 -07:00
commit 3cbd8733c7
2 changed files with 25 additions and 0 deletions

21
init.lua Normal file
View File

@ -0,0 +1,21 @@
minetest.register_abm({
label = "lava_rain",
nodenames = {"air"},
interval = 1,
chance = 100000,
action = function(pos, node)
minetest.set_node(pos, {name="mcl_core:lava_source"})
minetest.check_single_for_falling(pos)
end
})
minetest.register_abm({
label = "water_rain",
nodenames = {"air"},
interval = 1,
chance = 100000,
action = function(pos, node)
minetest.set_node(pos, {name="mcl_core:water_source"})
minetest.check_single_for_falling(pos)
end
})

4
mod.conf Normal file
View File

@ -0,0 +1,4 @@
name = mcl_apocalypse
author = Furi0us_mat
depends = mcl_core
description = A survival challenge for Mineclone2.