132 lines
2.7 KiB
Lua
132 lines
2.7 KiB
Lua
local zombienods = {
|
|
"default:dirt",
|
|
"default:dirt_with_rainforest",
|
|
"default:dirt_with_grass",
|
|
"default:dirt_with_dry_grass",
|
|
"default:dry_dirt_with_dry_grass",
|
|
"default:dirt_with_coniferous_litter",
|
|
"default:stone",
|
|
"default:ice",
|
|
"default:snowblock",
|
|
"default:dirt_with_snow",
|
|
"default:sand",
|
|
"default:desert_sand",
|
|
"default:desert_stone",
|
|
"default:stone",
|
|
"default:desert_stone",
|
|
--"default:cobble",
|
|
"default:ice",
|
|
"default:gravel",
|
|
}
|
|
|
|
---- SKULL SWORD ------------------------------------------------------------------------------------------------------
|
|
|
|
mobs:register_mob("fatzombie:fatzombie", {
|
|
--nametag = "Fat Zombie" ,
|
|
type = "monster",
|
|
passive = false,
|
|
attack_type = "dogfight",
|
|
--attack_animals = true,
|
|
attack_npcs = false,
|
|
group_attack = true,
|
|
pathfinding = true,
|
|
reach = 4,
|
|
damage = 5,
|
|
hp_min = 50,
|
|
hp_max = 50,
|
|
armor = 100,
|
|
collisionbox = {-0.4, 0, -0.4, 0.4, 1.8, 0.4},
|
|
visual = "mesh",
|
|
mesh = "fatzombie.b3d",
|
|
--rotate = 180,
|
|
textures = {
|
|
{"fatzombie.png"},
|
|
--{""},
|
|
|
|
},
|
|
--glow = 4,
|
|
--blood_texture = " ",
|
|
makes_footstep_sound = true,
|
|
sounds = {
|
|
random ="zombie_angry",
|
|
--attack = "zombie_hit",
|
|
death = "zombie_death ",
|
|
},
|
|
walk_velocity = 1,
|
|
run_velocity = 3,
|
|
jump_height = 2,
|
|
stepheight = 1.5,
|
|
floats = 0,
|
|
view_range = 35,
|
|
drops = {
|
|
--{name = "default:coal_lump", chance = 2, min = 1, max = 1},
|
|
{name = "foods:chocolate_bar 3", chance = 3, min = 1, max = 1},
|
|
{name = "foods:canned_tomato", chance = 4, min = 1, max = 1},
|
|
|
|
},
|
|
water_damage = 0,
|
|
lava_damage = 1,
|
|
light_damage = 0,
|
|
animation = {
|
|
speed_normal = 15,
|
|
speed_run = 15,
|
|
stand_start = 0,
|
|
stand_end = 80,
|
|
walk_start = 100,
|
|
walk_end = 180,
|
|
run_start = 200,
|
|
run_end = 240,
|
|
punch_start = 200,
|
|
punch_end = 240,
|
|
die_start = 280,
|
|
die_end = 300,
|
|
},
|
|
})
|
|
|
|
|
|
|
|
mobs:spawn({
|
|
name = "fatzombie:fatzombie",
|
|
nodes = hunternods,
|
|
min_light = 0,
|
|
max_light = 7, -- 14
|
|
chance = 7000,
|
|
min_height = -20000,
|
|
max_height = 200,
|
|
--max_height = 200,
|
|
active_object_count = 6,
|
|
})
|
|
|
|
|
|
mobs:register_egg("fatzombie:fatzombie", "Fat Zombie", "zombies_egg.png", 0)
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
-------------------------------- AXE -------------------------------------------
|
|
--------------------------------------------------------------------------------
|
|
--[[
|
|
|
|
minetest.register_tool("huntersaxe:hunter_axe", {
|
|
description = core.colorize("#16c21e", "Hunter Axe"),
|
|
inventory_image = "hunter_axe.png",
|
|
tool_capabilities = {
|
|
full_punch_interval = 1.0,
|
|
max_drop_level=1,
|
|
groupcaps={
|
|
choppy={times={[1]=2.50, [2]=1.40, [3]=1.00}, uses=20, maxlevel=2},
|
|
},
|
|
damage_groups = {fleshy=5},
|
|
},
|
|
sound = {breaks = "default_tool_breaks"},
|
|
groups = {axe = 1}
|
|
})
|
|
|
|
|
|
]]
|
|
|
|
|
|
|
|
|
|
|