modified: documentation.txt
modified: structures.lua
This commit is contained in:
parent
e5d51062b3
commit
24c8482b18
@ -7,18 +7,95 @@ License is GNU GPL v2, do it what you want !
|
|||||||
plastic : put cotton in furnace
|
plastic : put cotton in furnace
|
||||||
|
|
||||||
wire :
|
wire :
|
||||||
plastic steel ingot
|
________________ ________________ _______________
|
||||||
|
[_____plastic____] [__steel_ingot___] [_______________]
|
||||||
|
[________________] [________________] [_______________]
|
||||||
|
[________________] [________________] [_______________]
|
||||||
|
|
||||||
button :
|
button :
|
||||||
plastic
|
________________ ________________ ________________
|
||||||
steel ingot
|
[_____plastic____] [________________] [________________]
|
||||||
steel ingot
|
[___steel_ingot__] [________________] [________________]
|
||||||
|
[___steel_ingot__] [________________] [________________]
|
||||||
|
|
||||||
electronic card :
|
electronic card :
|
||||||
steel_ingot
|
________________ ________________ ________________
|
||||||
plastic
|
[___steel_ingot__] [________________] [________________]
|
||||||
|
[____plastic_____] [________________] [________________]
|
||||||
|
[________________] [________________] [________________]
|
||||||
|
|
||||||
modern screen :
|
modern screen :
|
||||||
plastic
|
________________ ________________ ________________
|
||||||
plastic electronic card glass
|
[____plastic_____] [________________] [________________]
|
||||||
plastic
|
[____plastic_____] [_electronic_card] [_____glass______]
|
||||||
|
[____plastic_____] [________________] [________________]
|
||||||
|
|
||||||
|
concrete :
|
||||||
|
________________ ________________ ________________
|
||||||
|
[________________] [________________] [________________]
|
||||||
|
[______sand______] [______gravel____] [__bucket_water__]
|
||||||
|
[________________] [________________] [________________]
|
||||||
|
|
||||||
|
armature :
|
||||||
|
________________ ________________ ________________
|
||||||
|
[__bronze_ingot__] [__bronze_ingot__] [__bronze_ingot__]
|
||||||
|
[________________] [__bronze_ingot__] [________________]
|
||||||
|
[__bronze_ingot__] [__bronze_ingot__] [__bronze_ingot__]
|
||||||
|
|
||||||
|
armature (vertical) :
|
||||||
|
________________ ________________ ________________
|
||||||
|
[________________] [________________] [________________]
|
||||||
|
[_armature_horiz_] [________________] [________________]
|
||||||
|
[________________] [________________] [________________]
|
||||||
|
|
||||||
|
armature (horizontal) :
|
||||||
|
________________ ________________ ________________
|
||||||
|
[________________] [________________] [________________]
|
||||||
|
[_armature_verti_] [________________] [________________]
|
||||||
|
[________________] [________________] [________________]
|
||||||
|
|
||||||
|
grid :
|
||||||
|
________________ ________________ ________________
|
||||||
|
[________________] [__bronze_ingot__] [________________]
|
||||||
|
[__bronze_ingot__] [__bronze_ingot__] [__bronze_ingot__]
|
||||||
|
[________________] [__bronze_ingot__] [________________]
|
||||||
|
|
||||||
|
put grid vertical in craft-table (like armature) to have horizontal grid
|
||||||
|
|
||||||
|
bridge edges :
|
||||||
|
________________ ________________ ________________
|
||||||
|
[__bronze_ingot__] [__bronze_ingot__] [________________]
|
||||||
|
[__bronze_ingot__] [__bronze_ingot__] [________________]
|
||||||
|
[________________] [________________] [________________]
|
||||||
|
|
||||||
|
triangle :
|
||||||
|
________________ ________________ ________________
|
||||||
|
[________________] [__bronze_ingot__] [__bronze_ingot__]
|
||||||
|
[________________] [________________] [__bronze_ingot__]
|
||||||
|
[________________] [________________] [________________]
|
||||||
|
|
||||||
|
bridge floor :
|
||||||
|
________________ ________________ ________________
|
||||||
|
[__bronze_ingot__] [__bronze_ingot__] [________________]
|
||||||
|
[________________] [________________] [________________]
|
||||||
|
[________________] [________________] [________________]
|
||||||
|
|
||||||
|
edge angle : put edge in craft table
|
||||||
|
|
||||||
|
bronze stairs :
|
||||||
|
________________ ________________ ________________
|
||||||
|
[________________] [________________] [__bronze_ingot__]
|
||||||
|
[________________] [__bronze_ingot__] [________________]
|
||||||
|
[__bronze_ingot__] [________________] [________________]
|
||||||
|
|
||||||
|
bronze ladder :
|
||||||
|
________________ ________________ ________________
|
||||||
|
[__bronze_ingot__] [________________] [__bronze_ingot__]
|
||||||
|
[__bronze_ingot__] [__bronze_ingot__] [__bonze_ingot___]
|
||||||
|
[__bronze_ingot__] [________________] [__bronze_ingot__]
|
||||||
|
|
||||||
|
security ladder :
|
||||||
|
________________ ________________ ________________
|
||||||
|
[________________] [__bronze_ladder_] [________________]
|
||||||
|
[________________] [__bronze_ingot__] [________________]
|
||||||
|
[________________] [________________] [________________]
|
||||||
|
@ -23,15 +23,6 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = 'technology:armature_v 5',
|
|
||||||
recipe = {
|
|
||||||
{'default:steel_ingot', '', 'default:steel_ingot'},
|
|
||||||
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
|
||||||
{'default:steel_ingot', '', 'default:steel_ingot'},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'technology:armature_v',
|
output = 'technology:armature_v',
|
||||||
recipe = {
|
recipe = {
|
||||||
@ -257,6 +248,15 @@ minetest.register_node("technology:floor", {
|
|||||||
sounds = metal_footstep,
|
sounds = metal_footstep,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'technology:stairs 4',
|
||||||
|
recipe = {
|
||||||
|
{'', '', bronze_ingot},
|
||||||
|
{'', bronze_ingot, ''},
|
||||||
|
{bronze_ingot, '', ''},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
minetest.register_node("technology:stairs", {
|
minetest.register_node("technology:stairs", {
|
||||||
description = "Bridge stairs",
|
description = "Bridge stairs",
|
||||||
@ -349,6 +349,16 @@ minetest.register_node("technology:triangle", {
|
|||||||
sounds = metal_footstep,
|
sounds = metal_footstep,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'technology:ladder 16',
|
||||||
|
recipe = {
|
||||||
|
{bronze_ingot, '', bronze_ingot},
|
||||||
|
{bronze_ingot, bronze_ingot, bronze_ingot},
|
||||||
|
{bronze_ingot, '', bronze_ingot},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_node("technology:ladder", {
|
minetest.register_node("technology:ladder", {
|
||||||
description = "bronze ladder",
|
description = "bronze ladder",
|
||||||
node_placement_prediction = "",
|
node_placement_prediction = "",
|
||||||
@ -374,6 +384,15 @@ minetest.register_node("technology:ladder", {
|
|||||||
sounds = metal_footstep,
|
sounds = metal_footstep,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'technology:ladder_closed',
|
||||||
|
recipe = {
|
||||||
|
{'technology:ladder'},
|
||||||
|
{bronze_ingot},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_node("technology:ladder_closed", {
|
minetest.register_node("technology:ladder_closed", {
|
||||||
description = "bronze ladder closed",
|
description = "bronze ladder closed",
|
||||||
node_placement_prediction = "",
|
node_placement_prediction = "",
|
||||||
|
Loading…
Reference in New Issue
Block a user