Tweaked cheat recipe's
This commit is contained in:
parent
05688474bd
commit
d0b896e8c8
12
extra.lua
12
extra.lua
@ -44,17 +44,17 @@ minetest.register_craft({
|
|||||||
|
|
||||||
-- X pattern craft recipes (5x 'a' in X pattern gives 5 of 'b')
|
-- X pattern craft recipes (5x 'a' in X pattern gives 5 of 'b')
|
||||||
local cheat = {
|
local cheat = {
|
||||||
{"default:cobble", "default:gravel"},
|
{"default:cobble", "default:gravel", 5},
|
||||||
{"default:gravel", "default:dirt"},
|
{"default:gravel", "default:dirt", 5},
|
||||||
{"default:dirt", "default:sand"},
|
{"default:dirt", "default:sand", 5},
|
||||||
{"default:ice", "default:snow"},
|
{"default:ice", "default:snow", 20},
|
||||||
{"ethereal:dry_dirt", "default:desert_sand"},
|
{"ethereal:dry_dirt", "default:desert_sand", 5},
|
||||||
}
|
}
|
||||||
|
|
||||||
for n = 1, #cheat do
|
for n = 1, #cheat do
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = cheat[n][2] .. " 5",
|
output = cheat[n][2] .. " " .. cheat[n][3],
|
||||||
recipe = {
|
recipe = {
|
||||||
{cheat[n][1], "", cheat[n][1]},
|
{cheat[n][1], "", cheat[n][1]},
|
||||||
{"", cheat[n][1], ""},
|
{"", cheat[n][1], ""},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user