mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2024-12-22 16:10:18 +01:00
More plants added
This commit is contained in:
parent
b2215f3943
commit
576f01b372
2
init.lua
2
init.lua
@ -397,6 +397,8 @@ node.plants = {
|
||||
{"plant3", "Blue Jelly Plant", 1.2,0, 10},
|
||||
{"plant4", "Green Jelly Plant", 1.2,0, 10},
|
||||
{"plant5", "Fern Plant", 1.7,0, 0},
|
||||
{"plant6", "Curly Plant", 1,0, 10},
|
||||
{"plant7", "Egg weed", 1,0, 0},
|
||||
}
|
||||
|
||||
for _, row in ipairs(node.plants) do
|
||||
|
@ -3,6 +3,37 @@
|
||||
-- Node Box Editor, version 0.9.0
|
||||
-- Namespace: scifi_nodes
|
||||
|
||||
minetest.register_node("scifi_nodes:gloshroom", {
|
||||
description = "Gloshroom",
|
||||
tiles = {
|
||||
"scifi_nodes_gloshroom.png",
|
||||
"scifi_nodes_gloshroom_under.png",
|
||||
"scifi_nodes_gloshroom.png",
|
||||
"scifi_nodes_gloshroom.png",
|
||||
"scifi_nodes_gloshroom.png",
|
||||
"scifi_nodes_gloshroom.png"
|
||||
},
|
||||
drawtype = "nodebox",
|
||||
paramtype = "light",
|
||||
light_source = 50,
|
||||
walkable = false,
|
||||
buildable_to = true,
|
||||
sunlight_propagates = false,
|
||||
use_texture_alpha = true,
|
||||
groups = {fleshy=1, oddly_breakable_by_hand=1, dig_immediate=3},
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{-0.05, -0.5, -0.05, 0.05, 0.0625, 0.05}, -- NodeBox1
|
||||
{-0.4375, -0.0625, -0.375, 0.4375, 0, 0.375}, -- NodeBox2
|
||||
{-0.375, 0, -0.375, 0.375, 0.0625, 0.375}, -- NodeBox3
|
||||
{-0.3125, 0.0625, -0.3125, 0.3125, 0.125, 0.3125}, -- NodeBox4
|
||||
{-0.1875, 0.125, -0.1875, 0.1875, 0.1875, 0.1875}, -- NodeBox5
|
||||
{-0.375, -0.0625, -0.4375, 0.375, 0, 0.4375}, -- NodeBox6
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_node("scifi_nodes:pot_lid", {
|
||||
description = "plant pot lid(place above plant)",
|
||||
tiles = {
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 1006 B After Width: | Height: | Size: 1.3 KiB |
BIN
textures/scifi_nodes_gloshroom.png
Normal file
BIN
textures/scifi_nodes_gloshroom.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 575 B |
BIN
textures/scifi_nodes_gloshroom_under.png
Normal file
BIN
textures/scifi_nodes_gloshroom_under.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 716 B |
BIN
textures/scifi_nodes_plant6.png
Normal file
BIN
textures/scifi_nodes_plant6.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 210 B |
BIN
textures/scifi_nodes_plant7.png
Normal file
BIN
textures/scifi_nodes_plant7.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 560 B |
Loading…
Reference in New Issue
Block a user