Mineclonia/mods/ITEMS/mcl_wool/init.lua

95 lines
3.1 KiB
Lua
Raw Normal View History

2015-06-29 17:55:56 +00:00
-- minetest/wool/init.lua
-- Backwards compatibility with jordach's 16-color wool mod
2017-01-30 14:25:24 +00:00
minetest.register_alias("mcl_wool:dark_blue", "wool:blue")
minetest.register_alias("mcl_wool:gold", "wool:yellow")
2015-06-29 17:55:56 +00:00
local wool = {}
-- This uses a trick: you can first define the recipes using all of the base
-- colors, and then some recipes using more specific colors for a few non-base
-- colors available. When crafting, the last recipes will be checked first.
wool.dyes = {
2017-01-04 23:54:50 +00:00
{"white", "white", "White", nil},
{"grey", "dark_grey", "Grey", "unicolor_darkgrey"},
{"silver", "grey", "Light Grey", "basecolor_grey"},
2017-01-04 23:54:50 +00:00
{"black", "black", "Black", "basecolor_black"},
{"red", "red", "Red", "basecolor_red"},
{"yellow", "yellow", "Yellow", "basecolor_yellow"},
{"green", "green", "Green", "unicolor_dark_green"},
{"cyan", "cyan", "Cyan", "basecolor_cyan"},
{"blue", "blue", "Blue", "basecolor_blue"},
{"magenta", "magenta", "Magenta", "basecolor_magenta"},
{"orange", "orange", "Orange", "excolor_orange"},
{"purple", "violet", "Purple", "excolor_violet"},
{"brown", "brown", "Brown", "unicolor_dark_orange"},
{"pink", "pink", "Pink", "unicolor_light_red"},
{"lime", "lime", "Lime", "basecolor_green"},
{"light_blue", "light_blue", "Light Blue", "unicolor_light_blue"},
2015-06-29 17:55:56 +00:00
}
for _, row in ipairs(wool.dyes) do
local name = row[1]
2017-01-04 23:54:50 +00:00
local texture = row[2]
local desc = row[3]
local craft_color_group = row[4]
2015-06-29 17:55:56 +00:00
-- Node Definition
2017-01-30 14:25:24 +00:00
minetest.register_node("mcl_wool:"..name, {
2015-06-29 17:55:56 +00:00
description = desc.." Wool",
stack_max = 64,
is_ground_content = false,
2017-01-04 23:54:50 +00:00
tiles = {"wool_"..texture..".png"},
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=1,wool=1,building_block=1},
sounds = mcl_sounds.node_sound_defaults(),
2015-06-29 17:55:56 +00:00
})
2017-01-30 14:25:24 +00:00
minetest.register_node("mcl_wool:"..name.."_carpet", {
2015-06-29 17:55:56 +00:00
description = desc.." Carpet",
walkable = false,
is_ground_content = false,
2017-01-04 23:54:50 +00:00
tiles = {"wool_"..texture..".png"},
2015-06-29 17:55:56 +00:00
wield_image = "wool_"..name..".png",
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=1,carpet=1,deco_block=1},
sounds = mcl_sounds.node_sound_defaults(),
2015-06-29 17:55:56 +00:00
paramtype = "light",
stack_max = 64,
drawtype = "nodebox",
node_box = {
type = "fixed",
fixed = {
{-8/16, -8/16, -8/16, 8/16, -7/16, 8/16},
},
},
})
if craft_color_group then
-- Crafting from dye and white wool
minetest.register_craft({
type = "shapeless",
2017-01-30 14:25:24 +00:00
output = 'mcl_wool:'..name,
2017-02-06 19:09:03 +00:00
recipe = {'group:dye,'..craft_color_group, 'mcl_wool:white'},
2015-06-29 17:55:56 +00:00
})
minetest.register_craft({
2017-01-30 14:25:24 +00:00
output = 'mcl_wool:'..name..'_carpet 3',
recipe = {{'mcl_wool:'..name, 'mcl_wool:'..name}},
2015-06-29 17:55:56 +00:00
})
end
end
2017-02-01 17:36:03 +00:00
minetest.register_craft({
output = "mcl_wool:white",
recipe = {
{ "mcl_mobitems:string", "mcl_mobitems:string" },
{ "mcl_mobitems:string", "mcl_mobitems:string" },
},
})
2017-01-10 05:43:07 +00:00
minetest.register_craft({
type = "fuel",
recipe = "group:wool",
burntime = 5,
})
minetest.register_craft({
type = "fuel",
recipe = "group:carpet",
-- Original value: 3.35
burntime = 3,
})