2021-03-29 16:39:23 +00:00
|
|
|
local S = minetest.get_translator(minetest.get_current_modname())
|
2021-03-29 19:35:15 +00:00
|
|
|
local colorize_value = 125
|
|
|
|
|
|
|
|
local str = string
|
2021-03-29 16:39:23 +00:00
|
|
|
|
|
|
|
local longdesc = S("This is a piece of equippable armor which reduces the amount of damage you receive.")
|
|
|
|
local usage = S("To equip it, put it on the corresponding armor slot in your inventory menu.")
|
|
|
|
|
|
|
|
local colors = {
|
|
|
|
-- { ID, decription, wool, dye }
|
2021-03-29 19:35:15 +00:00
|
|
|
{ "red", "Red", "mcl_dye:red", "#951d1d" },
|
|
|
|
{ "blue", "Blue", "mcl_dye:blue", "#2a2c94" },
|
|
|
|
{ "cyan", "Cyan", "mcl_dye:cyan", "#0d7d8e" },
|
|
|
|
{ "grey", "Grey", "mcl_dye:dark_grey", "#363a3f" },
|
|
|
|
{ "silver", "Light Grey", "mcl_dye:grey", "#818177" },
|
|
|
|
{ "black", "Black", "mcl_dye:black", "#020307" },
|
|
|
|
{ "yellow", "Yellow", "mcl_dye:yellow", "#f2b410" },
|
|
|
|
{ "green", "Green", "mcl_dye:dark_green", "#495d20" },
|
|
|
|
{ "magenta", "Magenta", "mcl_dye:magenta", "#ae2ea4" },
|
|
|
|
{ "orange", "Orange", "mcl_dye:orange", "#e36501" },
|
|
|
|
{ "purple", "Purple", "mcl_dye:violet", "#681ba1" },
|
|
|
|
{ "brown", "Brown", "mcl_dye:brown", "#623b1a" },
|
|
|
|
{ "pink", "Pink", "mcl_dye:pink", "#d66691" },
|
|
|
|
{ "lime", "Lime", "mcl_dye:green", "#60ad13" },
|
|
|
|
{ "light_blue", "Light Blue", "mcl_dye:lightblue", "#1f8eca" },
|
|
|
|
{ "white", "White", "mcl_dye:white", "#d1d7d8" },
|
2021-03-29 16:39:23 +00:00
|
|
|
}
|
2021-03-29 19:35:15 +00:00
|
|
|
|
|
|
|
--local function get_color_rgb(color)
|
|
|
|
-- return tonumber(str.sub(first, 2, 3)), tonumber(str.sub(first, 4, 5)), tonumber(str.sub(first, 6, 7))
|
|
|
|
--end
|
|
|
|
|
|
|
|
local function calculate_color(first, last)
|
|
|
|
--local first_r = tonumber(str.sub(first, 2, 3))
|
|
|
|
--local first_g = tonumber(str.sub(first, 4, 5))
|
|
|
|
return tonumber(first)*tonumber(last)
|
|
|
|
end
|