summaryrefslogtreecommitdiff
path: root/jeija/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'jeija/init.lua')
-rw-r--r--jeija/init.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/jeija/init.lua b/jeija/init.lua
index 2b74808..6324b9f 100644
--- a/jeija/init.lua
+++ b/jeija/init.lua
@@ -90,6 +90,7 @@ minetest.register_node("jeija:mesecon_off", {
type = "fixed",
},
material = minetest.digprop_constanttime(0.1),
+ description="Mesecons",
})
minetest.register_node("jeija:mesecon_on", {
@@ -105,6 +106,7 @@ minetest.register_node("jeija:mesecon_on", {
material = minetest.digprop_constanttime(0.1),
drop = '"jeija:mesecon_off" 1',
light_source = LIGHT_MAX-11,
+ description="Mesecons",
})
minetest.register_craft({
@@ -538,6 +540,7 @@ minetest.register_node("jeija:power_plant", {
walkable = false,
material = minetest.digprop_leaveslike(0.2),
light_source = LIGHT_MAX-9,
+ description="Power Plant",
})
minetest.register_craft({
@@ -576,6 +579,7 @@ minetest.register_node("jeija:blinky_plant_off", {
paramtype = "light",
walkable = false,
material = minetest.digprop_leaveslike(0.2),
+ description="Blinky Plant",
})
minetest.register_node("jeija:blinky_plant_on", {
@@ -588,6 +592,7 @@ minetest.register_node("jeija:blinky_plant_on", {
material = minetest.digprop_leaveslike(0.2),
drop='"jeija:blinky_plant_off" 1',
light_source = LIGHT_MAX-7,
+ description="Blinky Plant",
})
minetest.register_craft({
@@ -640,6 +645,7 @@ minetest.register_on_dignode(
minetest.register_craftitem("jeija:silicon", {
image = "jeija_silicon.png",
on_place_on_ground = minetest.craftitem_place_item,
+ description="Silicon",
})
@@ -656,6 +662,7 @@ minetest.register_node("jeija:solar_panel", {
},
furnace_burntime = 5,
material = minetest.digprop_dirtlike(0.1),
+ description="Solar Panel",
})
minetest.register_craft({
@@ -708,6 +715,7 @@ minetest.register_node("jeija:meselamp_on", {
},
material = minetest.digprop_constanttime(0.1),
drop='"jeija:meselamp_off" 1',
+ description="Meselamp",
})
minetest.register_node("jeija:meselamp_off", {
@@ -724,6 +732,7 @@ minetest.register_node("jeija:meselamp_off", {
fixed = {-0.38, -0.5, -0.1, 0.38, -0.2, 0.1},
},
material = minetest.digprop_constanttime(0.1),
+ description="Meselamp",
})
minetest.register_craft({
@@ -739,6 +748,7 @@ minetest.register_craft({
minetest.register_craftitem("jeija:glue", {
image = "jeija_glue.png",
on_place_on_ground = minetest.craftitem_place_item,
+ description="Glue",
})
minetest.register_craft({
@@ -755,12 +765,14 @@ minetest.register_craft({
minetest.register_node("jeija:hydro_turbine_off", {
tile_images = {"jeija_hydro_turbine_off.png", "jeija_hydro_turbine_off.png", "jeija_hydro_turbine_off.png", "jeija_hydro_turbine_off.png", "jeija_hydro_turbine_off.png", "jeija_hydro_turbine_off.png"},
material = minetest.digprop_constanttime(0.5),
+ description="Water Turbine",
})
minetest.register_node("jeija:hydro_turbine_on", {
tile_images = {"jeija_hydro_turbine_on.png", "jeija_hydro_turbine_on.png", "jeija_hydro_turbine_on.png", "jeija_hydro_turbine_on.png", "jeija_hydro_turbine_on.png", "jeija_hydro_turbine_on.png"},
drop = '"jeija:hydro_turbine_off" 1',
material = minetest.digprop_constanttime(0.5),
+ description="Water Turbine",
})
@@ -822,6 +834,7 @@ minetest.register_node("jeija:removestone", {
tile_images = {"jeija_removestone.png"},
inventory_image = minetest.inventorycube("jeija_removestone_inv.png"),
material = minetest.digprop_stonelike(1.0),
+ description="Removestone",
})
minetest.register_craft({