forked from mtcontrib/farming
rename textures, fix alpha texture warning
This commit is contained in:
parent
81293a2f94
commit
06a92e93c0
@ -33,9 +33,9 @@ else
|
|||||||
minetest.register_node(":ethereal:banana", {
|
minetest.register_node(":ethereal:banana", {
|
||||||
description = S("Banana"),
|
description = S("Banana"),
|
||||||
drawtype = "torchlike",
|
drawtype = "torchlike",
|
||||||
tiles = {"banana_single.png"},
|
tiles = {"farming_banana_single.png"},
|
||||||
inventory_image = "banana_single.png",
|
inventory_image = "farming_banana_single.png",
|
||||||
wield_image = "banana_single.png",
|
wield_image = "farming_banana_single.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
@ -50,9 +50,9 @@ else
|
|||||||
|
|
||||||
minetest.register_node(":ethereal:bananaleaves", {
|
minetest.register_node(":ethereal:bananaleaves", {
|
||||||
description = S("Banana Leaves"),
|
description = S("Banana Leaves"),
|
||||||
tiles = {"banana_leaf.png"},
|
tiles = {"farming_banana_leaf.png"},
|
||||||
inventory_image = "banana_leaf.png",
|
inventory_image = "farming_banana_leaf.png",
|
||||||
wield_image = "banana_leaf.png",
|
wield_image = "farming_banana_leaf.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
waving = 1,
|
waving = 1,
|
||||||
groups = {snappy = 3, leafdecay = 3, leaves = 1, flammable = 2},
|
groups = {snappy = 3, leafdecay = 3, leaves = 1, flammable = 2},
|
||||||
@ -148,8 +148,8 @@ if eth then
|
|||||||
else
|
else
|
||||||
minetest.register_craftitem(":ethereal:strawberry", {
|
minetest.register_craftitem(":ethereal:strawberry", {
|
||||||
description = S("Strawberry"),
|
description = S("Strawberry"),
|
||||||
inventory_image = "strawberry.png",
|
inventory_image = "farming_strawberry.png",
|
||||||
wield_image = "strawberry.png",
|
wield_image = "farming_strawberry.png",
|
||||||
groups = {food_strawberry = 1, flammable = 2},
|
groups = {food_strawberry = 1, flammable = 2},
|
||||||
on_use = minetest.item_eat(1)
|
on_use = minetest.item_eat(1)
|
||||||
})
|
})
|
||||||
|
@ -46,6 +46,7 @@ minetest.register_node("farming:garlic_braid", {
|
|||||||
inventory_image = "crops_garlic_braid.png",
|
inventory_image = "crops_garlic_braid.png",
|
||||||
wield_image = "crops_garlic_braid.png",
|
wield_image = "crops_garlic_braid.png",
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
|
use_texture_alpha = "clip",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
tiles = {
|
tiles = {
|
||||||
|
Before Width: | Height: | Size: 421 B After Width: | Height: | Size: 421 B |
Before Width: | Height: | Size: 200 B After Width: | Height: | Size: 200 B |
Before Width: | Height: | Size: 382 B After Width: | Height: | Size: 382 B |
Loading…
Reference in New Issue
Block a user