mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-12-25 10:10:39 +01:00
parent
6678118c35
commit
7621b867c3
@ -10,13 +10,12 @@ dofile(path.."/chicken.lua") -- JKmurray
|
|||||||
dofile(path.."/cow.lua") -- KrupnoPavel
|
dofile(path.."/cow.lua") -- KrupnoPavel
|
||||||
dofile(path.."/rat.lua") -- PilzAdam
|
dofile(path.."/rat.lua") -- PilzAdam
|
||||||
dofile(path.."/sheep.lua") -- PilzAdam
|
dofile(path.."/sheep.lua") -- PilzAdam
|
||||||
dofile(path.."/warthog.lua") -- KrupnoPavel
|
dofile(path.."/pig.lua") -- farfadet46
|
||||||
dofile(path.."/bee.lua") -- KrupnoPavel
|
dofile(path.."/bee.lua") -- KrupnoPavel
|
||||||
dofile(path.."/bunny.lua") -- ExeterDad
|
dofile(path.."/bunny.lua") -- ExeterDad
|
||||||
dofile(path.."/kitten.lua") -- Jordach/BFD
|
dofile(path.."/kitten.lua") -- Jordach/BFD
|
||||||
dofile(path.."/goat.lua") -- ???
|
dofile(path.."/goat.lua") -- ???
|
||||||
dofile(path.."/shark.lua") -- blert2112 (animal_modpack)
|
dofile(path.."/shark.lua") -- blert2112 (animal_modpack)
|
||||||
dofile(path.."/pig.lua") -- farfadet46
|
|
||||||
|
|
||||||
-- Monsters
|
-- Monsters
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ mobs:register_mob("mobs:pig", {
|
|||||||
passive = false,
|
passive = false,
|
||||||
group_attack = true,
|
group_attack = true,
|
||||||
attack_type = "dogfight",
|
attack_type = "dogfight",
|
||||||
|
reach = 2,
|
||||||
damage = 4,
|
damage = 4,
|
||||||
-- health & armor
|
-- health & armor
|
||||||
hp_min = 15,
|
hp_min = 15,
|
||||||
@ -21,28 +22,33 @@ mobs:register_mob("mobs:pig", {
|
|||||||
textures = {
|
textures = {
|
||||||
{"mobs_pig_pink.png"},
|
{"mobs_pig_pink.png"},
|
||||||
},
|
},
|
||||||
blood_texture = "mobs_blood.png",
|
|
||||||
visual_size = {x=1,y=1},
|
visual_size = {x=1,y=1},
|
||||||
|
blood_texture = "mobs_blood.png",
|
||||||
-- sounds
|
-- sounds
|
||||||
makes_footstep_sound = true,
|
makes_footstep_sound = true,
|
||||||
sounds = {
|
sounds = {
|
||||||
-- random = "mobs_pig", We don't have that yet
|
random = "mobs_pig",
|
||||||
|
attack = "mobs_pig_angry",
|
||||||
},
|
},
|
||||||
-- speed and jump
|
-- speed and jump
|
||||||
walk_velocity = 1.5,
|
walk_velocity = 2,
|
||||||
run_velocity = 3,
|
run_velocity = 3,
|
||||||
jump = false,
|
jump = true,
|
||||||
-- drops raw meat when dead
|
-- follows apple and potato
|
||||||
|
follow = {"default:apple", "farming:potato"},
|
||||||
|
view_range = 10,
|
||||||
|
-- drops raw pork when dead
|
||||||
drops = {
|
drops = {
|
||||||
{name = "mobs:meat_raw",
|
{name = "mobs:pork_raw",
|
||||||
chance = 1, min = 2, max = 4},
|
chance = 1, min = 2, max = 3,},
|
||||||
{name = "maptools:copper_coin",
|
{name = "maptools:silver_coin",
|
||||||
chance = 10, min = 1, max = 1,},
|
chance = 10, min = 1, max = 1,},
|
||||||
},
|
},
|
||||||
-- damaged by
|
-- damaged by
|
||||||
water_damage = 1,
|
water_damage = 1,
|
||||||
lava_damage = 5,
|
lava_damage = 5,
|
||||||
light_damage = 0,
|
light_damage = 0,
|
||||||
|
fear_height = 2,
|
||||||
-- model animation
|
-- model animation
|
||||||
animation = {
|
animation = {
|
||||||
speed_normal = 15,
|
speed_normal = 15,
|
||||||
@ -50,9 +56,34 @@ mobs:register_mob("mobs:pig", {
|
|||||||
walk_start = 60, walk_end = 100,
|
walk_start = 60, walk_end = 100,
|
||||||
punch_start = 60, punch_end = 100,
|
punch_start = 60, punch_end = 100,
|
||||||
},
|
},
|
||||||
view_range = 10,
|
-- can be tamed by feeding 8 wheat (will not attack when tamed)
|
||||||
|
on_rightclick = function(self, clicker)
|
||||||
|
mobs:feed_tame(self, clicker, 8, true, true)
|
||||||
|
mobs:capture_mob(self, clicker, 0, 5, 50, false, nil)
|
||||||
|
end,
|
||||||
})
|
})
|
||||||
-- spawn on dirt_with_grass between -1 and 20 light, 1 in 20000 chance, 1 goat in area up to 31000 in height
|
-- spawns on dirt or junglegrass, between 8 and 20 light, 1 in 15000 chance, 1 in area up to 31000 in height
|
||||||
mobs:spawn_specific("mobs:pig", {"default:dirt_with_grass"}, {"air"}, -1, 20, 30, 10000, 1, -31000, 31000, true)
|
mobs:spawn_specific("mobs:pig", {"default:dirt", "default:junglegrass", "default:dirt_with_dry_grass"}, {"air"}, 8, 20, 30, 10000, 1, -31000, 31000, true)
|
||||||
-- register spawn egg
|
-- register spawn egg
|
||||||
mobs:register_egg("mobs:pig", "Pig", "mobs_pig_inv.png", 1)
|
mobs:register_egg("mobs:pig", "Pig", "mobs_pig_inv.png", 1)
|
||||||
|
|
||||||
|
-- porkchop (raw and cooked)
|
||||||
|
minetest.register_craftitem("mobs:pork_raw", {
|
||||||
|
description = "Raw Porkchop",
|
||||||
|
inventory_image = "mobs_pork_raw.png",
|
||||||
|
on_use = minetest.item_eat(4),
|
||||||
|
})
|
||||||
|
|
||||||
|
-- cooked porkchop
|
||||||
|
minetest.register_craftitem("mobs:pork_cooked", {
|
||||||
|
description = "Cooked Porkchop",
|
||||||
|
inventory_image = "mobs_pork_cooked.png",
|
||||||
|
on_use = minetest.item_eat(8),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "cooking",
|
||||||
|
output = "mobs:pork_cooked",
|
||||||
|
recipe = "mobs:pork_raw",
|
||||||
|
cooktime = 5,
|
||||||
|
})
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 1.4 KiB |
@ -1,91 +0,0 @@
|
|||||||
|
|
||||||
-- Warthog by KrupnoPavel
|
|
||||||
|
|
||||||
mobs:register_mob("mobs:pumba", {
|
|
||||||
-- animal, monster, npc, barbarian
|
|
||||||
type = "animal",
|
|
||||||
-- aggressive, deals 5 damage to player when threatened
|
|
||||||
passive = false,
|
|
||||||
group_attack = true,
|
|
||||||
attack_type = "dogfight",
|
|
||||||
reach = 2,
|
|
||||||
damage = 4,
|
|
||||||
-- health & armor
|
|
||||||
hp_min = 15,
|
|
||||||
hp_max = 20,
|
|
||||||
armor = 200,
|
|
||||||
-- textures and model
|
|
||||||
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4},
|
|
||||||
visual = "mesh",
|
|
||||||
mesh = "mobs_pumba.x",
|
|
||||||
textures = {
|
|
||||||
{"mobs_pumba.png"},
|
|
||||||
},
|
|
||||||
visual_size = {x=1,y=1},
|
|
||||||
blood_texture = "mobs_blood.png",
|
|
||||||
-- sounds
|
|
||||||
makes_footstep_sound = true,
|
|
||||||
sounds = {
|
|
||||||
random = "mobs_pig",
|
|
||||||
attack = "mobs_pig_angry",
|
|
||||||
},
|
|
||||||
-- speed and jump
|
|
||||||
walk_velocity = 2,
|
|
||||||
run_velocity = 3,
|
|
||||||
jump = true,
|
|
||||||
-- follows apple and potato
|
|
||||||
follow = {"default:apple", "farming:potato"},
|
|
||||||
view_range = 10,
|
|
||||||
-- drops raw pork when dead
|
|
||||||
drops = {
|
|
||||||
{name = "mobs:pork_raw",
|
|
||||||
chance = 1, min = 2, max = 3,},
|
|
||||||
{name = "maptools:silver_coin",
|
|
||||||
chance = 10, min = 1, max = 1,},
|
|
||||||
},
|
|
||||||
-- damaged by
|
|
||||||
water_damage = 1,
|
|
||||||
lava_damage = 5,
|
|
||||||
light_damage = 0,
|
|
||||||
fear_height = 2,
|
|
||||||
-- model animation
|
|
||||||
animation = {
|
|
||||||
speed_normal = 15,
|
|
||||||
stand_start = 25,
|
|
||||||
stand_end = 55,
|
|
||||||
walk_start = 70,
|
|
||||||
walk_end = 100,
|
|
||||||
punch_start = 70,
|
|
||||||
punch_end = 100,
|
|
||||||
},
|
|
||||||
-- can be tamed by feeding 8 wheat (will not attack when tamed)
|
|
||||||
on_rightclick = function(self, clicker)
|
|
||||||
mobs:feed_tame(self, clicker, 8, true, true)
|
|
||||||
mobs:capture_mob(self, clicker, 0, 5, 50, false, nil)
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
-- spawns on dirt or junglegrass, between 8 and 20 light, 1 in 15000 chance, 1 in area up to 31000 in height
|
|
||||||
mobs:spawn_specific("mobs:pumba", {"default:dirt", "default:junglegrass", "default:dirt_with_dry_grass"}, {"air"}, 8, 20, 30, 10000, 1, -31000, 31000, true)
|
|
||||||
-- register spawn egg
|
|
||||||
mobs:register_egg("mobs:pumba", "Warthog", "mobs_warthog_inv.png", 1)
|
|
||||||
|
|
||||||
-- porkchop (raw and cooked)
|
|
||||||
minetest.register_craftitem("mobs:pork_raw", {
|
|
||||||
description = "Raw Porkchop",
|
|
||||||
inventory_image = "mobs_pork_raw.png",
|
|
||||||
on_use = minetest.item_eat(4),
|
|
||||||
})
|
|
||||||
|
|
||||||
-- cooked porkchop
|
|
||||||
minetest.register_craftitem("mobs:pork_cooked", {
|
|
||||||
description = "Cooked Porkchop",
|
|
||||||
inventory_image = "mobs_pork_cooked.png",
|
|
||||||
on_use = minetest.item_eat(8),
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "cooking",
|
|
||||||
output = "mobs:pork_cooked",
|
|
||||||
recipe = "mobs:pork_raw",
|
|
||||||
cooktime = 5,
|
|
||||||
})
|
|
Loading…
Reference in New Issue
Block a user