Compare commits

...

8 Commits

Author SHA1 Message Date
tchncs 22bf1b4fb3 make nodes eatable
drop duplicate node
2016-10-08 12:36:59 +02:00
Kleopatra Angelidi 42f3f4a895 Merge pull request #7 from donat-b/master
Rename textures (fixes missing textures after the typo fix)
2014-10-30 19:25:57 +02:00
donat_b 7574583f62 Rename textures (fixes missing textures after the typo fix) 2014-10-28 12:18:13 +03:00
Kleopatra Angelidi b439b850b6 Merge pull request #6 from donat-b/master
Add optional moreblocks dependency
2014-10-22 20:16:30 +03:00
donat_b 2f71568493 Add optional moreblocks dependency 2014-10-22 21:09:57 +04:00
Kleopatra Angelidi 6a6215020a Merge pull request #5 from donat-b/master
Add moreblocks support, fix some typos
2014-10-22 19:22:13 +03:00
Kleopatra Angelidi 772be45147 Merge pull request #4 from donat-b/textures
Optimize textures by 94 KiB (convert to indexed colors, optipng)
2014-10-22 18:22:20 +03:00
donat_b b8b182c76d Optimize textures by 94 KiB (convert to indexed colors and apply optipng) 2014-10-22 18:52:25 +04:00
55 changed files with 37 additions and 9 deletions

View File

@ -1,2 +1,3 @@
default
mtfoods
mtfoods
moreblocks?

View File

