init.lua 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. ---- SKULL KING ( BOSS FINAL ) ------------------------------------------------------------------------------------------------------
  2. -- sound attack : https://freesound.org/people/TomRonaldmusic/sounds/607201/
  3. mobs:register_mob("skullking:sking", {
  4. nametag = "Skull King Boss" ,
  5. type = "monster",
  6. passive = false,
  7. attack_type = "dogfight",
  8. pathfinding = true,
  9. reach = 8,
  10. damage = 15,
  11. hp_min = 700,
  12. hp_max = 700,
  13. armor = 80,
  14. visual_size = {x = 1.3, y = 1.3},
  15. collisionbox = {-0.5, -1.67, -0.4, 0.5, 2.3, 0.5},
  16. visual = "mesh",
  17. mesh = "skull_king_deep.b3d",
  18. rotate = 180,
  19. textures = {
  20. {"skull_king_deep.png"},
  21. },
  22. --glow = 4,
  23. blood_texture = "bonex.png",
  24. makes_footstep_sound = true,
  25. sounds = {
  26. attack = "skullking",
  27. death = "falling_bones",
  28. },
  29. walk_velocity = 2, --2
  30. run_velocity = 7, --5
  31. jump_height = 3, -- 8
  32. stepheight = 3,
  33. floats = 0,
  34. view_range = 35,
  35. drops = {
  36. {name = "skullkingsitems:helmet_skullking", chance = 1, min = 1, max = 1},
  37. {name = "skullkingsitems:hammer", chance = 1, min = 1, max = 1},
  38. {name = "skullkingsitems:skullking_trophy", chance = 1, min = 1, max = 1},
  39. --{name = "", chance = 3, min = 1, max = 1},
  40. },
  41. water_damage = 0,
  42. lava_damage = 1,
  43. light_damage = 0,
  44. animation = {
  45. speed_normal = 15,
  46. speed_run = 15,
  47. stand_start = 0,
  48. stand_end = 0,
  49. walk_start = 15,
  50. walk_end = 34,
  51. run_start = 35,
  52. run_end = 44,
  53. punch_start = 45,
  54. punch_end =84,
  55. punch_speed = 23,
  56. },
  57. on_spawn = function ()
  58. minetest.chat_send_all ("The Skull King is reborn...")
  59. end
  60. })
  61. mobs:spawn({
  62. name = "skullking:sking",
  63. nodes = {"default:cobble","default:mossycobble", "default:chest"},
  64. max_light = 7,
  65. chance = 10000,
  66. max_height = -1100,
  67. })
  68. mobs:register_egg("skullking:sking", "Skull King", "eggsking.png", 1)
  69. --core.register_alias("skullking:sking", "spawneggs:sking")