mobs_mc/creeper.lua
2017-06-16 19:41:10 +02:00

137 lines
2.6 KiB
Lua

--License for code WTFPL and otherwise stated in readmes
mobs:register_mob("mobs_mc:creeper", {
type = "monster",
hp_min = 20,
hp_max = 20,
collisionbox = {-0.3, -0.01, -0.3, 0.3, 1.69, 0.3},
pathfinding = 1,
rotate = -180,
visual = "mesh",
mesh = "creeper.b3d",
textures = {
{"creeper.png"},
},
visual_size = {x=3, y=3},
makes_footstep_sound = false,
sounds = {
attack = "Fuse",
death = "Creeperdeath",
damage = "Creeper4",
war_cry = "Fuse",
explode = "explo",
},
walk_velocity = 1.5,
run_velocity = 3,
attack_type = "explode",
explosion_radius = 3,
-- TODO: Disable Mobs Redo fire
maxdrops = 2,
drops = {
{name = "tnt:gunpowder",
chance = 3,
min = 0,
max = 2,},
--[[
{name = "jdukebox:disc_1",
chance = 30,
min = 0,
max = 1,},
{name = "jdukebox:disc_2",
chance = 30,
min = 0,
max = 1,},
{name = "jdukebox:disc_3",
chance = 30,
min = 0,
max = 1,},
{name = "jdukebox:disc_4",
chance = 30,
min = 0,
max = 1,},
{name = "jdukebox:disc_5",
chance = 30,
min = 0,
max = 1,},
{name = "jdukebox:disc_6",
chance = 30,
min = 0,
max = 1,},
]]
{name = "mcl_jukebox:record_1",
chance = 1600,
min = 1,
max = 1,},
{name = "mcl_jukebox:record_2",
chance = 1600,
min = 1,
max = 1,},
{name = "mcl_jukebox:record_3",
chance = 1600,
min = 1,
max = 1,},
{name = "mcl_jukebox:record_4",
chance = 1600,
min = 1,
max = 1,},
{name = "mcl_jukebox:record_5",
chance = 1600,
min = 1,
max = 1,},
{name = "mcl_jukebox:record_6",
chance = 1600,
min = 1,
max = 1,},
{name = "mcl_jukebox:record_7",
chance = 1600,
min = 1,
max = 1,},
{name = "mcl_jukebox:record_8",
chance = 1600,
min = 1,
max = 1,},
{name = "mobs_mc:creeper_head",
chance = 200,
min = 1,
max = 1,},
},
animation = {
speed_normal = 24,
speed_run = 48,
stand_start = 0,
stand_end = 23,
walk_start = 24,
walk_end = 49,
run_start = 24,
run_end = 49,
hurt_start = 110,
hurt_end = 139,
death_start = 140,
death_end = 189,
look_start = 50,
look_end = 108,
},
drawtype = "front",
floats = 1,
water_damage = 1,
lava_damage = 5,
light_damage = 0,
view_range = 16,
})
mobs:spawn_specific("mobs_mc:creeper", {"default:dirt_with_grass", "default:dirt_with_dry_grass","default:stone","default:dirt","default:coarse_dirt", "default:sand"},{"air"},0, 7, 20, 9000, 1, -310, 31000)
-- compatibility
mobs:alias_mob("mobs:creeper", "mobs_mc:creeper")
-- spawn eggs
mobs:register_egg("mobs_mc:creeper", "Creeper", "creeper_inv.png", 0)
if minetest.settings:get_bool("log_mods") then
minetest.log("action", "MC Creeper loaded")
end