first commit

This commit is contained in:
duckgo 2023-01-17 15:08:39 -03:00
parent b16f319b1d
commit 5c57894185
40 changed files with 787 additions and 0 deletions

8
LICENSE.md Normal file
View File

@ -0,0 +1,8 @@
MIT License
Copyright (c) 2022 DuckGo
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -0,0 +1 @@
Nada ainda

8
crawlerzombie/LICENSE Normal file
View File

@ -0,0 +1,8 @@
MIT License
Copyright (c) <year> <copyright holders>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -0,0 +1,3 @@
default
mobs

103
crawlerzombie/init.lua Normal file
View File

@ -0,0 +1,103 @@
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:mossycobble",
"default:chest",
"default:ice",
}
---- SKULL SWORD ------------------------------------------------------------------------------------------------------
mobs:register_mob("crawlerzombie:crawlerzombie", {
nametag = "Crawler Zombie" ,
type = "monster",
passive = false,
attack_type = "dogfight",
pathfinding = true,
reach = 2,
damage = 6,
hp_min = 10,
hp_max = 10,
armor = 100,
collisionbox = {-0.4, 0, -0.4, 0.4, 0.5, 0.4},
visual = "mesh",
mesh = "crawlerzombie.b3d",
--rotate = 180,
textures = {
{"walkingzombie.png"},
},
--glow = 4,
--blood_texture = " ",
makes_footstep_sound = true,
sounds = {
--attack = "",
--death = " ",
},
walk_velocity = 1,
run_velocity = 5,
jump_height = 2,
stepheight = 1.1,
floats = 0,
view_range = 35,
drops = {
--{name = "huntersaxe:hunter_axe", chance = 2, 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 = "crawlerzombie:crawlerzombie",
nodes = hunternods,
min_light = 0,
max_light = 14,
chance = 7000,
min_height = 0,
max_height = 200,
--max_height = 200,
active_object_count = 3,
})
mobs:register_egg("crawlerzombie:crawlerzombie", "Crawler Zombie", "stone.png",1)

3
crawlerzombie/mod.conf Normal file
View File

@ -0,0 +1,3 @@
name = crawlerzombie
depends = default, mobs ,

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

8
doctorzombie/LICENSE Normal file
View File

@ -0,0 +1,8 @@
MIT License
Copyright (c) <year> <copyright holders>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

3
doctorzombie/depends.txt Normal file
View File

@ -0,0 +1,3 @@
default
mobs

104
doctorzombie/init.lua Normal file
View File

@ -0,0 +1,104 @@
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:mossycobble",
"default:chest",
"default:ice",
}
---- SKULL SWORD ------------------------------------------------------------------------------------------------------
mobs:register_mob("doctorzombie:doctorzombie", {
nametag = "Doctor Zombie" ,
type = "monster",
passive = false,
attack_type = "dogfight",
pathfinding = true,
reach = 3,
damage = 6,
hp_min = 10,
hp_max = 10,
armor = 100,
collisionbox = {-0.4, 0, -0.4, 0.4, 1.8, 0.4},
visual = "mesh",
mesh = "walkingzombie.b3d",
--rotate = 180,
textures = {
{"doctorzombie.png"},
},
--glow = 4,
--blood_texture = " ",
makes_footstep_sound = true,
sounds = {
--attack = "",
--death = " ",
},
walk_velocity = 1,
run_velocity = 5,
jump_height = 2,
stepheight = 1.1,
floats = 0,
view_range = 35,
drops = {
--{name = "huntersaxe:hunter_axe", chance = 2, 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 = "doctorzombie:doctorzombie",
nodes = hunternods,
min_light = 0,
max_light = 14,
chance = 7000,
min_height = 0,
max_height = 200,
--max_height = 200,
active_object_count = 3,
})
mobs:register_egg("doctorzombie:doctorzombie", "Doctor Zombie", "hunteraxe_egg.png", 1)

3
doctorzombie/mod.conf Normal file
View File

@ -0,0 +1,3 @@
name = doctorzombie
depends = default, mobs ,

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
inicial stuff.zip Normal file

Binary file not shown.

8
lumberjackzombie/LICENSE Normal file
View File

@ -0,0 +1,8 @@
MIT License
Copyright (c) <year> <copyright holders>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -0,0 +1,3 @@
default
mobs

126
lumberjackzombie/init.lua Normal file
View File

@ -0,0 +1,126 @@
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:mossycobble",
"default:chest",
"default:ice",
}
---- SKULL SWORD ------------------------------------------------------------------------------------------------------
mobs:register_mob("lumberjackzombie:lumberjackzombie", {
nametag = "Lumberjack Zombie" ,
type = "monster",
passive = false,
attack_type = "dogfight",
pathfinding = true,
reach = 3,
damage = 6,
hp_min = 10,
hp_max = 10,
armor = 100,
collisionbox = {-0.4, 0, -0.4, 0.4, 1.8, 0.4},
visual = "mesh",
mesh = "walkingzombie.b3d",
--rotate = 180,
textures = {
{"lumberjackzombie.png"},
},
--glow = 4,
--blood_texture = " ",
makes_footstep_sound = true,
sounds = {
--attack = "",
--death = " ",
},
walk_velocity = 1,
run_velocity = 5,
jump_height = 2,
stepheight = 1.1,
floats = 0,
view_range = 35,
drops = {
--{name = "huntersaxe:hunter_axe", chance = 2, 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 = "lumberjackzombie:lumberjackzombie",
nodes = hunternods,
min_light = 0,
max_light = 14,
chance = 7000,
min_height = 0,
max_height = 200,
--max_height = 200,
active_object_count = 3,
})
mobs:register_egg("lumberjackzombie:lumberjackzombie", "Lumberjack Zombie", "hunteraxe_egg.png", 1)
--------------------------------------------------------------------------------
-------------------------------- 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}
})
]]

