WIP Ores update make uranium glow

master
vlapsley 2017-09-06 13:49:32 +10:00
parent 12e62bf658
commit a74b911fb7
2 changed files with 7 additions and 1 deletions

View File

@ -6,25 +6,31 @@
minetest.register_node("technic:stone_with_uranium", {
description = "Uranium Ore",
tiles = {"base_stone.png^technic_mineral_uranium.png" },
paramtype = "light",
groups = {cracky = 3, radioactive = 1},
drop = "technic:uranium_lump",
sounds = base.node_sound_stone_defaults(),
light_source = 1,
})
minetest.register_node("technic:granite_with_uranium", {
description = "Uranium Ore",
tiles = {"base_granite.png^technic_mineral_uranium.png" },
paramtype = "light",
groups = {cracky = 3, radioactive = 1},
drop = "technic:uranium_lump",
sounds = base.node_sound_stone_defaults(),
light_source = 1,
})
minetest.register_node("technic:uranium_block", {
description = "Uranium Block",
tiles = {"technic_uranium_block.png"},
paramtype = "light",
is_ground_content = false,
groups = {uranium_block = 1, cracky = 1, level = 2, radioactive = 2},
sounds = base.node_sound_stone_defaults(),
light_source = 2,
})
minetest.register_craftitem("technic:uranium_lump", {

View File

@ -17,7 +17,7 @@ minetest.register_biome({
node_river_water = "base:muddy_water_source",
node_riverbed = "base:dirt",
depth_riverbed = 1,
y_min = -31,
y_min = 4,
y_max = 31000,
heat_point = 17,
humidity_point = 18,