Add files via upload
This commit is contained in:
@@ -180,3 +180,7 @@ v0.1.29
|
|||||||
v0.1.30
|
v0.1.30
|
||||||
* Added quantity field to droppers.
|
* Added quantity field to droppers.
|
||||||
* Added 'Use player when placing' setting.
|
* Added 'Use player when placing' setting.
|
||||||
|
|
||||||
|
|
||||||
|
v0.1.31
|
||||||
|
* Added crafter.
|
||||||
|
1583
crafter.lua
Normal file
1583
crafter.lua
Normal file
File diff suppressed because it is too large
Load Diff
20
crafting.lua
20
crafting.lua
@@ -60,6 +60,26 @@ minetest.register_craft( {
|
|||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_craft( {
|
||||||
|
output = "lwcomponents:crafter",
|
||||||
|
recipe = {
|
||||||
|
{ "default:steel_ingot", "group:wood", "default:steel_ingot" },
|
||||||
|
{ "group:wood", "", "group:wood" },
|
||||||
|
{ "default:copper_ingot", "group:wood", "default:chest" },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_craft( {
|
||||||
|
output = "lwcomponents:crafter_locked",
|
||||||
|
recipe = {
|
||||||
|
{ "default:steel_ingot", "group:wood", "default:steel_ingot" },
|
||||||
|
{ "group:wood", "", "group:wood" },
|
||||||
|
{ "default:copper_ingot", "group:wood", "default:chest_locked" },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
output = "lwcomponents:force_field",
|
output = "lwcomponents:force_field",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
5
crafting_mods.lua
Normal file
5
crafting_mods.lua
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
return
|
||||||
|
{
|
||||||
|
-- ["mod:crafted_item"] = { add = { "mod:name n", "mod:name n" }, remove = { "mod:name n", "mod:name n" } },
|
||||||
|
["farming:pineapple_ring"] = { add = { "farming:pineapple_top" } }
|
||||||
|
}
|
3
init.lua
3
init.lua
@@ -1,4 +1,4 @@
|
|||||||
local version = "0.1.30"
|
local version = "0.1.31"
|
||||||
local mod_storage = minetest.get_mod_storage ()
|
local mod_storage = minetest.get_mod_storage ()
|
||||||
|
|
||||||
|
|
||||||
@@ -40,6 +40,7 @@ loadfile (modpath.."/pistons.lua") (utils)
|
|||||||
loadfile (modpath.."/through_wire.lua") (utils)
|
loadfile (modpath.."/through_wire.lua") (utils)
|
||||||
loadfile (modpath.."/camera.lua") (utils)
|
loadfile (modpath.."/camera.lua") (utils)
|
||||||
loadfile (modpath.."/storage.lua") (utils)
|
loadfile (modpath.."/storage.lua") (utils)
|
||||||
|
loadfile (modpath.."/crafter.lua") (utils)
|
||||||
loadfile (modpath.."/force_field.lua") (utils)
|
loadfile (modpath.."/force_field.lua") (utils)
|
||||||
loadfile (modpath.."/destroyer.lua") (utils)
|
loadfile (modpath.."/destroyer.lua") (utils)
|
||||||
loadfile (modpath.."/extras.lua") (utils)
|
loadfile (modpath.."/extras.lua") (utils)
|
||||||
|
@@ -13,7 +13,7 @@ CC BY-SA 3.0
|
|||||||
|
|
||||||
Version
|
Version
|
||||||
=======
|
=======
|
||||||
0.1.30
|
0.1.31
|
||||||
|
|
||||||
|
|
||||||
Minetest Version
|
Minetest Version
|
||||||
@@ -71,6 +71,7 @@ Various components for mesecons and digilines.
|
|||||||
* Movefloor, similar to vertical mesecons movestone.
|
* Movefloor, similar to vertical mesecons movestone.
|
||||||
* Camera, takes a representative image.
|
* Camera, takes a representative image.
|
||||||
* Storage, indexed storage units.
|
* Storage, indexed storage units.
|
||||||
|
* Crafter, crafts by recipe or by item, and can pull from storage units.
|
||||||
* Hoppers, that are more compatible with this mod.
|
* Hoppers, that are more compatible with this mod.
|
||||||
* Force Field Generator, repels players and mobs within a radius.
|
* Force Field Generator, repels players and mobs within a radius.
|
||||||
* Mesecons Through Wire, transmits through 1 to 2 solid blocks.
|
* Mesecons Through Wire, transmits through 1 to 2 solid blocks.
|
||||||
|
Reference in New Issue
Block a user