Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
d8b32ac60f | |||
9dcaffc813 | |||
|
93ce53458f |
@@ -54,7 +54,9 @@ The Limiter can also be right-clicked to set the rate at which messages can pass
|
||||
|
||||
## Installation
|
||||
|
||||
Download the [master branch](https://github.com/OgelGames/digicontrol/archive/master.zip) or the [latest release](https://github.com/OgelGames/digicontrol/releases), or clone the repository using Git or the [GitHub Desktop](https://desktop.github.com/) app, and follow [the usual installation steps](https://dev.minetest.net/Installing_Mods).
|
||||
Download the [master branch](https://github.com/OgelGames/digicontrol/archive/master.zip) or the [latest release](https://github.com/OgelGames/digicontrol/releases), and follow [the usual installation steps](https://dev.minetest.net/Installing_Mods).
|
||||
|
||||
Alternatively, you can download and install the mod from [ContentDB](https://content.minetest.net/packages/OgelGames/digicontrol) or the online content tab in Minetest.
|
||||
|
||||
## License
|
||||
|
||||
|
72
crafts.lua
72
crafts.lua
@@ -1,72 +0,0 @@
|
||||
|
||||
local function get_craftitem(items)
|
||||
for _,item in ipairs(items) do
|
||||
if minetest.registered_items[item] then
|
||||
return item
|
||||
end
|
||||
end
|
||||
return "???"
|
||||
end
|
||||
|
||||
local digiwire = "digilines:wire_std_00000000"
|
||||
|
||||
local silicon = get_craftitem({
|
||||
"basic_materials:silicon",
|
||||
"mesecons_materials:silicon",
|
||||
"default:flint"
|
||||
})
|
||||
|
||||
local wire = get_craftitem({
|
||||
"basic_materials:steel_wire",
|
||||
"default:steel_ingot"
|
||||
})
|
||||
|
||||
local ic = get_craftitem({
|
||||
"basic_materials:ic",
|
||||
"default:mese_crystal_fragment"
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digicontrol:diode",
|
||||
recipe = {
|
||||
{"", "", ""},
|
||||
{digiwire, silicon, digiwire},
|
||||
{"", "", ""},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digicontrol:splitter",
|
||||
recipe = {
|
||||
{"", "", digiwire},
|
||||
{digiwire, silicon, ""},
|
||||
{"", "", digiwire},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digicontrol:trisplitter",
|
||||
recipe = {
|
||||
{"", "", digiwire},
|
||||
{digiwire, silicon, digiwire},
|
||||
{"", "", digiwire},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digicontrol:limiter",
|
||||
recipe = {
|
||||
{"", "", ""},
|
||||
{digiwire, wire, digiwire},
|
||||
{"", "", ""},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "digicontrol:filter",
|
||||
recipe = {
|
||||
{"", "", ""},
|
||||
{digiwire, ic, digiwire},
|
||||
{"", "", ""},
|
||||
},
|
||||
})
|
2
init.lua
2
init.lua
@@ -58,5 +58,3 @@ dofile(MP.."/trisplitter.lua")
|
||||
dofile(MP.."/filter.lua")
|
||||
dofile(MP.."/limiter.lua")
|
||||
|
||||
-- Crafting recipes
|
||||
dofile(MP.."/crafts.lua")
|
||||
|
Reference in New Issue
Block a user