123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- mobs:register_mob("tmw_slimes:cloud_slime", {
- group_attack = true,
- type = "animal",
- passive = false,
- attack_animals = false,
- attack_npcs = false,
- attack_monsters = false,
- attack_type = "dogfight",
- reach = 3,
- 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["cloud"],
- textures = {
- {"tmw_slime_goo_block.png^[colorize:"..tmw_slimes.colors["cloud"],"tmw_slime_goo_block.png^[colorize:"..tmw_slimes.colors["cloud"].."^[colorize:#FFF:96"},
- },
- makes_footstep_sound = false,
- walk_velocity = 0.75,
- run_velocity = 5,
- jump_height = 7,
- jump = true,
- view_range = 15,
- fly = true,
- fly_in = {"air", "default:water_source", "default:water_flowing", "default:river_water_source", "default:river_water_flowing"},
- drops = {
- {name = "tmw_slimes:cloud_goo", chance = 1, min = 0, max = 2},
- },
- water_damage = 0,
- lava_damage = 8,
- light_damage = 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)
- end,
- on_die = function(self, pos)
- tmw_slimes.drop_items(self, pos)
- end
- })
- minetest.override_item("tmw_slimes:cloud_goo", {on_use = minetest.item_eat(0)})
- mobs:spawn({
- name = "tmw_slimes:cloud_slime",
- nodes = {
- "default:silver_sand",
- "default:snowblock",
- "default:dirt_with_snow",
- "default:dirt_with_grass",
- },
- min_light = 0,
- max_light = 16,
- chance = tmw_slimes.common,
- active_object_count = tmw_slimes.uncommon_max,
- min_height = 1000, --for high cloudlands
- max_height = 31000,
- })
|