Correct cold damage. Add ice spiders.

This commit is contained in:
Duane Robertson 2016-05-16 23:30:12 -05:00
parent fb8b9eb68d
commit a595c7952a
15 changed files with 79 additions and 13 deletions

View file

@ -39,7 +39,8 @@ mobs:register_mob("fun_caves:goblin_gold", {
chance = 5, min = 1, max = 1},
},
water_damage = 0,
lava_damage = 2,
lava_damage = 0,
cold_damage = 1,
light_damage = 0,
follow = "default:diamond",
view_range = 10,
@ -114,7 +115,7 @@ mobs:register_mob("fun_caves:goblin_gold", {
})
mobs:register_egg("fun_caves:goblin_gold", "Goblin Egg (gold)", "default_mossycobble.png", 1)
mobs:register_spawn("fun_caves:goblin_gold", {"default:stone_with_gold" }, 100, 0, 1 * fun_caves.goblin_spawn_frequency, 2, 31000)
mobs:register_spawn("fun_caves:goblin_gold", {"default:mossycobble"}, 100, 0, 2 * fun_caves.goblin_spawn_frequency, 3, 31000)
mobs:register_spawn("fun_caves:goblin_gold", {"default:mossycobble", "fun_caves:hot_cobble"}, 100, 0, 2 * fun_caves.goblin_spawn_frequency, 3, 31000)
minetest.register_node("fun_caves:molten_gold_source", {
description = "Molten Gold Source",