Update craft.lua
This commit is contained in:
parent
67d70a7b4b
commit
e02e67f5a5
14
craft.lua
14
craft.lua
@ -3,7 +3,7 @@
|
|||||||
-- Blocks
|
-- Blocks
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'trainblocks:subwayblock',
|
output = 'trainblocks_bc:subwayblock',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'', 'dye:blue', ''},
|
{'', 'dye:blue', ''},
|
||||||
{'dye:white', 'default:glass', 'dye:white'},
|
{'dye:white', 'default:glass', 'dye:white'},
|
||||||
@ -12,7 +12,7 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'trainblocks:sbahnblock',
|
output = 'trainblocks_bc:sbahnblock',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'', 'dye:orange', ''},
|
{'', 'dye:orange', ''},
|
||||||
{'dye:white', 'default:glass', 'dye:white'},
|
{'dye:white', 'default:glass', 'dye:white'},
|
||||||
@ -26,7 +26,7 @@ local dyes2 = {"white", "white", "white", "white", "white", "black", "white", "w
|
|||||||
|
|
||||||
for count = 1, 10, 1 do
|
for count = 1, 10, 1 do
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "trainblocks:line" .. count .. " 4",
|
output = "trainblocks_bc:line" .. count .. " 4",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'', "dye:" .. dyes1[count] , ''},
|
{'', "dye:" .. dyes1[count] , ''},
|
||||||
{"dye:" .. dyes2[count], 'default:glass', ''},
|
{"dye:" .. dyes2[count], 'default:glass', ''},
|
||||||
@ -40,7 +40,7 @@ end
|
|||||||
--subway direction signs
|
--subway direction signs
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'trainblocks:subwaysignL 2',
|
output = 'trainblocks_bc:subwaysignL 2',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'', '', ''},
|
{'', '', ''},
|
||||||
{'dye:white', 'default:glass', 'dye:blue'},
|
{'dye:white', 'default:glass', 'dye:blue'},
|
||||||
@ -49,7 +49,7 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'trainblocks:subwaysignR 2',
|
output = 'trainblocks_bc:subwaysignR 2',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'', '', ''},
|
{'', '', ''},
|
||||||
{'dye:blue', 'default:glass', 'dye:white'},
|
{'dye:blue', 'default:glass', 'dye:white'},
|
||||||
@ -60,7 +60,7 @@ minetest.register_craft({
|
|||||||
--sbahn direction signs
|
--sbahn direction signs
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'trainblocks:sbahnsignL 2',
|
output = 'trainblocks_bc:sbahnsignL 2',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'', '', ''},
|
{'', '', ''},
|
||||||
{'dye:white', 'default:glass', 'dye:orange'},
|
{'dye:white', 'default:glass', 'dye:orange'},
|
||||||
@ -69,7 +69,7 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'trainblocks:sbahnsignR 2',
|
output = 'trainblocks_bc:sbahnsignR 2',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'', '', ''},
|
{'', '', ''},
|
||||||
{'dye:blue', 'default:glass', 'dye:orange'},
|
{'dye:blue', 'default:glass', 'dye:orange'},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user