0004
This commit is contained in:
parent
73cb1dd35f
commit
b0e181a320
@ -86,6 +86,14 @@ minetest.register_craft({ ------ CRaFT
|
|||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
---- ZCOIN -------------------------------------
|
||||||
|
--[[
|
||||||
|
minetest.register_craftitem("deco:zcoin", {
|
||||||
|
description = "Zcoin",
|
||||||
|
inventory_image = "",
|
||||||
|
|
||||||
|
})
|
||||||
|
]]
|
||||||
---- VENDING MACHINE :
|
---- VENDING MACHINE :
|
||||||
minetest.register_node("deco:vendingmachine", {
|
minetest.register_node("deco:vendingmachine", {
|
||||||
description = "Vending machine",
|
description = "Vending machine",
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 320 B |
Binary file not shown.
Before Width: | Height: | Size: 548 B |
Binary file not shown.
Before Width: | Height: | Size: 832 B After Width: | Height: | Size: 15 KiB |
BIN
deco/textures/zcoin.png
Normal file
BIN
deco/textures/zcoin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 915 B |
@ -92,6 +92,7 @@ mobs:register_mob("doctorzombie:doctorzombie", {
|
|||||||
local vel = {x=0, y=0.2, z=0} -- deveria ser velocidade hehe
|
local vel = {x=0, y=0.2, z=0} -- deveria ser velocidade hehe
|
||||||
local face = minetest.get_node({x=pos.x, y=pos.y, z=pos.z+1}) -- bloco que estar em sua frente
|
local face = minetest.get_node({x=pos.x, y=pos.y, z=pos.z+1}) -- bloco que estar em sua frente
|
||||||
|
|
||||||
|
|
||||||
for i,v in ipairs (climb_node) do
|
for i,v in ipairs (climb_node) do
|
||||||
if face.name == v then -- se o bloco em sua frente é escadas
|
if face.name == v then -- se o bloco em sua frente é escadas
|
||||||
|
|
||||||
@ -100,8 +101,8 @@ mobs:register_mob("doctorzombie:doctorzombie", {
|
|||||||
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
})
|
})
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user