1
0
mirror of https://github.com/D00Med/scifi_nodes.git synced 2025-06-29 22:50:48 +02:00

7 Commits

Author SHA1 Message Date
48a933fca8 register a subset of the nodes in the pkarcs mod 2021-10-02 17:57:10 +02:00
4fc833bb00 fix default setting value for mesecons-only door operation 2021-09-30 10:50:12 +02:00
5788062fac update contributors 2021-09-30 10:50:12 +02:00
1c8024401f add setting for teleporter pad 2021-09-30 10:50:12 +02:00
1273b627c2 add crafting recipe for teleporter pad 2021-09-30 10:50:12 +02:00
3d7e7a82a5 add missing comma in mod.conf 2021-08-28 18:21:11 +02:00
e40f9747b0 Opt-depend on all mods (#58)
* move "dye" to optional depends and disable recipes if default or dye are not available
* replace default.LIGHT_MAX with minetest.LIGHT_MAX
* add sound-switch and use default if available
* enable crate and builder only if default mod is available
* move default mod to opt-depends and use screwdriver only if available

Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
2021-08-27 09:22:15 +02:00
7 changed files with 34 additions and 5 deletions

View File

@ -20,6 +20,7 @@ read_globals = {
"screwdriver",
"minetest",
"mesecon",
"unifieddyes"
"unifieddyes",
"pkarcs"
}

View File

@ -55,3 +55,4 @@ CC0
* OgelGames https://github.com/OgelGames
* leftshift https://github.com/leftshift
* fluxionary https://github.com/fluxionary
* Niles Corder https://github.com/ncorder

View File

@ -10,8 +10,22 @@ if minetest.get_modpath("basic_materials") then
{"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting"}
}
})
if minetest.settings:get_bool("scifi_nodes.teleporter_enable_crafting", false) then
-- enable the teleporter pad crafting recipe only if the setting is enabled
minetest.register_craft({
output = "scifi_nodes:pad",
recipe = {
{"homedecor:plastic_sheeting", "quartz:block", "homedecor:plastic_sheeting"},
{"default:mese_crystal", "quartz:block", "default:mese_crystal"},
{"homedecor:plastic_sheeting", "quartz:block", "homedecor:plastic_sheeting"}
}
})
end
end
if not minetest.get_modpath("default") or not minetest.get_modpath("dye") then
-- the default and dye mod are required for most of the recipes
-- if either of them is missing (because we are not in the default game)

View File

@ -31,3 +31,8 @@ dofile(MP.."/digicode.lua")
dofile(MP.."/models.lua")
dofile(MP.."/octagon_panes.lua")
dofile(MP.."/crafts.lua")
if minetest.get_modpath("pkarcs") then
-- register some nodes in the pkarcs mod
dofile(MP.."/pkarcs.lua")
end

View File

@ -10,6 +10,7 @@ mesecons_button,
mesecons_torch,
mesecons_receiver,
basic_materials,
dye
unifieddyes
dye,
unifieddyes,
pkarcs
"""

4
pkarcs.lua Normal file
View File

@ -0,0 +1,4 @@
pkarcs.register_node("scifi_nodes:whitetile")
pkarcs.register_node("scifi_nodes:whiteoct")
pkarcs.register_node("scifi_nodes:white")
pkarcs.register_node("scifi_nodes:lighttop")

View File

@ -1,2 +1,5 @@
# Doors can only be opened by mesecon signal
scifi_nodes.doors_open_with_mesecon_only (disables right click on doors) bool true
# Doors can only be opened by mesecon signal
scifi_nodes.doors_open_with_mesecon_only (disables right click on doors) bool false
# Teleporter recipe flag
scifi_nodes.teleporter_enable_crafting (enables the teleporter recipe) bool false