Initial commit

master
Wuzzy 2014-10-20 11:01:28 +02:00
commit 74cc9fff9c
16 changed files with 57 additions and 0 deletions

0
depends.txt Normal file
View File

1
description.txt Normal file
View File

@ -0,0 +1 @@
Adds slimey blocks with several uncommon properties: Stickiness, liquids that never move, etc.

56
init.lua Normal file
View File

@ -0,0 +1,56 @@
minetest.register_node("slimenodes:slime_liquid", {
description = "liquid slime",
inventory_image = minetest.inventorycube("slimenodes_liquidslime.png"),
drawtype = "liquid",
tiles = { "slimenodes_liquidslime.png" },
special_tiles = { { name = "slimenodes_liquidslime.png", backface_culling = false } },
alpha = 200,
sunlight_propagates = false,
paramtype = "light",
walkable = false,
pointable = false,
diggable = true,
buildable_to = false,
drop = "slimenodes:slime_liquid",
liquidtype = "source",
liquid_alternative_flowing = "slimenodes:slime_liquid",
liquid_alternative_source = "slimenodes:slime_liquid",
liquid_viscosity = 4,
liquid_range = 0,
liquid_renewable = false,
liquids_pointable = true,
drowning = 0,
post_effect_color = {a=64, r=100, g=200, b=100},
groups = {liquid=3, slimey=3},
sounds = {
dig = {name="slimenodes_dig", gain=0.3},
dug = {name="slimenodes_dug", gain=0.6},
place = {name="slimenodes_place", gain=0.6},
}
})
minetest.register_node("slimenodes:slime_solid", {
description = "solid slime",
tiles = { "slimenodes_solidslime.png" },
walkable = true,
groups = {slimey=3, fall_damage_add_percent=-20},
sounds = {
dig = {name="slimenodes_dig", gain=0.3},
dug = {name="slimenodes_dug", gain=0.6},
place = {name="slimenodes_place", gain=0.6},
footstep = {name="slimenodes_step", gain=0.3},
}
})
minetest.register_tool("slimenodes:collector_lvl1", {
description = "slime collector level 1",
inventory_image = "slimenodes_collector_lvl1.png",
liquids_pointable = true,
tool_capabilities = {
full_punch_interval = 1,
groupcaps = {
slimey = { times = { [3] = 0.25 }, uses = 0, maxlevel = 1 }
}
}
})

BIN
sounds/slimenodes_dig.1.ogg Normal file

Binary file not shown.

BIN
sounds/slimenodes_dug.1.ogg Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 507 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 505 B