2017-05-25 20:39:12 -04:00
|
|
|
--MCmobs v0.4
|
2017-05-22 22:27:00 -04:00
|
|
|
--maikerumine
|
|
|
|
--made for MC like Survival game
|
|
|
|
--License for code WTFPL and otherwise stated in readmes
|
|
|
|
|
2017-07-02 15:31:26 +02:00
|
|
|
-- intllib
|
|
|
|
local MP = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
local S, NS = dofile(MP.."/intllib.lua")
|
2017-05-22 22:27:00 -04:00
|
|
|
|
|
|
|
--dofile(minetest.get_modpath("mobs").."/api.lua")
|
2017-05-25 20:39:12 -04:00
|
|
|
|
|
|
|
|
2017-05-22 22:27:00 -04:00
|
|
|
--###################
|
|
|
|
--################### PARROT
|
|
|
|
--###################
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-05-23 19:03:37 -04:00
|
|
|
mobs:register_mob("mobs_mc:parrot", {
|
|
|
|
type = "npc",
|
2017-06-29 22:17:26 +02:00
|
|
|
pathfinding = 1,
|
2017-06-14 19:47:33 -04:00
|
|
|
hp_min = 6,
|
|
|
|
hp_max = 6,
|
2017-06-29 22:01:05 +02:00
|
|
|
collisionbox = {-0.25, -0.01, -0.25, 0.25, 0.89, 0.25},
|
2017-05-23 19:03:37 -04:00
|
|
|
visual = "mesh",
|
2017-06-27 00:32:05 +02:00
|
|
|
mesh = "mobs_mc_parrot.b3d",
|
2017-06-27 15:15:00 +02:00
|
|
|
textures = {{"mobs_mc_parrot_blue.png"},{"mobs_mc_parrot_green.png"},{"mobs_mc_parrot_grey.png"},{"mobs_mc_parrot_red_blue.png"},{"mobs_mc_parrot_yellow_blue.png"}},
|
2017-05-23 19:03:37 -04:00
|
|
|
visual_size = {x=3, y=3},
|
2017-05-22 22:27:00 -04:00
|
|
|
makes_footstep_sound = true,
|
2017-06-29 22:01:05 +02:00
|
|
|
walk_velocity = 3,
|
|
|
|
run_velocity = 5,
|
2017-05-22 22:27:00 -04:00
|
|
|
drops = {
|
2017-06-23 18:26:00 +02:00
|
|
|
{name = mobs_mc.items.feather,
|
2017-05-28 23:16:44 -04:00
|
|
|
chance = 1,
|
|
|
|
min = 1,
|
|
|
|
max = 2,},
|
2017-05-22 22:27:00 -04:00
|
|
|
},
|
2017-05-23 19:03:37 -04:00
|
|
|
animation = {
|
2017-06-29 22:01:05 +02:00
|
|
|
stand_speed = 50,
|
|
|
|
walk_speed = 50,
|
2017-05-22 22:27:00 -04:00
|
|
|
stand_start = 0,
|
2017-05-23 19:03:37 -04:00
|
|
|
stand_end = 0,
|
|
|
|
walk_start = 0,
|
|
|
|
walk_end = 130,
|
|
|
|
--run_start = 0,
|
|
|
|
--run_end = 20,
|
|
|
|
--fly_start = 30,
|
|
|
|
--fly_end = 45,
|
2017-05-22 22:27:00 -04:00
|
|
|
},
|
2017-06-29 22:01:05 +02:00
|
|
|
walk_chance = 100,
|
|
|
|
water_damage = 0,
|
|
|
|
lava_damage = 4,
|
2017-05-22 22:27:00 -04:00
|
|
|
light_damage = 0,
|
|
|
|
fall_damage = 0,
|
2017-07-02 20:17:33 +02:00
|
|
|
fall_speed = -2.25,
|
2017-05-23 19:03:37 -04:00
|
|
|
attack_type = "dogfight",
|
2017-05-22 22:27:00 -04:00
|
|
|
jump = true,
|
|
|
|
jump_height = 4,
|
2017-06-29 22:01:05 +02:00
|
|
|
floats = 1,
|
2017-06-14 19:47:33 -04:00
|
|
|
physical = true,
|
2017-05-22 22:27:00 -04:00
|
|
|
fly = true,
|
2017-06-23 18:26:00 +02:00
|
|
|
fly_in = {"air"},
|
2017-06-29 22:01:05 +02:00
|
|
|
fear_height = 4,
|
|
|
|
view_range = 16,
|
2017-05-22 22:27:00 -04:00
|
|
|
|
2017-05-23 19:03:37 -04:00
|
|
|
on_rightclick = function(self, clicker)
|
2017-06-29 22:01:05 +02:00
|
|
|
mobs:capture_mob(self, clicker, 0, 50, 80, false, nil)
|
2017-05-22 22:27:00 -04:00
|
|
|
end,
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2017-05-25 20:39:12 -04:00
|
|
|
--spawn
|
2017-06-24 19:09:38 +02:00
|
|
|
-- TODO: Increase spawn chance if polished
|
|
|
|
mobs:spawn_specific("mobs_mc:parrot", mobs_mc.spawn.jungle, {"air"}, 0, minetest.LIGHT_MAX+1, 20, 20000, 2, 15, 20)
|
2017-05-23 19:03:37 -04:00
|
|
|
|
|
|
|
-- spawn eggs
|
2017-07-02 15:31:26 +02:00
|
|
|
mobs:register_egg("mobs_mc:parrot", S("Parrot"), "mobs_mc_spawn_icon_parrot.png", 0)
|
2017-05-22 22:27:00 -04:00
|
|
|
|
2017-06-21 00:20:06 -04:00
|
|
|
if minetest.settings:get_bool("log_mods") then
|
2017-05-23 19:03:37 -04:00
|
|
|
minetest.log("action", "MC Parrot loaded")
|
2017-06-14 19:47:33 -04:00
|
|
|
end
|