2014-10-28 18:01:32 +01:00
|
|
|
|
|
|
|
-- Cow by Krupnovpavel
|
|
|
|
|
|
|
|
mobs:register_mob("mobs:cow", {
|
2015-03-18 21:28:40 +01:00
|
|
|
-- animal, monster, npc, barbarian
|
2014-10-28 18:01:32 +01:00
|
|
|
type = "animal",
|
2015-03-21 19:28:06 +01:00
|
|
|
-- aggressive, does 5 damage to player when threatened
|
2015-03-18 21:28:40 +01:00
|
|
|
passive = false,
|
2015-07-22 00:11:38 +02:00
|
|
|
group_attack = true,
|
2015-03-18 21:28:40 +01:00
|
|
|
attack_type = "dogfight",
|
2015-09-30 03:43:51 +02:00
|
|
|
reach = 2,
|
2015-07-13 23:12:30 +02:00
|
|
|
damage = 4,
|
2015-03-18 21:28:40 +01:00
|
|
|
-- health & armor
|
2016-05-03 23:30:14 +02:00
|
|
|
hp_min = 15,
|
|
|
|
hp_max = 20,
|
2015-04-11 21:45:03 +02:00
|
|
|
armor = 200,
|
2015-03-18 21:28:40 +01:00
|
|
|
-- textures and model
|
2015-08-18 17:09:53 +02:00
|
|
|
collisionbox = {-0.8, 0, -0.8, 0.8, 1.6, 0.8}, --Modif MFF (debug)
|
2015-03-18 21:28:40 +01:00
|
|
|
visual = "mesh",
|
2015-09-14 20:29:36 +02:00
|
|
|
mesh = "mobs_cow.b3d",
|
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 = {
|
2015-09-14 21:08:00 +02:00
|
|
|
{"mobs_cow_lightbrown.png"},
|
|
|
|
{"mobs_cow_brown.png"},
|
|
|
|
{"mobs_cow_white.png"},
|
2014-12-09 14:06:19 +01:00
|
|
|
},
|
2015-03-18 21:28:40 +01:00
|
|
|
blood_texture = "mobs_blood.png",
|
|
|
|
-- sounds
|
2014-10-28 18:01:32 +01:00
|
|
|
makes_footstep_sound = true,
|
2015-03-18 21:28:40 +01:00
|
|
|
sounds = {
|
|
|
|
random = "mobs_cow",
|
|
|
|
},
|
|
|
|
-- speed and jump
|
2014-10-28 18:01:32 +01:00
|
|
|
walk_velocity = 1,
|
|
|
|
run_velocity = 2,
|
2015-08-18 17:09:53 +02:00
|
|
|
jump = true,
|
2015-03-18 21:28:40 +01:00
|
|
|
-- drops raw meat when dead
|
2014-10-28 18:01:32 +01:00
|
|
|
drops = {
|
2016-02-10 05:02:17 +01:00
|
|
|
{name = "mobs:meat_raw", chance = 1, min = 5, max = 10},
|
|
|
|
{name = "mobs:leather", chance = 1, min = 0, max = 3},
|
|
|
|
{name = "maptools:silver_coin", chance = 10, min = 1, max = 1,},
|
2014-10-28 18:01:32 +01:00
|
|
|
},
|
2015-03-18 21:28:40 +01:00
|
|
|
-- damaged by
|
2014-10-28 18:01:32 +01:00
|
|
|
water_damage = 1,
|
|
|
|
lava_damage = 5,
|
|
|
|
light_damage = 0,
|
2015-03-18 21:28:40 +01:00
|
|
|
-- model animation
|
|
|
|
animation = {
|
2015-12-08 03:29:42 +01:00
|
|
|
speed_normal = 15,
|
|
|
|
speed_run = 15,
|
|
|
|
stand_start = 0,
|
|
|
|
stand_end = 30,
|
|
|
|
walk_start = 35,
|
|
|
|
walk_end = 65,
|
|
|
|
run_start = 105,
|
|
|
|
run_end = 135,
|
|
|
|
punch_start = 70,
|
|
|
|
punch_end = 100,
|
2014-10-28 18:01:32 +01:00
|
|
|
},
|
2015-07-15 23:31:54 +02:00
|
|
|
follow = "farming:wheat",
|
2015-12-08 03:29:42 +01:00
|
|
|
view_range = 7,
|
2016-07-14 15:25:13 +02:00
|
|
|
replace_rate = 100,
|
2015-07-15 23:31:54 +02:00
|
|
|
replace_what = {"default:grass_3", "default:grass_4", "default:grass_5", "farming:wheat_8"},
|
2016-03-04 21:44:08 +01:00
|
|
|
replace_with = "mobs:dung",
|
2015-12-18 21:13:20 +01:00
|
|
|
fear_height = 2,
|
2014-10-28 18:01:32 +01:00
|
|
|
on_rightclick = function(self, clicker)
|
2015-05-22 10:37:17 +02:00
|
|
|
|
2016-02-01 12:45:12 +01:00
|
|
|
-- feed or tame
|
|
|
|
if mobs:feed_tame(self, clicker, 8, true, true) then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local tool = clicker:get_wielded_item()
|
|
|
|
|
|
|
|
-- milk cow with empty bucket
|
|
|
|
if tool:get_name() == "bucket:bucket_empty" then
|
|
|
|
|
|
|
|
--if self.gotten == true
|
|
|
|
if self.child == true then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if self.gotten == true then
|
|
|
|
minetest.chat_send_player(clicker:get_player_name(),
|
|
|
|
"Cow already milked!")
|
2015-08-18 17:09:53 +02:00
|
|
|
return
|
2014-10-28 18:01:32 +01:00
|
|
|
end
|
2016-02-01 12:45:12 +01:00
|
|
|
|
|
|
|
local inv = clicker:get_inventory()
|
|
|
|
|
|
|
|
inv:remove_item("main", "bucket:bucket_empty")
|
|
|
|
|
|
|
|
if inv:room_for_item("main", {name = "mobs:bucket_milk"}) then
|
|
|
|
clicker:get_inventory():add_item("main", "mobs:bucket_milk")
|
|
|
|
else
|
|
|
|
local pos = self.object:getpos()
|
|
|
|
pos.y = pos.y + 0.5
|
|
|
|
minetest.add_item(pos, {name = "mobs:bucket_milk"})
|
|
|
|
end
|
|
|
|
|
|
|
|
self.gotten = true -- milked
|
|
|
|
|
|
|
|
return
|
2015-09-14 21:08:00 +02:00
|
|
|
end
|
2016-02-01 12:45:12 +01:00
|
|
|
|
2015-07-15 23:31:54 +02:00
|
|
|
mobs:capture_mob(self, clicker, 0, 5, 60, false, nil)
|
|
|
|
end,
|
|
|
|
})
|
2015-05-22 10:37:17 +02:00
|
|
|
|
2016-05-04 00:03:35 +02:00
|
|
|
-- spawn on default;green;prairie grass between 0 and 20 light, 1 in 15000 chance, 1 cow in area up to 31000 in height
|
|
|
|
mobs:spawn_specific("mobs:cow", {"default:dirt_with_grass"}, {"air"}, 8, 20, 30, 15000, 2, -31000, 31000, true, true)
|
2015-03-18 21:28:40 +01:00
|
|
|
-- register spawn egg
|
2015-08-17 22:52:29 +02:00
|
|
|
mobs:register_egg("mobs:cow", "Cow", "mobs_cow_inv.png", 1)
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-04-11 21:45:03 +02:00
|
|
|
-- leather
|
2015-03-25 17:25:54 +01:00
|
|
|
minetest.register_craftitem("mobs:leather", {
|
|
|
|
description = "Leather",
|
|
|
|
inventory_image = "mobs_leather.png",
|
|
|
|
})
|
2015-03-26 20:08:30 +01:00
|
|
|
|
2015-04-11 21:45:03 +02:00
|
|
|
-- bucket of milk
|
2014-10-28 18:01:32 +01:00
|
|
|
minetest.register_craftitem("mobs:bucket_milk", {
|
|
|
|
description = "Bucket of Milk",
|
|
|
|
inventory_image = "mobs_bucket_milk.png",
|
|
|
|
stack_max = 1,
|
|
|
|
on_use = minetest.item_eat(8, 'bucket:bucket_empty'),
|
|
|
|
})
|
|
|
|
|
2015-04-11 21:45:03 +02:00
|
|
|
-- cheese wedge
|
2014-10-28 18:01:32 +01:00
|
|
|
minetest.register_craftitem("mobs:cheese", {
|
|
|
|
description = "Cheese",
|
|
|
|
inventory_image = "mobs_cheese.png",
|
|
|
|
on_use = minetest.item_eat(4),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "mobs:cheese",
|
|
|
|
recipe = "mobs:bucket_milk",
|
|
|
|
cooktime = 5,
|
|
|
|
replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}}
|
|
|
|
})
|
|
|
|
|
2015-04-11 21:45:03 +02:00
|
|
|
-- cheese block
|
2014-10-28 18:01:32 +01:00
|
|
|
minetest.register_node("mobs:cheeseblock", {
|
|
|
|
description = "Cheese Block",
|
|
|
|
tiles = {"mobs_cheeseblock.png"},
|
|
|
|
is_ground_content = false,
|
2015-08-18 17:09:53 +02:00
|
|
|
groups = {crumbly = 3},
|
2014-10-28 18:01:32 +01:00
|
|
|
sounds = default.node_sound_dirt_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "mobs:cheeseblock",
|
|
|
|
recipe = {
|
|
|
|
{'mobs:cheese', 'mobs:cheese', 'mobs:cheese'},
|
|
|
|
{'mobs:cheese', 'mobs:cheese', 'mobs:cheese'},
|
|
|
|
{'mobs:cheese', 'mobs:cheese', 'mobs:cheese'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "mobs:cheese 9",
|
|
|
|
recipe = {
|
|
|
|
{'mobs:cheeseblock'},
|
|
|
|
}
|
|
|
|
})
|
2015-05-18 18:49:26 +02:00
|
|
|
|
2015-09-01 20:40:34 +02:00
|
|
|
-- Dung (from factory's fertilizer)
|
2015-05-18 18:49:26 +02:00
|
|
|
minetest.register_node("mobs:dung", {
|
2015-09-01 20:40:34 +02:00
|
|
|
tiles = {"default_dirt.png"},
|
|
|
|
inventory_image = "mobs_dung.png",
|
|
|
|
description = "Cow dung",
|
|
|
|
drawtype = "nodebox",
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy = 3, attached_node = 1},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.1875, -0.5, -0.1875, 0.1875, -0.4375, 0.1875},
|
|
|
|
{-0.125, -0.4375, -0.125, 0.125, -0.375, 0.125},
|
|
|
|
{0, -0.375, -0.0625, 0.0625, -0.3125, 0.0625},
|
|
|
|
{0, -0.3125, -0.0625, 0.0625, -0.25, 0},
|
|
|
|
{-0.0625, -0.375, -0.0625, 0, -0.3125, 0},
|
|
|
|
}
|
|
|
|
}
|
2015-05-18 18:49:26 +02:00
|
|
|
})
|
2015-05-20 17:30:19 +02:00
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "mobs:dung",
|
|
|
|
burntime = "8",
|
|
|
|
})
|