-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlightbulbs.lua
39 lines (28 loc) · 1.13 KB
/
lightbulbs.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
--30 watt Light bulb
--------------------------------------------------------------------------------
minetest.register_craftitem("mylights:lightbulb30", {
description = "30 watt Light Bulb",
inventory_image = "mylights_lightbulb30.png",
groups = {not_in_creative_inventory = 1}
})
--60 watt Light bulb
--------------------------------------------------------------------------------
minetest.register_craftitem("mylights:lightbulb60", {
description = "60 watt Light Bulb",
inventory_image = "mylights_lightbulb60.png",
groups = {not_in_creative_inventory = 1}
})
--90 watt Light bulb
--------------------------------------------------------------------------------
minetest.register_craftitem("mylights:lightbulb90", {
description = "90 watt Light Bulb",
inventory_image = "mylights_lightbulb90.png",
groups = {not_in_creative_inventory = 1}
})
--120 watt Light bulb
--------------------------------------------------------------------------------
minetest.register_craftitem("mylights:lightbulb120", {
description = "120 watt Light Bulb",
inventory_image = "mylights_lightbulb120.png",
groups = {not_in_creative_inventory = 1}
})