123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- -- Baked Clay by TenPlus1
- -- Modified for _Must Test_ server by MustTest
- -- Note: must match the colors defined by the 'dye' mod.
- local clay = {
- {"white", "White"},
- {"grey", "Grey"},
- {"black", "Black"},
- {"red", "Red"},
- {"yellow", "Yellow"},
- {"green", "Green"},
- {"cyan", "Cyan"},
- {"blue", "Blue"},
- {"magenta", "Magenta"},
- {"orange", "Orange"},
- {"violet", "Violet"},
- {"brown", "Brown"},
- {"pink", "Pink"},
- {"dark_grey", "Dark Grey"},
- {"dark_green", "Dark Green"},
- }
- for _, clay in ipairs(clay) do
- -- node definition
- minetest.register_node("bakedclay:" .. clay[1], {
- description = clay[2] .. " Baked Clay",
- tiles = {"baked_clay_" .. clay[1] ..".png"},
- groups = utility.dig_groups("hardclay", {bakedclay = 1}),
- sounds = default.node_sound_stone_defaults(),
- })
- -- craft from dye and white baked clay
- minetest.register_craft({
- output = "bakedclay:" .. clay[1] .. " 8",
- recipe = {
- {"bakedclay:white", "bakedclay:white", "bakedclay:white"},
- {"bakedclay:white", "dye:" .. clay[1], "bakedclay:white"},
- {"bakedclay:white", "bakedclay:white", "bakedclay:white"},
- },
- })
- -- register stair and slab
- stairs.register_stair_and_slab(
- "bakedclay_".. clay[1],
- "bakedclay:".. clay[1],
- utility.dig_groups("hardclay"),
- {"baked_clay_" .. clay[1] .. ".png"},
- clay[2] .. " Baked Clay",
- default.node_sound_stone_defaults()
- )
- end
- -- cook clay block into white baked clay
- minetest.register_craft({
- type = "cooking",
- output = "bakedclay:white",
- recipe = "default:clay",
- })
- -- any clay cook back into default clay
- minetest.register_craft({
- type = "cooking",
- output = "default:clay",
- recipe = "group:bakedclay",
- })
- -- register a few extra dye colour options
- minetest.register_craft( {
- type = "shapeless",
- output = "dye:dark_grey 3",
- recipe = {"dye:black", "dye:black", "dye:white"}
- })
- minetest.register_craft( {
- type = "shapeless",
- output = "dye:grey 3",
- recipe = {"dye:black", "dye:white", "dye:white"}
- })
- minetest.register_craft( {
- type = "extracting",
- output = "dye:brown 4",
- recipe = "default:dry_shrub"
- })
- -- 2x2 red bakedclay makes 16x clay brick
- minetest.register_craft( {
- output = "default:clay_brick 16",
- recipe = {
- {"bakedclay:red", "bakedclay:red"},
- {"bakedclay:red", "bakedclay:red"},
- }
- })
- -- register some new flowers to fill in missing dye colours
- -- flower registration (borrowed from default game)
- local function add_simple_flower(name, desc, box, f_groups)
- f_groups.flower = 1
- f_groups.flora = 1
- f_groups.attached_node = 1
- f_groups.flammable = 3,
- minetest.register_node(":flowers:" .. name, {
- description = desc,
- drawtype = "plantlike",
- waving = 1,
- tiles = {"baked_clay_" .. name .. ".png"},
- inventory_image = "baked_clay_" .. name .. ".png",
- wield_image = "baked_clay_" .. name .. ".png",
- sunlight_propagates = true,
- paramtype = "light",
- walkable = false,
- buildable_to = true,
- groups = utility.dig_groups("plant", f_groups),
- sounds = default.node_sound_leaves_defaults(),
- selection_box = {
- type = "fixed",
- fixed = box
- },
- movement_speed_multiplier = default.SLOW_SPEED_PLANTS,
- on_construct = function(...)
- return flowers.on_flora_construct(...)
- end,
- on_destruct = function(...)
- return flowers.on_flora_destruct(...)
- end,
- on_timer = function(...)
- return flowers.on_flora_timer(...)
- end,
- on_punch = function(...)
- return flowers.on_flora_punch(...)
- end,
- })
- end
- local flowers = {
- {"delphinium", "Blue Delphinium", {-5 / 16, -0.5, -5 / 16, 5 / 16, 5 / 16, 5 / 16},
- {color_cyan = 1}},
- {"thistle", "Thistle", {-0.15, -0.5, -0.15, 0.15, 0.2, 0.15}, {color_magenta = 1}},
- {"lazarus", "Lazarus Bell", {-0.15, -0.5, -0.15, 0.15, 0.2, 0.15}, {color_pink = 1}},
- {"mannagrass", "Reed Mannagrass", {-5 / 16, -0.5, -5 / 16, 5 / 16, 5 / 16, 5 / 16},
- {color_dark_green = 1}},
- {"lockspur", "Lockspur", {-0.15, -0.5, -0.15, 0.15, 0.3, 0.15}, {color_cyan = 1}},
- }
- for _,item in pairs(flowers) do
- add_simple_flower(unpack(item))
- end
- minetest.register_craft({
- type = "extracting",
- output = 'dye:cyan 5',
- recipe = 'flowers:delphinium',
- time = 3,
- })
- minetest.register_craft({
- type = "extracting",
- output = 'dye:cyan 5',
- recipe = 'flowers:lockspur',
- time = 3,
- })
- minetest.register_craft({
- type = "extracting",
- output = 'dye:magenta 5',
- recipe = 'flowers:thistle',
- time = 3,
- })
- minetest.register_craft({
- type = "extracting",
- output = 'dye:pink 5',
- recipe = 'flowers:lazarus',
- time = 3,
- })
- minetest.register_craft({
- type = "extracting",
- output = 'dye:dark_green 5',
- recipe = 'flowers:mannagrass',
- time = 3,
- })
- minetest.register_craft({
- type = "shapeless",
- output = "default:clay_lump",
- recipe = {"darkage:silt_lump", "darkage:mud_lump"},
- })
|