summaryrefslogtreecommitdiff
path: root/unifieddyes
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-02-26 22:35:37 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-02-26 22:35:37 -0500
commit1770573a8f612c8337618272c19a81a1074e5f1e (patch)
tree27704fee5ce96eeda6f14ec5b57f2f8d7fcf0b34 /unifieddyes
parent087052e2f36fbd450b8dff376896a1c76a1d5fb4 (diff)
downloaddreambuilder_modpack-1770573a8f612c8337618272c19a81a1074e5f1e.tar
dreambuilder_modpack-1770573a8f612c8337618272c19a81a1074e5f1e.tar.gz
dreambuilder_modpack-1770573a8f612c8337618272c19a81a1074e5f1e.tar.bz2
dreambuilder_modpack-1770573a8f612c8337618272c19a81a1074e5f1e.tar.xz
dreambuilder_modpack-1770573a8f612c8337618272c19a81a1074e5f1e.zip
update unified dyes
Diffstat (limited to 'unifieddyes')
-rw-r--r--unifieddyes/init.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/unifieddyes/init.lua b/unifieddyes/init.lua
index 985416c..1221a72 100644
--- a/unifieddyes/init.lua
+++ b/unifieddyes/init.lua
@@ -783,7 +783,7 @@ minetest.register_craftitem(":dye:light_grey", {
on_use = unifieddyes.on_use
})
-local base_color_crafts = {
+unifieddyes.base_color_crafts = {
{ "red", "flowers:rose", nil, nil, nil, nil, 4 },
{ "vermilion", "dye:red", "dye:orange", nil, nil, nil, 3 },
{ "orange", "flowers:tulip", nil, nil, nil, nil, 4 },
@@ -834,7 +834,7 @@ local base_color_crafts = {
{ "white", "flowers:dandelion_white", nil, nil, nil, nil, 4 },
}
-local shade_crafts = {
+unifieddyes.shade_crafts = {
{ "faint_", "", "dye:white", "dye:white", "dye:white", 4 },
{ "pastel_", "", "dye:white", "dye:white", nil, 3 },
{ "light_", "", "dye:white", nil, nil, 2 },
@@ -849,7 +849,7 @@ local shade_crafts = {
{ "dark_", "_s50", "dye:black", "dye:black", "dye:white", 4 },
}
-for _,i in ipairs(base_color_crafts) do
+for _,i in ipairs(unifieddyes.base_color_crafts) do
local color = i[1]
local yield = i[7]
@@ -865,7 +865,7 @@ for _,i in ipairs(base_color_crafts) do
},
})
- for _,j in ipairs(shade_crafts) do
+ for _,j in ipairs(unifieddyes.shade_crafts) do
local firstdye = j[3]
if firstdye == "color" then firstdye = "dye:"..color end
@@ -885,7 +885,7 @@ for _,i in ipairs(base_color_crafts) do
end
end
-local greymixes = {
+unifieddyes.greymixes = {
{ 1, "dye:black", "dye:black", "dye:black", "dye:dark_grey", 4 },
{ 2, "dye:black", "dye:black", "dye:dark_grey", nil, 3 },
{ 3, "dye:black", "dye:dark_grey", nil, nil, 2 },
@@ -902,7 +902,7 @@ local greymixes = {
{ 14, "dye:white", "dye:white", "dye:light_grey", nil, 3 },
}
-for _, i in ipairs(greymixes) do
+for _, i in ipairs(unifieddyes.greymixes) do
local shade = i[1]
local dye1 = i[2]
local dye2 = i[3]