@ -10,6 +10,7 @@ minetest.register_node("mtcandy:sugar_block", {
tiles = {"mtcandy_sugar_block.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
--------------------------
@ -17,7 +18,7 @@ minetest.register_node("mtcandy:sugar_block", {
--------------------------
minetest.register_craft({
output = "mtcandy:sugar_block",
output = "mtcandy:sugar_block",
recipe = {
{"mtfoods:sugar" ,"mtfoods:sugar" ,"mtfoods:sugar"},
{"mtfoods:sugar" ,"mtfoods:sugar" ,"mtfoods:sugar"},
@ -35,6 +36,7 @@ minetest.register_node("mtcandy:caramel", {
tiles = {"mtcandy_caramel.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
----------------------
@ -57,6 +59,7 @@ minetest.register_node("mtcandy:crosscandy", {
tiles = {"mtcandy_crosscandy.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
-------------------------
@ -83,6 +86,7 @@ minetest.register_node("mtcandy:candyrec_bluecyan", {
tiles = {"mtcandy_candyrec_bluecyan.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:candyrec_magenta", {
@ -90,6 +94,7 @@ minetest.register_node("mtcandy:candyrec_magenta", {
tiles = {"mtcandy_candyrec_magenta.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:candyrec_orange", {
@ -97,6 +102,7 @@ minetest.register_node("mtcandy:candyrec_orange", {
tiles = {"mtcandy_candyrec_orange.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:candyrec_yellow", {
@ -104,6 +110,7 @@ minetest.register_node("mtcandy:candyrec_yellow", {
tiles = {"mtcandy_candyrec_yellow.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
@ -158,13 +165,7 @@ minetest.register_node("mtcandy:dotted_green", {
tiles = {"mtcandy_dotted_green.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("mtcandy:dotted_green", {
description = "Dotted Green",
tiles = {"mtcandy_dotted_green.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:dotted_red", {
@ -172,6 +173,7 @@ minetest.register_node("mtcandy:dotted_red", {
tiles = {"mtcandy_dotted_red.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:dotted_pink", {
@ -179,6 +181,7 @@ minetest.register_node("mtcandy:dotted_pink", {
tiles = {"mtcandy_dotted_pink.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:dotted_orange", {
@ -186,6 +189,7 @@ minetest.register_node("mtcandy:dotted_orange", {
tiles = {"mtcandy_dotted_orange.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:dotted_yellow", {
@ -193,6 +197,7 @@ minetest.register_node("mtcandy:dotted_yellow", {
tiles = {"mtcandy_dotted_yellow.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
@ -255,6 +260,7 @@ minetest.register_node("mtcandy:peppermint", {
tiles = {"mtcandy_peppermint_top.png", "mtcandy_peppermint_top.png", "mtcandy_peppermint_side.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
@ -263,6 +269,7 @@ minetest.register_node("mtcandy:peppermint_red", {
tiles = {"mtcandy_peppermint_red.png", "mtcandy_peppermint_red_bott.png", "mtcandy_peppermint_red_side.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:peppermint_cyan_top", {
@ -270,6 +277,7 @@ minetest.register_node("mtcandy:peppermint_cyan_top", {
tiles = {"mtcandy_peppermint_cyan_top.png", "mtcandy_peppermint_cyan_bott.png", "mtcandy_peppermint_cyan_side.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:peppermint_green_top", {
@ -277,6 +285,7 @@ minetest.register_node("mtcandy:peppermint_green_top", {
tiles = {"mtcandy_peppermint_green_top.png", "mtcandy_peppermint_green_bott.png", "mtcandy_peppermint_green_side.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:peppermint_magenta_top", {
@ -284,6 +293,7 @@ minetest.register_node("mtcandy:peppermint_magenta_top", {
tiles = {"mtcandy_peppermint_magenta_top.png", "mtcandy_peppermint_magenta_bott.png", "mtcandy_peppermint_magenta_side.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:peppermint_orange_top", {
@ -291,6 +301,7 @@ minetest.register_node("mtcandy:peppermint_orange_top", {
tiles = {"mtcandy_peppermint_orange_top.png", "mtcandy_peppermint_orange_bott.png", "mtcandy_peppermint_orange_side.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:peppermint_yellow_top", {
@ -298,6 +309,7 @@ minetest.register_node("mtcandy:peppermint_yellow_top", {
tiles = {"mtcandy_peppermint_yellow_top.png", "mtcandy_peppermint_yellow_bott.png", "mtcandy_peppermint_yellow_side.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
@ -378,6 +390,7 @@ minetest.register_node("mtcandy:spiral_blue", {
tiles = {"mtcandy_spiral_blue.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:spiral_purple", {
@ -385,6 +398,7 @@ minetest.register_node("mtcandy:spiral_purple", {
tiles = {"mtcandy_spiral_purple.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:spiral_yellow", {
@ -392,6 +406,7 @@ minetest.register_node("mtcandy:spiral_yellow", {
tiles = {"mtcandy_spiral_yellow.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
@ -436,6 +451,7 @@ minetest.register_node("mtcandy:striped_pink_brown", {
tiles = {"mtcandy_striped_pink_brown.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:striped_pink_white", {
@ -443,6 +459,7 @@ minetest.register_node("mtcandy:striped_pink_white", {
tiles = {"mtcandy_striped_pink_white.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:striped_pink_yellow", {
@ -450,6 +467,7 @@ minetest.register_node("mtcandy:striped_pink_yellow", {
tiles = {"mtcandy_striped_pink_yellow.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:striped_purple_green", {
@ -457,6 +475,7 @@ minetest.register_node("mtcandy:striped_purple_green", {
tiles = {"mtcandy_striped_purple_green.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:striped_lime_green", {
@ -464,6 +483,7 @@ minetest.register_node("mtcandy:striped_lime_green", {
tiles = {"mtcandy_striped_lime_green.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
@ -526,6 +546,7 @@ minetest.register_node("mtcandy:milk_choco", {
tiles = {"mtcandy_milk_choco.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:white_choco", {
@ -533,6 +554,7 @@ minetest.register_node("mtcandy:white_choco", {
tiles = {"mtcandy_white_choco.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
@ -569,6 +591,7 @@ minetest.register_node("mtcandy:orange", {
light_source = 10,
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:pcorn_side", {
@ -577,6 +600,7 @@ minetest.register_node("mtcandy:pcorn_side", {
light_source = 10,
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:daisy", {
@ -585,6 +609,7 @@ minetest.register_node("mtcandy:daisy", {
light_source = 10,
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:heart_candy", {
@ -593,6 +618,7 @@ minetest.register_node("mtcandy:heart_candy", {
light_source = 10,
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})
minetest.register_node("mtcandy:emenems", {
description = "m & m",
@ -600,6 +626,7 @@ minetest.register_node("mtcandy:emenems", {
light_source = 10,
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
on_use = minetest.item_eat(4),
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 361 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 361 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 361 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 361 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 488 B

After

Width:  |  Height:  |  Size: 629 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 347 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 882 B

After

Width:  |  Height:  |  Size: 974 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 675 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 677 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 687 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 639 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 699 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 686 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 361 B

After

Width:  |  Height:  |  Size: 403 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 720 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 292 B

After

Width:  |  Height:  |  Size: 431 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 835 B

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 135 B

After

Width:  |  Height:  |  Size: 302 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 718 B

After

Width:  |  Height:  |  Size: 716 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 872 B

After

Width:  |  Height:  |  Size: 651 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 631 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 344 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 625 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 760 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 335 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 766 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 684 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 376 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 701 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 677 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 682 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 645 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 655 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 315 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 294 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 702 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 695 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 591 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 622 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 621 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 275 B

After

Width:  |  Height:  |  Size: 384 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 347 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 234 B

After

Width:  |  Height:  |  Size: 384 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 434 B

After

Width:  |  Height:  |  Size: 434 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 274 B

After

Width:  |  Height:  |  Size: 384 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 384 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 726 B

After

Width:  |  Height:  |  Size: 619 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 325 B

After

Width:  |  Height:  |  Size: 472 B