mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-06 07:43:52 +01:00
bb9279ccb8
rebased #2368
31 lines
787 B
Lua
31 lines
787 B
Lua
-- wool/init.lua
|
|
|
|
-- Load support for MT game translation.
|
|
local S = minetest.get_translator("wool")
|
|
|
|
local dyes = dye.dyes
|
|
|
|
for i = 1, #dyes do
|
|
local name, desc = unpack(dyes[i])
|
|
|
|
minetest.register_node("wool:" .. name, {
|
|
description = S("@1 Wool", desc),
|
|
tiles = {"wool_" .. name .. ".png"},
|
|
is_ground_content = false,
|
|
groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3,
|
|
flammable = 3, wool = 1},
|
|
sounds = default.node_sound_defaults(),
|
|
})
|
|
|
|
minetest.register_craft{
|
|
type = "shapeless",
|
|
output = "wool:" .. name,
|
|
recipe = {"group:dye,color_" .. name, "group:wool"},
|
|
}
|
|
end
|
|
|
|
-- Legacy
|
|
-- Backwards compatibility with jordach's 16-color wool mod
|
|
minetest.register_alias("wool:dark_blue", "wool:blue")
|
|
minetest.register_alias("wool:gold", "wool:yellow")
|