-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into currencySupport
- Loading branch information
Showing
14 changed files
with
210 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
-- Register wrench support for the beacon mod | ||
|
||
for id in pairs(beacon.colors) do | ||
wrench.register_node("beacon:" .. id, { | ||
lists = { "beacon_upgrades" }, | ||
metas = { | ||
active = wrench.META_TYPE_STRING, | ||
beam_dir = wrench.META_TYPE_STRING, | ||
channel = wrench.META_TYPE_STRING, | ||
effect = wrench.META_TYPE_STRING, | ||
formspec = wrench.META_TYPE_IGNORE, | ||
owner = wrench.META_TYPE_STRING, | ||
range = wrench.META_TYPE_INT, | ||
}, | ||
timer = true, | ||
after_place = function(pos, player) | ||
beacon.update_formspec(pos) | ||
if core.get_meta(pos):get_string("active") == "true" then | ||
beacon.activate(pos, player:get_player_name()) | ||
end | ||
end, | ||
}) | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
-- Register wrench support for the christmas mod | ||
|
||
for _, colour in ipairs(christmas.present_colours) do | ||
wrench.register_node("christmas:present_" .. colour.name, { | ||
}) | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
-- Register wrench support for the digibuilder mod | ||
|
||
wrench.register_node("digibuilder:digibuilder", { | ||
lists = { "main" }, | ||
metas = { | ||
channel = wrench.META_TYPE_STRING, | ||
formspec = wrench.META_TYPE_IGNORE, | ||
infotext = wrench.META_TYPE_IGNORE, | ||
owner = wrench.META_TYPE_STRING, | ||
}, | ||
}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
-- Register wrench support for the easyvend mod | ||
|
||
for _, name in ipairs({ | ||
"easyvend:vendor", "easyvend:vendor_on", | ||
"easyvend:depositor", "easyvend:depositor_on", | ||
}) do | ||
wrench.register_node(name, { | ||
lists = { "gold", "item" }, | ||
metas = { | ||
configmode = wrench.META_TYPE_INT, | ||
cost = wrench.META_TYPE_INT, | ||
earnings = wrench.META_TYPE_INT, | ||
formspec = wrench.META_TYPE_IGNORE, | ||
infotext = wrench.META_TYPE_IGNORE, | ||
itemname = wrench.META_TYPE_STRING, | ||
joke_id = wrench.META_TYPE_INT, | ||
joketimer = wrench.META_TYPE_INT, | ||
message = wrench.META_TYPE_IGNORE, | ||
number = wrench.META_TYPE_INT, | ||
owner = wrench.META_TYPE_STRING, | ||
status = wrench.META_TYPE_IGNORE, | ||
stock = wrench.META_TYPE_INT, | ||
wear = wrench.META_TYPE_INT, | ||
}, | ||
}) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
-- Register wrench support for the missions mod | ||
|
||
wrench.register_node("missions:mission", { | ||
lists = { "main" }, | ||
metas = { | ||
description = wrench.META_TYPE_STRING, | ||
hidden = wrench.META_TYPE_INT, | ||
infotext = wrench.META_TYPE_STRING, | ||
name = wrench.META_TYPE_STRING, | ||
owner = wrench.META_TYPE_STRING, | ||
steps = wrench.META_TYPE_STRING, | ||
successcount = wrench.META_TYPE_INT, | ||
time = wrench.META_TYPE_INT, | ||
valid = wrench.META_TYPE_INT, | ||
}, | ||
}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
-- Register wrench support for the moreblocks mod | ||
|
||
wrench.register_node("moreblocks:circular_saw", { | ||
lists = { "input", "micro" , "output", "recycle" }, | ||
metas = { | ||
anz = wrench.META_TYPE_INT, | ||
formspec = wrench.META_TYPE_IGNORE, | ||
infotext = wrench.META_TYPE_STRING, | ||
max_offered = wrench.META_TYPE_INT, | ||
owner = wrench.META_TYPE_STRING, | ||
}, | ||
}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
-- Register wrench support for the powerbanks mod | ||
|
||
for i = 1, 3 do | ||
wrench.register_node("powerbanks:powerbank_mk" .. i .. "_node", { | ||
lists = { "main" }, | ||
metas = { | ||
charge = wrench.META_TYPE_INT, | ||
formspec = wrench.META_TYPE_IGNORE, | ||
infotext = wrench.META_TYPE_IGNORE, | ||
owner = wrench.META_TYPE_STRING, | ||
}, | ||
timer = true, | ||
after_place = function(pos) | ||
local timer = core.get_node_timer(pos) | ||
if not timer:is_started() then | ||
-- Just to re-create infotext and formspec. | ||
timer:start(0) | ||
end | ||
end, | ||
}) | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
-- Register wrench support for the soundblock mod | ||
|
||
wrench.register_node("soundblock:block", { | ||
lists = {}, | ||
metas = { | ||
gain = wrench.META_TYPE_INT, | ||
hear_distance = wrench.META_TYPE_INT, | ||
interval_max = wrench.META_TYPE_INT, | ||
interval_min = wrench.META_TYPE_INT, | ||
randomize_position = wrench.META_TYPE_INT, | ||
selected_sound_key = wrench.META_TYPE_STRING, | ||
state = wrench.META_TYPE_STRING, | ||
}, | ||
timer = true, | ||
}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
-- Register wrench support for the spacecannon mod | ||
|
||
for _, def in ipairs(spacecannon.cannon_defs) do | ||
wrench.register_node("spacecannon:cannon_" .. def.color, { | ||
lists = def.is_th and {} or { "src" }, | ||
metas = { | ||
channel = wrench.META_TYPE_STRING, | ||
formspec = wrench.META_TYPE_IGNORE, | ||
HV_EU_demand = wrench.META_TYPE_INT, | ||
HV_EU_input = wrench.META_TYPE_INT, | ||
infotext = wrench.META_TYPE_IGNORE, | ||
owner = wrench.META_TYPE_STRING, | ||
powerstorage = wrench.META_TYPE_INT, | ||
}, | ||
}) | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
-- Register wrench support for the vacuum mod | ||
|
||
wrench.register_node("vacuum:airpump", { | ||
lists = { "main" }, | ||
metas = { | ||
enabled = wrench.META_TYPE_INT, | ||
formspec = wrench.META_TYPE_IGNORE, | ||
infotext = wrench.META_TYPE_IGNORE, | ||
owner = wrench.META_TYPE_STRING, | ||
}, | ||
}) | ||
|