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,
|
|
|
|
|
attack_type = "dogfight",
|
2015-03-21 19:28:06 +01:00
|
|
|
|
damage = 5,
|
2015-03-18 21:28:40 +01:00
|
|
|
|
-- health & armor
|
2015-04-28 00:11:08 +02:00
|
|
|
|
hp_min = 25,
|
2015-04-11 21:45:03 +02:00
|
|
|
|
hp_max = 30,
|
|
|
|
|
armor = 200,
|
2015-03-18 21:28:40 +01:00
|
|
|
|
-- textures and model
|
2014-10-28 18:01:32 +01:00
|
|
|
|
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4},
|
2015-03-18 21:28:40 +01:00
|
|
|
|
visual = "mesh",
|
|
|
|
|
mesh = "mobs_cow.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_cow.png"},
|
2015-05-22 20:08:09 +02:00
|
|
|
|
--{"mobs_cow_brown.png"}, -- d<>-commenter quand "mobs_cow_brown.png" sera compatible
|
2014-12-09 14:06:19 +01:00
|
|
|
|
},
|
2015-03-18 21:28:40 +01:00
|
|
|
|
blood_texture = "mobs_blood.png",
|
|
|
|
|
visual_size = {x=1,y=1},
|
|
|
|
|
-- 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-03-21 19:28:06 +01:00
|
|
|
|
jump = false,
|
2015-03-18 21:28:40 +01:00
|
|
|
|
-- drops raw meat when dead
|
2014-10-28 18:01:32 +01:00
|
|
|
|
drops = {
|
|
|
|
|
{name = "mobs:meat_raw",
|
2015-03-18 21:28:40 +01:00
|
|
|
|
chance = 1, min = 5, max = 10},
|
2015-03-25 17:25:54 +01:00
|
|
|
|
{name = "mobs:leather",
|
|
|
|
|
chance = 1, min = 0, max = 3},
|
2015-05-22 13:15:40 +02:00
|
|
|
|
{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 = {
|
|
|
|
|
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-03-18 21:28:40 +01:00
|
|
|
|
-- follows wheat
|
|
|
|
|
follow = "farming:wheat", view_range = 8,
|
2015-05-22 10:37:17 +02:00
|
|
|
|
-- replace grass/wheat with air (eat) -- Modif MFF /DEBUT
|
2015-05-18 18:49:26 +02:00
|
|
|
|
replacements = {
|
|
|
|
|
{
|
|
|
|
|
replace_rate = 50,
|
|
|
|
|
replace_what = {"default:grass_3", "default:grass_4",
|
2015-05-22 10:37:17 +02:00
|
|
|
|
"default:grass_5", "farming:wheat_8"},
|
2015-05-18 18:49:26 +02:00
|
|
|
|
replace_with = "air",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
replace_rate = 2000,
|
|
|
|
|
replace_what = {"air"},
|
|
|
|
|
replace_with = "mobs:dung",
|
|
|
|
|
}
|
2015-05-22 10:37:17 +02:00
|
|
|
|
}, -- Modif MFF /FIN
|
2014-10-28 18:01:32 +01:00
|
|
|
|
-- right-click cow with empty bucket to get milk, then feed 8 wheat to replenish milk
|
|
|
|
|
on_rightclick = function(self, clicker)
|
2014-12-15 00:17:29 +01:00
|
|
|
|
local tool = clicker:get_wielded_item()
|
2015-05-22 10:37:17 +02:00
|
|
|
|
local name = clicker:get_player_name()
|
|
|
|
|
|
2015-04-11 21:45:03 +02:00
|
|
|
|
if tool:get_name() == "bucket:bucket_empty" then
|
|
|
|
|
if self.gotten == true
|
|
|
|
|
or self.child == true then
|
|
|
|
|
return
|
|
|
|
|
end
|
2015-03-26 20:08:30 +01:00
|
|
|
|
local inv = clicker:get_inventory()
|
|
|
|
|
inv:remove_item("main", "bucket:bucket_empty")
|
|
|
|
|
-- if room add bucket of milk to inventory, otherwise drop as item
|
|
|
|
|
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
|
2015-02-25 01:57:21 +01:00
|
|
|
|
self.gotten = true -- milked
|
2014-10-28 18:01:32 +01:00
|
|
|
|
end
|
2015-04-11 21:45:03 +02:00
|
|
|
|
|
|
|
|
|
if tool:get_name() == "farming:wheat" then
|
2015-05-22 10:37:17 +02:00
|
|
|
|
-- take item
|
2015-02-25 01:57:21 +01:00
|
|
|
|
if not minetest.setting_getbool("creative_mode") then
|
|
|
|
|
tool:take_item(1)
|
|
|
|
|
clicker:set_wielded_item(tool)
|
|
|
|
|
end
|
2015-05-22 10:37:17 +02:00
|
|
|
|
-- make child grow quicker
|
2015-03-26 20:08:30 +01:00
|
|
|
|
if self.child == true then
|
|
|
|
|
self.hornytimer = self.hornytimer + 10
|
2015-04-11 21:45:03 +02:00
|
|
|
|
return
|
2015-03-26 20:08:30 +01:00
|
|
|
|
end
|
2015-05-22 10:37:17 +02:00
|
|
|
|
-- feed and tame
|
2015-04-11 21:45:03 +02:00
|
|
|
|
self.food = (self.food or 0) + 1
|
2015-05-22 10:37:17 +02:00
|
|
|
|
if self.food > 7 then
|
2015-02-25 01:57:21 +01:00
|
|
|
|
self.food = 0
|
2015-04-11 21:45:03 +02:00
|
|
|
|
if self.hornytimer == 0 then
|
|
|
|
|
self.horny = true
|
|
|
|
|
end
|
2015-02-25 01:57:21 +01:00
|
|
|
|
self.gotten = false -- ready to be milked again
|
|
|
|
|
self.tamed = true
|
2015-05-22 10:37:17 +02:00
|
|
|
|
-- make owner
|
|
|
|
|
if not self.owner or self.owner == "" then
|
|
|
|
|
self.owner = name
|
|
|
|
|
end
|
|
|
|
|
minetest.sound_play("mobs_cow", {
|
|
|
|
|
object = self.object,
|
|
|
|
|
gain = 1.0,
|
|
|
|
|
max_hear_distance = 32,
|
|
|
|
|
loop = false,
|
|
|
|
|
})
|
2014-10-28 18:01:32 +01:00
|
|
|
|
end
|
2015-04-11 21:45:03 +02:00
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if tool:get_name() == "mobs:magic_lasso"
|
|
|
|
|
and clicker:is_player()
|
|
|
|
|
and clicker:get_inventory()
|
|
|
|
|
and self.child == false
|
|
|
|
|
and clicker:get_inventory():room_for_item("main", "mobs:cow") then
|
2015-05-22 10:37:17 +02:00
|
|
|
|
|
|
|
|
|
-- pick up if owner
|
|
|
|
|
if self.owner == name then
|
|
|
|
|
clicker:get_inventory():add_item("main", "mobs:cow")
|
|
|
|
|
self.object:remove()
|
|
|
|
|
tool:add_wear(3000) -- 22 uses
|
|
|
|
|
clicker:set_wielded_item(tool)
|
|
|
|
|
-- cannot pick up if not tamed
|
|
|
|
|
elseif not self.owner or self.owner == "" then
|
|
|
|
|
minetest.chat_send_player(name, "Not tamed!")
|
|
|
|
|
-- cannot pick up if not owner
|
|
|
|
|
elseif self.owner ~= name then
|
|
|
|
|
minetest.chat_send_player(name, "Not owner!")
|
|
|
|
|
end
|
|
|
|
|
|
2014-10-28 18:01:32 +01:00
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
|
})
|
2015-03-18 21:28:40 +01:00
|
|
|
|
-- spawn on default;green;prairie grass between 0 and 20 light, 1 in 11000 chance, 1 cow in area up to 31000 in height
|
2015-04-20 23:12:05 +02:00
|
|
|
|
mobs:register_spawn("mobs:cow", {"default:dirt_with_grass"}, 20, 8, 10000, 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:cow", "Cow", "default_grass.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,
|
|
|
|
|
groups = {crumbly=3},
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
-- Dung
|
|
|
|
|
-- O_o?
|
|
|
|
|
|
|
|
|
|
minetest.register_node("mobs:dung", {
|
|
|
|
|
description = "Cow dung",
|
|
|
|
|
tiles = {"mobs_dung.png"},
|
|
|
|
|
inventory_image = "mobs_dung.png",
|
|
|
|
|
visual_scale = 0.7,
|
|
|
|
|
drawtype = "plantlike",
|
|
|
|
|
wield_image = "mobs_dung.png",
|
|
|
|
|
paramtype = "light",
|
|
|
|
|
walkable = false,
|
|
|
|
|
is_ground_content = true,
|
|
|
|
|
sunlight_propagates = true,
|
|
|
|
|
selection_box = {
|
|
|
|
|
type = "fixed",
|
|
|
|
|
fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2}
|
|
|
|
|
},
|
|
|
|
|
groups = {snappy=2, dig_immediate=3},
|
|
|
|
|
after_place_node = function(pos, placer, itemstack)
|
|
|
|
|
if placer:is_player() then
|
|
|
|
|
minetest.set_node(pos, {name="mobs:dung", param2=1})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
})
|
2015-05-20 17:30:19 +02:00
|
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
|
type = "fuel",
|
|
|
|
|
recipe = "mobs:dung",
|
|
|
|
|
burntime = "8",
|
|
|
|
|
})
|