mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-01-11 18:40:25 +01:00
Updated plantlife : added sunflowers
- Added sunflowers' models and textures
This commit is contained in:
parent
93b83cff8d
commit
2f9656f359
@ -1,3 +1,4 @@
|
|||||||
|
Sunflower model and textures by kaeza (CC-BY-SA 3.0).
|
||||||
|
|
||||||
For the code, Ironzorg's textures, and everything else: WTFPL
|
For the code, Ironzorg's textures, and everything else: WTFPL
|
||||||
|
|
||||||
|
@ -157,6 +157,7 @@ for i, bush_name in ipairs(bushes_classic.bushes) do
|
|||||||
"bushes_basket.png"
|
"bushes_basket.png"
|
||||||
},
|
},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
on_use = minetest.item_eat(18),
|
on_use = minetest.item_eat(18),
|
||||||
groups = { dig_immediate = 3 },
|
groups = { dig_immediate = 3 },
|
||||||
})
|
})
|
||||||
@ -206,6 +207,7 @@ minetest.register_node(":bushes:basket_empty", {
|
|||||||
mesh = "bushes_basket_empty.obj",
|
mesh = "bushes_basket_empty.obj",
|
||||||
tiles = { "bushes_basket.png" },
|
tiles = { "bushes_basket.png" },
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
groups = { dig_immediate = 3 },
|
groups = { dig_immediate = 3 },
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ local lilies_max_count = 320
|
|||||||
local lilies_rarity = 33
|
local lilies_rarity = 33
|
||||||
local seaweed_max_count = 320
|
local seaweed_max_count = 320
|
||||||
local seaweed_rarity = 33
|
local seaweed_rarity = 33
|
||||||
|
local sunflowers_max_count = 10
|
||||||
|
local sunflowers_rarity = 25
|
||||||
|
|
||||||
-- register the various rotations of waterlilies
|
-- register the various rotations of waterlilies
|
||||||
|
|
||||||
@ -267,6 +269,36 @@ for i in ipairs(flowers_list) do
|
|||||||
minetest.register_alias("flowers:flower_"..flower.."_pot", "flowers:potted_"..flower)
|
minetest.register_alias("flowers:flower_"..flower.."_pot", "flowers:potted_"..flower)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local box = {
|
||||||
|
type="fixed",
|
||||||
|
fixed = { { -0.2, -0.5, -0.2, 0.2, 0.5, 0.2 } },
|
||||||
|
}
|
||||||
|
|
||||||
|
minetest.register_node(":flowers:sunflower", {
|
||||||
|
description = "Sunflower",
|
||||||
|
drawtype = "mesh",
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
inventory_image = "flowers_sunflower_inv.png",
|
||||||
|
mesh = "flowers_sunflower.obj",
|
||||||
|
tiles = { "flowers_sunflower.png" },
|
||||||
|
walkable = false,
|
||||||
|
buildable_to = true,
|
||||||
|
is_ground_content = true,
|
||||||
|
groups = { dig_immediate=3, flora=1, flammable=3 },
|
||||||
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
selection_box = box,
|
||||||
|
collision_box = box,
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.override_item("flowers:sunflower", {drop = {
|
||||||
|
max_items = 1,
|
||||||
|
items = {
|
||||||
|
{items = {"farming:seed_wheat"}, rarity = 8},
|
||||||
|
{items = {"flowers:sunflower"}},
|
||||||
|
}
|
||||||
|
}})
|
||||||
|
|
||||||
local extra_aliases = {
|
local extra_aliases = {
|
||||||
"waterlily",
|
"waterlily",
|
||||||
"waterlily_225",
|
"waterlily_225",
|
||||||
@ -381,6 +413,20 @@ plantslib:register_generate_plant({
|
|||||||
},
|
},
|
||||||
flowers_plus.grow_seaweed
|
flowers_plus.grow_seaweed
|
||||||
)
|
)
|
||||||
|
|
||||||
|
plantslib:register_generate_plant({
|
||||||
|
surface = {"default:dirt_with_grass"},
|
||||||
|
avoid_nodes = { "flowers:sunflower" },
|
||||||
|
max_count = sunflowers_max_count,
|
||||||
|
rarity = sunflowers_rarity,
|
||||||
|
min_elevation = 0,
|
||||||
|
plantlife_limit = -0.9,
|
||||||
|
temp_max = 0.53,
|
||||||
|
random_facedir = {0,3},
|
||||||
|
},
|
||||||
|
"flowers:sunflower"
|
||||||
|
)
|
||||||
|
|
||||||
-- spawn ABM registrations
|
-- spawn ABM registrations
|
||||||
|
|
||||||
plantslib:spawn_on_surfaces({
|
plantslib:spawn_on_surfaces({
|
||||||
@ -446,6 +492,21 @@ plantslib:spawn_on_surfaces({
|
|||||||
facedir = 1
|
facedir = 1
|
||||||
})
|
})
|
||||||
|
|
||||||
|
plantslib:spawn_on_surfaces({
|
||||||
|
spawn_delay = SPAWN_DELAY*2,
|
||||||
|
spawn_plants = {"flowers:sunflower"},
|
||||||
|
spawn_chance = SPAWN_CHANCE*2,
|
||||||
|
spawn_surfaces = {"default:dirt_with_grass"},
|
||||||
|
avoid_nodes = {"group:flower"},
|
||||||
|
seed_diff = flowers_seed_diff,
|
||||||
|
light_min = 11,
|
||||||
|
light_max = 14,
|
||||||
|
min_elevation = 0,
|
||||||
|
plantlife_limit = -0.9,
|
||||||
|
temp_max = 0.53,
|
||||||
|
random_facedir = {0,3}
|
||||||
|
})
|
||||||
|
|
||||||
-- crafting recipes!
|
-- crafting recipes!
|
||||||
|
|
||||||
minetest.register_craftitem(":flowers:flower_pot", {
|
minetest.register_craftitem(":flowers:flower_pot", {
|
||||||
@ -472,5 +533,6 @@ minetest.register_alias("flowers:flower_cotton_pot", "flowers:potted_dandelion_w
|
|||||||
minetest.register_alias("flowers:potted_cotton_plant", "flowers:potted_dandelion_white")
|
minetest.register_alias("flowers:potted_cotton_plant", "flowers:potted_dandelion_white")
|
||||||
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")
|
||||||
|
minetest.register_alias("sunflower:sunflower", "flowers:sunflower")
|
||||||
|
|
||||||
print(S("[Flowers] Loaded."))
|
print(S("[Flowers] Loaded."))
|
||||||
|
@ -0,0 +1,73 @@
|
|||||||
|
# Blender v2.70 (sub 0) OBJ File: 'sunflower.blend'
|
||||||
|
# www.blender.org
|
||||||
|
mtllib sunflower_sunflower.mtl
|
||||||
|
o Cube
|
||||||
|
v -0.015625 -0.500000 0.028125
|
||||||
|
v -0.015625 -0.500000 -0.028125
|
||||||
|
v 0.028125 -0.500000 -0.028125
|
||||||
|
v 0.028125 -0.500000 0.028125
|
||||||
|
v -0.015625 0.790890 0.028125
|
||||||
|
v -0.015625 0.689140 -0.028125
|
||||||
|
v 0.028125 0.689140 -0.028125
|
||||||
|
v 0.028125 0.790890 0.028125
|
||||||
|
v 0.250000 0.533494 -0.125000
|
||||||
|
v -0.250000 0.533494 -0.125000
|
||||||
|
v 0.250000 0.966506 0.125000
|
||||||
|
v -0.250000 0.966506 0.125000
|
||||||
|
v 0.267063 0.373606 -0.088749
|
||||||
|
v 0.044375 0.303464 -0.141576
|
||||||
|
v 0.239202 0.473737 0.108253
|
||||||
|
v -0.008452 0.378817 0.108253
|
||||||
|
v 0.017721 0.016639 -0.112053
|
||||||
|
v -0.231280 0.110242 -0.115181
|
||||||
|
v -0.030356 -0.036246 0.146223
|
||||||
|
v -0.252831 0.028885 0.088910
|
||||||
|
v 0.062500 0.641747 -0.057917
|
||||||
|
v -0.106953 0.097386 -0.113617
|
||||||
|
v -0.006318 -0.053008 0.024707
|
||||||
|
v 0.118968 0.360674 0.006909
|
||||||
|
v 0.116101 0.452031 0.108253
|
||||||
|
v 0.017962 0.298392 -0.019504
|
||||||
|
v 0.145794 0.358736 -0.115163
|
||||||
|
v 0.240237 0.375544 0.033323
|
||||||
|
v -0.224509 0.021356 -0.032606
|
||||||
|
v -0.131273 0.023638 0.117567
|
||||||
|
v -0.102951 0.016109 -0.003950
|
||||||
|
vt 0.750000 0.875000
|
||||||
|
vt 0.625000 0.875000
|
||||||
|
vt 0.625000 0.750000
|
||||||
|
vt 0.750000 0.750000
|
||||||
|
vt 0.750000 1.000000
|
||||||
|
vt 0.625000 1.000000
|
||||||
|
vt 0.625000 0.500000
|
||||||
|
vt 0.500000 0.500000
|
||||||
|
vt 0.500000 1.000000
|
||||||
|
vt 0.000100 0.500100
|
||||||
|
vt 0.499900 0.500100
|
||||||
|
vt 0.499900 0.999900
|
||||||
|
vt 0.000100 0.999900
|
||||||
|
vt 0.250000 0.250000
|
||||||
|
vt 0.500000 0.250000
|
||||||
|
vt 0.250000 0.500000
|
||||||
|
vt 0.000000 0.250000
|
||||||
|
vt 0.000000 0.000000
|
||||||
|
vt 0.250000 0.000000
|
||||||
|
vt 0.000000 0.500000
|
||||||
|
vt 0.500000 0.000000
|
||||||
|
usemtl Sunflower
|
||||||
|
s off
|
||||||
|
f 1/1 2/2 3/3 4/4
|
||||||
|
f 5/5 8/6 7/2 6/1
|
||||||
|
f 1/7 5/8 6/9 2/6
|
||||||
|
f 2/7 6/6 7/9 3/8
|
||||||
|
f 3/7 7/8 8/9 4/6
|
||||||
|
f 5/7 1/8 4/9 8/6
|
||||||
|
f 9/10 10/11 12/12 11/13
|
||||||
|
f 24/14 26/15 16/8 25/16
|
||||||
|
f 31/14 29/17 20/18 30/19
|
||||||
|
f 17/8 22/16 31/14 23/15
|
||||||
|
f 22/16 18/20 29/17 31/14
|
||||||
|
f 27/19 14/21 26/15 24/14
|
||||||
|
f 13/18 27/19 24/14 28/17
|
||||||
|
f 23/15 31/14 30/19 19/21
|
||||||
|
f 28/17 24/14 25/16 15/20
|
Binary file not shown.
After Width: | Height: | Size: 811 B |
Binary file not shown.
After Width: | Height: | Size: 378 B |
@ -39,7 +39,7 @@ minetest.register_node("mushroom:red",{
|
|||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {-0.3, -0.5, -0.3, 0.3, 0, 0.3}
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0, 0.3}
|
||||||
},
|
},
|
||||||
drop = "mushroom:red",
|
drop = "mushroom:red",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("mushroom:spore_brown",{
|
minetest.register_node("mushroom:spore_brown",{
|
||||||
@ -107,7 +107,7 @@ minetest.register_node("mushroom:red_natural",{
|
|||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {-0.3, -0.5, -0.3, 0.3, 0, 0.3}
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0, 0.3}
|
||||||
},
|
},
|
||||||
drop = "mushroom:red",
|
drop = "mushroom:red",
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Spore Growing ABMs
|
-- Spore Growing ABMs
|
||||||
@ -121,7 +121,7 @@ minetest.register_abm({
|
|||||||
local soil = minetest.get_node({x=pos.x,y=pos.y-1,z=pos.z})
|
local soil = minetest.get_node({x=pos.x,y=pos.y-1,z=pos.z})
|
||||||
if (soil.name == "farming:soil_wet" or string.find(soil.name, "homedecor:flower_pot_"))
|
if (soil.name == "farming:soil_wet" or string.find(soil.name, "homedecor:flower_pot_"))
|
||||||
and minetest.get_node_light(pos, nil) < 8 then
|
and minetest.get_node_light(pos, nil) < 8 then
|
||||||
minetest.add_node({x=pos.x,y=pos.y,z=pos.z}, {name="mushroom:brown"})
|
minetest.set_node({x=pos.x,y=pos.y,z=pos.z}, {name="mushroom:brown"})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
@ -135,7 +135,7 @@ minetest.register_abm({
|
|||||||
local soil = minetest.get_node({x=pos.x,y=pos.y-1,z=pos.z})
|
local soil = minetest.get_node({x=pos.x,y=pos.y-1,z=pos.z})
|
||||||
if (soil.name == "farming:soil_wet" or string.find(soil.name, "homedecor:flower_pot_"))
|
if (soil.name == "farming:soil_wet" or string.find(soil.name, "homedecor:flower_pot_"))
|
||||||
and minetest.get_node_light(pos, nil) < 8 then
|
and minetest.get_node_light(pos, nil) < 8 then
|
||||||
minetest.add_node({x=pos.x,y=pos.y,z=pos.z}, {name="mushroom:red"})
|
minetest.set_node({x=pos.x,y=pos.y,z=pos.z}, {name="mushroom:red"})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
@ -179,9 +179,9 @@ minetest.register_abm({
|
|||||||
and minetest.find_node_near(pos, 1, trees_list)
|
and minetest.find_node_near(pos, 1, trees_list)
|
||||||
and minetest.find_node_near(pos, 3, "default:water_source") then
|
and minetest.find_node_near(pos, 3, "default:water_source") then
|
||||||
if math.random(0, 1) == 0 then
|
if math.random(0, 1) == 0 then
|
||||||
minetest.add_node(top_pos, {name="mushroom:brown_natural"})
|
minetest.set_node(top_pos, {name="mushroom:brown_natural"})
|
||||||
else
|
else
|
||||||
minetest.add_node(top_pos, {name="mushroom:red_natural"})
|
minetest.set_node(top_pos, {name="mushroom:red_natural"})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -197,9 +197,9 @@ minetest.register_abm({
|
|||||||
if minetest.get_node(top_pos).name == "air" and minetest.get_node_light(top_pos, nil) < 8
|
if minetest.get_node(top_pos).name == "air" and minetest.get_node_light(top_pos, nil) < 8
|
||||||
and minetest.find_node_near(pos, 1, {"default:water_source"}) then
|
and minetest.find_node_near(pos, 1, {"default:water_source"}) then
|
||||||
if math.random(0,1) == 0 then
|
if math.random(0,1) == 0 then
|
||||||
minetest.add_node(top_pos, {name="mushroom:brown_natural"})
|
minetest.set_node(top_pos, {name="mushroom:brown_natural"})
|
||||||
else
|
else
|
||||||
minetest.add_node(top_pos, {name="mushroom:red_natural"})
|
minetest.set_node(top_pos, {name="mushroom:red_natural"})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -230,7 +230,7 @@ minetest.register_abm({
|
|||||||
or newsoil.name == "default:dirt"
|
or newsoil.name == "default:dirt"
|
||||||
or string.match(newsoil.name, woodsoil_str))
|
or string.match(newsoil.name, woodsoil_str))
|
||||||
and minetest.find_node_near(newpos, 3, "default:water_source") then
|
and minetest.find_node_near(newpos, 3, "default:water_source") then
|
||||||
minetest.add_node(newpos, {name=node.name})
|
minetest.set_node(newpos, {name=node.name})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -259,4 +259,3 @@ dofile(minetest.get_modpath("mushroom").."/crafting.lua")
|
|||||||
dofile(minetest.get_modpath("mushroom").."/compat.lua")
|
dofile(minetest.get_modpath("mushroom").."/compat.lua")
|
||||||
|
|
||||||
print("[Mushrooms] loaded.")
|
print("[Mushrooms] loaded.")
|
||||||
|
|
||||||
|
@ -8,5 +8,6 @@ vines.recipes['shears'] = {
|
|||||||
{'', 'default:steel_ingot', ''},
|
{'', 'default:steel_ingot', ''},
|
||||||
{'group:stick', 'group:wood', 'default:steel_ingot'},
|
{'group:stick', 'group:wood', 'default:steel_ingot'},
|
||||||
{'', '', 'group:stick'}
|
{'', '', 'group:stick'}
|
||||||
|
-- MODIFICATION MADE FOR MFF ^ (Mg|2/4/15)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user