forked from VoxeLibre/VoxeLibre
100% to drop beetroot seeds for premature beetroot
This commit is contained in:
parent
e2cee05a21
commit
672d080a96
|
@ -12,7 +12,7 @@ minetest.register_node("mcl_farming:beetroot_0", {
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
drop = "",
|
drop = "mcl_farming:beetroot_seeds",
|
||||||
tiles = {"mcl_farming_beetroot_0.png"},
|
tiles = {"mcl_farming_beetroot_0.png"},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
@ -28,11 +28,7 @@ minetest.register_node("mcl_farming:beetroot_1", {
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
drop = {
|
drop = "mcl_farming:beetroot_seeds",
|
||||||
items = {
|
|
||||||
{ items = {"mcl_farming:beetroot_seeds"}, rarity = 5 },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
tiles = {"mcl_farming_beetroot_1.png"},
|
tiles = {"mcl_farming_beetroot_1.png"},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
@ -48,11 +44,7 @@ minetest.register_node("mcl_farming:beetroot_2", {
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
drop = {
|
drop = "mcl_farming:beetroot_seeds",
|
||||||
items = {
|
|
||||||
{ items = {"mcl_farming:beetroot_seeds"}, rarity = 4 },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
tiles = {"farming_carrot_2.png"},
|
tiles = {"farming_carrot_2.png"},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
|
Loading…
Reference in New Issue