Initial commit

master
Kleopatra Angelidi 2014-10-17 16:21:54 +03:00
commit cf265aca41
45 changed files with 230 additions and 0 deletions

1
depends.txt Normal file
View File

@ -0,0 +1 @@
default

215
init.lua Normal file
View File

@ -0,0 +1,215 @@
--= Candy by Ratmonkey
minetest.register_node("candy:crosscandy", {
description = "Crosscandy",
tiles = {"crosscandy.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_node("candy:candyrec_bluecyan", {
description = "Candyrec Blue",
tiles = {"candyrec_bluecyan.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_node("candy:candyrec_magenta", {
description = "Candyrec Magenta",
tiles = {"candyrec_magenta.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_node("candy:candyrec_orange", {
description = "Candyrec Orange",
tiles = {"candyrec_orange.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_node("candy:candyrec_yellow", {
description = "Candyrec Yellow",
tiles = {"candyrec_yellow.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_node("candy:dotted_green", {
description = "Dotted Green",
tiles = {"dotted_green.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_node("candy:dotted_green2", {
description = "Dotted Green2",
tiles = {"dotted_green2.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_node("candy:dotted_green", {
description = "Dotted Green",
tiles = {"dotted_green.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_node("candy:dotted_red", {
description = "Dotted Red",
tiles = {"dotted_red.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_node("candy:dotted_pink", {
description = "Dotted Pink",
tiles = {"dotted_pink.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_node("candy:dotted_orange", {
description = "Dotted Orange",
tiles = {"dotted_orange.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_node("candy:dotted_yellow", {
description = "Dotted Yellow",
tiles = {"dotted_yellow.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:heart_candy", {
description = "Heart Candy",
tiles = {"heart_candy.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:peppermint", {
description = "Peppermint",
tiles = {"peppermint_top.png", "peppermint_top.png", "peppermint_side.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:peppermint_red", {
description = "Peppermint Red",
tiles = {"peppermint_red.png", "peppermint_red_bott.png", "peppermint_red_side.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:peppermint_cyan_top", {
description = "Peppermint Cyan",
tiles = {"peppermint_cyan_top.png", "peppermint_cyan_bott.png", "peppermint_cyan_side.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:peppermint_green_top", {
description = "Peppermint Green",
tiles = {"peppermint_green_top.png", "peppermint_green_bott.png", "peppermint_green_side.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:peppermint_magenta_top", {
description = "Peppermint Magenta",
tiles = {"peppermint_magenta_top.png", "peppermint_magenta_bott.png", "peppermint_magenta_side.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:peppermint_yellow_top", {
description = "Peppermint Yellow",
tiles = {"peppermint_yellow_top.png", "peppermint_yellow_bott.png", "peppermint_yellow_side.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:spiral_blue", {
description = "Spiral Blue",
tiles = {"spiral_blue.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:spiral_purpple", {
description = "Spiral Purpple",
tiles = {"spiral_purpple.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:spiral_yellow", {
description = "Spiral Yellow",
tiles = {"spiral_yellow.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:striped_pink_brown", {
description = "Striped Pink Brown",
tiles = {"striped_pink_brown.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:striped_pink_white", {
description = "Striped Pink White",
tiles = {"striped_pink_white.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:striped_pink_yellow", {
description = "Striped Pink Yellow",
tiles = {"striped_pink_yellow.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:striped_purpple_green", {
description = "Striped Purpple Green",
tiles = {"striped_purpple_green.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:white_choco", {
description = "White Chocolate",
tiles = {"white_choco.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:milk_choco", {
description = "Milk Chocolate",
tiles = {"milk_choco.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:emenems", {
description = "m & m",
tiles = {"emenems.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:kawaiibun", {
description = "kawaii Bunny",
tiles = {"kawaiibun.png"},
light_source = 10,
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("candy:stripped_test", {
description = "Striped test",
tiles = {"stripped_test.png"},
groups = {cracky=3,oddly_breakable_by_hand=3},
sounds = default.node_sound_stone_defaults(),
})

14
license.txt Normal file
View File

@ -0,0 +1,14 @@
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
textures/candyrec_magenta.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
textures/crosscandy.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
textures/dotted_green.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
textures/dotted_green2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
textures/dotted_orange.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
textures/dotted_pink.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
textures/dotted_red.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
textures/dotted_yellow.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
textures/emenems.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 361 B

BIN
textures/heart_candy.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
textures/kawaiibun.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 515 B

BIN
textures/milk_choco.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
textures/peppermint_red.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

BIN
textures/peppermint_side.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

BIN
textures/peppermint_top.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
textures/spiral_blue.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
textures/spiral_purpple.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
textures/spiral_yellow.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 274 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 266 B

BIN
textures/stripped_test.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
textures/white_choco.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 B