stuffffffffffffffffffffffffffff
Before Width: | Height: | Size: 291 B |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 494 B |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 287 B After Width: | Height: | Size: 615 B |
Before Width: | Height: | Size: 216 B |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 782 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 430 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 669 B |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 463 B |
Before Width: | Height: | Size: 883 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 475 B After Width: | Height: | Size: 936 B |
Before Width: | Height: | Size: 511 B |
Before Width: | Height: | Size: 853 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 129 B |
Before Width: | Height: | Size: 200 B |
Before Width: | Height: | Size: 129 B |
Before Width: | Height: | Size: 142 B |
Before Width: | Height: | Size: 236 B |
Before Width: | Height: | Size: 142 B |
Before Width: | Height: | Size: 140 B |
Before Width: | Height: | Size: 219 B |
Before Width: | Height: | Size: 140 B |
Before Width: | Height: | Size: 140 B |
Before Width: | Height: | Size: 233 B |
Before Width: | Height: | Size: 155 B |
Before Width: | Height: | Size: 351 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 835 B |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 298 B After Width: | Height: | Size: 620 B |
Before Width: | Height: | Size: 497 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 471 B After Width: | Height: | Size: 467 B |
Before Width: | Height: | Size: 809 B After Width: | Height: | Size: 811 B |
Before Width: | Height: | Size: 102 B After Width: | Height: | Size: 887 B |
Before Width: | Height: | Size: 167 B After Width: | Height: | Size: 341 B |
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 400 B |
Before Width: | Height: | Size: 884 B After Width: | Height: | Size: 884 B |
@ -519,7 +519,7 @@ mobs:register_mob("mobs_m:zombie", {
|
||||
fall_damage = 1,
|
||||
view_range = 5,
|
||||
drops = {
|
||||
{name = "mobs:zombie_flesh_raw", chance = 2, min = 1, max = 2},
|
||||
{name = "mobs:zombie_flesh", chance = 2, min = 1, max = 2},
|
||||
},
|
||||
animation = {
|
||||
speed_normal = 27,
|
||||
@ -542,8 +542,8 @@ mobs:register_spawn("mobs_m:zombie", {"default:dirt_with_grass", "default:desert
|
||||
mobs:register_mob("mobs_m:zombie_brute", {
|
||||
type = "monster",
|
||||
passive = false,
|
||||
reach = 2.5,
|
||||
damage = 2,
|
||||
reach = 4,
|
||||
damage = 4,
|
||||
attack_type = "dogshoot",
|
||||
shoot_interval = 3,
|
||||
dogshoot_switch = 2,
|
||||
@ -589,6 +589,15 @@ mobs:register_mob("mobs_m:zombie_brute", {
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mobs_m:zombie_brute',
|
||||
recipe = {
|
||||
{'mobs:zombie_flesh', 'mobs:zombie_flesh', 'mobs:zombie_flesh'},
|
||||
{'mobs:zombie_flesh', 'mobs:zombie_flesh', 'mobs:zombie_flesh'},
|
||||
{'mobs:zombie_flesh', 'mobs:zombie_flesh', 'mobs:zombie_flesh'},
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
mobs:register_egg("mobs_m:zombie_brute", "Zombie Brute (boss)", "default_dirt.png", 1)
|
||||
--mobs:register_spawn("mobs_m:zombie_brute", {"default:dirt_with_grass",}, 5, 0, 7000, 20, 11000)
|
||||
|
Before Width: | Height: | Size: 216 B After Width: | Height: | Size: 442 B |
Before Width: | Height: | Size: 218 B After Width: | Height: | Size: 509 B |
@ -113,3 +113,10 @@ minetest.register_craft({
|
||||
{"mobs:leather", "default:steel_ingot", "mobs:leather"},
|
||||
}
|
||||
})
|
||||
|
||||
-- raw zombie meat
|
||||
minetest.register_craftitem("mobs:zombie_flesh", {
|
||||
description = S("Raw Meat"),
|
||||
inventory_image = "mobs_zombie_flesh.png",
|
||||
on_use = minetest.item_eat(1),
|
||||
})
|
||||
|
Before Width: | Height: | Size: 408 B |
Before Width: | Height: | Size: 417 B After Width: | Height: | Size: 417 B |