update plants_lib and the various plantlife mods
(except for junglegrass)
@ -1,3 +1,13 @@
|
|||||||
|
-- Boilerplate to support localized strings if intllib mod is installed.
|
||||||
|
local S
|
||||||
|
if (minetest.get_modpath("intllib")) then
|
||||||
|
dofile(minetest.get_modpath("intllib").."/intllib.lua")
|
||||||
|
S = intllib.Getter(minetest.get_current_modname())
|
||||||
|
else
|
||||||
|
S = function ( s ) return s end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
-- Basket
|
-- Basket
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
@ -11,9 +21,10 @@ minetest.register_craft({
|
|||||||
-- Sugar
|
-- Sugar
|
||||||
|
|
||||||
minetest.register_craftitem(":bushes:sugar", {
|
minetest.register_craftitem(":bushes:sugar", {
|
||||||
description = "Sugar",
|
description = S("Sugar"),
|
||||||
inventory_image = "bushes_sugar.png",
|
inventory_image = "bushes_sugar.png",
|
||||||
on_use = minetest.item_eat(1),
|
on_use = minetest.item_eat(1),
|
||||||
|
groups = {food_sugar=1}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
@ -27,42 +38,45 @@ for i, berry in ipairs(bushes_classic.bushes) do
|
|||||||
local desc = bushes_classic.bushes_descriptions[i]
|
local desc = bushes_classic.bushes_descriptions[i]
|
||||||
|
|
||||||
minetest.register_craftitem(":bushes:"..berry.."_pie_raw", {
|
minetest.register_craftitem(":bushes:"..berry.."_pie_raw", {
|
||||||
description = "Raw "..desc.." pie",
|
description = S("Raw "..desc.." pie"),
|
||||||
inventory_image = "bushes_"..berry.."_pie_raw.png",
|
inventory_image = "bushes_"..berry.."_pie_raw.png",
|
||||||
on_use = minetest.item_eat(4),
|
on_use = minetest.item_eat(4),
|
||||||
})
|
})
|
||||||
|
|
||||||
if berry ~= "mixed_berry" then
|
if berry ~= "mixed_berry" then
|
||||||
minetest.register_craftitem(":bushes:"..berry, {
|
|
||||||
description = desc,
|
|
||||||
inventory_image = "bushes_"..berry..".png",
|
|
||||||
groups = {berry = 1, [berry] = 1},
|
|
||||||
on_use = minetest.item_eat(1),
|
|
||||||
})
|
|
||||||
|
|
||||||
if minetest.registered_nodes["farming:soil"] then
|
if berry == "strawberry" and minetest.registered_nodes["farming_plus:strawberry"] then
|
||||||
minetest.register_craft({
|
-- Special case for strawberries, when farming_plus is in use. Use
|
||||||
output = "bushes:"..berry.."_pie_raw 1",
|
-- the item from that mod, but redefine it so it has the right
|
||||||
recipe = {
|
-- groups and does't look so ugly!
|
||||||
{ "bushes:sugar", "farming:flour", "bushes:sugar" },
|
minetest.register_craftitem(":farming_plus:strawberry_item", {
|
||||||
{ "group:"..berry, "group:"..berry, "group:"..berry },
|
description = S("Strawberry"),
|
||||||
},
|
inventory_image = "bushes_"..berry..".png",
|
||||||
|
on_use = minetest.item_eat(2),
|
||||||
|
groups = {berry=1, strawberry=1}
|
||||||
})
|
})
|
||||||
|
minetest.register_alias("bushes:strawberry", "farming_plus:strawberry_item")
|
||||||
else
|
else
|
||||||
minetest.register_craft({
|
minetest.register_craftitem(":bushes:"..berry, {
|
||||||
output = "bushes:"..berry.."_pie_raw 1",
|
description = desc,
|
||||||
recipe = {
|
inventory_image = "bushes_"..berry..".png",
|
||||||
{ "bushes:sugar", "group:junglegrass", "bushes:sugar" },
|
groups = {berry = 1, [berry] = 1},
|
||||||
{ "group:"..berry, "group:"..berry, "group:"..berry },
|
on_use = minetest.item_eat(1),
|
||||||
},
|
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "bushes:"..berry.."_pie_raw 1",
|
||||||
|
recipe = {
|
||||||
|
{ "group:food_sugar", "farming:flour", "group:food_sugar" },
|
||||||
|
{ "group:"..berry, "group:"..berry, "group:"..berry },
|
||||||
|
},
|
||||||
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Cooked pie
|
-- Cooked pie
|
||||||
|
|
||||||
minetest.register_craftitem(":bushes:"..berry.."_pie_cooked", {
|
minetest.register_craftitem(":bushes:"..berry.."_pie_cooked", {
|
||||||
description = "Cooked "..desc.." pie",
|
description = S("Cooked "..desc.." pie"),
|
||||||
inventory_image = "bushes_"..berry.."_pie_cooked.png",
|
inventory_image = "bushes_"..berry.."_pie_cooked.png",
|
||||||
on_use = minetest.item_eat(6),
|
on_use = minetest.item_eat(6),
|
||||||
})
|
})
|
||||||
@ -77,7 +91,7 @@ for i, berry in ipairs(bushes_classic.bushes) do
|
|||||||
-- slice of pie
|
-- slice of pie
|
||||||
|
|
||||||
minetest.register_craftitem(":bushes:"..berry.."_pie_slice", {
|
minetest.register_craftitem(":bushes:"..berry.."_pie_slice", {
|
||||||
description = "Slice of "..desc.." pie",
|
description = S("Slice of "..desc.." pie"),
|
||||||
inventory_image = "bushes_"..berry.."_pie_slice.png",
|
inventory_image = "bushes_"..berry.."_pie_slice.png",
|
||||||
on_use = minetest.item_eat(1),
|
on_use = minetest.item_eat(1),
|
||||||
})
|
})
|
||||||
@ -100,32 +114,13 @@ for i, berry in ipairs(bushes_classic.bushes) do
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
if minetest.registered_nodes["farming_plus:strawberry"] then
|
minetest.register_craft({
|
||||||
minetest.register_craftitem(":farming_plus:strawberry_item", {
|
output = "bushes:mixed_berry_pie_raw 2",
|
||||||
description = "Strawberry",
|
recipe = {
|
||||||
inventory_image = "farming_strawberry.png",
|
{ "group:food_sugar", "farming:flour", "group:food_sugar" },
|
||||||
on_use = minetest.item_eat(2),
|
{ "group:berry", "group:berry", "group:berry" },
|
||||||
groups = {berry=1, strawberry=1}
|
{ "group:berry", "group:berry", "group:berry" },
|
||||||
})
|
},
|
||||||
end
|
})
|
||||||
|
|
||||||
if minetest.registered_nodes["farming:soil"] then
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "bushes:mixed_berry_pie_raw 2",
|
|
||||||
recipe = {
|
|
||||||
{ "bushes:sugar", "farming:flour", "bushes:sugar" },
|
|
||||||
{ "group:berry", "group:berry", "group:berry" },
|
|
||||||
{ "group:berry", "group:berry", "group:berry" },
|
|
||||||
},
|
|
||||||
})
|
|
||||||
else
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "bushes:mixed_berry_pie_raw 2",
|
|
||||||
recipe = {
|
|
||||||
{ "bushes:sugar", "group:junglegrass", "bushes:sugar" },
|
|
||||||
{ "group:berry", "group:berry", "group:berry" },
|
|
||||||
{ "group:berry", "group:berry", "group:berry" },
|
|
||||||
},
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
plants_lib
|
plants_lib
|
||||||
|
farming?
|
||||||
farming_plus?
|
farming_plus?
|
||||||
|
@ -2,6 +2,14 @@
|
|||||||
-- now maintained by VanessaE
|
-- now maintained by VanessaE
|
||||||
--
|
--
|
||||||
-- License: WTFPL
|
-- License: WTFPL
|
||||||
|
-- Boilerplate to support localized strings if intllib mod is installed.
|
||||||
|
local S
|
||||||
|
if (minetest.get_modpath("intllib")) then
|
||||||
|
dofile(minetest.get_modpath("intllib").."/intllib.lua")
|
||||||
|
S = intllib.Getter(minetest.get_current_modname())
|
||||||
|
else
|
||||||
|
S = function ( s ) return s end
|
||||||
|
end
|
||||||
|
|
||||||
bushes_classic = {}
|
bushes_classic = {}
|
||||||
|
|
||||||
@ -53,4 +61,4 @@ plantslib:spawn_on_surfaces({
|
|||||||
|
|
||||||
minetest.register_alias("bushes:basket_pies", "bushes:basket_strawberry")
|
minetest.register_alias("bushes:basket_pies", "bushes:basket_strawberry")
|
||||||
|
|
||||||
print("[Bushes] Loaded.")
|
print(S("[Bushes] Loaded."))
|
||||||
|
43
mods/bushes_classic/locale/de.txt
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
# Translation by Xanthin
|
||||||
|
|
||||||
|
Strawberry = Erdbeere
|
||||||
|
Blackberry = Brombeere
|
||||||
|
Blueberry = Blaubeere
|
||||||
|
Raspberry = Himbeere
|
||||||
|
Gooseberry = Stachelbeere
|
||||||
|
Mixed Berry = Beerenmix
|
||||||
|
Basket with Strawberry Pies = Korb mit Erdbeertorten
|
||||||
|
Basket with Blackberry Pies = Korb mit Brombeertorten
|
||||||
|
Basket with Blueberry Pies = Korb mit Blaubeertorten
|
||||||
|
Basket with Raspberry Pies = Korb mit Himbeertorten
|
||||||
|
Basket with Gooseberry Pies = Korb mit Stachelbeertorten
|
||||||
|
Basket with Mixed Berry Pies = Korb mit Beerenmixtorten
|
||||||
|
currently fruitless = zur Zeit fruechteloser
|
||||||
|
Strawberry Bush = Erdbeerbusch
|
||||||
|
Blackberry Bush = Brombeerbusch
|
||||||
|
Blueberry Bush = Blaubeerbusch
|
||||||
|
Raspberry Bush = Himbeerbusch
|
||||||
|
Gooseberry Bush = Stachelbeerbusch
|
||||||
|
Mixed Berry Bush = Beerenmixbusch
|
||||||
|
Basket = Korb
|
||||||
|
Sugar = Zucker
|
||||||
|
Raw Strawberry pie = Rohe Erdbeertorte
|
||||||
|
Raw Blackberry pie = Rohe Brombeertorte
|
||||||
|
Raw Blueberry pie = Rohe Blaubeertorte
|
||||||
|
Raw Raspberry pie = Rohe Himbeertorte
|
||||||
|
Raw Gooseberry pie = Rohe Stachelbeertorte
|
||||||
|
Raw Mixed Berry pie = Rohe Beerenmixtorte
|
||||||
|
Cooked Strawberry pie = Erdbeertorte
|
||||||
|
Cooked Blackberry pie = Brombeertorte
|
||||||
|
Cooked Blueberry pie = Blaubeertorte
|
||||||
|
Cooked Raspberry pie = Himbeertorte
|
||||||
|
Cooked Gooseberry pie = Stachelbeertorte
|
||||||
|
Cooked Mixed Berry pie = Beerenmixtorte
|
||||||
|
Slice of Strawberry pie = Erdbeertortenstueck
|
||||||
|
Slice of Blackberry pie = Brombeertortenstueck
|
||||||
|
Slice of Blueberry pie = Blaubeertortenstueck
|
||||||
|
Slice of Raspberry pie = Himbeertortenstueck
|
||||||
|
Slice of Gooseberry pie = Stachelbeertortenstueck
|
||||||
|
Slice of Mixed Berry pie = Beerenmixtortenstueck
|
||||||
|
|
||||||
|
[Bushes] Loaded. = [Bushes] Geladen.
|
43
mods/bushes_classic/locale/template.txt
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
# Template
|
||||||
|
|
||||||
|
Strawberry =
|
||||||
|
Blackberry =
|
||||||
|
Blueberry =
|
||||||
|
Raspberry =
|
||||||
|
Gooseberry =
|
||||||
|
Mixed Berry =
|
||||||
|
Basket with Strawberry Pies =
|
||||||
|
Basket with Blackberry Pies =
|
||||||
|
Basket with Blueberry Pies =
|
||||||
|
Basket with Raspberry Pies =
|
||||||
|
Basket with Gooseberry Pies =
|
||||||
|
Basket with Mixed Berry Pies =
|
||||||
|
currently fruitless =
|
||||||
|
Strawberry Bush =
|
||||||
|
Blackberry Bush =
|
||||||
|
Blueberry Bush =
|
||||||
|
Raspberry Bush =
|
||||||
|
Gooseberry Bush =
|
||||||
|
Mixed Berry Bush =
|
||||||
|
Basket =
|
||||||
|
Sugar =
|
||||||
|
Raw Strawberry pie =
|
||||||
|
Raw Blackberry pie =
|
||||||
|
Raw Blueberry pie =
|
||||||
|
Raw Raspberry pie =
|
||||||
|
Raw Gooseberry pie =
|
||||||
|
Raw Mixed Berry pie =
|
||||||
|
Cooked Strawberry pie =
|
||||||
|
Cooked Blackberry pie =
|
||||||
|
Cooked Blueberry pie =
|
||||||
|
Cooked Raspberry pie =
|
||||||
|
Cooked Gooseberry pie =
|
||||||
|
Cooked Mixed Berry pie =
|
||||||
|
Slice of Strawberry pie =
|
||||||
|
Slice of Blackberry pie =
|
||||||
|
Slice of Blueberry pie =
|
||||||
|
Slice of Raspberry pie =
|
||||||
|
Slice of Gooseberry pie =
|
||||||
|
Slice of Mixed Berry pie =
|
||||||
|
|
||||||
|
[Bushes] Loaded. =
|
@ -1,4 +1,11 @@
|
|||||||
|
-- Boilerplate to support localized strings if intllib mod is installed.
|
||||||
|
local S
|
||||||
|
if (minetest.get_modpath("intllib")) then
|
||||||
|
dofile(minetest.get_modpath("intllib").."/intllib.lua")
|
||||||
|
S = intllib.Getter(minetest.get_current_modname())
|
||||||
|
else
|
||||||
|
S = function ( s ) return s end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
plantlife_bushes = {}
|
plantlife_bushes = {}
|
||||||
@ -47,8 +54,8 @@ plantlife_bushes.after_dig_node = function(pos, oldnode, oldmetadata, digger)
|
|||||||
elseif( capabilities["groupcaps"]["snappy"] ) then
|
elseif( capabilities["groupcaps"]["snappy"] ) then
|
||||||
|
|
||||||
-- plant a new bush without fruits
|
-- plant a new bush without fruits
|
||||||
minetest.env:add_node(pos,{type='node',name='bushes:fruitless_bush'})
|
minetest.set_node(pos,{type='node',name='bushes:fruitless_bush'})
|
||||||
local meta = minetest.env:get_meta( pos );
|
local meta = minetest.get_meta( pos );
|
||||||
meta:set_string( 'bush_type', bush_name );
|
meta:set_string( 'bush_type', bush_name );
|
||||||
|
|
||||||
-- construct the stack of fruits the player will get
|
-- construct the stack of fruits the player will get
|
||||||
@ -109,8 +116,8 @@ plantlife_bushes.after_place_node = function(pos, placer, itemstack)
|
|||||||
return nil;
|
return nil;
|
||||||
end
|
end
|
||||||
|
|
||||||
minetest.env:set_node( pos, {type='node',name='bushes:fruitless_bush'});
|
minetest.set_node( pos, {type='node',name='bushes:fruitless_bush'});
|
||||||
local meta = minetest.env:get_meta( pos );
|
local meta = minetest.get_meta( pos );
|
||||||
meta:set_string( 'bush_type', name_parts[1] );
|
meta:set_string( 'bush_type', name_parts[1] );
|
||||||
|
|
||||||
return nil;
|
return nil;
|
||||||
@ -126,13 +133,13 @@ minetest.register_abm({
|
|||||||
chance = 5,
|
chance = 5,
|
||||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||||
|
|
||||||
local meta = minetest.env:get_meta( pos );
|
local meta = minetest.get_meta( pos );
|
||||||
local bush_name = meta:get_string( 'bush_type' );
|
local bush_name = meta:get_string( 'bush_type' );
|
||||||
if( bush_name ~= nil and bush_name ~= '' ) then
|
if( bush_name ~= nil and bush_name ~= '' ) then
|
||||||
local dirtpos = { x = pos.x, y = pos.y-1, z = pos.z }
|
local dirtpos = { x = pos.x, y = pos.y-1, z = pos.z }
|
||||||
local dirt = minetest.get_node(dirtpos)
|
local dirt = minetest.get_node(dirtpos)
|
||||||
if dirt.name == "farming:soil_wet" or math.random(1,3) == 1 then
|
if dirt.name == "farming:soil_wet" or math.random(1,3) == 1 then
|
||||||
minetest.env:set_node( pos, {type='node',name='bushes:'..bush_name..'_bush'})
|
minetest.set_node( pos, {type='node',name='bushes:'..bush_name..'_bush'})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -145,7 +152,7 @@ for i, bush_name in ipairs(bushes_classic.bushes) do
|
|||||||
local desc = bushes_classic.bushes_descriptions[i]
|
local desc = bushes_classic.bushes_descriptions[i]
|
||||||
|
|
||||||
minetest.register_node(":bushes:basket_"..bush_name, {
|
minetest.register_node(":bushes:basket_"..bush_name, {
|
||||||
description = "Basket with "..desc.." Pies",
|
description = S("Basket with "..desc.." Pies"),
|
||||||
tiles = {
|
tiles = {
|
||||||
"bushes_basket_"..bush_name.."_top.png",
|
"bushes_basket_"..bush_name.."_top.png",
|
||||||
"bushes_basket_bottom.png",
|
"bushes_basket_bottom.png",
|
||||||
@ -155,22 +162,42 @@ for i, bush_name in ipairs(bushes_classic.bushes) do
|
|||||||
groups = { dig_immediate = 3 },
|
groups = { dig_immediate = 3 },
|
||||||
})
|
})
|
||||||
|
|
||||||
|
local texture_top, texture_bottom
|
||||||
|
|
||||||
|
local groups = {snappy = 3, bush = 1, flammable = 2, attached_node=1}
|
||||||
if bush_name == "mixed_berry" then
|
if bush_name == "mixed_berry" then
|
||||||
bush_name = "fruitless";
|
bush_name = "fruitless";
|
||||||
desc = "currently fruitless";
|
desc = S("currently fruitless");
|
||||||
|
texture_top = "bushes_fruitless_bush_top.png"
|
||||||
|
texture_bottom = "bushes_fruitless_bush_bottom.png"
|
||||||
|
groups.not_in_creative_inventory = 1
|
||||||
|
else
|
||||||
|
texture_top = "bushes_bush_top.png"
|
||||||
|
texture_bottom = "bushes_bush_bottom.png"
|
||||||
end
|
end
|
||||||
|
|
||||||
minetest.register_node(":bushes:" .. bush_name .. "_bush", {
|
minetest.register_node(":bushes:" .. bush_name .. "_bush", {
|
||||||
description = desc.." Bush",
|
description = S(desc.." Bush"),
|
||||||
drawtype = "plantlike",
|
drawtype = "nodebox",
|
||||||
visual_scale = 1.3,
|
tiles = {texture_top, texture_bottom, "bushes_" .. bush_name .. "_bush.png"},
|
||||||
tiles = { "bushes_" .. bush_name .. "_bush.png" },
|
|
||||||
inventory_image = "bushes_" .. bush_name .. "_bush.png",
|
inventory_image = "bushes_" .. bush_name .. "_bush.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-1/16, -8/16, -1/16, 1/16, -6/16, 1/16},
|
||||||
|
{-4/16, -6/16, -4/16, 4/16, 5/16, 4/16},
|
||||||
|
{-5/16, -5/16, -5/16, 5/16, 3/16, 5/16},
|
||||||
|
{-6/16, -4/16, -6/16, 6/16, 2/16, 6/16},
|
||||||
|
{-6.5/16, -3/16, -6.5/16, 6.5/16, -2/16, 6.5/16},
|
||||||
|
{-3/16, 5/16, -3/16, 3/16, 6/16, 3/16},
|
||||||
|
{-2/16, 5/16, -2/16, 2/16, 7/16, 2/16}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
groups = { snappy = 3, bush = 1, flammable = 2},
|
groups = groups,
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
drop = "",
|
drop = "",
|
||||||
after_dig_node = function( pos, oldnode, oldmetadata, digger )
|
after_dig_node = function( pos, oldnode, oldmetadata, digger )
|
||||||
@ -189,7 +216,7 @@ end
|
|||||||
|
|
||||||
|
|
||||||
minetest.register_node(":bushes:basket_empty", {
|
minetest.register_node(":bushes:basket_empty", {
|
||||||
description = "Basket",
|
description = S("Basket"),
|
||||||
tiles = {
|
tiles = {
|
||||||
"bushes_basket_empty_top.png",
|
"bushes_basket_empty_top.png",
|
||||||
"bushes_basket_bottom.png",
|
"bushes_basket_bottom.png",
|
||||||
|
BIN
mods/bushes_classic/textures/bushes_bush_bottom.png
Normal file
After Width: | Height: | Size: 9.9 KiB |
BIN
mods/bushes_classic/textures/bushes_bush_top.png
Normal file
After Width: | Height: | Size: 7.4 KiB |
BIN
mods/bushes_classic/textures/bushes_fruitless_bush_bottom.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
mods/bushes_classic/textures/bushes_fruitless_bush_top.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
@ -1,3 +1,12 @@
|
|||||||
|
-- Boilerplate to support localized strings if intllib mod is installed.
|
||||||
|
local S
|
||||||
|
if (minetest.get_modpath("intllib")) then
|
||||||
|
dofile(minetest.get_modpath("intllib").."/intllib.lua")
|
||||||
|
S = intllib.Getter(minetest.get_current_modname())
|
||||||
|
else
|
||||||
|
S = function ( s ) return s end
|
||||||
|
end
|
||||||
|
|
||||||
-- This file supplies a few additional plants and some related crafts
|
-- This file supplies a few additional plants and some related crafts
|
||||||
-- for the plantlife modpack. Last revision: 2013-04-24
|
-- for the plantlife modpack. Last revision: 2013-04-24
|
||||||
|
|
||||||
@ -36,7 +45,7 @@ for i in ipairs(lilies_list) do
|
|||||||
end
|
end
|
||||||
|
|
||||||
minetest.register_node(":flowers:waterlily"..deg1, {
|
minetest.register_node(":flowers:waterlily"..deg1, {
|
||||||
description = "Waterlily",
|
description = S("Waterlily"),
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
tiles = {
|
tiles = {
|
||||||
"flowers_waterlily"..deg2..".png",
|
"flowers_waterlily"..deg2..".png",
|
||||||
@ -85,12 +94,12 @@ for i in ipairs(lilies_list) do
|
|||||||
place_pos = pt.above
|
place_pos = pt.above
|
||||||
end
|
end
|
||||||
|
|
||||||
if not plantslib:node_is_owned(place_pos, placer) then
|
if place_pos and not minetest.is_protected(place_pos, placer:get_player_name()) then
|
||||||
|
|
||||||
local nodename = "default:cobble" -- if this block appears, something went....wrong :-)
|
local nodename = "default:cobble" -- if this block appears, something went....wrong :-)
|
||||||
|
|
||||||
if not keys["sneak"] then
|
if not keys["sneak"] then
|
||||||
local node = minetest.env:get_node(pt.under)
|
local node = minetest.get_node(pt.under)
|
||||||
local waterlily = math.random(1,8)
|
local waterlily = math.random(1,8)
|
||||||
if waterlily == 1 then
|
if waterlily == 1 then
|
||||||
nodename = "flowers:waterlily"
|
nodename = "flowers:waterlily"
|
||||||
@ -109,10 +118,10 @@ for i in ipairs(lilies_list) do
|
|||||||
elseif waterlily == 8 then
|
elseif waterlily == 8 then
|
||||||
nodename = "flowers:waterlily_s4"
|
nodename = "flowers:waterlily_s4"
|
||||||
end
|
end
|
||||||
minetest.add_node(place_pos, {name = nodename, param2 = math.random(0,3) })
|
minetest.set_node(place_pos, {name = nodename, param2 = math.random(0,3) })
|
||||||
else
|
else
|
||||||
local fdir = minetest.dir_to_facedir(placer:get_look_dir())
|
local fdir = minetest.dir_to_facedir(placer:get_look_dir())
|
||||||
minetest.add_node(place_pos, {name = "flowers:waterlily", param2 = fdir})
|
minetest.set_node(place_pos, {name = "flowers:waterlily", param2 = fdir})
|
||||||
end
|
end
|
||||||
|
|
||||||
if not plantslib.expect_infinite_stacks then
|
if not plantslib.expect_infinite_stacks then
|
||||||
@ -136,7 +145,7 @@ for i in ipairs(algae_list) do
|
|||||||
end
|
end
|
||||||
|
|
||||||
minetest.register_node(":flowers:seaweed"..num, {
|
minetest.register_node(":flowers:seaweed"..num, {
|
||||||
description = "Seaweed",
|
description = S("Seaweed"),
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
tiles = {
|
tiles = {
|
||||||
"flowers_seaweed"..num..".png",
|
"flowers_seaweed"..num..".png",
|
||||||
@ -185,12 +194,12 @@ for i in ipairs(algae_list) do
|
|||||||
place_pos = pt.above
|
place_pos = pt.above
|
||||||
end
|
end
|
||||||
|
|
||||||
if not plantslib:node_is_owned(place_pos, placer) then
|
if not minetest.is_protected(place_pos, placer:get_player_name()) then
|
||||||
|
|
||||||
local nodename = "default:cobble" -- :D
|
local nodename = "default:cobble" -- :D
|
||||||
|
|
||||||
if not keys["sneak"] then
|
if not keys["sneak"] then
|
||||||
--local node = minetest.env:get_node(pt.under)
|
--local node = minetest.get_node(pt.under)
|
||||||
local seaweed = math.random(1,4)
|
local seaweed = math.random(1,4)
|
||||||
if seaweed == 1 then
|
if seaweed == 1 then
|
||||||
nodename = "flowers:seaweed"
|
nodename = "flowers:seaweed"
|
||||||
@ -201,10 +210,10 @@ for i in ipairs(algae_list) do
|
|||||||
elseif seaweed == 4 then
|
elseif seaweed == 4 then
|
||||||
nodename = "flowers:seaweed_4"
|
nodename = "flowers:seaweed_4"
|
||||||
end
|
end
|
||||||
minetest.add_node(place_pos, {name = nodename, param2 = math.random(0,3) })
|
minetest.set_node(place_pos, {name = nodename, param2 = math.random(0,3) })
|
||||||
else
|
else
|
||||||
local fdir = minetest.dir_to_facedir(placer:get_look_dir())
|
local fdir = minetest.dir_to_facedir(placer:get_look_dir())
|
||||||
minetest.add_node(place_pos, {name = "flowers:seaweed", param2 = fdir})
|
minetest.set_node(place_pos, {name = "flowers:seaweed", param2 = fdir})
|
||||||
end
|
end
|
||||||
|
|
||||||
if not plantslib.expect_infinite_stacks then
|
if not plantslib.expect_infinite_stacks then
|
||||||
@ -217,22 +226,26 @@ for i in ipairs(algae_list) do
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- register all potted plant nodes, crafts, and most backward-compat aliases
|
-- register all potted plant nodes, crafts, and most backward-compat aliases
|
||||||
|
-- Description, base node name, item to craft flowerpot with
|
||||||
|
|
||||||
local flowers_list = {
|
local flowers_list = {
|
||||||
{ "Rose", "rose"},
|
{ "Rose", "rose", "flowers:rose" },
|
||||||
{ "Tulip", "tulip"},
|
{ "Tulip", "tulip", "flowers:tulip" },
|
||||||
{ "Yellow Dandelion", "dandelion_yellow"},
|
{ "Yellow Dandelion", "dandelion_yellow", "flowers:dandelion_yellow" },
|
||||||
{ "White Dandelion", "dandelion_white"},
|
{ "White Dandelion", "dandelion_white", "flowers:dandelion_white" },
|
||||||
{ "Blue Geranium", "geranium"},
|
{ "Blue Geranium", "geranium", "flowers:geranium" },
|
||||||
{ "Viola", "viola"},
|
{ "Viola", "viola", "flowers:viola" },
|
||||||
|
{ "Cactus", "cactus", "default:cactus" },
|
||||||
|
{ "Bonsai", "bonsai", "default:sapling" }
|
||||||
}
|
}
|
||||||
|
|
||||||
for i in ipairs(flowers_list) do
|
for i in ipairs(flowers_list) do
|
||||||
local flowerdesc = flowers_list[i][1]
|
local flowerdesc = flowers_list[i][1]
|
||||||
local flower = flowers_list[i][2]
|
local flower = flowers_list[i][2]
|
||||||
|
local craftwith = flowers_list[i][3]
|
||||||
|
|
||||||
minetest.register_node(":flowers:potted_"..flower, {
|
minetest.register_node(":flowers:potted_"..flower, {
|
||||||
description = "Potted "..flowerdesc,
|
description = S("Potted "..flowerdesc),
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
tiles = { "flowers_potted_"..flower..".png" },
|
tiles = { "flowers_potted_"..flower..".png" },
|
||||||
inventory_image = "flowers_potted_"..flower..".png",
|
inventory_image = "flowers_potted_"..flower..".png",
|
||||||
@ -252,8 +265,8 @@ for i in ipairs(flowers_list) do
|
|||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "flowers:potted_"..flower,
|
output = "flowers:potted_"..flower,
|
||||||
recipe = {
|
recipe = {
|
||||||
"flowers:flower_pot",
|
craftwith,
|
||||||
"flowers:"..flower
|
"flowers:flower_pot"
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -269,7 +282,7 @@ local extra_aliases = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for i in ipairs(extra_aliases) do
|
for i in ipairs(extra_aliases) do
|
||||||
flower = extra_aliases[i]
|
local flower = extra_aliases[i]
|
||||||
minetest.register_alias("flowers:flower_"..flower, "flowers:"..flower)
|
minetest.register_alias("flowers:flower_"..flower, "flowers:"..flower)
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -298,15 +311,15 @@ flowers_plus.grow_waterlily = function(pos)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if chance == num then
|
if chance == num then
|
||||||
minetest.add_node(right_here, {name="flowers:waterlily"..ext, param2=math.random(0,3)})
|
minetest.set_node(right_here, {name="flowers:waterlily"..ext, param2=math.random(0,3)})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
plantslib:register_generate_plant({
|
plantslib:register_generate_plant({
|
||||||
surface = {"default:water_source"},
|
surface = {"default:water_source"},
|
||||||
max_count = lilypads_max_count,
|
max_count = lilies_max_count,
|
||||||
rarity = lilypads_rarity,
|
rarity = lilies_rarity,
|
||||||
min_elevation = 1,
|
min_elevation = 1,
|
||||||
max_elevation = 40,
|
max_elevation = 40,
|
||||||
near_nodes = {"default:dirt_with_grass"},
|
near_nodes = {"default:dirt_with_grass"},
|
||||||
@ -317,12 +330,12 @@ plantslib:register_generate_plant({
|
|||||||
temp_max = -0.22,
|
temp_max = -0.22,
|
||||||
temp_min = 0.22,
|
temp_min = 0.22,
|
||||||
},
|
},
|
||||||
"flowers_plus.grow_waterlily"
|
flowers_plus.grow_waterlily
|
||||||
)
|
)
|
||||||
|
|
||||||
flowers_plus.grow_seaweed = function(pos)
|
flowers_plus.grow_seaweed = function(pos)
|
||||||
local right_here = {x=pos.x, y=pos.y+1, z=pos.z}
|
local right_here = {x=pos.x, y=pos.y+1, z=pos.z}
|
||||||
minetest.add_node(right_here, {name="along_shore:seaweed_"..math.random(1,4), param2=math.random(1,3)})
|
minetest.set_node(right_here, {name="along_shore:seaweed_"..math.random(1,4), param2=math.random(1,3)})
|
||||||
end
|
end
|
||||||
|
|
||||||
plantslib:register_generate_plant({
|
plantslib:register_generate_plant({
|
||||||
@ -337,7 +350,7 @@ plantslib:register_generate_plant({
|
|||||||
near_nodes_count = 1,
|
near_nodes_count = 1,
|
||||||
plantlife_limit = -0.9,
|
plantlife_limit = -0.9,
|
||||||
},
|
},
|
||||||
"flowers_plus.grow_seaweed"
|
flowers_plus.grow_seaweed
|
||||||
)
|
)
|
||||||
|
|
||||||
-- seaweed at beaches
|
-- seaweed at beaches
|
||||||
@ -356,7 +369,7 @@ plantslib:register_generate_plant({
|
|||||||
temp_max = -0.64, -- MM: more or less random values, just to make sure it's not everywhere
|
temp_max = -0.64, -- MM: more or less random values, just to make sure it's not everywhere
|
||||||
temp_min = -0.22, -- MM: more or less random values, just to make sure it's not everywhere
|
temp_min = -0.22, -- MM: more or less random values, just to make sure it's not everywhere
|
||||||
},
|
},
|
||||||
"flowers_plus.grow_seaweed"
|
flowers_plus.grow_seaweed
|
||||||
)
|
)
|
||||||
plantslib:register_generate_plant({
|
plantslib:register_generate_plant({
|
||||||
surface = {"default:sand"},
|
surface = {"default:sand"},
|
||||||
@ -372,7 +385,7 @@ plantslib:register_generate_plant({
|
|||||||
temp_max = -0.64, -- MM: more or less random values, just to make sure it's not everywhere
|
temp_max = -0.64, -- MM: more or less random values, just to make sure it's not everywhere
|
||||||
temp_min = -0.22, -- MM: more or less random values, just to make sure it's not everywhere
|
temp_min = -0.22, -- MM: more or less random values, just to make sure it's not everywhere
|
||||||
},
|
},
|
||||||
"flowers_plus.grow_seaweed"
|
flowers_plus.grow_seaweed
|
||||||
)
|
)
|
||||||
-- spawn ABM registrations
|
-- spawn ABM registrations
|
||||||
|
|
||||||
@ -442,7 +455,7 @@ plantslib:spawn_on_surfaces({
|
|||||||
-- crafting recipes!
|
-- crafting recipes!
|
||||||
|
|
||||||
minetest.register_craftitem(":flowers:flower_pot", {
|
minetest.register_craftitem(":flowers:flower_pot", {
|
||||||
description = "Flower Pot",
|
description = S("Flower Pot"),
|
||||||
inventory_image = "flowers_flowerpot.png",
|
inventory_image = "flowers_flowerpot.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -466,4 +479,4 @@ minetest.register_alias("flowers:potted_cotton_plant", "flowers:potted_dandelion
|
|||||||
minetest.register_alias("flowers:cotton", "farming:string")
|
minetest.register_alias("flowers:cotton", "farming:string")
|
||||||
minetest.register_alias("flowers:cotton_wad", "farming:string")
|
minetest.register_alias("flowers:cotton_wad", "farming:string")
|
||||||
|
|
||||||
print("[Flowers] Loaded.")
|
print(S("[Flowers] Loaded."))
|
||||||
|
13
mods/flowers_plus/locale/de.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Translation by Xanthin
|
||||||
|
|
||||||
|
Waterlily = Seerose
|
||||||
|
Seaweed = Seetang
|
||||||
|
Potted Rose = Eingetopfte Rose
|
||||||
|
Potted Tulip = Eingetopfte Tulpe
|
||||||
|
Potted Yellow Dandelion = Eingetopfter Loewenzahn
|
||||||
|
Potted White Dandelion = Eingetopfte Pusteblume
|
||||||
|
Potted Blue Geranium = Eingetopfte blaue Geranie
|
||||||
|
Potted Viola = Eingetopftes Veilchen
|
||||||
|
Flower Pot = Blumentopf
|
||||||
|
|
||||||
|
[Flowers] Loaded. = [Flowers] Geladen.
|
13
mods/flowers_plus/locale/template.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Template
|
||||||
|
|
||||||
|
Waterlily =
|
||||||
|
Seaweed =
|
||||||
|
Potted Rose =
|
||||||
|
Potted Tulip =
|
||||||
|
Potted Yellow Dandelion =
|
||||||
|
Potted White Dandelion =
|
||||||
|
Potted Blue Geranium =
|
||||||
|
Potted Viola =
|
||||||
|
Flower Pot =
|
||||||
|
|
||||||
|
[Flowers] Loaded. =
|
BIN
mods/flowers_plus/textures/flowers_potted_bonsai.png
Normal file
After Width: | Height: | Size: 565 B |
BIN
mods/flowers_plus/textures/flowers_potted_cactus.png
Normal file
After Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 491 B After Width: | Height: | Size: 503 B |
Before Width: | Height: | Size: 519 B After Width: | Height: | Size: 500 B |
Before Width: | Height: | Size: 507 B After Width: | Height: | Size: 505 B |
Before Width: | Height: | Size: 512 B After Width: | Height: | Size: 538 B |
Before Width: | Height: | Size: 499 B After Width: | Height: | Size: 619 B |
Before Width: | Height: | Size: 568 B After Width: | Height: | Size: 612 B |
Before Width: | Height: | Size: 509 B After Width: | Height: | Size: 573 B |
Before Width: | Height: | Size: 347 B After Width: | Height: | Size: 368 B |
@ -1,5 +1,4 @@
|
|||||||
-- Plantlife library mod by Vanessa Ezekowitz
|
-- Plantlife library mod by Vanessa Ezekowitz
|
||||||
-- last revision, 2013-01-24
|
|
||||||
--
|
--
|
||||||
-- License: WTFPL
|
-- License: WTFPL
|
||||||
--
|
--
|
||||||
@ -11,9 +10,26 @@
|
|||||||
|
|
||||||
plantslib = {}
|
plantslib = {}
|
||||||
|
|
||||||
|
plantslib.blocklist_aircheck = {}
|
||||||
|
plantslib.blocklist_no_aircheck = {}
|
||||||
|
|
||||||
|
plantslib.surface_nodes_aircheck = {}
|
||||||
|
plantslib.surface_nodes_no_aircheck = {}
|
||||||
|
|
||||||
|
plantslib.surfaceslist_aircheck = {}
|
||||||
|
plantslib.surfaceslist_no_aircheck = {}
|
||||||
|
|
||||||
|
plantslib.actioncount_aircheck = {}
|
||||||
|
plantslib.actioncount_no_aircheck = {}
|
||||||
|
|
||||||
|
plantslib.actionslist_aircheck = {}
|
||||||
|
plantslib.actionslist_no_aircheck = {}
|
||||||
|
|
||||||
plantslib.modpath = minetest.get_modpath("plants_lib")
|
plantslib.modpath = minetest.get_modpath("plants_lib")
|
||||||
plantslib.intllib_modpath = minetest.get_modpath("intllib")
|
plantslib.intllib_modpath = minetest.get_modpath("intllib")
|
||||||
|
|
||||||
|
plantslib.total_no_aircheck_calls = 0
|
||||||
|
|
||||||
local S
|
local S
|
||||||
if plantslib.intllib_modpath then
|
if plantslib.intllib_modpath then
|
||||||
dofile(plantslib.intllib_modpath.."/intllib.lua")
|
dofile(plantslib.intllib_modpath.."/intllib.lua")
|
||||||
@ -24,6 +40,13 @@ end
|
|||||||
|
|
||||||
local DEBUG = false --... except if you want to spam the console with debugging info :-)
|
local DEBUG = false --... except if you want to spam the console with debugging info :-)
|
||||||
|
|
||||||
|
function plantslib:dbg(msg)
|
||||||
|
if DEBUG then
|
||||||
|
print("[Plantlife] "..msg)
|
||||||
|
minetest.log("verbose", "[Plantlife] "..msg)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
plantslib.plantlife_seed_diff = 329 -- needs to be global so other mods can see it
|
plantslib.plantlife_seed_diff = 329 -- needs to be global so other mods can see it
|
||||||
|
|
||||||
local perlin_octaves = 3
|
local perlin_octaves = 3
|
||||||
@ -40,6 +63,13 @@ local humidity_octaves = 3
|
|||||||
local humidity_persistence = 0.5
|
local humidity_persistence = 0.5
|
||||||
local humidity_scale = 250
|
local humidity_scale = 250
|
||||||
|
|
||||||
|
local time_scale = 1
|
||||||
|
local time_speed = tonumber(minetest.setting_get("time_speed"))
|
||||||
|
|
||||||
|
if time_speed and time_speed > 0 then
|
||||||
|
time_scale = 72 / time_speed
|
||||||
|
end
|
||||||
|
|
||||||
--PerlinNoise(seed, octaves, persistence, scale)
|
--PerlinNoise(seed, octaves, persistence, scale)
|
||||||
|
|
||||||
plantslib.perlin_temperature = PerlinNoise(temperature_seeddiff, temperature_octaves, temperature_persistence, temperature_scale)
|
plantslib.perlin_temperature = PerlinNoise(temperature_seeddiff, temperature_octaves, temperature_persistence, temperature_scale)
|
||||||
@ -47,34 +77,14 @@ plantslib.perlin_humidity = PerlinNoise(humidity_seeddiff, humidity_octaves, hum
|
|||||||
|
|
||||||
-- Local functions
|
-- Local functions
|
||||||
|
|
||||||
local function dump_pos(pos)
|
|
||||||
return "{x="..pos.x..",y="..pos.y..",z="..pos.z.."}"
|
|
||||||
end
|
|
||||||
|
|
||||||
function plantslib:is_node_loaded(node_pos)
|
function plantslib:is_node_loaded(node_pos)
|
||||||
n = minetest.get_node_or_nil(node_pos)
|
local n = minetest.get_node_or_nil(node_pos)
|
||||||
if (not n) or (n.name == "ignore") then
|
if (not n) or (n.name == "ignore") then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
function plantslib:clone_node(name)
|
|
||||||
node2={}
|
|
||||||
node=minetest.registered_nodes[name]
|
|
||||||
for k,v in pairs(node) do
|
|
||||||
node2[k]=v
|
|
||||||
end
|
|
||||||
return node2
|
|
||||||
end
|
|
||||||
|
|
||||||
function plantslib:dbg(msg)
|
|
||||||
if DEBUG then
|
|
||||||
print("[Plantlife] "..msg)
|
|
||||||
minetest.log("verbose", "[Plantlife] "..msg)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function plantslib:set_defaults(biome)
|
function plantslib:set_defaults(biome)
|
||||||
biome.seed_diff = biome.seed_diff or 0
|
biome.seed_diff = biome.seed_diff or 0
|
||||||
biome.min_elevation = biome.min_elevation or -31000
|
biome.min_elevation = biome.min_elevation or -31000
|
||||||
@ -103,118 +113,322 @@ function plantslib:set_defaults(biome)
|
|||||||
biome.facedir = biome.facedir or 0
|
biome.facedir = biome.facedir or 0
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Spawn plants using the map generator
|
local function search_table(t, s)
|
||||||
|
for i = 1, #t do
|
||||||
function plantslib:register_generate_plant(biomedef, node_or_function_or_model)
|
if t[i] == s then return true end
|
||||||
plantslib:dbg("Registered mapgen spawner:")
|
end
|
||||||
plantslib:dbg(dump(biomedef))
|
return false
|
||||||
|
|
||||||
minetest.register_on_generated(plantslib:search_for_surfaces(minp, maxp, biomedef, node_or_function_or_model))
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function plantslib:search_for_surfaces(minp, maxp, biomedef, node_or_function_or_model)
|
-- register the list of surfaces to spawn stuff on, filtering out all duplicates.
|
||||||
return function(minp, maxp, blockseed)
|
-- separate the items by air-checking or non-air-checking map eval methods
|
||||||
local t1=os.clock()
|
|
||||||
|
|
||||||
local biome = biomedef
|
function plantslib:register_generate_plant(biomedef, nodes_or_function_or_model)
|
||||||
plantslib:set_defaults(biome)
|
|
||||||
|
|
||||||
plantslib:dbg("Started checking generated mapblock volume...")
|
-- if calling code passes an undefined node for a surface or
|
||||||
local searchnodes = minetest.find_nodes_in_area(minp, maxp, biome.surface)
|
-- as a node to be spawned, don't register an action for it.
|
||||||
local in_biome_nodes = {}
|
|
||||||
local num_in_biome_nodes = 0
|
|
||||||
for i in ipairs(searchnodes) do
|
|
||||||
local pos = searchnodes[i]
|
|
||||||
local p_top = { x = pos.x, y = pos.y + 1, z = pos.z }
|
|
||||||
local perlin1 = minetest.get_perlin(biome.seed_diff, perlin_octaves, perlin_persistence, perlin_scale)
|
|
||||||
local noise1 = perlin1:get2d({x=p_top.x, y=p_top.z})
|
|
||||||
local noise2 = plantslib.perlin_temperature:get2d({x=p_top.x, y=p_top.z})
|
|
||||||
local noise3 = plantslib.perlin_humidity:get2d({x=p_top.x+150, y=p_top.z+50})
|
|
||||||
if (not biome.depth or minetest.get_node({ x = pos.x, y = pos.y-biome.depth-1, z = pos.z }).name ~= biome.surface)
|
|
||||||
and (not biome.check_air or (biome.check_air and minetest.get_node(p_top).name == "air"))
|
|
||||||
and pos.y >= biome.min_elevation
|
|
||||||
and pos.y <= biome.max_elevation
|
|
||||||
and noise1 > biome.plantlife_limit
|
|
||||||
and noise2 <= biome.temp_min
|
|
||||||
and noise2 >= biome.temp_max
|
|
||||||
and noise3 <= biome.humidity_min
|
|
||||||
and noise3 >= biome.humidity_max
|
|
||||||
and (not biome.ncount or table.getn(minetest.find_nodes_in_area({x=pos.x-1, y=pos.y, z=pos.z-1}, {x=pos.x+1, y=pos.y, z=pos.z+1}, biome.neighbors)) > biome.ncount)
|
|
||||||
and (not biome.near_nodes or table.getn(minetest.find_nodes_in_area({x=pos.x-biome.near_nodes_size, y=pos.y-biome.near_nodes_vertical, z=pos.z-biome.near_nodes_size}, {x=pos.x+biome.near_nodes_size, y=pos.y+biome.near_nodes_vertical, z=pos.z+biome.near_nodes_size}, biome.near_nodes)) >= biome.near_nodes_count)
|
|
||||||
and math.random(1,100) > biome.rarity
|
|
||||||
and (not biome.below_nodes or string.find(dump(biome.below_nodes), minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name) )
|
|
||||||
then
|
|
||||||
table.insert(in_biome_nodes, pos)
|
|
||||||
num_in_biome_nodes = num_in_biome_nodes + 1
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
plantslib:dbg("Found "..num_in_biome_nodes.." surface nodes of type(s) "..dump(biome.surface).." in 5x5x5 mapblock volume at {"..dump(minp)..":"..dump(maxp).."} to check.")
|
if type(nodes_or_function_or_model) == "string"
|
||||||
|
and string.find(nodes_or_function_or_model, ":")
|
||||||
|
and not minetest.registered_nodes[nodes_or_function_or_model] then
|
||||||
|
plantslib:dbg("Warning: Ignored registration for undefined spawn node: "..dump(nodes_or_function_or_model))
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
if num_in_biome_nodes > 0 then
|
if type(nodes_or_function_or_model) == "string"
|
||||||
plantslib:dbg("Calculated maximum of "..math.min(biome.max_count*3, num_in_biome_nodes).." nodes to be checked in that list.")
|
and not string.find(nodes_or_function_or_model, ":") then
|
||||||
for i = 1, math.min(biome.max_count, num_in_biome_nodes) do
|
plantslib:dbg("Warning: Registered function call using deprecated string method: "..dump(nodes_or_function_or_model))
|
||||||
local tries = 0
|
end
|
||||||
local spawned = false
|
|
||||||
while tries < 2 and not spawned do
|
|
||||||
local pos = in_biome_nodes[math.random(1, num_in_biome_nodes)]
|
|
||||||
if biome.spawn_replace_node then
|
|
||||||
pos.y = pos.y-1
|
|
||||||
end
|
|
||||||
local p_top = { x = pos.x, y = pos.y + 1, z = pos.z }
|
|
||||||
|
|
||||||
if not (biome.avoid_nodes and biome.avoid_radius and minetest.find_node_near(p_top, biome.avoid_radius + math.random(-1.5,2), biome.avoid_nodes)) then
|
if biomedef.check_air == false then
|
||||||
if biome.delete_above then
|
plantslib:dbg("Register no-air-check mapgen hook: "..dump(nodes_or_function_or_model))
|
||||||
minetest.remove_node(p_top)
|
plantslib.actionslist_no_aircheck[#plantslib.actionslist_no_aircheck + 1] = { biomedef, nodes_or_function_or_model }
|
||||||
minetest.remove_node({x=p_top.x, y=p_top.y+1, z=p_top.z})
|
local s = biomedef.surface
|
||||||
end
|
if type(s) == "string" then
|
||||||
|
if s and (string.find(s, "^group:") or minetest.registered_nodes[s]) then
|
||||||
if biome.delete_above_surround then
|
if not search_table(plantslib.surfaceslist_no_aircheck, s) then
|
||||||
minetest.remove_node({x=p_top.x-1, y=p_top.y, z=p_top.z})
|
plantslib.surfaceslist_no_aircheck[#plantslib.surfaceslist_no_aircheck + 1] = s
|
||||||
minetest.remove_node({x=p_top.x+1, y=p_top.y, z=p_top.z})
|
|
||||||
minetest.remove_node({x=p_top.x, y=p_top.y, z=p_top.z-1})
|
|
||||||
minetest.remove_node({x=p_top.x, y=p_top.y, z=p_top.z+1})
|
|
||||||
|
|
||||||
minetest.remove_node({x=p_top.x-1, y=p_top.y+1, z=p_top.z})
|
|
||||||
minetest.remove_node({x=p_top.x+1, y=p_top.y+1, z=p_top.z})
|
|
||||||
minetest.remove_node({x=p_top.x, y=p_top.y+1, z=p_top.z-1})
|
|
||||||
minetest.remove_node({x=p_top.x, y=p_top.y+1, z=p_top.z+1})
|
|
||||||
end
|
|
||||||
|
|
||||||
if biome.spawn_replace_node then
|
|
||||||
minetest.remove_node(pos)
|
|
||||||
end
|
|
||||||
|
|
||||||
if type(node_or_function_or_model) == "table" then
|
|
||||||
plantslib:dbg("Spawn tree at {"..dump(pos).."}")
|
|
||||||
plantslib:generate_tree(pos, node_or_function_or_model)
|
|
||||||
|
|
||||||
elseif type(node_or_function_or_model) == "string" then
|
|
||||||
if not minetest.registered_nodes[node_or_function_or_model] then
|
|
||||||
plantslib:dbg("Call function: "..node_or_function_or_model.."("..dump_pos(pos)..")")
|
|
||||||
local t2=os.clock()
|
|
||||||
assert(loadstring(node_or_function_or_model.."("..dump_pos(pos)..")"))()
|
|
||||||
plantslib:dbg("Executed that function in ".. (os.clock()-t2)*1000 .."ms")
|
|
||||||
else
|
|
||||||
plantslib:dbg("Add node: "..node_or_function_or_model.." at ("..dump(p_top)..")")
|
|
||||||
minetest.add_node(p_top, { name = node_or_function_or_model })
|
|
||||||
end
|
|
||||||
end
|
|
||||||
spawned = true
|
|
||||||
else
|
|
||||||
tries = tries + 1
|
|
||||||
plantslib:dbg("No room to spawn object at {"..dump(pos).."} -- trying again elsewhere")
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
if tries == 2 then
|
else
|
||||||
plantslib:dbg("Unable to spawn that object. Giving up on it.")
|
plantslib:dbg("Warning: Ignored no-air-check registration for undefined surface node: "..dump(s))
|
||||||
|
end
|
||||||
|
else
|
||||||
|
for i = 1, #biomedef.surface do
|
||||||
|
local s = biomedef.surface[i]
|
||||||
|
if s and (string.find(s, "^group:") or minetest.registered_nodes[s]) then
|
||||||
|
if not search_table(plantslib.surfaceslist_no_aircheck, s) then
|
||||||
|
plantslib.surfaceslist_no_aircheck[#plantslib.surfaceslist_no_aircheck + 1] = s
|
||||||
|
end
|
||||||
|
else
|
||||||
|
plantslib:dbg("Warning: Ignored no-air-check registration for undefined surface node: "..dump(s))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
plantslib:dbg("Register with-air-checking mapgen hook: "..dump(nodes_or_function_or_model))
|
||||||
|
plantslib.actionslist_aircheck[#plantslib.actionslist_aircheck + 1] = { biomedef, nodes_or_function_or_model }
|
||||||
|
local s = biomedef.surface
|
||||||
|
if type(s) == "string" then
|
||||||
|
if s and (string.find(s, "^group:") or minetest.registered_nodes[s]) then
|
||||||
|
if not search_table(plantslib.surfaceslist_aircheck, s) then
|
||||||
|
plantslib.surfaceslist_aircheck[#plantslib.surfaceslist_aircheck + 1] = s
|
||||||
|
end
|
||||||
|
else
|
||||||
|
plantslib:dbg("Warning: Ignored with-air-checking registration for undefined surface node: "..dump(s))
|
||||||
|
end
|
||||||
|
else
|
||||||
|
for i = 1, #biomedef.surface do
|
||||||
|
local s = biomedef.surface[i]
|
||||||
|
if s and (string.find(s, "^group:") or minetest.registered_nodes[s]) then
|
||||||
|
if not search_table(plantslib.surfaceslist_aircheck, s) then
|
||||||
|
plantslib.surfaceslist_aircheck[#plantslib.surfaceslist_aircheck + 1] = s
|
||||||
|
end
|
||||||
|
else
|
||||||
|
plantslib:dbg("Warning: Ignored with-air-checking registration for undefined surface node: "..dump(s))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
plantslib:dbg("Evaluated/populated chunk in ".. (os.clock()-t1)*1000 .."ms")
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function plantslib:populate_surfaces(biome, nodes_or_function_or_model, snodes, checkair)
|
||||||
|
|
||||||
|
plantslib:set_defaults(biome)
|
||||||
|
|
||||||
|
-- filter stage 1 - find nodes from the supplied surfaces that are within the current biome.
|
||||||
|
|
||||||
|
local in_biome_nodes = {}
|
||||||
|
local perlin_fertile_area = minetest.get_perlin(biome.seed_diff, perlin_octaves, perlin_persistence, perlin_scale)
|
||||||
|
|
||||||
|
for i = 1, #snodes do
|
||||||
|
local pos = snodes[i]
|
||||||
|
local p_top = { x = pos.x, y = pos.y + 1, z = pos.z }
|
||||||
|
local noise1 = perlin_fertile_area:get2d({x=pos.x, y=pos.z})
|
||||||
|
local noise2 = plantslib.perlin_temperature:get2d({x=pos.x, y=pos.z})
|
||||||
|
local noise3 = plantslib.perlin_humidity:get2d({x=pos.x+150, y=pos.z+50})
|
||||||
|
local biome_surfaces_string = dump(biome.surface)
|
||||||
|
local surface_ok = false
|
||||||
|
|
||||||
|
if not biome.depth then
|
||||||
|
local dest_node = minetest.get_node(pos)
|
||||||
|
if string.find(biome_surfaces_string, dest_node.name) then
|
||||||
|
surface_ok = true
|
||||||
|
else
|
||||||
|
if string.find(biome_surfaces_string, "group:") then
|
||||||
|
for j = 1, #biome.surface do
|
||||||
|
if string.find(biome.surface[j], "^group:")
|
||||||
|
and minetest.get_item_group(dest_node.name, biome.surface[j]) then
|
||||||
|
surface_ok = true
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
elseif not string.find(biome_surfaces_string, minetest.get_node({ x = pos.x, y = pos.y-biome.depth-1, z = pos.z }).name) then
|
||||||
|
surface_ok = true
|
||||||
|
end
|
||||||
|
|
||||||
|
if surface_ok
|
||||||
|
and (not checkair or minetest.get_node(p_top).name == "air")
|
||||||
|
and pos.y >= biome.min_elevation
|
||||||
|
and pos.y <= biome.max_elevation
|
||||||
|
and noise1 > biome.plantlife_limit
|
||||||
|
and noise2 <= biome.temp_min
|
||||||
|
and noise2 >= biome.temp_max
|
||||||
|
and noise3 <= biome.humidity_min
|
||||||
|
and noise3 >= biome.humidity_max
|
||||||
|
and (not biome.ncount or #(minetest.find_nodes_in_area({x=pos.x-1, y=pos.y, z=pos.z-1}, {x=pos.x+1, y=pos.y, z=pos.z+1}, biome.neighbors)) > biome.ncount)
|
||||||
|
and (not biome.near_nodes or #(minetest.find_nodes_in_area({x=pos.x-biome.near_nodes_size, y=pos.y-biome.near_nodes_vertical, z=pos.z-biome.near_nodes_size}, {x=pos.x+biome.near_nodes_size, y=pos.y+biome.near_nodes_vertical, z=pos.z+biome.near_nodes_size}, biome.near_nodes)) >= biome.near_nodes_count)
|
||||||
|
and math.random(1,100) > biome.rarity
|
||||||
|
and (not biome.below_nodes or string.find(dump(biome.below_nodes), minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name) )
|
||||||
|
then
|
||||||
|
in_biome_nodes[#in_biome_nodes + 1] = pos
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- filter stage 2 - find places within that biome area to place the plants.
|
||||||
|
|
||||||
|
local num_in_biome_nodes = #in_biome_nodes
|
||||||
|
|
||||||
|
if num_in_biome_nodes > 0 then
|
||||||
|
for i = 1, math.min(biome.max_count, num_in_biome_nodes) do
|
||||||
|
local tries = 0
|
||||||
|
local spawned = false
|
||||||
|
while tries < 2 and not spawned do
|
||||||
|
local pos = in_biome_nodes[math.random(1, num_in_biome_nodes)]
|
||||||
|
if biome.spawn_replace_node then
|
||||||
|
pos.y = pos.y-1
|
||||||
|
end
|
||||||
|
local p_top = { x = pos.x, y = pos.y + 1, z = pos.z }
|
||||||
|
|
||||||
|
if not (biome.avoid_nodes and biome.avoid_radius and minetest.find_node_near(p_top, biome.avoid_radius + math.random(-1.5,2), biome.avoid_nodes)) then
|
||||||
|
if biome.delete_above then
|
||||||
|
minetest.remove_node(p_top)
|
||||||
|
minetest.remove_node({x=p_top.x, y=p_top.y+1, z=p_top.z})
|
||||||
|
end
|
||||||
|
|
||||||
|
if biome.delete_above_surround then
|
||||||
|
minetest.remove_node({x=p_top.x-1, y=p_top.y, z=p_top.z})
|
||||||
|
minetest.remove_node({x=p_top.x+1, y=p_top.y, z=p_top.z})
|
||||||
|
minetest.remove_node({x=p_top.x, y=p_top.y, z=p_top.z-1})
|
||||||
|
minetest.remove_node({x=p_top.x, y=p_top.y, z=p_top.z+1})
|
||||||
|
|
||||||
|
minetest.remove_node({x=p_top.x-1, y=p_top.y+1, z=p_top.z})
|
||||||
|
minetest.remove_node({x=p_top.x+1, y=p_top.y+1, z=p_top.z})
|
||||||
|
minetest.remove_node({x=p_top.x, y=p_top.y+1, z=p_top.z-1})
|
||||||
|
minetest.remove_node({x=p_top.x, y=p_top.y+1, z=p_top.z+1})
|
||||||
|
end
|
||||||
|
|
||||||
|
if biome.spawn_replace_node then
|
||||||
|
minetest.remove_node(pos)
|
||||||
|
end
|
||||||
|
|
||||||
|
local objtype = type(nodes_or_function_or_model)
|
||||||
|
|
||||||
|
if objtype == "table" then
|
||||||
|
if nodes_or_function_or_model.axiom then
|
||||||
|
plantslib:generate_tree(pos, nodes_or_function_or_model)
|
||||||
|
spawned = true
|
||||||
|
else
|
||||||
|
local fdir = nil
|
||||||
|
if biome.random_facedir then
|
||||||
|
fdir = math.random(biome.random_facedir[1], biome.random_facedir[2])
|
||||||
|
end
|
||||||
|
minetest.set_node(p_top, { name = nodes_or_function_or_model[math.random(#nodes_or_function_or_model)], param2 = fdir })
|
||||||
|
spawned = true
|
||||||
|
end
|
||||||
|
elseif objtype == "string" and
|
||||||
|
minetest.registered_nodes[nodes_or_function_or_model] then
|
||||||
|
local fdir = nil
|
||||||
|
if biome.random_facedir then
|
||||||
|
fdir = math.random(biome.random_facedir[1], biome.random_facedir[2])
|
||||||
|
end
|
||||||
|
minetest.set_node(p_top, { name = nodes_or_function_or_model, param2 = fdir })
|
||||||
|
spawned = true
|
||||||
|
elseif objtype == "function" then
|
||||||
|
nodes_or_function_or_model(pos)
|
||||||
|
spawned = true
|
||||||
|
elseif objtype == "string" and pcall(loadstring(("return %s(...)"):
|
||||||
|
format(nodes_or_function_or_model)),pos) then
|
||||||
|
spawned = true
|
||||||
|
else
|
||||||
|
plantslib:dbg("Warning: Ignored invalid definition for object "..dump(nodes_or_function_or_model).." that was pointed at {"..dump(pos).."}")
|
||||||
|
end
|
||||||
|
else
|
||||||
|
tries = tries + 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Primary mapgen spawner, for mods that can work with air checking enabled on
|
||||||
|
-- a surface during the initial map read stage.
|
||||||
|
|
||||||
|
function plantslib:generate_block_with_air_checking(dtime)
|
||||||
|
|
||||||
|
if #plantslib.blocklist_aircheck > 0 then
|
||||||
|
|
||||||
|
local minp = plantslib.blocklist_aircheck[1][1]
|
||||||
|
local maxp = plantslib.blocklist_aircheck[1][2]
|
||||||
|
|
||||||
|
-- use the block hash as a unique key into the surface nodes
|
||||||
|
-- tables, so that we can write the tables thread-safely.
|
||||||
|
|
||||||
|
local blockhash = minetest.hash_node_position(minp)
|
||||||
|
|
||||||
|
if not plantslib.surface_nodes_aircheck.blockhash then
|
||||||
|
|
||||||
|
local search_area = minetest.find_nodes_in_area(minp, maxp, plantslib.surfaceslist_aircheck)
|
||||||
|
|
||||||
|
-- search the generated block for air-bounded surfaces
|
||||||
|
|
||||||
|
plantslib.surface_nodes_aircheck.blockhash = {}
|
||||||
|
|
||||||
|
for i = 1, #search_area do
|
||||||
|
local pos = search_area[i]
|
||||||
|
local p_top = { x=pos.x, y=pos.y+1, z=pos.z }
|
||||||
|
if minetest.get_node(p_top).name == "air" then
|
||||||
|
plantslib.surface_nodes_aircheck.blockhash[#plantslib.surface_nodes_aircheck.blockhash + 1] = pos
|
||||||
|
end
|
||||||
|
end
|
||||||
|
plantslib.actioncount_aircheck.blockhash = 1
|
||||||
|
|
||||||
|
else
|
||||||
|
if plantslib.actioncount_aircheck.blockhash <= #plantslib.actionslist_aircheck then
|
||||||
|
-- [1] is biome, [2] is node/function/model
|
||||||
|
plantslib:populate_surfaces(
|
||||||
|
plantslib.actionslist_aircheck[plantslib.actioncount_aircheck.blockhash][1],
|
||||||
|
plantslib.actionslist_aircheck[plantslib.actioncount_aircheck.blockhash][2],
|
||||||
|
plantslib.surface_nodes_aircheck.blockhash, true)
|
||||||
|
plantslib.actioncount_aircheck.blockhash = plantslib.actioncount_aircheck.blockhash + 1
|
||||||
|
else
|
||||||
|
if plantslib.surface_nodes_aircheck.blockhash then
|
||||||
|
table.remove(plantslib.blocklist_aircheck, 1)
|
||||||
|
plantslib.surface_nodes_aircheck.blockhash = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Secondary mapgen spawner, for mods that require disabling of
|
||||||
|
-- checking for air during the initial map read stage.
|
||||||
|
|
||||||
|
function plantslib:generate_block_no_aircheck(dtime)
|
||||||
|
|
||||||
|
if #plantslib.blocklist_no_aircheck > 0 then
|
||||||
|
|
||||||
|
local minp = plantslib.blocklist_no_aircheck[1][1]
|
||||||
|
local maxp = plantslib.blocklist_no_aircheck[1][2]
|
||||||
|
|
||||||
|
local blockhash = minetest.hash_node_position(minp)
|
||||||
|
|
||||||
|
if not plantslib.surface_nodes_no_aircheck.blockhash then
|
||||||
|
|
||||||
|
-- directly read the block to be searched into the chunk cache
|
||||||
|
|
||||||
|
plantslib.surface_nodes_no_aircheck.blockhash =
|
||||||
|
minetest.find_nodes_in_area(minp, maxp, plantslib.surfaceslist_no_aircheck)
|
||||||
|
plantslib.actioncount_no_aircheck.blockhash = 1
|
||||||
|
|
||||||
|
else
|
||||||
|
if plantslib.actioncount_no_aircheck.blockhash <= #plantslib.actionslist_no_aircheck then
|
||||||
|
plantslib:populate_surfaces(
|
||||||
|
plantslib.actionslist_no_aircheck[plantslib.actioncount_no_aircheck.blockhash][1],
|
||||||
|
plantslib.actionslist_no_aircheck[plantslib.actioncount_no_aircheck.blockhash][2],
|
||||||
|
plantslib.surface_nodes_no_aircheck.blockhash, false)
|
||||||
|
plantslib.actioncount_no_aircheck.blockhash = plantslib.actioncount_no_aircheck.blockhash + 1
|
||||||
|
else
|
||||||
|
if plantslib.surface_nodes_no_aircheck.blockhash then
|
||||||
|
table.remove(plantslib.blocklist_no_aircheck, 1)
|
||||||
|
plantslib.surface_nodes_no_aircheck.blockhash = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- "Record" the chunks being generated by the core mapgen
|
||||||
|
|
||||||
|
minetest.register_on_generated(function(minp, maxp, blockseed)
|
||||||
|
plantslib.blocklist_aircheck[#plantslib.blocklist_aircheck + 1] = { minp, maxp }
|
||||||
|
end)
|
||||||
|
|
||||||
|
minetest.register_on_generated(function(minp, maxp, blockseed)
|
||||||
|
plantslib.blocklist_no_aircheck[#plantslib.blocklist_no_aircheck + 1] = { minp, maxp }
|
||||||
|
end)
|
||||||
|
|
||||||
|
-- "Play" them back, populating them with new stuff in the process
|
||||||
|
|
||||||
|
minetest.register_globalstep(function(dtime)
|
||||||
|
plantslib:generate_block_with_air_checking(dtime)
|
||||||
|
end)
|
||||||
|
|
||||||
|
minetest.register_globalstep(function(dtime)
|
||||||
|
plantslib:generate_block_no_aircheck(dtime)
|
||||||
|
end)
|
||||||
|
|
||||||
-- The spawning ABM
|
-- The spawning ABM
|
||||||
|
|
||||||
function plantslib:spawn_on_surfaces(sd,sp,sr,sc,ss,sa)
|
function plantslib:spawn_on_surfaces(sd,sp,sr,sc,ss,sa)
|
||||||
@ -232,23 +446,25 @@ function plantslib:spawn_on_surfaces(sd,sp,sr,sc,ss,sa)
|
|||||||
biome = sd
|
biome = sd
|
||||||
end
|
end
|
||||||
|
|
||||||
plantslib:set_defaults(biome)
|
if biome.spawn_delay*time_scale >= 1 then
|
||||||
biome.spawn_plants_count = table.getn(biome.spawn_plants)
|
biome.interval = biome.spawn_delay*time_scale
|
||||||
|
else
|
||||||
|
biome.interval = 1
|
||||||
|
end
|
||||||
|
|
||||||
plantslib:dbg("Registered spawning ABM:")
|
plantslib:set_defaults(biome)
|
||||||
plantslib:dbg(dump(biome))
|
biome.spawn_plants_count = #(biome.spawn_plants)
|
||||||
plantslib:dbg("Number of trigger nodes in this ABM: "..biome.spawn_plants_count )
|
|
||||||
|
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
nodenames = biome.spawn_surfaces,
|
nodenames = biome.spawn_surfaces,
|
||||||
interval = biome.spawn_delay,
|
interval = biome.interval,
|
||||||
chance = biome.spawn_chance,
|
chance = biome.spawn_chance,
|
||||||
neighbors = biome.neighbors,
|
neighbors = biome.neighbors,
|
||||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||||
local p_top = { x = pos.x, y = pos.y + 1, z = pos.z }
|
local p_top = { x = pos.x, y = pos.y + 1, z = pos.z }
|
||||||
local n_top = minetest.get_node(p_top)
|
local n_top = minetest.get_node(p_top)
|
||||||
local perlin1 = minetest.get_perlin(biome.seed_diff, perlin_octaves, perlin_persistence, perlin_scale)
|
local perlin_fertile_area = minetest.get_perlin(biome.seed_diff, perlin_octaves, perlin_persistence, perlin_scale)
|
||||||
local noise1 = perlin1:get2d({x=p_top.x, y=p_top.z})
|
local noise1 = perlin_fertile_area:get2d({x=p_top.x, y=p_top.z})
|
||||||
local noise2 = plantslib.perlin_temperature:get2d({x=p_top.x, y=p_top.z})
|
local noise2 = plantslib.perlin_temperature:get2d({x=p_top.x, y=p_top.z})
|
||||||
local noise3 = plantslib.perlin_humidity:get2d({x=p_top.x+150, y=p_top.z+50})
|
local noise3 = plantslib.perlin_humidity:get2d({x=p_top.x+150, y=p_top.z+50})
|
||||||
if noise1 > biome.plantlife_limit
|
if noise1 > biome.plantlife_limit
|
||||||
@ -261,54 +477,45 @@ function plantslib:spawn_on_surfaces(sd,sp,sr,sc,ss,sa)
|
|||||||
if not (biome.avoid_nodes and biome.avoid_radius and minetest.find_node_near(p_top, biome.avoid_radius + math.random(-1.5,2), biome.avoid_nodes))
|
if not (biome.avoid_nodes and biome.avoid_radius and minetest.find_node_near(p_top, biome.avoid_radius + math.random(-1.5,2), biome.avoid_nodes))
|
||||||
and n_light >= biome.light_min
|
and n_light >= biome.light_min
|
||||||
and n_light <= biome.light_max
|
and n_light <= biome.light_max
|
||||||
and (not(biome.neighbors and biome.ncount) or table.getn(minetest.find_nodes_in_area({x=pos.x-1, y=pos.y, z=pos.z-1}, {x=pos.x+1, y=pos.y, z=pos.z+1}, biome.neighbors)) > biome.ncount )
|
and (not(biome.neighbors and biome.ncount) or #(minetest.find_nodes_in_area({x=pos.x-1, y=pos.y, z=pos.z-1}, {x=pos.x+1, y=pos.y, z=pos.z+1}, biome.neighbors)) > biome.ncount )
|
||||||
and (not(biome.near_nodes and biome.near_nodes_count and biome.near_nodes_size) or table.getn(minetest.find_nodes_in_area({x=pos.x-biome.near_nodes_size, y=pos.y-biome.near_nodes_vertical, z=pos.z-biome.near_nodes_size}, {x=pos.x+biome.near_nodes_size, y=pos.y+biome.near_nodes_vertical, z=pos.z+biome.near_nodes_size}, biome.near_nodes)) >= biome.near_nodes_count)
|
and (not(biome.near_nodes and biome.near_nodes_count and biome.near_nodes_size) or #(minetest.find_nodes_in_area({x=pos.x-biome.near_nodes_size, y=pos.y-biome.near_nodes_vertical, z=pos.z-biome.near_nodes_size}, {x=pos.x+biome.near_nodes_size, y=pos.y+biome.near_nodes_vertical, z=pos.z+biome.near_nodes_size}, biome.near_nodes)) >= biome.near_nodes_count)
|
||||||
and (not(biome.air_count and biome.air_size) or table.getn(minetest.find_nodes_in_area({x=p_top.x-biome.air_size, y=p_top.y, z=p_top.z-biome.air_size}, {x=p_top.x+biome.air_size, y=p_top.y, z=p_top.z+biome.air_size}, "air")) >= biome.air_count)
|
and (not(biome.air_count and biome.air_size) or #(minetest.find_nodes_in_area({x=p_top.x-biome.air_size, y=p_top.y, z=p_top.z-biome.air_size}, {x=p_top.x+biome.air_size, y=p_top.y, z=p_top.z+biome.air_size}, "air")) >= biome.air_count)
|
||||||
and pos.y >= biome.min_elevation
|
and pos.y >= biome.min_elevation
|
||||||
and pos.y <= biome.max_elevation
|
and pos.y <= biome.max_elevation
|
||||||
then
|
then
|
||||||
local walldir = plantslib:find_adjacent_wall(p_top, biome.verticals_list)
|
local walldir = plantslib:find_adjacent_wall(p_top, biome.verticals_list)
|
||||||
if biome.alt_wallnode and walldir then
|
if biome.alt_wallnode and walldir then
|
||||||
if n_top.name == "air" then
|
if n_top.name == "air" then
|
||||||
plantslib:dbg("Spawn: "..biome.alt_wallnode.." on top of ("..dump(pos)..") against wall "..walldir)
|
minetest.set_node(p_top, { name = biome.alt_wallnode, param2 = walldir })
|
||||||
minetest.add_node(p_top, { name = biome.alt_wallnode, param2 = walldir })
|
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
local currentsurface = minetest.get_node(pos).name
|
local currentsurface = minetest.get_node(pos).name
|
||||||
if currentsurface ~= "default:water_source"
|
if currentsurface ~= "default:water_source"
|
||||||
or (currentsurface == "default:water_source" and table.getn(minetest.find_nodes_in_area({x=pos.x, y=pos.y-biome.depth_max-1, z=pos.z}, {x=pos.x, y=pos.y, z=pos.z}, {"default:dirt", "default:dirt_with_grass", "default:sand"})) > 0 )
|
or (currentsurface == "default:water_source" and #(minetest.find_nodes_in_area({x=pos.x, y=pos.y-biome.depth_max-1, z=pos.z}, {x=pos.x, y=pos.y, z=pos.z}, {"default:dirt", "default:dirt_with_grass", "default:sand"})) > 0 )
|
||||||
then
|
then
|
||||||
local rnd = math.random(1, biome.spawn_plants_count)
|
local rnd = math.random(1, biome.spawn_plants_count)
|
||||||
local plant_to_spawn = biome.spawn_plants[rnd]
|
local plant_to_spawn = biome.spawn_plants[rnd]
|
||||||
plantslib:dbg("Chose entry number "..rnd.." of "..biome.spawn_plants_count)
|
|
||||||
local fdir = biome.facedir
|
local fdir = biome.facedir
|
||||||
if biome.random_facedir then
|
if biome.random_facedir then
|
||||||
fdir = math.random(biome.random_facedir[1],biome.random_facedir[2])
|
fdir = math.random(biome.random_facedir[1],biome.random_facedir[2])
|
||||||
plantslib:dbg("Gave it a random facedir: "..fdir)
|
|
||||||
end
|
end
|
||||||
if type(spawn_plants) == "string" then
|
if type(spawn_plants) == "string" then
|
||||||
plantslib:dbg("Call function: "..spawn_plants.."("..dump_pos(pos)..")")
|
assert(loadstring(spawn_plants.."(...)"))(pos)
|
||||||
assert(loadstring(spawn_plants.."("..dump_pos(pos)..")"))()
|
|
||||||
elseif not biome.spawn_on_side and not biome.spawn_on_bottom and not biome.spawn_replace_node then
|
elseif not biome.spawn_on_side and not biome.spawn_on_bottom and not biome.spawn_replace_node then
|
||||||
if n_top.name == "air" then
|
if n_top.name == "air" then
|
||||||
plantslib:dbg("Spawn: "..plant_to_spawn.." on top of ("..dump(pos).."); facedir="..fdir)
|
minetest.set_node(p_top, { name = plant_to_spawn, param2 = fdir })
|
||||||
minetest.add_node(p_top, { name = plant_to_spawn, param2 = fdir })
|
|
||||||
end
|
end
|
||||||
elseif biome.spawn_replace_node then
|
elseif biome.spawn_replace_node then
|
||||||
|
minetest.set_node(pos, { name = plant_to_spawn, param2 = fdir })
|
||||||
plantslib:dbg("Spawn: "..plant_to_spawn.." to replace "..minetest.get_node(pos).name.." at ("..dump(pos)..")")
|
|
||||||
minetest.add_node(pos, { name = plant_to_spawn, param2 = fdir })
|
|
||||||
|
|
||||||
elseif biome.spawn_on_side then
|
elseif biome.spawn_on_side then
|
||||||
local onside = plantslib:find_open_side(pos)
|
local onside = plantslib:find_open_side(pos)
|
||||||
if onside then
|
if onside then
|
||||||
plantslib:dbg("Spawn: "..plant_to_spawn.." at side of ("..dump(pos).."), facedir "..onside.facedir.."")
|
minetest.set_node(onside.newpos, { name = plant_to_spawn, param2 = onside.facedir })
|
||||||
minetest.add_node(onside.newpos, { name = plant_to_spawn, param2 = onside.facedir })
|
|
||||||
end
|
end
|
||||||
elseif biome.spawn_on_bottom then
|
elseif biome.spawn_on_bottom then
|
||||||
if minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name == "air" then
|
if minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name == "air" then
|
||||||
plantslib:dbg("Spawn: "..plant_to_spawn.." on bottom of ("..dump(pos)..")")
|
minetest.set_node({x=pos.x, y=pos.y-1, z=pos.z}, { name = plant_to_spawn, param2 = fdir} )
|
||||||
minetest.add_node({x=pos.x, y=pos.y-1, z=pos.z}, { name = plant_to_spawn, param2 = fdir} )
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -330,12 +537,15 @@ function plantslib:grow_plants(opts)
|
|||||||
options.grow_nodes = options.grow_nodes or { "default:dirt_with_grass" }
|
options.grow_nodes = options.grow_nodes or { "default:dirt_with_grass" }
|
||||||
options.seed_diff = options.seed_diff or 0
|
options.seed_diff = options.seed_diff or 0
|
||||||
|
|
||||||
plantslib:dbg("Registered growing ABM:")
|
if options.grow_delay*time_scale >= 1 then
|
||||||
plantslib:dbg(dump(options))
|
options.interval = options.grow_delay*time_scale
|
||||||
|
else
|
||||||
|
options.interval = 1
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
nodenames = { options.grow_plant },
|
nodenames = { options.grow_plant },
|
||||||
interval = options.grow_delay,
|
interval = options.interval,
|
||||||
chance = options.grow_chance,
|
chance = options.grow_chance,
|
||||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||||
local p_top = {x=pos.x, y=pos.y+1, z=pos.z}
|
local p_top = {x=pos.x, y=pos.y+1, z=pos.z}
|
||||||
@ -352,17 +562,14 @@ function plantslib:grow_plants(opts)
|
|||||||
-- corner case for changing short junglegrass
|
-- corner case for changing short junglegrass
|
||||||
-- to dry shrub in desert
|
-- to dry shrub in desert
|
||||||
if n_bot.name == options.dry_early_node and options.grow_plant == "junglegrass:short" then
|
if n_bot.name == options.dry_early_node and options.grow_plant == "junglegrass:short" then
|
||||||
plantslib:dbg("Die: "..options.grow_plant.." becomes default:dry_shrub at ("..dump(pos)..")")
|
minetest.set_node(pos, { name = "default:dry_shrub" })
|
||||||
minetest.add_node(pos, { name = "default:dry_shrub" })
|
|
||||||
|
|
||||||
elseif options.grow_vertically and walldir then
|
elseif options.grow_vertically and walldir then
|
||||||
if plantslib:search_downward(pos, options.height_limit, options.ground_nodes) then
|
if plantslib:search_downward(pos, options.height_limit, options.ground_nodes) then
|
||||||
plantslib:dbg("Grow "..options.grow_plant.." vertically to "..dump(p_top))
|
minetest.set_node(p_top, { name = options.grow_plant, param2 = walldir})
|
||||||
minetest.add_node(p_top, { name = options.grow_plant, param2 = walldir})
|
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif not options.grow_result and not options.grow_function then
|
elseif not options.grow_result and not options.grow_function then
|
||||||
plantslib:dbg("Die: "..options.grow_plant.." at ("..dump(pos)..")")
|
|
||||||
minetest.remove_node(pos)
|
minetest.remove_node(pos)
|
||||||
|
|
||||||
else
|
else
|
||||||
@ -378,22 +585,24 @@ end
|
|||||||
|
|
||||||
function plantslib:replace_object(pos, replacement, grow_function, walldir, seeddiff)
|
function plantslib:replace_object(pos, replacement, grow_function, walldir, seeddiff)
|
||||||
local growtype = type(grow_function)
|
local growtype = type(grow_function)
|
||||||
plantslib:dbg("replace_object called, growtype="..dump(grow_function))
|
|
||||||
if growtype == "table" then
|
if growtype == "table" then
|
||||||
plantslib:dbg("Grow: spawn tree at "..dump(pos))
|
|
||||||
minetest.remove_node(pos)
|
minetest.remove_node(pos)
|
||||||
plantslib:grow_tree(pos, grow_function)
|
plantslib:grow_tree(pos, grow_function)
|
||||||
return
|
return
|
||||||
elseif growtype == "string" then
|
elseif growtype == "function" then
|
||||||
local perlin1 = minetest.get_perlin(seeddiff, perlin_octaves, perlin_persistence, perlin_scale)
|
local perlin_fertile_area = minetest.get_perlin(seeddiff, perlin_octaves, perlin_persistence, perlin_scale)
|
||||||
local noise1 = perlin1:get2d({x=pos.x, y=pos.z})
|
local noise1 = perlin_fertile_area:get2d({x=pos.x, y=pos.z})
|
||||||
local noise2 = plantslib.perlin_temperature:get2d({x=pos.x, y=pos.z})
|
local noise2 = plantslib.perlin_temperature:get2d({x=pos.x, y=pos.z})
|
||||||
plantslib:dbg("Grow: call function "..grow_function.."("..dump_pos(pos)..","..noise1..","..noise2..","..dump(walldir)..")")
|
grow_function(pos,noise1,noise2,walldir)
|
||||||
assert(loadstring(grow_function.."("..dump_pos(pos)..","..noise1..","..noise2..","..dump(walldir)..")"))()
|
return
|
||||||
|
elseif growtype == "string" then
|
||||||
|
local perlin_fertile_area = minetest.get_perlin(seeddiff, perlin_octaves, perlin_persistence, perlin_scale)
|
||||||
|
local noise1 = perlin_fertile_area:get2d({x=pos.x, y=pos.z})
|
||||||
|
local noise2 = plantslib.perlin_temperature:get2d({x=pos.x, y=pos.z})
|
||||||
|
assert(loadstring(grow_function.."(...)"))(pos,noise1,noise2,walldir)
|
||||||
return
|
return
|
||||||
elseif growtype == "nil" then
|
elseif growtype == "nil" then
|
||||||
plantslib:dbg("Grow: place "..replacement.." at ("..dump(pos)..") on wall "..dump(walldir))
|
minetest.set_node(pos, { name = replacement, param2 = walldir})
|
||||||
minetest.add_node(pos, { name = replacement, param2 = walldir})
|
|
||||||
return
|
return
|
||||||
elseif growtype ~= "nil" and growtype ~= "string" and growtype ~= "table" then
|
elseif growtype ~= "nil" and growtype ~= "string" and growtype ~= "table" then
|
||||||
error("Invalid grow function "..dump(grow_function).." used on object at ("..dump(pos)..")")
|
error("Invalid grow function "..dump(grow_function).." used on object at ("..dump(pos)..")")
|
||||||
@ -444,54 +653,14 @@ end
|
|||||||
-- spawn_tree() on generate is routed through here so that other mods can hook
|
-- spawn_tree() on generate is routed through here so that other mods can hook
|
||||||
-- into it.
|
-- into it.
|
||||||
|
|
||||||
function plantslib:generate_tree(pos, node_or_function_or_model)
|
function plantslib:generate_tree(pos, nodes_or_function_or_model)
|
||||||
local t=os.clock()
|
minetest.spawn_tree(pos, nodes_or_function_or_model)
|
||||||
minetest.spawn_tree(pos, node_or_function_or_model)
|
|
||||||
plantslib:dbg("Generated one tree in ".. (os.clock()-t)*1000 .."ms")
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- and this one's for the call used in the growing code
|
-- and this one's for the call used in the growing code
|
||||||
|
|
||||||
function plantslib:grow_tree(pos, node_or_function_or_model)
|
function plantslib:grow_tree(pos, nodes_or_function_or_model)
|
||||||
local t=os.clock()
|
minetest.spawn_tree(pos, nodes_or_function_or_model)
|
||||||
minetest.spawn_tree(pos, node_or_function_or_model)
|
|
||||||
plantslib:dbg("Generated one tree in ".. (os.clock()-t)*1000 .."ms")
|
|
||||||
end
|
|
||||||
|
|
||||||
-- check if a node is owned before allowing manual placement of a node
|
|
||||||
-- (used by flowers_plus)
|
|
||||||
|
|
||||||
function plantslib:node_is_owned(pos, placer)
|
|
||||||
local ownername = false
|
|
||||||
if type(IsPlayerNodeOwner) == "function" then -- node_ownership mod
|
|
||||||
if HasOwner(pos, placer) then -- returns true if the node is owned
|
|
||||||
if not IsPlayerNodeOwner(pos, placer:get_player_name()) then
|
|
||||||
if type(getLastOwner) == "function" then -- ...is an old version
|
|
||||||
ownername = getLastOwner(pos)
|
|
||||||
elseif type(GetNodeOwnerName) == "function" then -- ...is a recent version
|
|
||||||
ownername = GetNodeOwnerName(pos)
|
|
||||||
else
|
|
||||||
ownername = S("someone")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
elseif type(isprotect)=="function" then -- glomie's protection mod
|
|
||||||
if not isprotect(5, pos, placer) then
|
|
||||||
ownername = S("someone")
|
|
||||||
end
|
|
||||||
elseif type(protector)=="table" and type(protector.can_dig)=="function" then -- Zeg9's protection mod
|
|
||||||
if not protector.can_dig(5, pos, placer) then
|
|
||||||
ownername = S("someone")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if ownername ~= false then
|
|
||||||
minetest.chat_send_player( placer:get_player_name(), S("Sorry, %s owns that spot."):format(ownername) )
|
|
||||||
return true
|
|
||||||
else
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Check for infinite stacks
|
-- Check for infinite stacks
|
||||||
@ -511,5 +680,10 @@ function plantslib:get_nodedef_field(nodename, fieldname)
|
|||||||
return minetest.registered_nodes[nodename][fieldname]
|
return minetest.registered_nodes[nodename][fieldname]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
print("[Plants Lib] Loaded")
|
||||||
|
|
||||||
|
minetest.after(0, function()
|
||||||
|
print("[Plants Lib] Registered a total of "..(#plantslib.surfaceslist_aircheck)+(#plantslib.surfaceslist_no_aircheck).." surface types to be evaluated, spread")
|
||||||
|
print("[Plants Lib] across "..#plantslib.actionslist_aircheck.." actions with air-checking and "..#plantslib.actionslist_no_aircheck.." actions without.")
|
||||||
|
end)
|
||||||
|
|
||||||
print("[Plantlife Library] Loaded")
|
|
||||||
|
5
mods/plants_lib/locale/de.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# Translation by Xanthin
|
||||||
|
|
||||||
|
someone = jemand
|
||||||
|
Sorry, %s owns that spot. = Entschuldige, %s gehoert diese Stelle.
|
||||||
|
[Plantlife Library] Loaded = [Plantlife Library] Geladen
|
5
mods/plants_lib/locale/template.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# Template
|
||||||
|
|
||||||
|
someone =
|
||||||
|
Sorry, %s owns that spot. =
|
||||||
|
[Plantlife Library] Loaded =
|
@ -1,6 +1,15 @@
|
|||||||
-- This file supplies poison ivy for the plantlife modpack
|
-- This file supplies poison ivy for the plantlife modpack
|
||||||
-- Last revision: 2013-01-24
|
-- Last revision: 2013-01-24
|
||||||
|
|
||||||
|
-- Boilerplate to support localized strings if intllib mod is installed.
|
||||||
|
local S
|
||||||
|
if (minetest.get_modpath("intllib")) then
|
||||||
|
dofile(minetest.get_modpath("intllib").."/intllib.lua")
|
||||||
|
S = intllib.Getter(minetest.get_current_modname())
|
||||||
|
else
|
||||||
|
S = function ( s ) return s end
|
||||||
|
end
|
||||||
|
|
||||||
local SPAWN_DELAY = 1000
|
local SPAWN_DELAY = 1000
|
||||||
local SPAWN_CHANCE = 200
|
local SPAWN_CHANCE = 200
|
||||||
local GROW_DELAY = 500
|
local GROW_DELAY = 500
|
||||||
@ -19,8 +28,9 @@ local walls_list = {
|
|||||||
"default:stone_with_iron"
|
"default:stone_with_iron"
|
||||||
},
|
},
|
||||||
minetest.register_node('poisonivy:seedling', {
|
minetest.register_node('poisonivy:seedling', {
|
||||||
description = "Poison ivy (seedling)",
|
description = S("Poison ivy (seedling)"),
|
||||||
drawtype = 'plantlike',
|
drawtype = 'plantlike',
|
||||||
|
waving = 1,
|
||||||
tile_images = { 'poisonivy_seedling.png' },
|
tile_images = { 'poisonivy_seedling.png' },
|
||||||
inventory_image = 'poisonivy_seedling.png',
|
inventory_image = 'poisonivy_seedling.png',
|
||||||
wield_image = 'poisonivy_seedling.png',
|
wield_image = 'poisonivy_seedling.png',
|
||||||
@ -33,8 +43,9 @@ minetest.register_node('poisonivy:seedling', {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node('poisonivy:sproutling', {
|
minetest.register_node('poisonivy:sproutling', {
|
||||||
description = "Poison ivy (sproutling)",
|
description = S("Poison ivy (sproutling)"),
|
||||||
drawtype = 'plantlike',
|
drawtype = 'plantlike',
|
||||||
|
waving = 1,
|
||||||
tile_images = { 'poisonivy_sproutling.png' },
|
tile_images = { 'poisonivy_sproutling.png' },
|
||||||
inventory_image = 'poisonivy_sproutling.png',
|
inventory_image = 'poisonivy_sproutling.png',
|
||||||
wield_image = 'poisonivy_sproutling.png',
|
wield_image = 'poisonivy_sproutling.png',
|
||||||
@ -47,7 +58,7 @@ minetest.register_node('poisonivy:sproutling', {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node('poisonivy:climbing', {
|
minetest.register_node('poisonivy:climbing', {
|
||||||
description = "Poison ivy (climbing plant)",
|
description = S("Poison ivy (climbing plant)"),
|
||||||
drawtype = 'signlike',
|
drawtype = 'signlike',
|
||||||
tile_images = { 'poisonivy_climbing.png' },
|
tile_images = { 'poisonivy_climbing.png' },
|
||||||
inventory_image = 'poisonivy_climbing.png',
|
inventory_image = 'poisonivy_climbing.png',
|
||||||
@ -96,4 +107,4 @@ plantslib:grow_plants({
|
|||||||
ground_nodes = {"default:dirt_with_grass"}
|
ground_nodes = {"default:dirt_with_grass"}
|
||||||
})
|
})
|
||||||
|
|
||||||
print("[Poison Ivy] Loaded.")
|
print(S("[Poison Ivy] Loaded."))
|
||||||
|
7
mods/poisonivy/locale/de.txt
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Translation by Xanthin
|
||||||
|
|
||||||
|
Poison ivy (seedling) = Giftefeu (Saemling)
|
||||||
|
Poison ivy (sproutling) = Giftefeu (Sproessling)
|
||||||
|
Poison ivy (climbing plant) = Giftefeu (Kletterpflanze)
|
||||||
|
|
||||||
|
[Poison Ivy] Loaded. = [Poison Ivy] Geladen.
|
7
mods/poisonivy/locale/template.txt
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Template
|
||||||
|
|
||||||
|
Poison ivy (seedling) =
|
||||||
|
Poison ivy (sproutling) =
|
||||||
|
Poison ivy (climbing plant) =
|
||||||
|
|
||||||
|
[Poison Ivy] Loaded. =
|