mirror of
https://notabug.org/TenPlus1/bakedclay.git
synced 2024-11-20 00:53:45 +01:00
cooking clay block gives natural baked clay which can be dyed, added lucky block
This commit is contained in:
parent
67d0f2a8d6
commit
d6a2fbaaee
@ -7,6 +7,7 @@ https://forum.minetest.net/viewtopic.php?id=8890
|
|||||||
|
|
||||||
Changelog:
|
Changelog:
|
||||||
|
|
||||||
|
- 0.8 - Cooking clay block in furnace gives natural baked clay which you can dye
|
||||||
- 0.7 - Added support for stairsplus so that stairs are registered properly
|
- 0.7 - Added support for stairsplus so that stairs are registered properly
|
||||||
- 0.6 - Added 3 new flowers and a new grass that are used for missing dyes
|
- 0.6 - Added 3 new flowers and a new grass that are used for missing dyes
|
||||||
- 0.5 - Now using minecraft recipe to colour baked clay (8x baked clay, 1x dye in centre)
|
- 0.5 - Now using minecraft recipe to colour baked clay (8x baked clay, 1x dye in centre)
|
||||||
@ -15,4 +16,4 @@ Changelog:
|
|||||||
- 0.2 - Any colour of baked clay can be re-dyed into another colour
|
- 0.2 - Any colour of baked clay can be re-dyed into another colour
|
||||||
- 0.1 - Initial Release
|
- 0.1 - Initial Release
|
||||||
|
|
||||||
Lucky Blocks: 8
|
Lucky Blocks: 9
|
||||||
|
31
init.lua
31
init.lua
@ -2,6 +2,7 @@
|
|||||||
-- Baked Clay by TenPlus1
|
-- Baked Clay by TenPlus1
|
||||||
|
|
||||||
local clay = {
|
local clay = {
|
||||||
|
{"natural", "Natural"},
|
||||||
{"white", "White"},
|
{"white", "White"},
|
||||||
{"grey", "Grey"},
|
{"grey", "Grey"},
|
||||||
{"black", "Black"},
|
{"black", "Black"},
|
||||||
@ -84,7 +85,7 @@ end
|
|||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "cooking",
|
type = "cooking",
|
||||||
output = "bakedclay:white",
|
output = "bakedclay:natural",
|
||||||
recipe = "default:clay",
|
recipe = "default:clay",
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -253,17 +254,35 @@ lucky_block:add_blocks({
|
|||||||
{"dro", {"bakedclay:"}, 10, true},
|
{"dro", {"bakedclay:"}, 10, true},
|
||||||
{"fal", {p.."black", p.."blue", p.."brown", p.."cyan", p.."dark_green",
|
{"fal", {p.."black", p.."blue", p.."brown", p.."cyan", p.."dark_green",
|
||||||
p.."dark_grey", p.."green", p.."grey", p.."magenta", p.."orange",
|
p.."dark_grey", p.."green", p.."grey", p.."magenta", p.."orange",
|
||||||
p.."pink", p.."red", p.."violet", p.."white", p.."yellow"}, 0},
|
p.."pink", p.."red", p.."violet", p.."white", p.."yellow", p.."natural"}, 0},
|
||||||
{"fal", {p.."black", p.."blue", p.."brown", p.."cyan", p.."dark_green",
|
{"fal", {p.."black", p.."blue", p.."brown", p.."cyan", p.."dark_green",
|
||||||
p.."dark_grey", p.."green", p.."grey", p.."magenta", p.."orange",
|
p.."dark_grey", p.."green", p.."grey", p.."magenta", p.."orange",
|
||||||
p.."pink", p.."red", p.."violet", p.."white", p.."yellow"}, 0, true},
|
p.."pink", p.."red", p.."violet", p.."white", p.."yellow", p.."natural"}, 0, true},
|
||||||
{"dro", {p.."delphinium"}, 5},
|
{"dro", {p.."delphinium"}, 5},
|
||||||
{"dro", {p.."lazarus"}, 5},
|
{"dro", {p.."lazarus"}, 5},
|
||||||
{"dro", {p.."mannagrass"}, 5},
|
{"dro", {p.."mannagrass"}, 5},
|
||||||
{"dro", {p.."thistle"}, 6},
|
{"dro", {p.."thistle"}, 6},
|
||||||
{"flo", 5, {p.."black", p.."blue", p.."brown", p.."cyan", p.."dark_green",
|
{"flo", 5, {p.."natural", p.."black", p.."blue", p.."brown", p.."cyan",
|
||||||
p.."dark_grey", p.."green", p.."grey", p.."magenta", p.."orange",
|
p.."dark_green", p.."dark_grey", p.."green", p.."grey", p.."magenta",
|
||||||
p.."pink", p.."red", p.."violet", p.."white", p.."yellow"}, 2},
|
p.."orange", p.."pink", p.."red", p.."violet", p.."white", p.."yellow"}, 2},
|
||||||
|
{"nod", "default:chest", 0, {
|
||||||
|
{name = p.."natural", max = 30},
|
||||||
|
{name = p.."black", max = 30},
|
||||||
|
{name = p.."blue", max = 30},
|
||||||
|
{name = p.."brown", max = 30},
|
||||||
|
{name = p.."cyan", max = 30},
|
||||||
|
{name = p.."dark_green", max = 30},
|
||||||
|
{name = p.."dark_grey", max = 30},
|
||||||
|
{name = p.."green", max = 30},
|
||||||
|
{name = p.."grey", max = 30},
|
||||||
|
{name = p.."magenta", max = 30},
|
||||||
|
{name = p.."orange", max = 30},
|
||||||
|
{name = p.."pink", max = 30},
|
||||||
|
{name = p.."red", max = 30},
|
||||||
|
{name = p.."violet", max = 30},
|
||||||
|
{name = p.."white", max = 30},
|
||||||
|
{name = p.."yellow", max = 30},
|
||||||
|
}},
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
BIN
textures/baked_clay_natural.png
Normal file
BIN
textures/baked_clay_natural.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 296 B |
Loading…
Reference in New Issue
Block a user