animalworld/monkey.lua

124 lines
3.3 KiB
Lua

mobs:register_mob("animalworld:monkey", {
stepheight = 3,
type = "animal",
passive = false,
attack_type = "dogshoot",
dogshoot_switch = 1,
dogshoot_count_max = 3, -- shoot for 10 seconds
dogshoot_count2_max = 5, -- dogfight for 3 seconds
shoot_interval = 1,
arrow = "animalworld:pooball",
shoot_offset = 0.8,
group_attack = true,
owner_loyal = true,
attack_npcs = true,
reach = 2,
damage = 4,
hp_min = 15,
hp_max = 35,
armor = 100,
collisionbox = {-0.5, -0.01, -0.5, 0.5, 0.95, 0.5},
visual = "mesh",
mesh = "Monkey.b3d",
textures = {
{"texturemonkey.png"},
{"texturemonkey2.png"},
{"texturemonkey3.png"},
{"texturemonkey4.png"},
{"texturemonkey5.png"},
},
makes_footstep_sound = true,
sounds = {
random = "animalworld_monkey",
attack = "animalworld_monkey2",
damage = "animalworld_monkey3",
},
walk_velocity = 2,
run_velocity = 3,
walk_chance = 20,
jump = true,
jump_height = 8,
pushable = true,
follow = {"default:apple", "farming:potato", "ethereal:banana_bread", "farming:carrot", "farming:seed_rice", "farming:corn", "farming:wheat", "farming:beans", "farming:barley", "farming:oat", "farming:rye", "mobs:cheese", "farming:bread", "ethereal:banana_bread", "ethereal:banana", "farming:cabbage", "farming:lettuce", "farming:melon_slice", "animalworld:termitequeen", "animalworld:locust_roasted"},
view_range = 15,
replace_rate = 10,
replace_what = {"farming:soil", "farming:soil_wet"},
replace_with = "default:dirt",
drops = {
{name = "mobs:meat_raw", chance = 1, min = 1, max = 3},
},
water_damage = 1,
lava_damage = 5,
light_damage = 0,
fear_height = 4,
animation = {
speed_normal = 100,
stand_speed = 75,
stand_start = 350,
stand_end = 450,
walk_start = 0,
walk_end = 100,
punch_start = 100,
punch_end = 200,
shoot_start = 200,
shoot_end = 300,
die_start = 1, -- we dont have a specific death animation so we will
die_end = 2, -- re-use 2 standing frames at a speed of 1 fps and
die_speed = 1, -- have mob rotate when dying.
die_loop = false,
die_rotate = true,
},
on_rightclick = function(self, clicker)
if mobs:feed_tame(self, clicker, 8, true, true) then return end
if mobs:protect(self, clicker) then return end
if mobs:capture_mob(self, clicker, 0, 5, 50, false, nil) then return end
end,
})
if not mobs.custom_spawn_animalworld then
mobs:spawn({
name = "animalworld:monkey",
nodes = {"default:dry_dirt_with_dry_grass", "default:dirt_with_rainforest_litter", "default:jungleleaves"},
min_light = 0,
interval = 60,
chance = 8000, -- 15000
active_object_count = 6,
min_height = 30,
max_height = 75,
day_toggle = true,
})
end
mobs:register_egg("animalworld:monkey", ("Monkey"), "amonkey.png")
mobs:register_arrow("animalworld:pooball", {
visual = "sprite",
visual_size = {x=.5, y=.5},
textures = {"animalworld_pooball.png"},
velocity = 12,
drop = true,
hit_player = function(self, player)
player:punch(self.object, 1.0, {
full_punch_interval=1.0,
damage_groups = {fleshy=13},
}, nil)
end,
hit_mob = function(self, player)
player:punch(self.object, 1.0, {
full_punch_interval=1.0,
damage_groups = {fleshy=13},
}, nil)
end,
hit_node = function(self, pos, node)
end,
})