mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2025-06-30 15:10:46 +02:00
More plants
>added new plants >added damage for plant table >removed selection box from plant pots
This commit is contained in:
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 = {
|
||||
|
Reference in New Issue
Block a user