2017-07-05 03:15:46 +02:00
|
|
|
--MCmobs v0.4
|
|
|
|
--maikerumine
|
|
|
|
--made for MC like Survival game
|
|
|
|
--License for code WTFPL and otherwise stated in readmes
|
|
|
|
|
2019-03-07 20:43:39 +01:00
|
|
|
local S = minetest.get_translator("mobs_mc")
|
2017-07-05 03:15:46 +02:00
|
|
|
|
|
|
|
--###################
|
|
|
|
--################### GHAST
|
|
|
|
--###################
|
|
|
|
|
|
|
|
|
|
|
|
mobs:register_mob("mobs_mc:ghast", {
|
|
|
|
type = "monster",
|
2020-04-11 02:46:03 +02:00
|
|
|
spawn_class = "hostile",
|
2017-07-05 03:15:46 +02:00
|
|
|
pathfinding = 1,
|
|
|
|
group_attack = true,
|
|
|
|
hp_min = 10,
|
|
|
|
hp_max = 10,
|
2020-12-06 15:46:42 +01:00
|
|
|
xp_min = 5,
|
|
|
|
xp_max = 5,
|
2017-07-05 03:15:46 +02:00
|
|
|
collisionbox = {-2, 5, -2, 2, 9, 2},
|
|
|
|
visual = "mesh",
|
|
|
|
mesh = "mobs_mc_ghast.b3d",
|
|
|
|
textures = {
|
|
|
|
{"mobs_mc_ghast.png"},
|
|
|
|
},
|
|
|
|
visual_size = {x=12, y=12},
|
|
|
|
sounds = {
|
2018-09-14 16:27:58 +02:00
|
|
|
shoot_attack = "mobs_fireball",
|
|
|
|
death = "mobs_mc_zombie_death",
|
2017-07-05 03:15:46 +02:00
|
|
|
attack = "mobs_fireball",
|
|
|
|
random = "mobs_eerie",
|
2018-09-14 16:27:58 +02:00
|
|
|
distance = 16,
|
|
|
|
-- TODO: damage
|
|
|
|
-- TODO: better death
|
2017-07-05 03:15:46 +02:00
|
|
|
},
|
|
|
|
walk_velocity = 1.6,
|
|
|
|
run_velocity = 3.2,
|
|
|
|
drops = {
|
2020-12-23 17:41:42 +01:00
|
|
|
{name = mobs_mc.items.gunpowder, chance = 1, min = 0, max = 2, looting = "common"},
|
|
|
|
{name = mobs_mc.items.ghast_tear, chance = 10/6, min = 0, max = 1, looting = "common", looting_ignore_chance = true},
|
2017-07-05 03:15:46 +02:00
|
|
|
},
|
|
|
|
animation = {
|
|
|
|
stand_speed = 50, walk_speed = 50, run_speed = 50,
|
|
|
|
stand_start = 0, stand_end = 40,
|
|
|
|
walk_start = 0, walk_end = 40,
|
|
|
|
run_start = 0, run_end = 40,
|
|
|
|
},
|
|
|
|
fall_damage = 0,
|
|
|
|
view_range = 100,
|
|
|
|
attack_type = "dogshoot",
|
2019-12-10 01:01:04 +01:00
|
|
|
arrow = "mobs_mc:fireball",
|
2017-07-05 03:15:46 +02:00
|
|
|
shoot_interval = 3.5,
|
2019-12-10 01:01:04 +01:00
|
|
|
shoot_offset = -5,
|
2017-07-05 03:15:46 +02:00
|
|
|
dogshoot_switch = 1,
|
|
|
|
dogshoot_count_max =1,
|
|
|
|
passive = false,
|
|
|
|
jump = true,
|
|
|
|
jump_height = 4,
|
|
|
|
floats=1,
|
|
|
|
fly = true,
|
2020-12-05 14:48:58 +01:00
|
|
|
makes_footstep_sound = false,
|
2020-12-05 14:42:03 +01:00
|
|
|
instant_death = true,
|
2020-12-24 17:48:40 +01:00
|
|
|
fire_resistant = true,
|
2021-04-04 03:39:20 +02:00
|
|
|
do_custom = function(self)
|
|
|
|
if self.firing == true then
|
|
|
|
self.base_texture = {"mobs_mc_ghast_firing.png"}
|
|
|
|
self.object:set_properties({textures=self.base_texture})
|
|
|
|
else
|
|
|
|
self.base_texture = {"mobs_mc_ghast.png"}
|
|
|
|
self.object:set_properties({textures=self.base_texture})
|
|
|
|
end
|
|
|
|
end,
|
2017-07-05 03:15:46 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
|
2021-04-08 13:39:18 +02:00
|
|
|
mobs:spawn_specific(
|
|
|
|
"mobs_mc:ghast",
|
|
|
|
"nether",
|
2021-04-08 14:12:43 +02:00
|
|
|
"ground",
|
2021-04-08 13:39:18 +02:00
|
|
|
{
|
|
|
|
"Nether"
|
|
|
|
},
|
|
|
|
0,
|
|
|
|
minetest.LIGHT_MAX+1,
|
|
|
|
30,
|
|
|
|
18000,
|
|
|
|
2,
|
|
|
|
mobs_mc.spawn_height.nether_min,
|
|
|
|
mobs_mc.spawn_height.nether_max)
|
2017-08-16 22:08:17 +02:00
|
|
|
|
2019-12-10 01:01:04 +01:00
|
|
|
-- fireball (projectile)
|
|
|
|
mobs:register_arrow("mobs_mc:fireball", {
|
2017-07-05 03:15:46 +02:00
|
|
|
visual = "sprite",
|
2019-12-10 01:01:04 +01:00
|
|
|
visual_size = {x = 1, y = 1},
|
2017-07-06 00:43:34 +02:00
|
|
|
textures = {"mcl_fire_fire_charge.png"},
|
2019-12-10 01:01:04 +01:00
|
|
|
velocity = 15,
|
2021-04-04 03:07:51 +02:00
|
|
|
collisionbox = {-.5, -.5, -.5, .5, .5, .5},
|
2017-07-05 03:15:46 +02:00
|
|
|
|
|
|
|
hit_player = function(self, player)
|
2020-11-13 12:21:36 +01:00
|
|
|
if rawget(_G, "armor") and armor.last_damage_types then
|
|
|
|
armor.last_damage_types[player:get_player_name()] = "fireball"
|
|
|
|
end
|
2017-07-05 03:15:46 +02:00
|
|
|
player:punch(self.object, 1.0, {
|
|
|
|
full_punch_interval = 1.0,
|
2019-12-10 01:01:04 +01:00
|
|
|
damage_groups = {fleshy = 6},
|
2017-07-05 03:15:46 +02:00
|
|
|
}, nil)
|
2020-05-02 19:05:56 +02:00
|
|
|
mobs:boom(self, self.object:get_pos(), 1, true)
|
2017-07-05 03:15:46 +02:00
|
|
|
end,
|
|
|
|
|
2019-03-11 13:25:06 +01:00
|
|
|
hit_mob = function(self, mob)
|
|
|
|
mob:punch(self.object, 1.0, {
|
2017-07-05 03:15:46 +02:00
|
|
|
full_punch_interval = 1.0,
|
2019-12-10 01:01:04 +01:00
|
|
|
damage_groups = {fleshy = 6},
|
2017-07-05 03:15:46 +02:00
|
|
|
}, nil)
|
2020-05-02 19:05:56 +02:00
|
|
|
mobs:boom(self, self.object:get_pos(), 1, true)
|
2017-07-05 03:15:46 +02:00
|
|
|
end,
|
|
|
|
|
|
|
|
hit_node = function(self, pos, node)
|
2020-05-02 19:05:56 +02:00
|
|
|
mobs:boom(self, pos, 1, true)
|
2017-07-05 03:15:46 +02:00
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- spawn eggs
|
|
|
|
mobs:register_egg("mobs_mc:ghast", S("Ghast"), "mobs_mc_spawn_icon_ghast.png", 0)
|