12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- mobs:register_mob("tmw_slimes:lava_slime", {
- group_attack = true,
- type = "monster",
- passive = false,
- attack_animals = true,
- attack_npcs = true,
- attack_monsters = false,
- attack_type = "dogfight",
- reach = 2,
- damage = tmw_slimes.strong_dmg,
- hp_min = 20,
- hp_max = 40,
- armor = 180,
- collisionbox = {-0.2, -0.01, -0.2, 0.2, 0.4, 0.2},
- visual_size = {x = 2, y = 2},
- visual = "mesh",
- mesh = "slime_liquid.b3d",
- blood_texture = "tmw_slime_goo.png^[colorize:"..tmw_slimes.colors["lava"],
- textures = {
- {"tmw_slime_goo_block.png^[colorize:"..tmw_slimes.colors["lava"],"tmw_slime_goo_block.png^[colorize:"..tmw_slimes.colors["lava"].."^[colorize:#FFF:96"},
- },
- makes_footstep_sound = false,
- walk_velocity = 0.5,
- run_velocity = 1.25,
- jump_height = 7,
- jump = true,
- view_range = 15,
- --fly = true,
- --fly_in = {"default:water_source", "default:water_flowing", "default:river_water_source", "default:river_water_flowing"},
- drops = {
- {name = "tmw_slimes:lava_goo", chance = 1, min = 0, max = 2},
- },
- water_damage = 10,
- lava_damage = 0,
- light_damage = 0,
- fire_damage = 0,
- replace_rate = 2,
- replace_what = {
- {"air", "fire:basic_flame", 0},
- },
- animation = {
- idle_start = 0,
- idle_end = 19,
- move_start = 21,
- move_end = 41,
- fall_start = 42,
- fall_end = 62,
- jump_start = 63,
- jump_end = 83
- },
- do_custom = function(self)
- --tmw_slimes.animate(self)
- tmw_slimes.absorb_nearby_items(self)
- self.stomach = nil
- end,
- -- Nope, sorry. This is a lava slime. Your items are GONE.
- --[[on_die = function(self, pos)
- tmw_slimes.drop_items(self, pos)
- end]]
- })
- minetest.registered_entities["tmw_slimes:lava_slime"].glow = 10
- minetest.override_item("tmw_slimes:lava_goo", {on_use = minetest.item_eat(-20)})
- local g = table.copy(minetest.registered_nodes["tmw_slimes:lava_goo_block"].groups)
- g.harmful_slime = tmw_slimes.strong_dmg
- minetest.override_item("tmw_slimes:lava_goo_block", {groups=table.copy(g)})
- mobs:spawn({
- name = "tmw_slimes:lava_slime",
- nodes = {
- "group:lava",
- },
- min_light = 0,
- max_light = 16,
- chance = tmw_slimes.pervasive,
- active_object_count = tmw_slimes.pervasive_max,
- min_height = -31000,
- max_height = 31000,
- })
|