modified: documentation.txt

modified:   structures.lua
This commit is contained in:
jimy-byerley 2014-06-21 10:58:19 +02:00
parent e5d51062b3
commit 24c8482b18
2 changed files with 114 additions and 18 deletions

View File

@ -7,18 +7,95 @@ License is GNU GPL v2, do it what you want !
plastic : put cotton in furnace
wire :
plastic steel ingot
________________ ________________ _______________
[_____plastic____] [__steel_ingot___] [_______________]
[________________] [________________] [_______________]
[________________] [________________] [_______________]
button :
plastic
steel ingot
steel ingot
________________ ________________ ________________
[_____plastic____] [________________] [________________]
[___steel_ingot__] [________________] [________________]
[___steel_ingot__] [________________] [________________]
electronic card :
steel_ingot
plastic
________________ ________________ ________________
[___steel_ingot__] [________________] [________________]
[____plastic_____] [________________] [________________]
[________________] [________________] [________________]
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__] [________________]
[________________] [________________] [________________]

View File

@ -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({
output = 'technology:armature_v',
recipe = {
@ -257,6 +248,15 @@ minetest.register_node("technology:floor", {
sounds = metal_footstep,
})
minetest.register_craft({
output = 'technology:stairs 4',
recipe = {
{'', '', bronze_ingot},
{'', bronze_ingot, ''},
{bronze_ingot, '', ''},
}
})
minetest.register_node("technology:stairs", {
description = "Bridge stairs",
@ -349,6 +349,16 @@ minetest.register_node("technology:triangle", {
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", {
description = "bronze ladder",
node_placement_prediction = "",
@ -374,6 +384,15 @@ minetest.register_node("technology:ladder", {
sounds = metal_footstep,
})
minetest.register_craft({
output = 'technology:ladder_closed',
recipe = {
{'technology:ladder'},
{bronze_ingot},
}
})
minetest.register_node("technology:ladder_closed", {
description = "bronze ladder closed",
node_placement_prediction = "",