mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2024-11-13 05:40:28 +01:00
More plants
>added new plants >added damage for plant table >removed selection box from plant pots
This commit is contained in:
parent
9e1a26b670
commit
b2215f3943
20
init.lua
20
init.lua
|
@ -388,18 +388,23 @@ for _, row in ipairs(node.types) do
|
|||
end
|
||||
|
||||
node.plants = {
|
||||
{"flower1", "Glow flower", 1, 50},
|
||||
{"flower2", "Pink flower", 1.5, 10},
|
||||
{"flower3", "Triffid", 2, 0},
|
||||
{"plant1", "Bulb plant", 1, 0},
|
||||
{"plant2", "Trap plant", 1.5, 30},
|
||||
{"flower1", "Glow Flower", 1,0, 50},
|
||||
{"flower2", "Pink Flower", 1.5,0, 10},
|
||||
{"flower3", "Triffid", 2,5, 0},
|
||||
{"flower4", "Weeping flower", 1.5,0, 0},
|
||||
{"plant1", "Bulb Plant", 1,0, 0},
|
||||
{"plant2", "Trap Plant", 1.5,0, 30},
|
||||
{"plant3", "Blue Jelly Plant", 1.2,0, 10},
|
||||
{"plant4", "Green Jelly Plant", 1.2,0, 10},
|
||||
{"plant5", "Fern Plant", 1.7,0, 0},
|
||||
}
|
||||
|
||||
for _, row in ipairs(node.plants) do
|
||||
local name = row[1]
|
||||
local desc = row[2]
|
||||
local size = row[3]
|
||||
local light = row[4]
|
||||
local dmg = row[4]
|
||||
local light = row[5]
|
||||
-- Node Definition
|
||||
minetest.register_node("scifi_nodes:"..name, {
|
||||
description = desc,
|
||||
|
@ -409,6 +414,9 @@ for _, row in ipairs(node.plants) do
|
|||
groups = {snappy=1, oddly_breakable_by_hand=1, dig_immediate=3, flora=1},
|
||||
paramtype = "light",
|
||||
visual_scale = size,
|
||||
buildable_to = true,
|
||||
walkable = false,
|
||||
damage_per_second = dmg,
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
|
|
|
@ -22,7 +22,7 @@ minetest.register_node("scifi_nodes:pot_lid", {
|
|||
sunlight_propagates = true,
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -1, -0.5, 0.5, 0.1, 0.5}
|
||||
fixed = {0, 0, 0, 0, 0, 0}
|
||||
},
|
||||
collision_box = {
|
||||
type = "fixed",
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 733 B After Width: | Height: | Size: 1006 B |
BIN
textures/scifi_nodes_flower4.png
Normal file
BIN
textures/scifi_nodes_flower4.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 565 B |
BIN
textures/scifi_nodes_plant3.png
Normal file
BIN
textures/scifi_nodes_plant3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 257 B |
BIN
textures/scifi_nodes_plant4.png
Normal file
BIN
textures/scifi_nodes_plant4.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 261 B |
BIN
textures/scifi_nodes_plant5.png
Normal file
BIN
textures/scifi_nodes_plant5.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 863 B |
Loading…
Reference in New Issue
Block a user