fixed bad crafting recipes, bad texture names, removed dark light and saturated greyscales (white_s50, etc)
that should be about it.
190
init.lua
@ -14,7 +14,7 @@ minetest.register_alias("unifieddyes:darkgrey","unifieddyes:darkgrey_paint")
|
|||||||
|
|
||||||
--1 indicates yes, 0 indicates no
|
--1 indicates yes, 0 indicates no
|
||||||
--default:clay_lump + unifieddyes:color = unifiedbricks:color
|
--default:clay_lump + unifieddyes:color = unifiedbricks:color
|
||||||
SETTING_allow_default_coloring = 0
|
SETTING_allow_default_coloring = 1
|
||||||
--red, orange, yellow, lime, green, aqua, cyan, skyblue, blue, violet, magenta,
|
--red, orange, yellow, lime, green, aqua, cyan, skyblue, blue, violet, magenta,
|
||||||
--redviolet, black, darkgrey, mediumgrey, lightgrey, white, respectively (by default)
|
--redviolet, black, darkgrey, mediumgrey, lightgrey, white, respectively (by default)
|
||||||
SETTING_allow_hues = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}
|
SETTING_allow_hues = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}
|
||||||
@ -146,25 +146,25 @@ end
|
|||||||
register_clay_craft = function(color_combo,color_one,color_two)
|
register_clay_craft = function(color_combo,color_one,color_two)
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 2",
|
output = "unifiedbricks:clay_" .. color_combo .. " 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 1",
|
output = "unifiedbricks:clay_" .. color_combo .. " 1",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifieddyes:" .. color_one,
|
"unifieddyes:" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 1",
|
output = "unifiedbricks:clay_" .. color_combo .. " 1",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifieddyes:" .. color_two,
|
"unifieddyes:" .. color_two,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
@ -172,63 +172,63 @@ end
|
|||||||
register_clay_craft_three = function(color_combo,color_one,color_two,color_three)
|
register_clay_craft_three = function(color_combo,color_one,color_two,color_three)
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 3",
|
output = "unifiedbricks:clay_" .. color_combo .. " 3",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifiedbricks:clay" .. color_three,
|
"unifiedbricks:clay_" .. color_three,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 2",
|
output = "unifiedbricks:clay_" .. color_combo .. " 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifieddyes:" .. color_three,
|
"unifieddyes:" .. color_three,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 2",
|
output = "unifiedbricks:clay_" .. color_combo .. " 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifieddyes:" .. color_two,
|
"unifieddyes:" .. color_two,
|
||||||
"unifiedbricks:clay" .. color_three,
|
"unifiedbricks:clay_" .. color_three,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 2",
|
output = "unifiedbricks:clay_" .. color_combo .. " 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifieddyes:" .. color_one,
|
"unifieddyes:" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifiedbricks:clay" .. color_three,
|
"unifiedbricks:clay_" .. color_three,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 1",
|
output = "unifiedbricks:clay_" .. color_combo .. " 1",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifieddyes:" .. color_one,
|
"unifieddyes:" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifieddyes:" .. color_three,
|
"unifieddyes:" .. color_three,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 1",
|
output = "unifiedbricks:clay_" .. color_combo .. " 1",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifieddyes:" .. color_one,
|
"unifieddyes:" .. color_one,
|
||||||
"unifieddyes:" .. color_two,
|
"unifieddyes:" .. color_two,
|
||||||
"unifiedbricks:clay" .. color_three,
|
"unifiedbricks:clay_" .. color_three,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 1",
|
output = "unifiedbricks:clay_" .. color_combo .. " 1",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifieddyes:" .. color_two,
|
"unifieddyes:" .. color_two,
|
||||||
"unifieddyes:" .. color_three,
|
"unifieddyes:" .. color_three,
|
||||||
},
|
},
|
||||||
@ -237,159 +237,159 @@ end
|
|||||||
register_clay_craft_three_reducedfat = function(color_combo,color_one,color_two,color_three)
|
register_clay_craft_three_reducedfat = function(color_combo,color_one,color_two,color_three)
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 3",
|
output = "unifiedbricks:clay_" .. color_combo .. " 3",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifiedbricks:clay" .. color_three,
|
"unifiedbricks:clay_" .. color_three,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 2",
|
output = "unifiedbricks:clay_" .. color_combo .. " 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifieddyes:" .. color_three,
|
"unifieddyes:" .. color_three,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 2",
|
output = "unifiedbricks:clay_" .. color_combo .. " 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifieddyes:" .. color_two,
|
"unifieddyes:" .. color_two,
|
||||||
"unifiedbricks:clay" .. color_three,
|
"unifiedbricks:clay_" .. color_three,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 1",
|
output = "unifiedbricks:clay_" .. color_combo .. " 1",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifieddyes:" .. color_one,
|
"unifieddyes:" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifieddyes:" .. color_three,
|
"unifieddyes:" .. color_three,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 1",
|
output = "unifiedbricks:clay_" .. color_combo .. " 1",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifieddyes:" .. color_one,
|
"unifieddyes:" .. color_one,
|
||||||
"unifieddyes:" .. color_two,
|
"unifieddyes:" .. color_two,
|
||||||
"unifiedbricks:clay" .. color_three,
|
"unifiedbricks:clay_" .. color_three,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
register_clay_craft_four_reducedfat = function(color_combo,color_one,color_two,color_three,color_four)
|
register_clay_craft_four_reducedfat = function(color_combo,color_one,color_two,color_three,color_four)
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 4",
|
output = "unifiedbricks:clay_" .. color_combo .. " 4",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifiedbricks:clay" .. color_three,
|
"unifiedbricks:clay_" .. color_three,
|
||||||
"unifiedbricks:clay" .. color_four,
|
"unifiedbricks:clay_" .. color_four,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 3",
|
output = "unifiedbricks:clay_" .. color_combo .. " 3",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifiedbricks:clay" .. color_three,
|
"unifiedbricks:clay_" .. color_three,
|
||||||
"unifieddyes:" .. color_four,
|
"unifieddyes:" .. color_four,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 3",
|
output = "unifiedbricks:clay_" .. color_combo .. " 3",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifieddyes:" .. color_three,
|
"unifieddyes:" .. color_three,
|
||||||
"unifiedbricks:clay" .. color_four,
|
"unifiedbricks:clay_" .. color_four,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 3",
|
output = "unifiedbricks:clay_" .. color_combo .. " 3",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifieddyes:" .. color_two,
|
"unifieddyes:" .. color_two,
|
||||||
"unifiedbricks:clay" .. color_three,
|
"unifiedbricks:clay_" .. color_three,
|
||||||
"unifiedbricks:clay" .. color_four,
|
"unifiedbricks:clay_" .. color_four,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 2",
|
output = "unifiedbricks:clay_" .. color_combo .. " 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifieddyes:" .. color_one,
|
"unifieddyes:" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifiedbricks:clay" .. color_three,
|
"unifiedbricks:clay_" .. color_three,
|
||||||
"unifieddyes:" .. color_four,
|
"unifieddyes:" .. color_four,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 2",
|
output = "unifiedbricks:clay_" .. color_combo .. " 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifieddyes:" .. color_one,
|
"unifieddyes:" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifieddyes:" .. color_three,
|
"unifieddyes:" .. color_three,
|
||||||
"unifiedbricks:clay" .. color_four,
|
"unifiedbricks:clay_" .. color_four,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 2",
|
output = "unifiedbricks:clay_" .. color_combo .. " 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifieddyes:" .. color_one,
|
"unifieddyes:" .. color_one,
|
||||||
"unifieddyes:" .. color_two,
|
"unifieddyes:" .. color_two,
|
||||||
"unifiedbricks:clay" .. color_three,
|
"unifiedbricks:clay_" .. color_three,
|
||||||
"unifiedbricks:clay" .. color_four,
|
"unifiedbricks:clay_" .. color_four,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 2",
|
output = "unifiedbricks:clay_" .. color_combo .. " 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifiedbricks:clay" .. color_one,
|
"unifiedbricks:clay_" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifieddyes:" .. color_three,
|
"unifieddyes:" .. color_three,
|
||||||
"unifieddyes:" .. color_four,
|
"unifieddyes:" .. color_four,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 1",
|
output = "unifiedbricks:clay_" .. color_combo .. " 1",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifieddyes:" .. color_one,
|
"unifieddyes:" .. color_one,
|
||||||
"unifieddyes:" .. color_two,
|
"unifieddyes:" .. color_two,
|
||||||
"unifiedbricks:clay" .. color_three,
|
"unifiedbricks:clay_" .. color_three,
|
||||||
"unifieddyes:" .. color_four,
|
"unifieddyes:" .. color_four,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 1",
|
output = "unifiedbricks:clay_" .. color_combo .. " 1",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifieddyes:" .. color_one,
|
"unifieddyes:" .. color_one,
|
||||||
"unifiedbricks:clay" .. color_two,
|
"unifiedbricks:clay_" .. color_two,
|
||||||
"unifieddyes:" .. color_three,
|
"unifieddyes:" .. color_three,
|
||||||
"unifieddyes:" .. color_four,
|
"unifieddyes:" .. color_four,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "unifiedbricks:clay" .. color_combo .. " 1",
|
output = "unifiedbricks:clay_" .. color_combo .. " 1",
|
||||||
recipe = {
|
recipe = {
|
||||||
"unifieddyes:" .. color_one,
|
"unifieddyes:" .. color_one,
|
||||||
"unifieddyes:" .. color_two,
|
"unifieddyes:" .. color_two,
|
||||||
"unifieddyes:" .. color_three,
|
"unifieddyes:" .. color_three,
|
||||||
"unifiedbricks:clay" .. color_four,
|
"unifiedbricks:clay_" .. color_four,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
@ -435,10 +435,16 @@ if SETTING_allow_hues[i] == 1 then
|
|||||||
else
|
else
|
||||||
for k = 1,4 do
|
for k = 1,4 do
|
||||||
if SETTING_allow_darkness[k] == 1 then
|
if SETTING_allow_darkness[k] == 1 then
|
||||||
|
if k == 4 then
|
||||||
|
formalname = FORMALDARKNESS[k] .. FORMALHUES[i]
|
||||||
|
name = DARKNESS[k] .. HUES[i]
|
||||||
|
if j == 1 then register_clay_block(name,formalname)
|
||||||
|
elseif j == 2 then register_clay_lump(name,formalname)
|
||||||
|
elseif j == 3 then register_brick(name,formalname)
|
||||||
|
else register_brick_block(name,formalname) end
|
||||||
|
else
|
||||||
for l = 1,2 do
|
for l = 1,2 do
|
||||||
if SETTING_allow_saturation[l] == 1 then
|
if SETTING_allow_saturation[l] == 1 then
|
||||||
if k == 4 and l == 1 then
|
|
||||||
else
|
|
||||||
formalname = FORMALDARKNESS[k] .. FORMALHUES[i] .. FORMALSATURATION[l]
|
formalname = FORMALDARKNESS[k] .. FORMALHUES[i] .. FORMALSATURATION[l]
|
||||||
name = DARKNESS[k] .. HUES[i] .. SATURATION[l]
|
name = DARKNESS[k] .. HUES[i] .. SATURATION[l]
|
||||||
if j == 1 then register_clay_block(name,formalname)
|
if j == 1 then register_clay_block(name,formalname)
|
||||||
@ -460,6 +466,9 @@ end
|
|||||||
if SETTING_allow_types[1] + SETTING_allow_types[2] == 2 then
|
if SETTING_allow_types[1] + SETTING_allow_types[2] == 2 then
|
||||||
for i = 1,17 do
|
for i = 1,17 do
|
||||||
if SETTING_allow_hues[i] == 1 then
|
if SETTING_allow_hues[i] == 1 then
|
||||||
|
if i > 12 then
|
||||||
|
register_clay_block_craft(HUES[i])
|
||||||
|
else
|
||||||
for k = 1,4 do
|
for k = 1,4 do
|
||||||
if SETTING_allow_darkness[k] == 1 then
|
if SETTING_allow_darkness[k] == 1 then
|
||||||
for l = 1,2 do
|
for l = 1,2 do
|
||||||
@ -472,6 +481,7 @@ if SETTING_allow_types[1] + SETTING_allow_types[2] == 2 then
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
--REGISTERS ALL CLAY LUMP CRAFTING RECIPES
|
--REGISTERS ALL CLAY LUMP CRAFTING RECIPES
|
||||||
if SETTING_allow_types[2] == 1 then
|
if SETTING_allow_types[2] == 1 then
|
||||||
@ -486,7 +496,7 @@ if SETTING_allow_types[2] == 1 then
|
|||||||
if SETTING_allow_hues[11] == 1 then register_clay_craft("magenta","blue","red") end
|
if SETTING_allow_hues[11] == 1 then register_clay_craft("magenta","blue","red") end
|
||||||
if SETTING_allow_hues[12] == 1 then register_clay_craft("redviolet","magenta","red") end
|
if SETTING_allow_hues[12] == 1 then register_clay_craft("redviolet","magenta","red") end
|
||||||
|
|
||||||
if SETTING_allow_hues[14] == 1 then register_clay_craft("darkgrey","black","black","white") end
|
if SETTING_allow_hues[14] == 1 then register_clay_craft_three_reducedfat("darkgrey","black","black","white") end
|
||||||
if SETTING_allow_hues[15] == 1 then register_clay_craft("grey","white","black") end
|
if SETTING_allow_hues[15] == 1 then register_clay_craft("grey","white","black") end
|
||||||
if SETTING_allow_hues[16] == 1 then register_clay_craft_three_reducedfat("lightgrey","white","white","black") end
|
if SETTING_allow_hues[16] == 1 then register_clay_craft_three_reducedfat("lightgrey","white","white","black") end
|
||||||
|
|
||||||
@ -499,27 +509,27 @@ if SETTING_allow_types[2] == 1 then
|
|||||||
|
|
||||||
for i = 1,12 do
|
for i = 1,12 do
|
||||||
if SETTING_allow_hues[i] == 1 then
|
if SETTING_allow_hues[i] == 1 then
|
||||||
if SETTING_allow_darkness[1] + SETTING_allow_saturation[1] == 2 then
|
if SETTING_allow_darkness[1] + SETTING_allow_saturation[1] == 2 then --dark s50
|
||||||
register_clay_craft(DARKNESS[1] .. HUES[i] .. SATURATION[1],HUES[i],"darkgrey")
|
register_clay_craft(DARKNESS[1] .. HUES[i] .. SATURATION[1],HUES[i],"darkgrey")
|
||||||
register_clay_craft_four_reducedfat(DARKNESS[1] .. HUES[i] .. SATURATION[1],"black","black","white",HUES[i])
|
register_clay_craft_four_reducedfat(DARKNESS[1] .. HUES[i] .. SATURATION[1],"black","black","white",HUES[i])
|
||||||
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[1] .. HUES[i] .. SATURATION[1]) end end
|
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[1] .. HUES[i] .. SATURATION[1]) end end
|
||||||
if SETTING_allow_darkness[1] + SETTING_allow_saturation[2] == 2 then
|
if SETTING_allow_darkness[1] + SETTING_allow_saturation[2] == 2 then --dark
|
||||||
register_clay_craft_three_reducedfat(DARKNESS[1] .. HUES[i] .. SATURATION[2],"black","black",HUES[i])
|
register_clay_craft_three_reducedfat(DARKNESS[1] .. HUES[i] .. SATURATION[2],"black","black",HUES[i])
|
||||||
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[1] .. HUES[i] .. SATURATION[2]) end end
|
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[1] .. HUES[i] .. SATURATION[2]) end end
|
||||||
if SETTING_allow_darkness[2] + SETTING_allow_saturation[1] == 2 then
|
if SETTING_allow_darkness[2] + SETTING_allow_saturation[1] == 2 then --medium s50
|
||||||
register_clay_craft(DARKNESS[2] .. HUES[i] .. SATURATION[1],HUES[i],"grey")
|
register_clay_craft(DARKNESS[2] .. HUES[i] .. SATURATION[1],HUES[i],"grey")
|
||||||
register_clay_craft_three(DARKNESS[2] .. HUES[i] .. SATURATION[1],HUES[i],"black","white")
|
register_clay_craft_three(DARKNESS[2] .. HUES[i] .. SATURATION[1],HUES[i],"black","white")
|
||||||
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[2] .. HUES[i] .. SATURATION[1]) end end
|
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[2] .. HUES[i] .. SATURATION[1]) end end
|
||||||
if SETTING_allow_darkness[2] + SETTING_allow_saturation[2] == 2 then
|
if SETTING_allow_darkness[2] + SETTING_allow_saturation[2] == 2 then --medium
|
||||||
register_clay_craft(DARKNESS[2] .. HUES[i] .. SATURATION[2],HUES[i],"black")
|
register_clay_craft(DARKNESS[2] .. HUES[i] .. SATURATION[2],HUES[i],"black")
|
||||||
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[2] .. HUES[i] .. SATURATION[2]) end end
|
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[2] .. HUES[i] .. SATURATION[2]) end end
|
||||||
if SETTING_allow_darkness[3] + SETTING_allow_saturation[1] == 2 then
|
if SETTING_allow_darkness[3] + SETTING_allow_saturation[1] == 2 then --bright s50
|
||||||
register_clay_craft(DARKNESS[3] .. HUES[i] .. SATURATION[1],HUES[i],"lightgrey")
|
register_clay_craft(DARKNESS[3] .. HUES[i] .. SATURATION[1],HUES[i],"lightgrey")
|
||||||
register_clay_craft_four_reducedfat(DARKNESS[3] .. HUES[i] .. SATURATION[1],"white","white","black",HUES[i])
|
register_clay_craft_four_reducedfat(DARKNESS[3] .. HUES[i] .. SATURATION[1],"white","white","black",HUES[i])
|
||||||
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[3] .. HUES[i] .. SATURATION[1]) end end
|
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[3] .. HUES[i] .. SATURATION[1]) end end
|
||||||
if SETTING_allow_darkness[3] + SETTING_allow_saturation[2] == 2 then
|
if SETTING_allow_darkness[3] + SETTING_allow_saturation[2] == 2 then --bright
|
||||||
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[3] .. HUES[i] .. SATURATION[2]) end end
|
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[3] .. HUES[i] .. SATURATION[2]) end end
|
||||||
if SETTING_allow_darkness[4] + SETTING_allow_saturation[1] == 2 then
|
if SETTING_allow_darkness[4] + SETTING_allow_saturation[1] == 2 then --light
|
||||||
register_clay_craft(DARKNESS[4] .. HUES[i] .. SATURATION[1],HUES[i],"white")
|
register_clay_craft(DARKNESS[4] .. HUES[i] .. SATURATION[1],HUES[i],"white")
|
||||||
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[4] .. HUES[i] .. SATURATION[2]) end end
|
if SETTING_allow_default_coloring == 1 then register_clay_craft_default(DARKNESS[4] .. HUES[i] .. SATURATION[2]) end end
|
||||||
end
|
end
|
||||||
@ -530,6 +540,9 @@ end
|
|||||||
if SETTING_allow_types[2] + SETTING_allow_types[3] == 2 then
|
if SETTING_allow_types[2] + SETTING_allow_types[3] == 2 then
|
||||||
for i = 1,17 do
|
for i = 1,17 do
|
||||||
if SETTING_allow_hues[i] == 1 then
|
if SETTING_allow_hues[i] == 1 then
|
||||||
|
if i > 12 then
|
||||||
|
register_brick_cooking(HUES[i])
|
||||||
|
else
|
||||||
for k = 1,4 do
|
for k = 1,4 do
|
||||||
if SETTING_allow_darkness[k] == 1 then
|
if SETTING_allow_darkness[k] == 1 then
|
||||||
for l = 1,2 do
|
for l = 1,2 do
|
||||||
@ -542,11 +555,15 @@ if SETTING_allow_types[2] + SETTING_allow_types[3] == 2 then
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
--REGISTERS ALL BRICK BLOCK CRAFTING RECIPES
|
--REGISTERS ALL BRICK BLOCK CRAFTING RECIPES
|
||||||
if SETTING_allow_types[3] + SETTING_allow_types[4] == 2 then
|
if SETTING_allow_types[3] + SETTING_allow_types[4] == 2 then
|
||||||
for i = 1,17 do
|
for i = 1,17 do
|
||||||
if SETTING_allow_hues[i] == 1 then
|
if SETTING_allow_hues[i] == 1 then
|
||||||
|
if i > 12 then
|
||||||
|
register_brick_block_craft(HUES[i])
|
||||||
|
else
|
||||||
for k = 1,4 do
|
for k = 1,4 do
|
||||||
if SETTING_allow_darkness[k] == 1 then
|
if SETTING_allow_darkness[k] == 1 then
|
||||||
for l = 1,2 do
|
for l = 1,2 do
|
||||||
@ -559,5 +576,6 @@ if SETTING_allow_types[3] + SETTING_allow_types[4] == 2 then
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
print("[UnifiedBricks] Loaded!")
|
print("[UnifiedBricks] Loaded!")
|
||||||
|
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 370 B After Width: | Height: | Size: 370 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_dark_aqua_s50_.png → textures/unifiedbricks_brick_dark_aqua_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_dark_blue_s50_.png → textures/unifiedbricks_brick_dark_blue_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_dark_cyan_s50_.png → textures/unifiedbricks_brick_dark_cyan_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_dark_green_s50_.png → textures/unifiedbricks_brick_dark_green_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_dark_lime_s50_.png → textures/unifiedbricks_brick_dark_lime_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_dark_orange_s50_.png → textures/unifiedbricks_brick_dark_orange_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_dark_violet_s50_.png → textures/unifiedbricks_brick_dark_violet_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_dark_yellow_s50_.png → textures/unifiedbricks_brick_dark_yellow_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 370 B After Width: | Height: | Size: 370 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 370 B After Width: | Height: | Size: 370 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 371 B After Width: | Height: | Size: 371 B |
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 384 B |
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 384 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_medium_aqua_s50_.png → textures/unifiedbricks_brick_medium_aqua_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_medium_blue_s50_.png → textures/unifiedbricks_brick_medium_blue_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_medium_cyan_s50_.png → textures/unifiedbricks_brick_medium_cyan_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_medium_lime_s50_.png → textures/unifiedbricks_brick_medium_lime_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_medium_red_s50_.png → textures/unifiedbricks_brick_medium_red_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
BIN
textures/unifiedbricks_brick_redviolet_s50_.png → textures/unifiedbricks_brick_redviolet_s50.png
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 371 B After Width: | Height: | Size: 371 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 414 B After Width: | Height: | Size: 414 B |
BIN
textures/unifiedbricks_brickblock_aqua_s50_.png → textures/unifiedbricks_brickblock_aqua_s50.png
Before Width: | Height: | Size: 423 B After Width: | Height: | Size: 423 B |
Before Width: | Height: | Size: 404 B After Width: | Height: | Size: 404 B |
Before Width: | Height: | Size: 414 B After Width: | Height: | Size: 414 B |
BIN
textures/unifiedbricks_brickblock_blue_s50_.png → textures/unifiedbricks_brickblock_blue_s50.png
Before Width: | Height: | Size: 423 B After Width: | Height: | Size: 423 B |
Before Width: | Height: | Size: 414 B After Width: | Height: | Size: 414 B |
BIN
textures/unifiedbricks_brickblock_cyan_s50_.png → textures/unifiedbricks_brickblock_cyan_s50.png
Before Width: | Height: | Size: 423 B After Width: | Height: | Size: 423 B |
Before Width: | Height: | Size: 414 B After Width: | Height: | Size: 414 B |
Before Width: | Height: | Size: 414 B After Width: | Height: | Size: 414 B |
Before Width: | Height: | Size: 414 B After Width: | Height: | Size: 414 B |