add meat
This commit is contained in:
parent
d01f85b730
commit
d25872bac0
24
crafts.lua
Normal file
24
crafts.lua
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
|
||||||
|
-- raw meat
|
||||||
|
minetest.register_craftitem("water_life:meat_raw", {
|
||||||
|
description = ("Raw Meat"),
|
||||||
|
inventory_image = "water_life_meat_raw.png",
|
||||||
|
on_use = minetest.item_eat(3),
|
||||||
|
groups = {food_meat_raw = 1, flammable = 2}
|
||||||
|
})
|
||||||
|
|
||||||
|
-- cooked meat
|
||||||
|
minetest.register_craftitem("water_life:meat", {
|
||||||
|
description = ("Meat"),
|
||||||
|
inventory_image = "water_life_meat.png",
|
||||||
|
on_use = minetest.item_eat(8),
|
||||||
|
groups = {food_meat = 1, flammable = 2}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "cooking",
|
||||||
|
output = "water_life:meat",
|
||||||
|
recipe = "water_life:meat_raw",
|
||||||
|
cooktime = 5
|
||||||
|
})
|
62
init.lua
62
init.lua
@ -7,12 +7,13 @@ math.randomseed(os.time()) --init random seed
|
|||||||
|
|
||||||
local path = minetest.get_modpath(minetest.get_current_modname())
|
local path = minetest.get_modpath(minetest.get_current_modname())
|
||||||
|
|
||||||
dofile(path.."/api.lua") -- load water_life api
|
dofile(path.."/api.lua") -- load water_life api
|
||||||
|
dofile(path.."/crafts.lua") -- load crafts
|
||||||
|
|
||||||
if minetest.get_modpath("wildlife") then
|
if minetest.get_modpath("wildlife") then
|
||||||
water_life.register_shark_food("wildlife:deer")
|
water_life.register_shark_food("wildlife:deer")
|
||||||
water_life.register_shark_food("wildlife:wolf")
|
water_life.register_shark_food("wildlife:wolf")
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
@ -448,6 +449,19 @@ local function shark_brain(self)
|
|||||||
if mobkit.is_queue_empty_high(self) then mobkit.hq_aqua_roam(self,10,5) end
|
if mobkit.is_queue_empty_high(self) then mobkit.hq_aqua_roam(self,10,5) end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
local function fish_brain(self)
|
||||||
|
if self.hp <= 0 then
|
||||||
|
mobkit.clear_queue_high(self)
|
||||||
|
water_life.handle_drops(self)
|
||||||
|
mobkit.hq_die(self)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
if mobkit.is_queue_empty_high(self) then mobkit.hq_aqua_roam(self,10,1) end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
---------------
|
---------------
|
||||||
-- the Entities
|
-- the Entities
|
||||||
---------------
|
---------------
|
||||||
@ -465,7 +479,7 @@ minetest.register_entity("water_life:whale",{
|
|||||||
visual_size = {x = 3.5, y = 3.5},
|
visual_size = {x = 3.5, y = 3.5},
|
||||||
drops = {
|
drops = {
|
||||||
{name = "default:diamond", chance = 5, min = 10, max = 50,},
|
{name = "default:diamond", chance = 5, min = 10, max = 50,},
|
||||||
{name = "farming:bread", chance = 2, min = 15, max = 65,},
|
{name = "water_life:meat_raw", chance = 1, min = 15, max = 65,},
|
||||||
},
|
},
|
||||||
static_save = false,
|
static_save = false,
|
||||||
makes_footstep_sound = true,
|
makes_footstep_sound = true,
|
||||||
@ -552,7 +566,7 @@ minetest.register_entity("water_life:shark",{
|
|||||||
timeout=60,
|
timeout=60,
|
||||||
drops = {
|
drops = {
|
||||||
{name = "default:diamond", chance = 5, min = 1, max = 5,},
|
{name = "default:diamond", chance = 5, min = 1, max = 5,},
|
||||||
{name = "farming:bread", chance = 2, min = 1, max = 5,},
|
{name = "water_life:meat_raw", chance = 2, min = 1, max = 5,},
|
||||||
},
|
},
|
||||||
attack={range=0.8,damage_groups={fleshy=7}},
|
attack={range=0.8,damage_groups={fleshy=7}},
|
||||||
sounds = {
|
sounds = {
|
||||||
@ -580,3 +594,43 @@ minetest.register_entity("water_life:shark",{
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_entity("water_life:fish",{
|
||||||
|
-- common props
|
||||||
|
physical = true,
|
||||||
|
stepheight = 0.1, --EVIL!
|
||||||
|
collide_with_objects = false,
|
||||||
|
collisionbox = {-0.2, -0.2, -0.2, 0.2, 0.2, 0.2},
|
||||||
|
visual = "mesh",
|
||||||
|
mesh = "water_life_fish.b3d",
|
||||||
|
textures = {"water_life_fish.png"},
|
||||||
|
visual_size = {x = 0.5, y = 0.5},
|
||||||
|
static_save = false,
|
||||||
|
makes_footstep_sound = true,
|
||||||
|
on_step = mobkit.stepfunc, -- required
|
||||||
|
on_activate = mobkit.actfunc, -- required
|
||||||
|
get_staticdata = mobkit.statfunc,
|
||||||
|
-- api props
|
||||||
|
springiness=0,
|
||||||
|
buoyancy = 0.98, -- portion of hitbox submerged
|
||||||
|
max_speed = 1, -- no matter which number is here, sharks always at same speed
|
||||||
|
jump_height = 1.26,
|
||||||
|
view_range = 32,
|
||||||
|
-- lung_capacity = 0, -- seconds
|
||||||
|
max_hp = 25,
|
||||||
|
timeout=60,
|
||||||
|
drops = {
|
||||||
|
{name = "default:diamond", chance = 5, min = 1, max = 5,},
|
||||||
|
{name = "water_life:meat_raw", chance = 2, min = 1, max = 5,},
|
||||||
|
},
|
||||||
|
brainfunc = fish_brain,
|
||||||
|
on_punch=function(self, puncher, time_from_last_punch, tool_capabilities, dir)
|
||||||
|
if mobkit.is_alive(self) then
|
||||||
|
|
||||||
|
mobkit.hurt(self,tool_capabilities.damage_groups.fleshy or 1)
|
||||||
|
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
|
BIN
models/water_life_fish.b3d
Normal file
BIN
models/water_life_fish.b3d
Normal file
Binary file not shown.
BIN
textures/water_life_fish.png
Normal file
BIN
textures/water_life_fish.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 120 KiB |
BIN
textures/water_life_meat.png
Normal file
BIN
textures/water_life_meat.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 411 B |
BIN
textures/water_life_meat_raw.png
Normal file
BIN
textures/water_life_meat_raw.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 426 B |
Loading…
x
Reference in New Issue
Block a user