View File

@ -0,0 +1,3 @@
name = lumberjackzombie
depends = default, mobs ,

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

8
minerzombie/LICENSE Normal file
View File

@ -0,0 +1,8 @@
MIT License
Copyright (c) <year> <copyright holders>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

3
minerzombie/depends.txt Normal file
View File

@ -0,0 +1,3 @@
default
mobs

104
minerzombie/init.lua Normal file
View File

@ -0,0 +1,104 @@
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:mossycobble",
"default:chest",
"default:ice",
}
---- SKULL SWORD ------------------------------------------------------------------------------------------------------
mobs:register_mob("minerzombie:minerzombie", {
nametag = "Miner Zombie" ,
type = "monster",
passive = false,
attack_type = "dogfight",
pathfinding = true,
reach = 3,
damage = 6,
hp_min = 10,
hp_max = 10,
armor = 100,
collisionbox = {-0.4, 0, -0.4, 0.4, 1.8, 0.4},
visual = "mesh",
mesh = "walkingzombie.b3d",
--rotate = 180,
textures = {
{"minerzombie.png"},
},
--glow = 4,
--blood_texture = " ",
makes_footstep_sound = true,
sounds = {
--attack = "",
--death = " ",
},
walk_velocity = 1,
run_velocity = 5,
jump_height = 2,
stepheight = 1.1,
floats = 0,
view_range = 35,
drops = {
--{name = "huntersaxe:hunter_axe", chance = 2, 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 = "minerzombie:minerzombie",
nodes = hunternods,
min_light = 0,
max_light = 8,
chance = 7000,
min_height = 0,
max_height = 200,
--max_height = 200,
active_object_count = 1,
})
mobs:register_egg("minerzombie:minerzombie", "Miner Zombie", "hunteraxe_egg.png", 1)

3
minerzombie/mod.conf Normal file
View File

@ -0,0 +1,3 @@
name = minerzombie
depends = default, mobs ,

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

5
modpack.conf Normal file
View File

@ -0,0 +1,5 @@
name = zombies4test
description =

8
survivorzombie/LICENSE Normal file
View File

@ -0,0 +1,8 @@
MIT License
Copyright (c) <year> <copyright holders>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -0,0 +1,3 @@
default
mobs

126
survivorzombie/init.lua Normal file
View File

@ -0,0 +1,126 @@
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:mossycobble",
"default:chest",
"default:ice",
}
---- SKULL SWORD ------------------------------------------------------------------------------------------------------
mobs:register_mob("survivorzombie:survivorzombie", {
nametag = "Survivor Zombie" ,
type = "monster",
passive = false,
attack_type = "dogfight",
pathfinding = true,
reach = 3,
damage = 6,
hp_min = 10,
hp_max = 10,
armor = 100,
collisionbox = {-0.4, 0, -0.4, 0.4, 1.8, 0.4},
visual = "mesh",
mesh = "walkingzombie.b3d",
--rotate = 180,
textures = {
{"survivorzombie.png"},
},
--glow = 4,
--blood_texture = " ",
makes_footstep_sound = true,
sounds = {
--attack = "",
--death = " ",
},
walk_velocity = 1,
run_velocity = 5,
jump_height = 2,
stepheight = 1.1,
floats = 0,
view_range = 35,
drops = {
--{name = "huntersaxe:hunter_axe", chance = 2, 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 = "survivorzombie:survivorzombie",
nodes = hunternods,
min_light = 0,
max_light = 14,
chance = 7000,
min_height = 0,
max_height = 200,
--max_height = 200,
active_object_count = 3,
})
mobs:register_egg("survivorzombie:survivorzombie", "Survivor Zombie", "hunteraxe_egg.png", 1)
--------------------------------------------------------------------------------
-------------------------------- 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}
})
]]

