remove debug skybox and add in dyes

master
Jordach 2018-04-20 18:51:22 +01:00
parent 2a5bd35240
commit 8ce679f396
35 changed files with 136 additions and 4 deletions

View File

Before

Width:  |  Height:  |  Size: 607 KiB

After

Width:  |  Height:  |  Size: 607 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 MiB

After

Width:  |  Height:  |  Size: 2.6 MiB

View File

Before

Width:  |  Height:  |  Size: 3.1 MiB

After

Width:  |  Height:  |  Size: 3.1 MiB

View File

Before

Width:  |  Height:  |  Size: 2.9 MiB

After

Width:  |  Height:  |  Size: 2.9 MiB

View File

Before

Width:  |  Height:  |  Size: 6.9 MiB

After

Width:  |  Height:  |  Size: 6.9 MiB

View File

Before

Width:  |  Height:  |  Size: 3.6 MiB

After

Width:  |  Height:  |  Size: 3.6 MiB

View File

Before

Width:  |  Height:  |  Size: 365 B

After

Width:  |  Height:  |  Size: 365 B

View File

Before

Width:  |  Height:  |  Size: 365 B

After

Width:  |  Height:  |  Size: 365 B

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 365 B

After

Width:  |  Height:  |  Size: 365 B

View File

@ -53,17 +53,17 @@ atvomat.crusher_recipes["reddye"] = {"", 1, "dye:red", 4}
atvomat.crusher_recipes["brown"] = {"", 1, "dye:brown", 4}
atvomat.crusher_recipes["orangedye"] = {"", 1, "dye:orange", 4}
atvomat.crusher_recipes["yellowdye"] = {"", 1, "dye:yellow", 4}
atvomat.crusher_recipes["limedye"] = {"", 1, "dye:lime", 4}
atvomat.crusher_recipes["greendye"] = {"", 1, "dye:green", 4}
atvomat.crusher_recipes["darkgreendye"] = {"", 1, "dye:dark_green", 4}
atvomat.crusher_recipes["cyandye"] = {"", 1, "dye:cyan", 4}
atvomat.crusher_recipes["bluedye"] = {"", 1, "dye:blue", 4}
atvomat.crusher_recipes["magenta"] = {"", 1, "dye:magenta", 4}
atvomat.crusher_recipes["skybluedye"] = {"", 1, "dye:sky_blue", 4}
atvomat.crusher_recipes["sea_blue"] = {"", 1, "dye:sea_blue", 4}
atvomat.crusher_recipes["cherry"] = {"", 1, "dye:cherry", 4}
atvomat.crusher_recipes["purple"] = {"", 1, "dye:purple", 4}
atvomat.crusher_recipes["violet"] = {"", 1, "dye:violet", 4}
atvomat.crusher_recipes["white"] = {"", 1, "dye:white", 4}
atvomat.crusher_recipes["lightgrey"] = {"", 1, "dye:light_grey", 4}
atvomat.crusher_recipes["grey"] = {"", 1, "dye:grey", 4}
atvomat.crusher_recipes["darkgrey"] = {"", 1, "dye:dark_grey", 4}
atvomat.crusher_recipes["black"] = {"", 1, "dye:black", 4}
-- logger control, register trees here, format: tree_log, leaves, sapling_name

View File

@ -31,3 +31,135 @@ minetest.register_node("plants:daisy2", {
},
sounds = mcore.sound_plants,
})
-- register global dyes
-- notes: use flowerbeds for registering the nicer looking farmable flowers.
-- these are registered as :dye:colour
minetest.register_craftitem(":dye:red", {
description = "Red Dye",
inventory_image = "dye_red.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:brown", {
description = "Brown Dye",
inventory_image = "dye_brown.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:yellow", {
description = "Red Dye",
inventory_image = "dye_yellow.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:orange", {
description = "Orange Dye",
inventory_image = "dye_orange.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:green", {
description = "Green Dye",
inventory_image = "dye_green.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:dark_green", {
description = "Dark Green Dye",
inventory_image = "dye_dark_green.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:cyan", {
description = "Cyan Dye",
inventory_image = "dye_cyan.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:sky_blue", {
description = "Sky Blue Dye",
inventory_image = "dye_sky_blue.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:sea_blue", {
description = "Sea Blue Dye",
inventory_image = "dye_sea_blue.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:cherry", {
description = "Cherry Dye",
inventory_image = "dye_cherry.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:purple", {
description = "Purple Dye",
inventory_image = "dye_purple.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:violet", {
description = "Violet Dye",
inventory_image = "dye_violet.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:white", {
description = "White Dye",
inventory_image = "dye_white.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:light_grey", {
description = "Light Grey Dye",
inventory_image = "dye_light_grey.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:dark_grey", {
description = "Dark Grey Dye",
inventory_image = "dye_dark_grey.png",
groups = {dye = 1},
})
minetest.register_craftitem(":dye:black", {
description = "Black Dye",
inventory_image = "dye_black.png",
groups = {dye = 1},
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 123 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 122 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 B