forked from VoxeLibre/VoxeLibre
Melon stems roughly have the drop chances like MC
This commit is contained in:
parent
6080a3a64b
commit
e2cee05a21
|
@ -37,12 +37,33 @@ minetest.register_node("mcl_farming:melon", {
|
||||||
sounds = mcl_sounds.node_sound_wood_defaults(),
|
sounds = mcl_sounds.node_sound_wood_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
local stemdrop = {
|
||||||
|
max_items = 1,
|
||||||
|
-- FIXME: The probabilities are slightly off from the original.
|
||||||
|
-- Update this drop list when the Minetest drop probability system
|
||||||
|
-- is more powerful.
|
||||||
|
items = {
|
||||||
|
-- 1 seed: Approximation to 20/125 chance
|
||||||
|
-- 20/125 = 0.16
|
||||||
|
-- Approximation: 1/6 = ca. 0.166666666666667
|
||||||
|
{ items = {"mcl_farming:melon_seeds 1"}, rarity = 6 },
|
||||||
|
|
||||||
|
-- 2 seeds: Approximation to 4/125 chance
|
||||||
|
-- 4/125 = 0.032
|
||||||
|
-- Approximation: 1/31 = ca. 0.032258064516129
|
||||||
|
{ items = {"mcl_farming:melon_seeds 2"}, rarity = 31 },
|
||||||
|
|
||||||
|
-- 3 seeds: 1/125 chance
|
||||||
|
{ items = {"mcl_farming:melon_seeds 3"}, rarity = 125 },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
minetest.register_node("mcl_farming:melontige_1", {
|
minetest.register_node("mcl_farming:melontige_1", {
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = stemdrop,
|
||||||
tiles = {"farming_tige_1.png"},
|
tiles = {"farming_tige_1.png"},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
@ -59,7 +80,7 @@ minetest.register_node("mcl_farming:melontige_2", {
|
||||||
walkable = false,
|
walkable = false,
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = stemdrop,
|
||||||
tiles = {"farming_tige_2.png"},
|
tiles = {"farming_tige_2.png"},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
@ -75,7 +96,7 @@ minetest.register_node("mcl_farming:melontige_unconnect", {
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = stemdrop,
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
tiles = {"farming_tige_end.png"},
|
tiles = {"farming_tige_end.png"},
|
||||||
groups = {snappy=3, not_in_creative_inventory=1 ,dig_by_water=1},
|
groups = {snappy=3, not_in_creative_inventory=1 ,dig_by_water=1},
|
||||||
|
@ -86,7 +107,7 @@ minetest.register_node("mcl_farming:melontige_linked_r", {
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
drop = "",
|
drop = stemdrop,
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
|
@ -116,7 +137,7 @@ minetest.register_node("mcl_farming:melontige_linked_l", {
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = stemdrop,
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
|
@ -146,7 +167,7 @@ minetest.register_node("mcl_farming:melontige_linked_t", {
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = stemdrop,
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
|
@ -176,7 +197,7 @@ minetest.register_node("mcl_farming:melontige_linked_b", {
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = stemdrop,
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
|
|
Loading…
Reference in New Issue