More plants added

This commit is contained in:
D00Med 2016-11-21 11:27:50 +10:00
parent b2215f3943
commit 576f01b372
7 changed files with 33 additions and 0 deletions

View File

@ -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

View File

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 575 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 716 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 560 B