uwu/crafts.lua

72 lines
1.7 KiB
Lua

-- Copyright (C) 2020 2021 PsycoJaker
-- This file is part of UwU Mod Minetest Mod.
-- UwU Mod is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- any later version.
-- UwU Mod is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
-- You should have received a copy of the GNU General Public License
-- along with UwU Mod. If not, see <https://www.gnu.org/licenses/>.
-- Cristalcitos uwus hacen algo más uwu... el bloque uwu :D!
core.register_craft({
output = "uwu:block",
recipe = {
{"uwu:crystal", "uwu:crystal", "uwu:crystal"},
{"uwu:crystal", "uwu:crystal", "uwu:crystal"},
{"uwu:crystal", "uwu:crystal", "uwu:crystal"},
}
})
-- UwU Espadita
core.register_craft({
output = "uwu:shovel",
recipe = {
{"","uwu:crystal",""},
{"","uwu:crystal",""},
{"","group:stick",""}
}
})
-- UwU Piquito
core.register_craft({
output = "uwu:pick",
recipe = {
{"uwu:crystal", "uwu:crystal", "uwu:crystal"},
{"", "group:stick", ""},
{"", "group:stick", ""},
}
})
-- UwU Hachita
core.register_craft({
output = "uwu:axe",
recipe = {
{"uwu:crystal", "uwu:crystal", ""},
{"uwu:crystal", "group:stick", ""},
{"", "group:stick", ""},
}
})
-- UwU Palita
core.register_craft({
output = "uwu:shovel",
recipe = {
{"", "uwu:crystal", ""},
{"", "group:stick", ""},
{"", "group:stick", ""},
}
})