VoxeLibre/mods/ENTITIES/mobs_mc/zombiepig.lua

153 lines
3.4 KiB
Lua
Raw Normal View History

2017-07-05 03:15:46 +02:00
--MCmobs v0.4
--maikerumine
--made for MC like Survival game
--License for code WTFPL and otherwise stated in readmes
local S = minetest.get_translator("mobs_mc")
2017-07-05 03:15:46 +02:00
--###################
--################### ZOMBIE PIGMAN
--###################
local pigman = {
2021-04-25 17:30:15 +02:00
description = S("Zombie Pigman"),
2017-07-05 03:15:46 +02:00
-- type="animal", passive=false: This combination is needed for a neutral mob which becomes hostile, if attacked
type = "animal",
passive = false,
2020-04-11 02:46:03 +02:00
spawn_class = "passive",
2017-07-05 03:15:46 +02:00
hp_min = 20,
hp_max = 20,
2020-12-06 15:46:42 +01:00
xp_min = 6,
xp_max = 6,
2020-11-09 18:59:08 +01:00
armor = {undead = 90, fleshy = 90},
attack_type = "dogfight",
group_attack = { "mobs_mc:pigman", "mobs_mc:baby_pigman" },
2017-07-05 03:15:46 +02:00
damage = 9,
2017-07-26 00:26:18 +02:00
reach = 2,
2017-07-05 03:15:46 +02:00
collisionbox = {-0.3, -0.01, -0.3, 0.3, 1.94, 0.3},
visual = "mesh",
mesh = "mobs_mc_zombie_pigman.b3d",
textures = { {
2018-05-30 16:41:28 +02:00
"blank.png", --baby
"default_tool_goldsword.png", --sword
"mobs_mc_zombie_pigman.png", --pigman
} },
2017-07-05 03:15:46 +02:00
visual_size = {x=3, y=3},
sounds = {
2020-12-07 01:22:28 +01:00
random = "mobs_mc_zombiepig_random",
war_cry = "mobs_mc_zombiepig_war_cry",
death = "mobs_mc_zombiepig_death",
damage = "mobs_mc_zombiepig_hurt",
2017-07-05 03:15:46 +02:00
distance = 16,
},
jump = true,
makes_footstep_sound = true,
walk_velocity = .8,
run_velocity = 2.6,
pathfinding = 1,
drops = {
2022-05-25 23:25:15 +02:00
{name = "mcl_mobitems:rotten_flesh",
2017-07-05 03:15:46 +02:00
chance = 1,
min = 1,
2020-12-23 17:41:42 +01:00
max = 1,
looting = "common"},
2022-05-25 23:25:15 +02:00
{name = "mcl_core:gold_nugget",
2017-07-05 03:15:46 +02:00
chance = 1,
min = 0,
2020-12-23 17:41:42 +01:00
max = 1,
looting = "common"},
2022-05-25 23:25:15 +02:00
{name = "mcl_core:gold_ingot",
2017-07-05 03:15:46 +02:00
chance = 40, -- 2.5%
min = 1,
2020-12-23 17:41:42 +01:00
max = 1,
looting = "rare"},
2022-05-25 23:25:15 +02:00
{name = "mcl_tools:sword_gold",
2020-12-23 17:41:42 +01:00
chance = 100 / 8.5,
2017-07-05 03:15:46 +02:00
min = 1,
2020-12-23 17:41:42 +01:00
max = 1,
looting = "rare"},
2017-07-05 03:15:46 +02:00
},
animation = {
2018-05-30 16:41:28 +02:00
stand_speed = 25,
walk_speed = 25,
run_speed = 50,
stand_start = 40,
stand_end = 80,
walk_start = 0,
walk_end = 40,
run_start = 0,
run_end = 40,
punch_start = 90,
punch_end = 130,
2017-07-05 03:15:46 +02:00
},
lava_damage = 0,
fire_damage = 0,
2017-07-05 03:15:46 +02:00
fear_height = 4,
view_range = 16,
harmed_by_heal = true,
2020-12-29 22:08:38 +01:00
fire_damage_resistant = true,
2017-07-05 03:15:46 +02:00
}
2022-05-25 14:44:49 +02:00
mcl_mobs:register_mob("mobs_mc:pigman", pigman)
2017-07-05 03:15:46 +02:00
-- Baby pigman.
-- A smaller and more dangerous variant of the pigman
local baby_pigman = table.copy(pigman)
2021-04-25 17:30:15 +02:00
baby_pigman.description = S("Baby Zombie Pigman")
2017-07-05 03:15:46 +02:00
baby_pigman.collisionbox = {-0.25, -0.01, -0.25, 0.25, 0.94, 0.25}
2020-12-06 15:46:42 +01:00
baby_pigman.xp_min = 13
baby_pigman.xp_max = 13
baby_pigman.visual_size = {x=pigman.visual_size.x/2, y=pigman.visual_size.y/2}
baby_pigman.textures = { {
"mobs_mc_zombie_pigman.png", --baby
"default_tool_goldsword.png", --sword
"mobs_mc_zombie_pigman.png", --pigman
} }
2017-07-05 03:15:46 +02:00
baby_pigman.walk_velocity = 1.2
baby_pigman.run_velocity = 2.4
baby_pigman.light_damage = 0
2019-03-08 23:52:41 +01:00
baby_pigman.child = 1
2017-07-05 03:15:46 +02:00
2022-05-25 14:44:49 +02:00
mcl_mobs:register_mob("mobs_mc:baby_pigman", baby_pigman)
2017-07-05 03:15:46 +02:00
-- Regular spawning in the Nether
2022-05-25 14:44:49 +02:00
mcl_mobs:spawn_specific(
2021-04-25 17:30:15 +02:00
"mobs_mc:pigman",
"nether",
2021-04-08 13:39:18 +02:00
"ground",
{
"Nether",
"CrimsonForest",
2021-04-08 13:39:18 +02:00
},
2021-04-25 17:30:15 +02:00
0,
2021-04-08 13:39:18 +02:00
minetest.LIGHT_MAX+1,
2021-04-25 17:30:15 +02:00
30,
6000,
3,
2022-05-25 23:25:15 +02:00
mcl_vars.mg_nether_min,
mcl_vars.mg_nether_max)
2017-07-05 03:15:46 +02:00
-- Baby zombie is 20 times less likely than regular zombies
2022-05-25 14:44:49 +02:00
mcl_mobs:spawn_specific(
2021-04-25 17:30:15 +02:00
"mobs_mc:baby_pigman",
"nether",
2021-04-08 13:39:18 +02:00
"ground",
{
"Nether",
"CrimsonForest",
2021-04-25 17:30:15 +02:00
},
0,
minetest.LIGHT_MAX+1,
30,
100000,
4,
2022-05-25 23:25:15 +02:00
mcl_vars.mg_nether_min,
mcl_vars.mg_nether_max)
2017-07-05 03:15:46 +02:00
-- Spawning in Nether portals in the Overworld
2022-05-25 23:25:15 +02:00
--mobs:spawn_specific("mobs_mc:pigman", {"mcl_portals:portal"}, {"air"}, 0, minetest.LIGHT_MAX+1, 30, 500, 4, mcl_vars.mg_overworld_min, mcl_vars.mg_overworld_max)
2017-07-05 03:15:46 +02:00
-- spawn eggs
2022-05-25 14:44:49 +02:00
mcl_mobs:register_egg("mobs_mc:pigman", S("Zombie Pigman"), "mobs_mc_spawn_icon_zombie_pigman.png", 0)