forked from VoxeLibre/VoxeLibre
91 lines
2.2 KiB
Lua
91 lines
2.2 KiB
Lua
--MCmobs v0.2
|
|
--maikerumine
|
|
--made for MC like Survival game
|
|
--License for code WTFPL and otherwise stated in readmes
|
|
|
|
-- intllib
|
|
local MP = minetest.get_modpath(minetest.get_current_modname())
|
|
local S, NS = dofile(MP.."/intllib.lua")
|
|
|
|
--dofile(minetest.get_modpath("mobs").."/api.lua")
|
|
|
|
--###################
|
|
--################### SHULKER
|
|
--###################
|
|
|
|
-- animation 45-80 is transition between passive and attack stance
|
|
|
|
mobs:register_mob("mobs_mc:shulker", {
|
|
type = "monster",
|
|
attack_type = "shoot",
|
|
shoot_interval = 0.5,
|
|
arrow = "mobs_mc:shulkerbullet",
|
|
shoot_offset = 0.5,
|
|
passive = false,
|
|
hp_min = 30,
|
|
hp_max = 30,
|
|
armor = 150,
|
|
collisionbox = {-0.5, -0.01, -0.5, 0.5, 0.99, 0.5},
|
|
visual = "mesh",
|
|
mesh = "mobs_mc_shulker.b3d",
|
|
textures = { "mobs_mc_endergolem.png", },
|
|
-- TODO: Make shulker dye-able
|
|
visual_size = {x=3, y=3},
|
|
walk_chance = 0,
|
|
jump = false,
|
|
drops = {
|
|
{name = mobs_mc.items.shulker_shell,
|
|
chance = 1,
|
|
min = 0,
|
|
max = 1,},
|
|
},
|
|
animation = {
|
|
stand_speed = 25, walk_speed = 25, run_speed = 50, punch_speed = 25,
|
|
speed_normal = 25, speed_run = 50,
|
|
stand_start = 0, stand_end = 45,
|
|
walk_start = 0, walk_end = 45,
|
|
run_start = 0, run_end = 45,
|
|
punch_start = 80, punch_end = 100,
|
|
},
|
|
blood_amount = 0,
|
|
view_range = 16,
|
|
fear_height = 4,
|
|
water_damage = 1,
|
|
lava_damage = 4,
|
|
light_damage = 0,
|
|
})
|
|
|
|
-- bullet arrow (weapon)
|
|
mobs:register_arrow("mobs_mc:shulkerbullet", {
|
|
visual = "sprite",
|
|
visual_size = {x = 0.25, y = 0.25},
|
|
textures = {"mobs_mc_shulkerbullet.png"},
|
|
velocity = 6,
|
|
|
|
hit_player = function(self, player)
|
|
player:punch(self.object, 1.0, {
|
|
full_punch_interval = 1.0,
|
|
damage_groups = {fleshy = 4},
|
|
}, nil)
|
|
end,
|
|
|
|
hit_mob = function(self, player)
|
|
player:punch(self.object, 1.0, {
|
|
full_punch_interval = 1.0,
|
|
damage_groups = {fleshy = 4},
|
|
}, nil)
|
|
end,
|
|
|
|
hit_node = function(self, pos, node)
|
|
end
|
|
})
|
|
|
|
|
|
mobs:register_egg("mobs_mc:shulker", S("Shulker"), "mobs_mc_spawn_icon_shulker.png", 0)
|
|
|
|
mobs:spawn_specific("mobs_mc:shulker", mobs_mc.spawn.end_city, {"air"}, 0, minetest.LIGHT_MAX+1, 30, 5000, 2, mobs_mc.spawn_height.end_min, mobs_mc.spawn_height.end_max)
|
|
|
|
if minetest.settings:get_bool("log_mods") then
|
|
minetest.log("action", "MC Shulkers loaded")
|
|
end
|