Rename Wool to Cloth

master
Wuzzy 2021-07-14 18:30:10 +02:00
parent 270a084a70
commit bf29c69816
4 changed files with 78 additions and 78 deletions

View File

@ -4,7 +4,7 @@ gluncarp = {}
---more wool
minetest.register_node("gluncarp:wool_blackgold", {
description = S("Black Wool with Gold"),
description = S("Black Cloth with Gold"),
paramtype2 = "facedir",
is_ground_content = false,
tiles = {"gluncarp_wool_blackgold.png"},

View File

@ -22,7 +22,7 @@ local colors = {
minetest.register_node("gluncarp:machine", {
description = S("Carpet Workstation"),
_tt_help = S("Turns wool to carpets"),
_tt_help = S("Turns cloth to carpets"),
tiles = {
"gluncarp_machine_top.png",
"gluncarp_machine_bottom.png",
@ -92,7 +92,7 @@ minetest.register_node("gluncarp:machine", {
"background9[6,6;10,6;gluncarp_background.png;true;6]"..
"list[current_name;wool;3,0.5;1,1;]"..
"list[current_name;res;6,0.5;1,1;]"..
"label[3,0;"..F(S("Wool:")).."]"..
"label[3,0;"..F(S("Cloth:")).."]"..
"label[6,0;"..F(S("Output:")).."]"..
"label[4.5,0;"..F(S("Craft:")).."]"..

View File

@ -1083,136 +1083,136 @@ stairs.register_stair_and_slab("straw", "hades_farming:straw",
stairs.register_stair_and_slab("white", "wool:white",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("White Wool Stair"),
S("Outer White Wool Stair"),
S("Inner White Wool Stair"),
S("White Wool Slab"),
S("White Cloth Stair"),
S("Outer White Cloth Stair"),
S("Inner White Cloth Stair"),
S("White Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("grey", "wool:grey",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Grey Wool Stair"),
S("Outer Grey Wool Stair"),
S("Inner Grey Wool Stair"),
S("Grey Wool Slab"),
S("Grey Cloth Stair"),
S("Outer Grey Cloth Stair"),
S("Inner Grey Cloth Stair"),
S("Grey Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("black", "wool:black",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Black Wool Stair"),
S("Outer Black Wool Stair"),
S("Inner Black Wool Stair"),
S("Black Wool Slab"),
S("Black Cloth Stair"),
S("Outer Black Cloth Stair"),
S("Inner Black Cloth Stair"),
S("Black Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("red", "wool:red",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Red Wool Stair"),
S("Outer Red Wool Stair"),
S("Inner Red Wool Stair"),
S("Red Wool Slab"),
S("Red Cloth Stair"),
S("Outer Red Cloth Stair"),
S("Inner Red Cloth Stair"),
S("Red Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("yellow", "wool:yellow",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Yellow Wool Stair"),
S("Outer Yellow Wool Stair"),
S("Inner Yellow Wool Stair"),
S("Yellow Wool Slab"),
S("Yellow Cloth Stair"),
S("Outer Yellow Cloth Stair"),
S("Inner Yellow Cloth Stair"),
S("Yellow Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("green", "wool:green",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Green Wool Stair"),
S("Outer Green Wool Stair"),
S("Inner Green Wool Stair"),
S("Green Wool Slab"),
S("Green Cloth Stair"),
S("Outer Green Cloth Stair"),
S("Inner Green Cloth Stair"),
S("Green Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("cyan", "wool:cyan",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Cyan Wool Stair"),
S("Outer Cyan Wool Stair"),
S("Inner Cyan Wool Stair"),
S("Cyan Wool Slab"),
S("Cyan Cloth Stair"),
S("Outer Cyan Cloth Stair"),
S("Inner Cyan Cloth Stair"),
S("Cyan Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("blue", "wool:blue",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Blue Wool Stair"),
S("Outer Blue Wool Stair"),
S("Inner Blue Wool Stair"),
S("Blue Wool Slab"),
S("Blue Cloth Stair"),
S("Outer Blue Cloth Stair"),
S("Inner Blue Cloth Stair"),
S("Blue Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("magenta", "wool:magenta",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Magenta Wool Stair"),
S("Outer Magenta Wool Stair"),
S("Inner Magenta Wool Stair"),
S("Magenta Wool Slab"),
S("Magenta Cloth Stair"),
S("Outer Magenta Cloth Stair"),
S("Inner Magenta Cloth Stair"),
S("Magenta Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("orange", "wool:orange",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Orange Wool Stair"),
S("Outer Orange Wool Stair"),
S("Inner Orange Wool Stair"),
S("Orange Wool Slab"),
S("Orange Cloth Stair"),
S("Outer Orange Cloth Stair"),
S("Inner Orange Cloth Stair"),
S("Orange Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("violet", "wool:violet",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Violet Wool Stair"),
S("Outer Violet Wool Stair"),
S("Inner Violet Wool Stair"),
S("Violet Wool Slab"),
S("Violet Cloth Stair"),
S("Outer Violet Cloth Stair"),
S("Inner Violet Cloth Stair"),
S("Violet Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("brown", "wool:brown",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Brown Wool Stair"),
S("Outer Brown Wool Stair"),
S("Inner Brown Wool Stair"),
S("Brown Wool Slab"),
S("Brown Cloth Stair"),
S("Outer Brown Cloth Stair"),
S("Inner Brown Cloth Stair"),
S("Brown Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("pink", "wool:pink",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Pink Wool Stair"),
S("Outer Pink Wool Stair"),
S("Inner Pink Wool Stair"),
S("Pink Wool Slab"),
S("Pink Cloth Stair"),
S("Outer Pink Cloth Stair"),
S("Inner Pink Cloth Stair"),
S("Pink Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("dark_grey", "wool:dark_grey",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Dark Grey Wool Stair"),
S("Outer Dark Grey Wool Stair"),
S("Inner Dark Grey Wool Stair"),
S("Dark Grey Wool Slab"),
S("Dark Grey Cloth Stair"),
S("Outer Dark Grey Cloth Stair"),
S("Inner Dark Grey Cloth Stair"),
S("Dark Grey Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("dark_green", "wool:dark_green",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
nil,
S("Dark Green Wool Stair"),
S("Outer Dark Green Wool Stair"),
S("Inner Dark Green Wool Stair"),
S("Dark Green Wool Slab"),
S("Dark Green Cloth Stair"),
S("Outer Dark Green Cloth Stair"),
S("Inner Dark Green Cloth Stair"),
S("Dark Green Cloth Slab"),
hades_sounds.node_sound_defaults())
stairs.register_stair_and_slab("glowcrystal_block", "glowcrystals:glowcrystal_block",

View File

@ -11,21 +11,21 @@ local wool = {}
-- 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 = {
{"white", S("White Wool"), nil},
{"grey", S("Grey Wool"), "basecolor_grey"},
{"black", S("Black Wool"), "basecolor_black"},
{"red", S("Red Wool"), "basecolor_red"},
{"yellow", S("Yellow Wool"), "basecolor_yellow"},
{"green", S("Green Wool"), "basecolor_green"},
{"cyan", S("Cyan Wool"), "basecolor_cyan"},
{"blue", S("Blue Wool"), "basecolor_blue"},
{"magenta", S("Magenta Wool"), "basecolor_magenta"},
{"orange", S("Orange Wool"), "excolor_orange"},
{"violet", S("Violet Wool"), "excolor_violet"},
{"brown", S("Brown Wool"), "unicolor_dark_orange"},
{"pink", S("Pink Wool"), "unicolor_light_red"},
{"dark_grey", S("Dark Grey Wool"), "unicolor_darkgrey"},
{"dark_green", S("Dark Green Wool"), "unicolor_dark_green"},
{"white", S("White Cloth"), nil},
{"grey", S("Grey Cloth"), "basecolor_grey"},
{"black", S("Black Cloth"), "basecolor_black"},
{"red", S("Red Cloth"), "basecolor_red"},
{"yellow", S("Yellow Cloth"), "basecolor_yellow"},
{"green", S("Green Cloth"), "basecolor_green"},
{"cyan", S("Cyan Cloth"), "basecolor_cyan"},
{"blue", S("Blue Cloth"), "basecolor_blue"},
{"magenta", S("Magenta Cloth"), "basecolor_magenta"},
{"orange", S("Orange Cloth"), "excolor_orange"},
{"violet", S("Violet Cloth"), "excolor_violet"},
{"brown", S("Brown Cloth"), "unicolor_dark_orange"},
{"pink", S("Pink Cloth"), "unicolor_light_red"},
{"dark_grey", S("Dark Grey Cloth"), "unicolor_darkgrey"},
{"dark_green", S("Dark Green Cloth"), "unicolor_dark_green"},
}
for _, row in ipairs(wool.dyes) do