2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-18 21:28:40 +01:00
|
|
|
-- Bee by KrupnoPavel
|
2014-10-28 18:01:32 +01:00
|
|
|
|
|
|
|
mobs:register_mob("mobs:bee", {
|
2015-03-18 21:28:40 +01:00
|
|
|
-- animal, monster, npc, barbarian
|
2014-10-28 18:01:32 +01:00
|
|
|
type = "animal",
|
2015-03-18 21:28:40 +01:00
|
|
|
-- it is aggressive
|
|
|
|
passive = true,
|
|
|
|
-- health & armor
|
2015-04-11 21:45:03 +02:00
|
|
|
hp_min = 1,
|
|
|
|
hp_max = 2,
|
|
|
|
armor = 200,
|
2015-03-18 21:28:40 +01:00
|
|
|
-- textures and model
|
2014-10-28 18:01:32 +01:00
|
|
|
collisionbox = {-0.2, -0.01, -0.2, 0.2, 0.2, 0.2},
|
|
|
|
visual = "mesh",
|
|
|
|
mesh = "mobs_bee.x",
|
Update mobs mod
- api.lua (many improves, chicken egg more frequent, NPC attack nearly
mobs, textures code, etc…)
- Bee (spawn on group:flower now, textures code updated)
- Bunny (textures code updated)
- Chicken (two times more eggs, textures code updated)
- Cow (textures code updated)
- Creeper (finish reorganize the code, textures code updated, new eggs
inventory texture)
- Dirt Monster (textures code updated)
- Dungeon Master (textures code updated)
- init.lua (small credits tweaks)
- Kitten (textures code updated, now drop sometimes farming:string)
- Lava Flan (textures code updated, now 3 can spawn per chunck)
- Mese Monster (textures code updated)
- NPC (textures code updated, revert give raw meat versus health code
for tests)
- Oerkki (textures code updated, now 1 light damage)
- Rat (textures code updated)
- Sand Monster (textures code updated)
- Sheep (textures code updated, now give 2 to 3 wool when sheared)
- Spider (textures code updated, change credits, comments our
modifications)
- Stone Monster (textures code updated)
- Tree Monster (textures code updated)
- Warthog (textures code updated)
- Wolf (finish reorganize the code, textures code updated, add spawner
egg and an inventory texture)
- Tweaks some sounds
2015-03-31 19:32:46 +02:00
|
|
|
textures = {
|
|
|
|
{"mobs_bee.png"},
|
2014-12-25 18:34:34 +01:00
|
|
|
},
|
2015-03-18 21:28:40 +01:00
|
|
|
-- sounds
|
2014-10-28 18:01:32 +01:00
|
|
|
makes_footstep_sound = false,
|
2015-03-18 21:28:40 +01:00
|
|
|
sounds = {
|
|
|
|
random = "mobs_bee",
|
2015-06-10 17:14:58 +02:00
|
|
|
},
|
2015-03-18 21:28:40 +01:00
|
|
|
-- speed and jump
|
2014-10-28 18:01:32 +01:00
|
|
|
walk_velocity = 1,
|
2015-03-18 21:28:40 +01:00
|
|
|
jump = true,
|
|
|
|
-- drops honey when killed
|
2014-10-28 18:01:32 +01:00
|
|
|
drops = {
|
2015-03-18 21:28:40 +01:00
|
|
|
{name = "mobs:honey",
|
|
|
|
chance = 1, min = 1, max = 2,},
|
2014-10-28 18:01:32 +01:00
|
|
|
},
|
2015-03-18 21:28:40 +01:00
|
|
|
-- damage
|
2014-10-28 18:01:32 +01:00
|
|
|
water_damage = 1,
|
|
|
|
lava_damage = 1,
|
|
|
|
light_damage = 0,
|
2015-03-18 21:28:40 +01:00
|
|
|
fall_damage = 0,
|
|
|
|
fall_speed = -3,
|
|
|
|
-- model animation
|
2014-10-28 18:01:32 +01:00
|
|
|
animation = {
|
|
|
|
speed_normal = 15,
|
|
|
|
stand_start = 0,
|
|
|
|
stand_end = 30,
|
|
|
|
walk_start = 35,
|
|
|
|
walk_end = 65,
|
|
|
|
},
|
2015-03-18 21:28:40 +01:00
|
|
|
-- right click to pick up bee
|
2014-10-28 18:01:32 +01:00
|
|
|
on_rightclick = function(self, clicker)
|
2015-04-11 21:45:03 +02:00
|
|
|
if clicker:is_player()
|
|
|
|
and clicker:get_inventory()
|
|
|
|
and self.child == false
|
|
|
|
and clicker:get_inventory():room_for_item("main", "mobs:bee") then
|
2014-10-28 18:01:32 +01:00
|
|
|
clicker:get_inventory():add_item("main", "mobs:bee")
|
|
|
|
self.object:remove()
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
Update mobs mod
- api.lua (many improves, chicken egg more frequent, NPC attack nearly
mobs, textures code, etc…)
- Bee (spawn on group:flower now, textures code updated)
- Bunny (textures code updated)
- Chicken (two times more eggs, textures code updated)
- Cow (textures code updated)
- Creeper (finish reorganize the code, textures code updated, new eggs
inventory texture)
- Dirt Monster (textures code updated)
- Dungeon Master (textures code updated)
- init.lua (small credits tweaks)
- Kitten (textures code updated, now drop sometimes farming:string)
- Lava Flan (textures code updated, now 3 can spawn per chunck)
- Mese Monster (textures code updated)
- NPC (textures code updated, revert give raw meat versus health code
for tests)
- Oerkki (textures code updated, now 1 light damage)
- Rat (textures code updated)
- Sand Monster (textures code updated)
- Sheep (textures code updated, now give 2 to 3 wool when sheared)
- Spider (textures code updated, change credits, comments our
modifications)
- Stone Monster (textures code updated)
- Tree Monster (textures code updated)
- Warthog (textures code updated)
- Wolf (finish reorganize the code, textures code updated, add spawner
egg and an inventory texture)
- Tweaks some sounds
2015-03-31 19:32:46 +02:00
|
|
|
-- spawn on group:flowers between 4 and 20 light, 1 in 5000 chance, 1 bee in area up to 31000 in height
|
|
|
|
mobs:register_spawn("mobs:bee", {"group:flower"}, 20, 4, 5000, 1, 31000)
|
2015-03-18 21:28:40 +01:00
|
|
|
-- register spawn egg
|
2015-02-25 01:57:21 +01:00
|
|
|
mobs:register_egg("mobs:bee", "Bee", "mobs_bee_inv.png", 0)
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-04-11 21:45:03 +02:00
|
|
|
-- honey
|
2014-10-28 18:01:32 +01:00
|
|
|
minetest.register_craftitem("mobs:honey", {
|
|
|
|
description = "Honey",
|
|
|
|
inventory_image = "mobs_honey_inv.png",
|
|
|
|
on_use = minetest.item_eat(6),
|
|
|
|
})
|
|
|
|
|
2015-04-11 21:45:03 +02:00
|
|
|
-- beehive (when placed spawns bee)
|
2014-10-28 18:01:32 +01:00
|
|
|
minetest.register_node("mobs:beehive", {
|
|
|
|
description = "Beehive",
|
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.0,
|
|
|
|
tiles ={"mobs_beehive.png"},
|
|
|
|
inventory_image = "mobs_beehive.png",
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = true,
|
|
|
|
groups = {fleshy=3,dig_immediate=3},
|
|
|
|
on_use = minetest.item_eat(4),
|
|
|
|
sounds = default.node_sound_defaults(),
|
|
|
|
after_place_node = function(pos, placer, itemstack)
|
|
|
|
if placer:is_player() then
|
|
|
|
minetest.set_node(pos, {name="mobs:beehive", param2=1})
|
2015-03-02 22:29:17 +01:00
|
|
|
minetest.add_entity(pos, "mobs:bee")
|
2014-10-28 18:01:32 +01:00
|
|
|
end
|
|
|
|
end,
|
2015-06-10 17:14:58 +02:00
|
|
|
|
2014-10-28 18:01:32 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "mobs:beehive",
|
|
|
|
recipe = {
|
|
|
|
{"mobs:bee","mobs:bee","mobs:bee"},
|
|
|
|
}
|
|
|
|
})
|
2014-12-09 14:01:36 +01:00
|
|
|
|
2015-04-11 21:45:03 +02:00
|
|
|
-- honey block
|
2014-12-09 14:01:36 +01:00
|
|
|
minetest.register_node("mobs:honey_block", {
|
2014-12-25 18:34:34 +01:00
|
|
|
description = "Honey Block",
|
|
|
|
tiles = {"mobs_honey_block.png"},
|
|
|
|
groups = {snappy=3,flammable=2},
|
|
|
|
sounds = default.node_sound_dirt_defaults(),
|
2014-12-09 14:01:36 +01:00
|
|
|
})
|
2014-12-25 18:34:34 +01:00
|
|
|
|
2014-12-09 14:01:36 +01:00
|
|
|
minetest.register_craft({
|
2014-12-25 18:34:34 +01:00
|
|
|
output = "mobs:honey_block",
|
|
|
|
recipe = {
|
|
|
|
{"mobs:honey", "mobs:honey", "mobs:honey"},
|
|
|
|
{"mobs:honey", "mobs:honey", "mobs:honey"},
|
|
|
|
{"mobs:honey", "mobs:honey", "mobs:honey"},
|
|
|
|
}
|
2014-12-09 14:01:36 +01:00
|
|
|
})
|
2014-12-25 18:34:34 +01:00
|
|
|
|
2014-12-09 14:01:36 +01:00
|
|
|
minetest.register_craft({
|
2014-12-25 18:34:34 +01:00
|
|
|
output = "mobs:honey 9",
|
|
|
|
recipe = {
|
|
|
|
{"mobs:honey_block"},
|
|
|
|
}
|
|
|
|
})
|