123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- local BOLT_CHANCE = 5
- local math_random = math.random
- mobs.register_mob("oerkki:night_master", {
- type = "monster",
- description = "Night Master",
- hp_max = 260*500,
- hp_min = 60*500,
- collisionbox = {-0.65, -0.4, -0.65, 0.65, 0.4, 0.65},
- visual = "mesh",
- mesh = "moonherontrio.x",
- textures = {
- {"moonherontrio.png"}
- },
- visual_size = {x = 18, y = 18},
- view_range = 40,
- rotate = 270,
- lifetimer = 5000,
- floats=1,
- walk_velocity = 3,
- run_velocity = 4,
- fall_speed = 0,
- stepheight = 3,
- sounds = {
- random = "night_master",
- shoot_attack = "dm_fireball",
- distance = 45,
- },
- damage = 10*500,
- jump = true,
- armor = 60,
- --drawtype = "front",
- water_damage = 0,
- lava_damage = 5*500,
- light_damage = 0,
- blood_texture = "nssm_blood.png",
- blood_amount = 50,
- fly = true,
- attack_type = "shoot",
- dogshoot_switch = 1,
- dogshoot_count_max = 10,
- shoot_interval = 5.0,
- arrow = "oerkki:flame_bolt",
- shoot_offset = 1,
- animation = {
- speed_normal = 25,
- speed_run = 35,
- stand_start = 60,
- stand_end = 120,
- walk_start = 20,
- walk_end = 50,
- run_start = 20,
- run_end = 50,
- punch_start = 130,
- punch_end = 160,
- },
- on_die = function(self, pos)
- minetest.add_particlespawner({
- amount=200, --amount
- time=0.1, --time
- minpos={x=pos.x-1, y=pos.y-1, z=pos.z-1}, --minpos
- maxpos={x=pos.x+1, y=pos.y+1, z=pos.z+1}, --maxpos
- minvel={x=-0, y=-0, z=-0}, --minvel
- maxvel={x=1, y=1, z=1}, --maxvel
- minacc={x=-0.5,y=5,z=-0.5}, --minacc
- maxacc={x=0.5,y=5,z=0.5}, --maxacc
- minexptime=0.1, --minexptime
- maxexptime=1, --maxexptime
- minsize=3, --minsize
- maxsize=4, --maxsize
- collisiondetection=false, --collisiondetection
- texture="tnt_smoke.png", --texture
- })
- self.object:remove()
- minetest.add_entity(pos, "oerkki:night_master_2")
- end,
- })
- mobs.register_mob("oerkki:night_master_2", {
- type = "monster",
- description = "Night Master",
- hp_max = 260*500,
- hp_min = 60*500,
- collisionbox = {-0.65, -0.4, -0.65, 0.65, 0.4, 0.65},
- visual = "mesh",
- mesh = "night_master_2.x",
- textures = {
- {"moonherontrio.png"}
- },
- visual_size = {x = 18, y = 18},
- view_range = 30,
- rotate = 270,
- lifetimer = 5000,
- floats = 1,
- walk_velocity = 3,
- run_velocity = 4,
- fall_speed = 0,
- stepheight = 3,
- sounds = {
- random = "night_master",
- distance = 45,
- },
- damage = 10*500,
- jump = true,
- armor = 60,
- drawtype = "front",
- water_damage = 0,
- lava_damage = 5*500,
- light_damage = 0,
- fly = true,
- attack_type = "dogfight",
- animation = {
- speed_normal = 25,
- speed_run = 35,
- stand_start = 60,
- stand_end = 120,
- walk_start = 20,
- walk_end = 50,
- run_start = 20,
- run_end = 50,
- punch_start = 130,
- punch_end = 160,
- },
- on_die = function(self, pos)
- minetest.add_particlespawner({
- amount=200, --amount
- time=0.1, --time
- minpos={x=pos.x-1, y=pos.y-1, z=pos.z-1}, --minpos
- maxpos={x=pos.x+1, y=pos.y+1, z=pos.z+1}, --maxpos
- minvel={x=-0, y=-0, z=-0}, --minvel
- maxvel={x=1, y=1, z=1}, --maxvel
- minacc={x=-0.5,y=5,z=-0.5}, --minacc
- maxacc={x=0.5,y=5,z=0.5}, --maxacc
- minexptime=0.1, --minexptime
- maxexptime=1, --maxexptime
- minsize=3, --minsize
- maxsize=4, --maxsize
- collisiondetection=false, --collisiondetection
- texture="tnt_smoke.png", --texture
- })
- self.object:remove()
- minetest.add_entity(pos, "oerkki:night_master_1")
- end,
- })
- mobs.register_mob("oerkki:night_master_1", {
- type = "monster",
- description = "Night Master",
- hp_max = 270*500,
- hp_min = 70*500,
- collisionbox = {-0.65, -0.4, -0.65, 0.65, 0.4, 0.65},
- visual = "mesh",
- mesh = "night_master_1.x",
- textures = {
- {"moonherontrio.png"}
- },
- visual_size = {x = 18, y = 18},
- view_range = 20,
- rotate = 270,
- lifetimer = 5000,
- floats=1,
- walk_velocity = 3,
- run_velocity = 4,
- fall_speed = 0,
- stepheight = 3,
- sounds = {
- random = "night_master",
- distance = 45,
- },
- damage = 12*500,
- jump = true,
- drops = {
- --{name = "mobs:flame_staff", chance = 1, min = 1, max = 1},
- --{name = "nssm:life_energy", chance = 1, min = 6, max = 7},
- --{name = "nssm:heron_leg", chance = 1, min = 1, max = 1},
- --{name = "nssm:night_feather", chance = 1, min = 1, max = 1},
- },
- armor = 50,
- drawtype = "front",
- water_damage = 0,
- lava_damage = 5*500,
- light_damage = 0,
- fly = true,
- attack_type = "dogfight",
- animation = {
- speed_normal = 25,
- speed_run = 35,
- stand_start = 60,
- stand_end = 120,
- walk_start = 20,
- walk_end = 50,
- run_start = 20,
- run_end = 50,
- punch_start = 130,
- punch_end = 160,
- }
- })
- local function arrow_effect(pos, radius, coverage)
- -- Note: only spawning flames over ground to prevent the flame bolt entity
- -- from falling out.
- local flames = fire.scatter_flame_around_over_ground(pos, radius, coverage)
- for k = 1, #flames, 1 do
- if math_random(1, BOLT_CHANCE) == 1 then
- local p = flames[k]
- -- Note: item is flammable, so will burn up if fire not put out.
- -- I have to manually set the ignite timer in order to prevent the item from
- -- disappearing instantly.
- local ent = minetest.add_item(p, "mobs:flame_bolt")
- if ent then
- local lua = ent:get_luaentity()
- lua.ignite_timer = math_random(10, 40)
- end
- end
- end
- end
- mobs.register_arrow("oerkki:flame_bolt", {
- visual = "sprite",
- visual_size = {x = 0.5, y = 0.5},
- textures = {"dm_fireball.png"},
- velocity = 8,
- -- Player hit, plenty of pain and a lot more flame.
- hit_player = function(self, player)
- armor.notify_punch_reason({reason="fireball"})
- player:punch(self.object, 1.0, {
- full_punch_interval = 1.0,
- damage_groups = {fireball = 2*500},
- }, nil)
- arrow_effect(vector.round(player:get_pos()), 3, 10)
- end,
- -- Node hit, bursts into flame.
- hit_node = function(self, pos, node)
- arrow_effect(pos, 2, 5)
- end
- })
- mobs.register_egg("oerkki:night_master", "Night Master", "default_obsidian.png", 1)
|