Added requests and added default texture

This commit is contained in:
bas080
2013-05-01 14:22:23 +02:00
parent 7bf714f121
commit 968396354d
4 changed files with 13 additions and 14 deletions

View File

@ -6,14 +6,13 @@ minetest.register_node("vines:rope_block", {
description = "Rope",
sunlight_propagates = true,
paramtype = "light",
drops = "",
tile_images = {
"vines_rope_block.png",
"vines_rope_block.png",
"default_wood.png^vines_rope.png",
"default_wood.png^vines_rope.png",
"default_wood.png",
"default_wood.png",
"vines_rope_block.png",
"vines_rope_block.png"
"default_wood.png^vines_rope.png",
"default_wood.png^vines_rope.png",
},
drawtype = "cube",
groups = {choppy=2,oddly_breakable_by_hand=1},
@ -60,7 +59,6 @@ minetest.register_node("vines:rope_end", {
climbable = true,
sunlight_propagates = true,
paramtype = "light",
drops = "",
tile_images = { "vines_rope_end.png" },
drawtype = "plantlike",
groups = {flammable=2, not_in_creative_inventory=1},
@ -79,7 +77,6 @@ minetest.register_node("vines:side", {
description = "Vine",
walkable = false,
climbable = true,
drop = 'vines:vines',
sunlight_propagates = true,
paramtype = "light",
paramtype2 = "wallmounted",
@ -114,7 +111,6 @@ minetest.register_node("vines:willow", {
description = "Vine",
walkable = false,
climbable = true,
drop = 'vines:vines',
sunlight_propagates = true,
paramtype = "light",
paramtype2 = "wallmounted",
@ -149,7 +145,6 @@ minetest.register_node("vines:root", {
description = "Vine",
walkable = false,
climbable = true,
drop = 'vines:vines',
sunlight_propagates = true,
paramtype = "light",
tile_images = { "vines_root.png" },
@ -167,7 +162,6 @@ minetest.register_node("vines:vine", {
description = "Vine",
walkable = false,
climbable = true,
drop = 'vines:vines',
sunlight_propagates = true,
paramtype = "light",
tile_images = { "vines_vine.png" },
@ -202,7 +196,6 @@ minetest.register_node("vines:vine_rotten", {
description = "Rotten vine",
walkable = false,
climbable = true,
drop = 'vines:vines',
sunlight_propagates = true,
paramtype = "light",
tile_images = { "vines_vine_rotten.png" },
@ -250,8 +243,8 @@ minetest.register_craft({
output = 'vines:rope_block',
recipe = {
{'', 'default:wood', ''},
{'', 'vines:vines', ''},
{'', 'vines:vines', ''},
{'', 'vines:side', ''},
{'', 'vines:side', ''},
}
})

View File

@ -8,11 +8,17 @@
BY: bas080
DESCRIPTION: Vines and ropebox
VERSION: 2.1
VERSION: 2.2.1
LICENCE: WTFPL
FORUM: http://forum.minetest.net/viewtopic.php?id=2344
Changelog
---------
2.2.1
* Also spawn on leaves that are near jungletree
* Uses default wood texture
* Drops actual vines
* Changed craft
2.2
* Spawns on all leaves that are near water

Binary file not shown.

Before

Width:  |  Height:  |  Size: 625 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 673 B