forked from mtcontrib/plantlife_modpack
tile_images --> tiles
This commit is contained in:
parent
2349447ba8
commit
16db34a9f1
|
@ -24,7 +24,7 @@ minetest.register_node('poisonivy:seedling', {
|
||||||
description = S("Poison ivy (seedling)"),
|
description = S("Poison ivy (seedling)"),
|
||||||
drawtype = 'plantlike',
|
drawtype = 'plantlike',
|
||||||
waving = 1,
|
waving = 1,
|
||||||
tile_images = { 'poisonivy_seedling.png' },
|
tiles = { 'poisonivy_seedling.png' },
|
||||||
inventory_image = 'poisonivy_seedling.png',
|
inventory_image = 'poisonivy_seedling.png',
|
||||||
wield_image = 'poisonivy_seedling.png',
|
wield_image = 'poisonivy_seedling.png',
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
|
@ -39,7 +39,7 @@ minetest.register_node('poisonivy:sproutling', {
|
||||||
description = S("Poison ivy (sproutling)"),
|
description = S("Poison ivy (sproutling)"),
|
||||||
drawtype = 'plantlike',
|
drawtype = 'plantlike',
|
||||||
waving = 1,
|
waving = 1,
|
||||||
tile_images = { 'poisonivy_sproutling.png' },
|
tiles = { 'poisonivy_sproutling.png' },
|
||||||
inventory_image = 'poisonivy_sproutling.png',
|
inventory_image = 'poisonivy_sproutling.png',
|
||||||
wield_image = 'poisonivy_sproutling.png',
|
wield_image = 'poisonivy_sproutling.png',
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
|
@ -53,7 +53,7 @@ minetest.register_node('poisonivy:sproutling', {
|
||||||
minetest.register_node('poisonivy:climbing', {
|
minetest.register_node('poisonivy:climbing', {
|
||||||
description = S("Poison ivy (climbing plant)"),
|
description = S("Poison ivy (climbing plant)"),
|
||||||
drawtype = 'signlike',
|
drawtype = 'signlike',
|
||||||
tile_images = { 'poisonivy_climbing.png' },
|
tiles = { 'poisonivy_climbing.png' },
|
||||||
inventory_image = 'poisonivy_climbing.png',
|
inventory_image = 'poisonivy_climbing.png',
|
||||||
wield_image = 'poisonivy_climbing.png',
|
wield_image = 'poisonivy_climbing.png',
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
|
|
|
@ -33,7 +33,7 @@ vines.register_vine = function( name, defs, biome )
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
buildable_to = true,
|
buildable_to = true,
|
||||||
tile_images = { vine_image_end },
|
tiles = { vine_image_end },
|
||||||
drawtype = drawtype,
|
drawtype = drawtype,
|
||||||
inventory_image = vine_image_end,
|
inventory_image = vine_image_end,
|
||||||
groups = groups,
|
groups = groups,
|
||||||
|
@ -71,7 +71,7 @@ vines.register_vine = function( name, defs, biome )
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
buildable_to = true,
|
buildable_to = true,
|
||||||
tile_images = { vine_image_middle },
|
tiles = { vine_image_middle },
|
||||||
wield_image = vine_image_middle,
|
wield_image = vine_image_middle,
|
||||||
drawtype = drawtype,
|
drawtype = drawtype,
|
||||||
inventory_image = vine_image_middle,
|
inventory_image = vine_image_middle,
|
||||||
|
|
|
@ -2,7 +2,7 @@ minetest.register_node("vines:rope_block", {
|
||||||
description = "Rope",
|
description = "Rope",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
tile_images = {
|
tiles = {
|
||||||
"default_wood.png^vines_rope.png",
|
"default_wood.png^vines_rope.png",
|
||||||
"default_wood.png^vines_rope.png",
|
"default_wood.png^vines_rope.png",
|
||||||
"default_wood.png",
|
"default_wood.png",
|
||||||
|
@ -36,7 +36,7 @@ minetest.register_node("vines:rope", {
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
drop = "",
|
drop = "",
|
||||||
tile_images = { "vines_rope.png" },
|
tiles = { "vines_rope.png" },
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
groups = {flammable=2, not_in_creative_inventory=1},
|
groups = {flammable=2, not_in_creative_inventory=1},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
@ -53,7 +53,7 @@ minetest.register_node("vines:rope_end", {
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
drop = "",
|
drop = "",
|
||||||
tile_images = { "vines_rope_end.png" },
|
tiles = { "vines_rope_end.png" },
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
groups = {flammable=2, not_in_creative_inventory=1},
|
groups = {flammable=2, not_in_creative_inventory=1},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user