3
survivorzombie/mod.conf Normal file
View File

@ -0,0 +1,3 @@
name = survivorzombie
depends = default, mobs ,

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

8
walkingzombie/LICENSE Normal file
View File

@ -0,0 +1,8 @@
MIT License
Copyright (c) <year> <copyright holders>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -0,0 +1,3 @@
default
mobs

126
walkingzombie/init.lua Normal file
View File

@ -0,0 +1,126 @@
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:mossycobble",
"default:chest",
"default:ice",
}
---- SKULL SWORD ------------------------------------------------------------------------------------------------------
mobs:register_mob("walkingzombie:walkingzombie", {
nametag = "Walking Zombie" ,
type = "monster",
passive = false,
attack_type = "dogfight",
pathfinding = true,
reach = 3,
damage = 6,
hp_min = 10,
hp_max = 10,
armor = 100,
collisionbox = {-0.4, 0, -0.4, 0.4, 1.8, 0.4},
visual = "mesh",
mesh = "walkingzombie.b3d",
--rotate = 180,
textures = {
{"walkingzombie.png"},
},
--glow = 4,
--blood_texture = " ",
makes_footstep_sound = true,
sounds = {
--attack = "",
--death = " ",
},
walk_velocity = 1,
run_velocity = 5,
jump_height = 2,
stepheight = 1.1,
floats = 0,
view_range = 35,
drops = {
--{name = "huntersaxe:hunter_axe", chance = 2, 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 = "walkingzombie:walkingzombie",
nodes = hunternods,
min_light = 0,
max_light = 14,
chance = 7000,
min_height = 0,
max_height = 200,
--max_height = 200,
active_object_count = 3,
})
mobs:register_egg("walkingzombie:walkingzombie", "Walking Zombie", "hunteraxe_egg.png", 1)
--------------------------------------------------------------------------------
-------------------------------- 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}
})
]]

3
walkingzombie/mod.conf Normal file
View File

@ -0,0 +1,3 @@
name = walkingzombie
depends = default, mobs ,

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB