mirror of
https://github.com/sirrobzeroone/elepower.git
synced 2024-11-05 06:43:51 +01:00
44 lines
1.2 KiB
Lua
44 lines
1.2 KiB
Lua
|
|
-------------------
|
|
-- Virtual Nodes --
|
|
-------------------
|
|
|
|
-- These nodes are used as "fluids"
|
|
-- They do not actually exist as nodes that should be placed.
|
|
|
|
minetest.register_node("elepower_nuclear:coolant", {
|
|
description = "Coolant (cold)",
|
|
groups = {not_in_creative_inventory = 1},
|
|
tiles = {"elenuclear_cold_coolant.png"},
|
|
})
|
|
|
|
minetest.register_node("elepower_nuclear:coolant_hot", {
|
|
description = "Coolant (hot)",
|
|
groups = {not_in_creative_inventory = 1},
|
|
tiles = {"elenuclear_hot_coolant.png"},
|
|
})
|
|
|
|
minetest.register_node("elepower_nuclear:heavy_water", {
|
|
description = "Heavy Water",
|
|
groups = {not_in_creative_inventory = 1},
|
|
tiles = {"default_water.png"},
|
|
})
|
|
|
|
minetest.register_node("elepower_nuclear:tritium", {
|
|
description = "Tritium Gas",
|
|
groups = {not_in_creative_inventory = 1},
|
|
tiles = {"default_water.png"},
|
|
})
|
|
|
|
minetest.register_node("elepower_nuclear:deuterium", {
|
|
description = "Deuterium Gas",
|
|
groups = {not_in_creative_inventory = 1},
|
|
tiles = {"default_water.png"},
|
|
})
|
|
|
|
minetest.register_node("elepower_nuclear:helium", {
|
|
description = "Helium Gas",
|
|
groups = {not_in_creative_inventory = 1},
|
|
tiles = {"elenuclear_helium.png"},
|
|
})
|