84 lines
3.2 KiB
Lua
84 lines
3.2 KiB
Lua
local S = minetest.get_translator("marinaramobs")
|
|
|
|
mobs:register_mob("marinaramobs:seaslug", {
|
|
stepheight = 1,
|
|
type = "animal",
|
|
passive = true,
|
|
reach = 1,
|
|
attack_npcs = false,
|
|
reach = 2,
|
|
damage = 0,
|
|
hp_min = 10,
|
|
hp_max = 40,
|
|
armor = 100,
|
|
collisionbox = {-0.2, -0.01, -0.2, 0.2, 0.2, 0.2},
|
|
visual = "mesh",
|
|
mesh = "Seasnail.b3d",
|
|
drawtype = "front",
|
|
textures = {
|
|
{"textureseasnail.png"},
|
|
|
|
},
|
|
sounds = {
|
|
},
|
|
makes_footstep_sound = false,
|
|
walk_velocity = 0.4,
|
|
run_velocity = 0.6,
|
|
runaway = true,
|
|
runaway_from = {"animalworld:bear", "animalworld:crocodile", "animalworld:tiger", "animalworld:spider", "animalworld:spidermale", "animalworld:shark", "animalworld:hyena", "animalworld:kobra", "animalworld:monitor", "animalworld:snowleopard", "animalworld:volverine", "livingfloatlands:deinotherium", "livingfloatlands:carnotaurus", "livingfloatlands:lycaenops", "livingfloatlands:smilodon", "livingfloatlands:tyrannosaurus", "livingfloatlands:velociraptor", "animalworld:divingbeetle", "animalworld:divingbeetle", "animalworld:scorpion", "animalworld:polarbear", "animalworld:leopardseal", "animalworld:stellerseagle", "player", "animalworld:wolf", "animalworld:panda", "animalworld:stingray", "marinaramobs:jellyfish", "marinaramobs:octopus", "livingcavesmobs:biter", "livingcavesmobs:flesheatingbacteria"},
|
|
jump = false,
|
|
jump_height = 6,
|
|
drops = {
|
|
},
|
|
stay_near = {{"marinara:sand_with_alage", "marinara:sand_with_seagrass", "default:sand_with_kelp", "marinara:sand_with_kelp", "marinara:reed_root", "flowers:waterlily_waving", "naturalbiomes:waterlily", "default:clay", "marinara:softcoral_red", "marinara:softcoral_white", "marinara:softcoral_green", "marinara:softcoral_white", "marinara:softcoral_green", "default:coral_cyan", "default:coral_pink", "default:coral_green"}, 5},
|
|
water_damage = 0,
|
|
lava_damage = 4,
|
|
light_damage = 0,
|
|
fear_height = 2,
|
|
animation = {
|
|
speed_normal = 25,
|
|
stand_start = 0,
|
|
stand_end = 100,
|
|
stand2_start = 200,
|
|
stand2_end = 300,
|
|
walk_start = 100,
|
|
walk_end = 200,
|
|
die_start = 200,
|
|
die_end = 300,
|
|
die_speed = 50,
|
|
die_loop = false,
|
|
die_rotate = true,
|
|
},
|
|
fly_in = {"default:water_source", "default:water_flowing"},
|
|
floats = 0,
|
|
follow = {"marinara:seagrass", "marinara:seagrass2", "marinara:sand_with_seagrass",
|
|
"marinara:sand_with_seagrass2", "marinara:alage", "marinara:sand_with_alage", "default:kelp", "default:sand_with_kelp"},
|
|
view_range = 5,
|
|
on_rightclick = function(self, clicker)
|
|
|
|
if mobs:feed_tame(self, clicker, 8, true, true) then return end
|
|
if mobs:protect(self, clicker) then return end
|
|
if mobs:capture_mob(self, clicker, 15, 25, 0, false, nil) then return end
|
|
end,
|
|
})
|
|
|
|
|
|
if not mobs.custom_spawn_marinaramobs then
|
|
mobs:spawn({
|
|
name = "marinaramobs:seaslug",
|
|
nodes = {"default:water_source"},
|
|
neighbors = {"marinara:hardcoral_yellow", "marinara:hardcoral_red"},
|
|
min_light = 0,
|
|
interval = 60,
|
|
chance = 2, -- 15000
|
|
active_object_count = 2,
|
|
min_height = -30,
|
|
max_height = 0,
|
|
})
|
|
end
|
|
|
|
|
|
mobs:register_egg("marinaramobs:seaslug", S("Seaslug"), "aseaslug.png", 0)
|
|
|
|
|
|
mobs:alias_mob("marinaramobs:seaslug", "marinaramobs:seaslug") -- compatibility
|