forked from VoxeLibre/VoxeLibre
Rename mcl_cocoa to mcl_cocoas
This commit is contained in:
parent
2b2a735d6d
commit
a821690c66
|
@ -1 +0,0 @@
|
||||||
name = mcl_cocoa
|
|
|
@ -1,7 +1,7 @@
|
||||||
mcl_cocoa = {}
|
mcl_cocoas = {}
|
||||||
|
|
||||||
-- place cocoa
|
-- place cocoa
|
||||||
function mcl_cocoa.place_cocoa(itemstack, placer, pointed_thing, plantname)
|
function mcl_cocoas.place_cocoa(itemstack, placer, pointed_thing, plantname)
|
||||||
|
|
||||||
local pt = pointed_thing
|
local pt = pointed_thing
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ end
|
||||||
-- Cocoa definition
|
-- Cocoa definition
|
||||||
local crop_def = {
|
local crop_def = {
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
tiles = {"mcl_cocoa_cocoa_stage_0.png"},
|
tiles = {"mcl_cocoas_cocoa_stage_0.png"},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
walkable = true,
|
walkable = true,
|
||||||
|
@ -75,16 +75,16 @@ local crop_def = {
|
||||||
}
|
}
|
||||||
|
|
||||||
-- stage 1
|
-- stage 1
|
||||||
minetest.register_node("mcl_cocoa:cocoa_1", table.copy(crop_def))
|
minetest.register_node("mcl_cocoas:cocoa_1", table.copy(crop_def))
|
||||||
|
|
||||||
-- stage2
|
-- stage2
|
||||||
crop_def.tiles = {"mcl_cocoa_cocoa_stage_1.png"}
|
crop_def.tiles = {"mcl_cocoas_cocoa_stage_1.png"}
|
||||||
minetest.register_node("mcl_cocoa:cocoa_2", table.copy(crop_def))
|
minetest.register_node("mcl_cocoas:cocoa_2", table.copy(crop_def))
|
||||||
|
|
||||||
-- stage 3 (final)
|
-- stage 3 (final)
|
||||||
crop_def.tiles = {"mcl_cocoa_cocoa_stage_2.png"}
|
crop_def.tiles = {"mcl_cocoas_cocoa_stage_2.png"}
|
||||||
crop_def.drop = "mcl_dye:brown 3",
|
crop_def.drop = "mcl_dye:brown 3",
|
||||||
minetest.register_node("mcl_cocoa:cocoa_3", table.copy(crop_def))
|
minetest.register_node("mcl_cocoas:cocoa_3", table.copy(crop_def))
|
||||||
|
|
||||||
-- Add random cocoa pods to jungle trees
|
-- Add random cocoa pods to jungle trees
|
||||||
minetest.register_on_generated(function(minp, maxp)
|
minetest.register_on_generated(function(minp, maxp)
|
||||||
|
@ -119,7 +119,7 @@ minetest.register_on_generated(function(minp, maxp)
|
||||||
and minetest.get_node_light(pos) > 12 then
|
and minetest.get_node_light(pos) > 12 then
|
||||||
|
|
||||||
minetest.swap_node(pos, {
|
minetest.swap_node(pos, {
|
||||||
name = "mcl_cocoa:cocoa_" .. tostring(math.random(1, 3))
|
name = "mcl_cocoas:cocoa_" .. tostring(math.random(1, 3))
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
name = mcl_cocoas
|
Before Width: | Height: | Size: 677 B After Width: | Height: | Size: 677 B |
Before Width: | Height: | Size: 1018 B After Width: | Height: | Size: 1018 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
@ -1,4 +1,4 @@
|
||||||
mcl_core
|
mcl_core
|
||||||
mcl_flowers
|
mcl_flowers
|
||||||
mcl_mobitems
|
mcl_mobitems
|
||||||
mcl_cocoa
|
mcl_cocoas
|
||||||
|
|
|
@ -227,7 +227,7 @@ minetest.register_craftitem("mcl_dye:brown", {
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
groups = dyelocal.dyes[4][3],
|
groups = dyelocal.dyes[4][3],
|
||||||
on_place = function(itemstack, user, pointed_thing)
|
on_place = function(itemstack, user, pointed_thing)
|
||||||
return mcl_cocoa.place_cocoa(itemstack, placer, pointed_thing, "mcl_cocoa:cocoa_1")
|
return mcl_cocoas.place_cocoa(itemstack, placer, pointed_thing, "mcl_cocoas:cocoa_1")
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue