From cd7ee9d149f32c5c67368643f89f7291726549b8 Mon Sep 17 00:00:00 2001 From: Juraj Vajda Date: Sat, 3 Dec 2016 19:29:27 +0100 Subject: [PATCH] tame mummy and evil bunny --- spawners_mobs/mob_bunny_evil.lua | 12 ++++++++++-- spawners_mobs/mob_mummy.lua | 10 +++++++++- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/spawners_mobs/mob_bunny_evil.lua b/spawners_mobs/mob_bunny_evil.lua index 790e0b6..aeacfa0 100644 --- a/spawners_mobs/mob_bunny_evil.lua +++ b/spawners_mobs/mob_bunny_evil.lua @@ -29,7 +29,6 @@ local bunny_evil_def = { floats = 0, drops = { {name = "mobs:meat_raw", chance = 5, min = 1, max = 1}, - {name = "spawners_mobs:bunny_evil", chance = 40, min = 1, max = 1}, }, water_damage = 3, lava_damage = 4, @@ -43,7 +42,16 @@ local bunny_evil_def = { walk_end = 24, punch_start = 16, punch_end = 24, - } + }, + follow = {"mobs:lava_orb"}, + on_rightclick = function(self, clicker) + + if mobs:feed_tame(self, clicker, 3, true, true) then + return + end + + mobs:capture_mob(self, clicker, 30, 50, 80, false, nil) + end, } mobs:register_mob("spawners_mobs:bunny_evil", bunny_evil_def) diff --git a/spawners_mobs/mob_mummy.lua b/spawners_mobs/mob_mummy.lua index e038e4e..b73e243 100644 --- a/spawners_mobs/mob_mummy.lua +++ b/spawners_mobs/mob_mummy.lua @@ -38,7 +38,6 @@ local mummy_def = { {name = "spawners_mobs:deco_stone_eye", chance = 25, min = 1, max = 1}, {name = "spawners_mobs:deco_stone_men", chance = 25, min = 1, max = 1}, {name = "spawners_mobs:deco_stone_sun", chance = 25, min = 1, max = 1}, - {name = "spawners_mobs:mummy", chance = 40, min = 1, max = 1}, }, water_damage = 4, lava_damage = 8, @@ -56,6 +55,7 @@ local mummy_def = { punch_start = 74, punch_end = 105, }, + follow = {"spawners_mobs:deco_stone_eye","spawners_mobs:deco_stone_men","spawners_mobs:deco_stone_sun"}, on_die = function(self, pos) minetest.sound_play("spawners_mobs_mummy_death", { object = self.object, @@ -63,6 +63,14 @@ local mummy_def = { max_hear_distance = 10 }) end, + on_rightclick = function(self, clicker) + + if mobs:feed_tame(self, clicker, 8, true, true) then + return + end + + mobs:capture_mob(self, clicker, 30, 50, 80, false, nil) + end, } mobs:register_mob("spawners_mobs:mummy", mummy_def)