moarcraft_rtmmp -> charcoal, steelblock_fix, old stonebrick texture removed

master
Victor Hackeridze 2012-04-22 19:36:44 +06:00
parent dc93a4495b
commit 2c3b1b2f14
6 changed files with 42 additions and 42 deletions

View File

@ -0,0 +1,34 @@
-- char coal
minetest.register_craftitem("charcoal:charcoal", {
description = "Charcoal",
inventory_image = "default_coal_lump.png",
groups = {coal = 1},
stack_max = 128,
})
minetest.register_craft({
type = "fuel",
recipe = "charcoal:charcoal",
burntime = 40,
})
minetest.register_craft({
type = "cooking",
output = "charcoal:charcoal",
recipe = "default:tree",
})
minetest.register_craft({
type = "cooking",
output = "charcoal:charcoal",
recipe = "conifers:trunk",
})
minetest.register_craft({
type = "cooking",
output = "charcoal:charcoal",
recipe = "conifers:trunk_reversed",
})
minetest.register_craft({
output = "default:torch 4",
recipe = {
{"default:charcoal:charcoal"},
{"default:stick"},
}
})

View File

@ -1,42 +0,0 @@
-- steel block fix
minetest.register_craft({
output = 'default:steel_ingot 9',
recipe = {
{ 'default:steel_block'},
}
})
-- char coal
minetest.register_craftitem("moarcraft_rtmmp:char_coal", {
description = "Char coal",
inventory_image = "default_coal_lump.png",
groups = {coal = 1},
stack_max = 128,
})
minetest.register_craft({
type = "fuel",
recipe = "moarcraft_rtmmp:char_coal",
burntime = 40,
})
minetest.register_craft({
type = "cooking",
output = "moarcraft_rtmmp:char_coal",
recipe = "default:tree",
})
minetest.register_craft({
type = "cooking",
output = "moarcraft_rtmmp:char_coal",
recipe = "conifers:trunk",
})
minetest.register_craft({
type = "cooking",
output = "moarcraft_rtmmp:char_coal",
recipe = "conifers:trunk_reversed",
})
minetest.register_craft({
output = 'default:torch 4',
recipe = {
{'default:moarcraft_rtmmp:char_coal'},
{'default:stick'},
}
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 450 B

View File

@ -0,0 +1 @@
default

View File

@ -0,0 +1,7 @@
-- steel block fix
minetest.register_craft({
output = 'default:steel_ingot 9',
recipe = {
{ 'default:steel_block'},
}
})