Compare commits

..

5 Commits

Author SHA1 Message Date
AndrejIT 137eca7275 Moderm mod config file 2021-08-24 10:40:06 +03:00
AndrejIT 78f0de7572 Add screenshoot 2021-08-08 20:05:22 +03:00
AndrejIT 6f51373f09 Disable killme command to prevent freebie resources 2021-08-08 19:58:05 +03:00
AndrejIT 9c7669637f Create init.lua 2015-02-11 22:32:05 +02:00
AndrejIT d630b81ddc Create depends.txt 2015-02-11 22:30:45 +02:00
5 changed files with 51 additions and 0 deletions

0
LICENSE Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

47
init.lua Executable file
View File

@ -0,0 +1,47 @@
-- Minetest 0.4 mod: bone_collector
-- Bones can be crafted to clay, sand or coal to motivate players clear the playground.
--
-- See README.txt for licensing and other information.
minetest.chatcommands["killme"] = nil
minetest.register_craft({
output = 'default:clay_lump',
recipe = {
{"bones:bones", "", ""},
{"", "", ""},
{"", "", ""},
},
})
minetest.register_craft({
output = 'default:gravel',
recipe = {
{"", "", ""},
{"", "", ""},
{"bones:bones", "bones:bones", "bones:bones"},
},
})
minetest.register_craft({
output = 'default:sand',
recipe = {
{"bones:bones", "", "bones:bones"},
{"", "bones:bones", ""},
{"bones:bones", "", "bones:bones"},
},
})
minetest.register_craft({
output = 'default:coal_lump',
recipe = {
{"", "bones:bones", ""},
{"bones:bones", "bones:bones", "bones:bones"},
{"", "bones:bones", ""},
},
})
minetest.register_craft({
output = 'default:dirt',
recipe = {
{"bones:bones", "bones:bones", "bones:bones"},
{"bones:bones", "bones:bones", "bones:bones"},
{"bones:bones", "bones:bones", "bones:bones"},
},
})

4
mod.conf Normal file
View File

@ -0,0 +1,4 @@
name = bone_collector
description = Use bones as resource (for baren worlds)
depends = default,bones
optional_depends = game_commands

BIN
screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB