forked from mtcontrib/mobs_animal
Compare commits
51 Commits
8ef65e2292
...
5d5b984853
Author | SHA1 | Date | |
---|---|---|---|
5d5b984853 | |||
ad9269569c | |||
998810af89 | |||
409ac55224 | |||
97b8bffd67 | |||
6ef76b06e0 | |||
e7dc5350a6 | |||
cca7169b9e | |||
eed132225c | |||
d9682b32c3 | |||
9be290dd85 | |||
e00766a6d7 | |||
fe4010f217 | |||
97f2e47288 | |||
d500e7f893 | |||
3e15456bce | |||
cac5e8328f | |||
99ca850018 | |||
bcb158d241 | |||
99cf81611a | |||
c2fa3e300c | |||
a7b08928c5 | |||
9a27ed80d7 | |||
630c73cdd7 | |||
52d4d45027 | |||
1d50cdbcca | |||
eba1ac7f10 | |||
80e72a4edc | |||
86987aadde | |||
cd2b2609a2 | |||
5293673547 | |||
54f6de148b | |||
0873ef4119 | |||
f2b1b752a7 | |||
db59194f88 | |||
733ab61820 | |||
498b3fbf10 | |||
8bfa177190 | |||
01bdea97c7 | |||
a1bbcb26ec | |||
620bdfe33d | |||
77ed774de5 | |||
061cbb10b7 | |||
c22c556b5f | |||
ba305db9ca | |||
7de71d8724 | |||
6a74a05836 | |||
e3ca168e7e | |||
9c7e537f52 | |||
66be327567 | |||
96f41785b5 |
2
bee.lua
2
bee.lua
@ -1,5 +1,5 @@
|
||||
|
||||
local S = mobs.intllib
|
||||
local S = mobs.intllib_animal
|
||||
|
||||
-- Bee by KrupnoPavel (.b3d model by sirrobzeroone)
|
||||
|
||||
|
10
bunny.lua
10
bunny.lua
@ -1,5 +1,5 @@
|
||||
|
||||
local S = mobs.intllib
|
||||
local S = mobs.intllib_animal
|
||||
|
||||
|
||||
-- Bunny by ExeterDad
|
||||
@ -161,7 +161,7 @@ minetest.register_craft({
|
||||
minetest.register_craftitem(":mobs:rabbit_hide", {
|
||||
description = S("Rabbit Hide"),
|
||||
inventory_image = "mobs_rabbit_hide.png",
|
||||
groups = {flammable = 2},
|
||||
groups = {flammable = 2, pelt = 1},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
@ -172,9 +172,9 @@ minetest.register_craft({
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mobs:leather",
|
||||
type = "shapeless",
|
||||
-- type = "shapeless",
|
||||
recipe = {
|
||||
"mobs:rabbit_hide", "mobs:rabbit_hide",
|
||||
"mobs:rabbit_hide", "mobs:rabbit_hide"
|
||||
{"mobs:rabbit_hide", "mobs:rabbit_hide"},
|
||||
{"mobs:rabbit_hide", "mobs:rabbit_hide"}
|
||||
}
|
||||
})
|
||||
|
40
chicken.lua
40
chicken.lua
@ -1,5 +1,5 @@
|
||||
|
||||
local S = mobs.intllib
|
||||
local S = mobs.intllib_animal
|
||||
|
||||
|
||||
-- Chicken by JK Murray and Sirrobzeroone
|
||||
@ -81,7 +81,7 @@ stepheight = 0.6,
|
||||
return
|
||||
end
|
||||
|
||||
local pos = self.object:get_pos()
|
||||
local pos = self.object:get_pos() ; if not pos then return end
|
||||
|
||||
minetest.add_item(pos, "mobs:egg")
|
||||
|
||||
@ -138,7 +138,7 @@ mobs:register_arrow("mobs_animal:egg_entity", {
|
||||
end,
|
||||
|
||||
hit_mob = function(self, player)
|
||||
player:punch(minetest.get_player_by_name(self.playername) or self.object, 1.0, {
|
||||
player:punch(self.object, 1.0, {
|
||||
full_punch_interval = 1.0,
|
||||
damage_groups = {fleshy = 1},
|
||||
}, nil)
|
||||
@ -146,7 +146,7 @@ mobs:register_arrow("mobs_animal:egg_entity", {
|
||||
|
||||
hit_node = function(self, pos, node)
|
||||
|
||||
if math.random(1, 10) > 1 then
|
||||
if math.random(10) > 1 then
|
||||
return
|
||||
end
|
||||
|
||||
@ -160,28 +160,10 @@ mobs:register_arrow("mobs_animal:egg_entity", {
|
||||
return
|
||||
end
|
||||
|
||||
local mob = minetest.add_entity(pos, "mobs_animal:chicken")
|
||||
local ent2 = mob:get_luaentity()
|
||||
local staticdata = minetest.serialize(
|
||||
{child = true, tamed = true, owner = self.playername})
|
||||
|
||||
mob:set_properties({
|
||||
textures = ent2.child_texture[1],
|
||||
visual_size = {
|
||||
x = ent2.base_size.x / 2,
|
||||
y = ent2.base_size.y / 2
|
||||
},
|
||||
collisionbox = {
|
||||
ent2.base_colbox[1] / 2,
|
||||
ent2.base_colbox[2] / 2,
|
||||
ent2.base_colbox[3] / 2,
|
||||
ent2.base_colbox[4] / 2,
|
||||
ent2.base_colbox[5] / 2,
|
||||
ent2.base_colbox[6] / 2
|
||||
},
|
||||
})
|
||||
|
||||
ent2.child = true
|
||||
ent2.tamed = true
|
||||
ent2.owner = self.playername
|
||||
minetest.add_entity(pos, "mobs_animal:chicken", staticdata)
|
||||
end
|
||||
})
|
||||
|
||||
@ -213,14 +195,15 @@ local mobs_shoot_egg = function (item, player, pointed_thing)
|
||||
|
||||
ent.velocity = egg_VELOCITY -- needed for api internal timing
|
||||
ent.switch = 1 -- needed so that egg doesn't despawn straight away
|
||||
ent._is_arrow = true -- tell advanced mob protection this is an arrow
|
||||
|
||||
obj:setvelocity({
|
||||
obj:set_velocity({
|
||||
x = dir.x * egg_VELOCITY,
|
||||
y = dir.y * egg_VELOCITY,
|
||||
z = dir.z * egg_VELOCITY
|
||||
})
|
||||
|
||||
obj:setacceleration({
|
||||
obj:set_acceleration({
|
||||
x = dir.x * -3,
|
||||
y = -egg_GRAVITY,
|
||||
z = dir.z * -3
|
||||
@ -228,6 +211,7 @@ local mobs_shoot_egg = function (item, player, pointed_thing)
|
||||
|
||||
-- pass player name to egg for chick ownership
|
||||
local ent2 = obj:get_luaentity()
|
||||
|
||||
ent2.playername = player:get_player_name()
|
||||
|
||||
item:take_item()
|
||||
@ -302,7 +286,7 @@ minetest.register_craft({
|
||||
minetest.register_craftitem(":mobs:chicken_feather", {
|
||||
description = S("Feather"),
|
||||
inventory_image = "mobs_chicken_feather.png",
|
||||
groups = {flammable = 2},
|
||||
groups = {flammable = 2, feather = 1},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
128
cow.lua
128
cow.lua
@ -1,5 +1,5 @@
|
||||
|
||||
local S = mobs.intllib
|
||||
local S = mobs.intllib_animal
|
||||
|
||||
|
||||
-- Cow by sirrobzeroone
|
||||
@ -19,7 +19,7 @@ mobs:register_mob("mobs_animal:cow", {
|
||||
mesh = "mobs_cow.b3d",
|
||||
textures = {
|
||||
{"mobs_cow.png"},
|
||||
{"mobs_cow2.png"},
|
||||
{"mobs_cow2.png"}
|
||||
},
|
||||
makes_footstep_sound = true,
|
||||
sounds = {
|
||||
@ -57,7 +57,7 @@ mobs:register_mob("mobs_animal:cow", {
|
||||
die_start = 165,
|
||||
die_end = 185,
|
||||
die_speed = 10,
|
||||
die_loop = false,
|
||||
die_loop = false
|
||||
},
|
||||
follow = {
|
||||
"farming:wheat", "default:grass_1", "farming:barley",
|
||||
@ -89,9 +89,11 @@ mobs:register_mob("mobs_animal:cow", {
|
||||
|
||||
local tool = clicker:get_wielded_item()
|
||||
local name = clicker:get_player_name()
|
||||
local item = tool:get_name()
|
||||
|
||||
-- milk cow with empty bucket
|
||||
if tool:get_name() == "bucket:bucket_empty" then
|
||||
if item == "bucket:bucket_empty"
|
||||
or item == "wooden_bucket:bucket_wood_empty" then
|
||||
|
||||
--if self.gotten == true
|
||||
if self.child == true then
|
||||
@ -109,12 +111,18 @@ mobs:register_mob("mobs_animal:cow", {
|
||||
tool:take_item()
|
||||
clicker:set_wielded_item(tool)
|
||||
|
||||
if inv:room_for_item("main", {name = "mobs:bucket_milk"}) then
|
||||
clicker:get_inventory():add_item("main", "mobs:bucket_milk")
|
||||
-- which bucket are we using
|
||||
local ret_item = "mobs:bucket_milk"
|
||||
if item == "wooden_bucket:bucket_wood_empty" then
|
||||
ret_item = "mobs:wooden_bucket_milk"
|
||||
end
|
||||
|
||||
if inv:room_for_item("main", {name = ret_item}) then
|
||||
clicker:get_inventory():add_item("main", ret_item)
|
||||
else
|
||||
local pos = self.object:get_pos()
|
||||
pos.y = pos.y + 0.5
|
||||
minetest.add_item(pos, {name = "mobs:bucket_milk"})
|
||||
minetest.add_item(pos, {name = ret_item})
|
||||
end
|
||||
|
||||
self.gotten = true -- milked
|
||||
@ -132,7 +140,7 @@ mobs:register_mob("mobs_animal:cow", {
|
||||
self.food = 0
|
||||
self.gotten = false
|
||||
end
|
||||
end,
|
||||
end
|
||||
})
|
||||
|
||||
|
||||
@ -143,10 +151,10 @@ mobs:spawn({
|
||||
neighbors = {"group:grass"},
|
||||
min_light = 14,
|
||||
interval = 60,
|
||||
chance = 8000, -- 15000
|
||||
chance = 8000,
|
||||
min_height = 5,
|
||||
max_height = 200,
|
||||
day_toggle = true,
|
||||
day_toggle = true
|
||||
})
|
||||
end
|
||||
|
||||
@ -175,25 +183,25 @@ minetest.register_craftitem(":mobs:glass_milk", {
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "mobs:glass_milk 4",
|
||||
recipe = {
|
||||
"vessels:drinking_glass", "vessels:drinking_glass",
|
||||
"vessels:drinking_glass", "vessels:drinking_glass",
|
||||
"mobs:bucket_milk"
|
||||
{"vessels:drinking_glass", "vessels:drinking_glass"},
|
||||
{"vessels:drinking_glass", "vessels:drinking_glass"},
|
||||
{"mobs:bucket_milk", ""}
|
||||
},
|
||||
replacements = { {"mobs:bucket_milk", "bucket:bucket_empty"} }
|
||||
replacements = {{"mobs:bucket_milk", "bucket:bucket_empty"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "mobs:bucket_milk",
|
||||
recipe = {
|
||||
"mobs:glass_milk", "mobs:glass_milk",
|
||||
"mobs:glass_milk", "mobs:glass_milk",
|
||||
"bucket:bucket_empty"
|
||||
{"group:food_milk_glass", "group:food_milk_glass"},
|
||||
{"group:food_milk_glass", "group:food_milk_glass"},
|
||||
{"bucket:bucket_empty", ""}
|
||||
},
|
||||
replacements = { {"mobs:glass_milk", "vessels:drinking_glass 4"} }
|
||||
replacements = {
|
||||
{"group:food_milk_glass", "vessels:drinking_glass 4"}
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
@ -202,31 +210,27 @@ minetest.register_craftitem(":mobs:butter", {
|
||||
description = S("Butter"),
|
||||
inventory_image = "mobs_butter.png",
|
||||
on_use = minetest.item_eat(1),
|
||||
groups = {food_butter = 1, flammable = 2},
|
||||
groups = {food_butter = 1, flammable = 2}
|
||||
})
|
||||
|
||||
local salt_item = "default:sapling" -- some saplings are high in sodium
|
||||
|
||||
if minetest.get_modpath("farming") and farming and farming.mod then
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "mobs:butter",
|
||||
recipe = {"mobs:bucket_milk", "farming:salt"},
|
||||
replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}}
|
||||
})
|
||||
else -- some saplings are high in sodium so makes a good replacement item
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "mobs:butter",
|
||||
recipe = {"mobs:bucket_milk", "default:sapling"},
|
||||
replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}}
|
||||
})
|
||||
salt_item = "farming:salt"
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mobs:butter",
|
||||
recipe = {{"mobs:bucket_milk", salt_item}},
|
||||
replacements = {{"mobs:bucket_milk", "bucket:bucket_empty"}}
|
||||
})
|
||||
|
||||
-- cheese wedge
|
||||
minetest.register_craftitem(":mobs:cheese", {
|
||||
description = S("Cheese"),
|
||||
inventory_image = "mobs_cheese.png",
|
||||
on_use = minetest.item_eat(4),
|
||||
groups = {food_cheese = 1, flammable = 2},
|
||||
groups = {food_cheese = 1, flammable = 2}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
@ -234,7 +238,7 @@ minetest.register_craft({
|
||||
output = "mobs:cheese",
|
||||
recipe = "mobs:bucket_milk",
|
||||
cooktime = 5,
|
||||
replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}}
|
||||
replacements = {{"mobs:bucket_milk", "bucket:bucket_empty"}}
|
||||
})
|
||||
|
||||
-- cheese block
|
||||
@ -242,24 +246,22 @@ minetest.register_node(":mobs:cheeseblock", {
|
||||
description = S("Cheese Block"),
|
||||
tiles = {"mobs_cheeseblock.png"},
|
||||
is_ground_content = false,
|
||||
groups = {crumbly = 3},
|
||||
groups = {oddly_breakable_by_hand = 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"},
|
||||
{"group:food_cheese", "group:food_cheese", "group:food_cheese"},
|
||||
{"group:food_cheese", "group:food_cheese", "group:food_cheese"},
|
||||
{"group:food_cheese", "group:food_cheese", "group:food_cheese"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mobs:cheese 9",
|
||||
recipe = {
|
||||
{"mobs:cheeseblock"},
|
||||
}
|
||||
recipe = {{"mobs:cheeseblock"}}
|
||||
})
|
||||
|
||||
-- Dung (from factory's fertilizer)
|
||||
@ -290,3 +292,43 @@ minetest.register_craft({
|
||||
recipe = "mobs:dung",
|
||||
burntime = "8",
|
||||
})
|
||||
|
||||
-- check for wooden bucket mod and add compatibility
|
||||
if minetest.get_modpath("wooden_bucket") then
|
||||
|
||||
minetest.register_craftitem(":mobs:wooden_bucket_milk", {
|
||||
description = S("Wooden Bucket of Milk"),
|
||||
inventory_image = "mobs_wooden_bucket_milk.png",
|
||||
stack_max = 1,
|
||||
on_use = minetest.item_eat(8, "wooden_bucket:bucket_wood_empty"),
|
||||
groups = {food_milk = 1, flammable = 3, drink = 1}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mobs:glass_milk 4",
|
||||
recipe = {
|
||||
{"vessels:drinking_glass", "vessels:drinking_glass"},
|
||||
{"vessels:drinking_glass", "vessels:drinking_glass"},
|
||||
{"mobs:wooden_bucket_milk", ""}
|
||||
},
|
||||
replacements = {{"mobs:wooden_bucket_milk", "wooden_bucket:bucket_wood_empty"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mobs:wooden_bucket_milk",
|
||||
recipe = {
|
||||
{"group:food_milk_glass", "group:food_milk_glass"},
|
||||
{"group:food_milk_glass", "group:food_milk_glass"},
|
||||
{"wooden_bucket:bucket_wood_empty", ""}
|
||||
},
|
||||
replacements = {
|
||||
{"group:food_milk_glass", "vessels:drinking_glass 4"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mobs:butter",
|
||||
recipe = {{"mobs:wooden_bucket_milk", salt_item}},
|
||||
replacements = {{"mobs:wooden_bucket_milk", "wooden_bucket:bucket_wood_empty"}}
|
||||
})
|
||||
end
|
||||
|
@ -1,4 +1,4 @@
|
||||
default
|
||||
mobs
|
||||
default?
|
||||
lucky_block?
|
||||
intllib?
|
||||
|
2
goat.lua
2
goat.lua
@ -55,7 +55,7 @@ mobs:register_mob("mobs_animal:goat", {
|
||||
punch_start = 120, punch_end = 150, -- attack
|
||||
},
|
||||
-- follows wheat
|
||||
follow = "farming:wheat",
|
||||
follow = {"farming:wheat"},
|
||||
view_range = 10,
|
||||
-- replace grass/wheat with air (eat)
|
||||
replace_rate = 50,
|
||||
|
30
init.lua
30
init.lua
@ -1,11 +1,29 @@
|
||||
|
||||
-- Load support for intllib.
|
||||
local path = minetest.get_modpath(minetest.get_current_modname()) .. "/"
|
||||
|
||||
local S = minetest.get_translator and minetest.get_translator("mobs_animal") or
|
||||
dofile(path .. "intllib.lua")
|
||||
-- Check for translation method
|
||||
local S
|
||||
if minetest.get_translator ~= nil then
|
||||
S = minetest.get_translator("mobs_animal") -- 5.x translation function
|
||||
else
|
||||
if minetest.get_modpath("intllib") then
|
||||
dofile(minetest.get_modpath("intllib") .. "/init.lua")
|
||||
if intllib.make_gettext_pair then
|
||||
gettext, ngettext = intllib.make_gettext_pair() -- new gettext method
|
||||
else
|
||||
gettext = intllib.Getter() -- old text file method
|
||||
end
|
||||
S = gettext
|
||||
else -- boilerplate function
|
||||
S = function(str, ...)
|
||||
local args = {...}
|
||||
return str:gsub("@%d+", function(match)
|
||||
return args[tonumber(match:sub(2))]
|
||||
end)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
mobs.intllib = S
|
||||
mobs.intllib_animal = S
|
||||
|
||||
|
||||
-- Check for custom mob spawn file
|
||||
@ -41,4 +59,4 @@ end
|
||||
dofile(path .. "lucky_block.lua")
|
||||
|
||||
|
||||
print (S("[MOD] Mobs Redo Animals loaded"))
|
||||
print ("[MOD] Mobs Redo Animals loaded")
|
||||
|
@ -1,3 +0,0 @@
|
||||
-- Support for the old multi-load method
|
||||
dofile(minetest.get_modpath("intllib").."/init.lua")
|
||||
|
19
kitten.lua
19
kitten.lua
@ -1,5 +1,5 @@
|
||||
|
||||
local S = mobs.intllib
|
||||
local S = mobs.intllib_animal
|
||||
local hairball = minetest.settings:get("mobs_hairball")
|
||||
|
||||
-- Kitten by Jordach / BFD
|
||||
@ -53,17 +53,9 @@ stepheight = 1.1,
|
||||
stoodup_end = 0,
|
||||
},
|
||||
follow = {
|
||||
"mobs_animal:rat",
|
||||
"ethereal:fish_raw",
|
||||
"mobs_fish:clownfish",
|
||||
"mobs_fish:tropical",
|
||||
"fishing:clownfish_raw",
|
||||
"fishing:bluewhite_raw",
|
||||
"fishing:exoticfish_raw",
|
||||
"fishing:carp_raw",
|
||||
"fishing:perch_raw",
|
||||
"fishing:catfish_raw",
|
||||
"xocean:fish_edible",
|
||||
"mobs_animal:rat", "group:food_fish_raw",
|
||||
"mobs_fish:tropical", "mobs_fish:clownfish", "xocean:fish_edible",
|
||||
"group:fishraw" -- NALC: Group from fishing mod
|
||||
},
|
||||
view_range = 8,
|
||||
|
||||
@ -165,7 +157,8 @@ minetest.register_craftitem(":mobs:hairball", {
|
||||
local newpos = {x = pos.x + dir.x, y = pos.y + dir.y + 1.5, z = pos.z + dir.z}
|
||||
local item = hairball_items[math.random(1, #hairball_items)]
|
||||
|
||||
if item ~= "" then
|
||||
if item ~= ""
|
||||
and minetest.registered_items[item] then
|
||||
minetest.add_item(newpos, {name = item})
|
||||
end
|
||||
|
||||
|
10
locale/README.md
Normal file
10
locale/README.md
Normal file
@ -0,0 +1,10 @@
|
||||
# Convert '.po' file to '.txt' file.
|
||||
|
||||
### COMMAND SAMPLE
|
||||
''''
|
||||
$ lua po2tr.lua "Your Name (Your Site) <Your Email>" "pt_BR.po"
|
||||
rm "pt_BR.tr" "mobs_animal.pt_BR.tr"
|
||||
$ cat mobs_animal.pt_BR.tr | less
|
||||
''''
|
||||
|
||||
Source Code: https://gitlab.com/4w/xtend/-/blob/master/xtend_default/tools/convert_po_file_to_tr_file/convert_po_file_to_tr_file.lua
|
46
locale/mobs_animal.es.tr
Normal file
46
locale/mobs_animal.es.tr
Normal file
@ -0,0 +1,46 @@
|
||||
# textdomain: mobs_animal
|
||||
Bee=Abeja
|
||||
Honey=Miel
|
||||
Beehive=Colmena
|
||||
Honey Block=Bloque de Mel
|
||||
Bunny=Conejo
|
||||
Raw Rabbit=Carne de Conejo
|
||||
Cooked Rabbit=Conejo Asado
|
||||
Rabbit Hide=Conejo oculto
|
||||
Chicken=Gallina
|
||||
Chicken Egg=Huevo de Gallina
|
||||
Fried Egg=Huevo Frito
|
||||
Raw Chicken=Gallina cruda
|
||||
Cooked Chicken=Gallina Asada
|
||||
Feather=Pluma
|
||||
Cow already milked!=Vaca ordeñada
|
||||
Cow=Vaca
|
||||
Bucket of Milk=Balde de leche
|
||||
Cheese=Queso
|
||||
Cheese Block=Bloque de queso
|
||||
[MOD] Mobs Redo 'Animals' loaded=[MOD] Mobs redo Animals cargado
|
||||
Kitten=Gato
|
||||
Penguin=Pinguino
|
||||
Rat=Raton
|
||||
Cooked Rat=Raton Asado
|
||||
Black=Negro
|
||||
Blue=Azul
|
||||
Brown=Marrom
|
||||
Cyan=Cian
|
||||
Dark Green=Verde Oscuro
|
||||
Dark Grey=Gris Oscuro
|
||||
Green=Verde
|
||||
Grey=Gris
|
||||
Magenta=Magenta
|
||||
Orange=Naranja
|
||||
Pink=Rosa
|
||||
Red=Rojo
|
||||
Violet=Violeta
|
||||
White=Blanco
|
||||
Yellow=Amarillo
|
||||
@1 Sheep=Oveja @1
|
||||
Raw Mutton=Carnero crudo
|
||||
Cooked Mutton=Carnero Assado
|
||||
Warthog=Javali
|
||||
Raw Porkchop=Costilla de Jabali crudo
|
||||
Cooked Porkchop=Costilla de Javali Assada
|
46
locale/mobs_animal.pt.tr
Normal file
46
locale/mobs_animal.pt.tr
Normal file
@ -0,0 +1,46 @@
|
||||
# textdomain: Lunovox Heavenfinder (https://libreplanet.org/wiki/User:Lunovox) <lunovox@disroot.org>
|
||||
Bee=Abelha
|
||||
Honey=Mel
|
||||
Beehive=Colméia
|
||||
Honey Block=Bloco de Mel
|
||||
Bunny=Coelho
|
||||
Raw Rabbit=Carne de Coelho (Cru)
|
||||
Cooked Rabbit=Coelho (Assado)
|
||||
Rabbit Hide=Pele de Coelho
|
||||
Chicken=Galinha
|
||||
Chicken Egg=Ovo de Galinha
|
||||
Fried Egg=Ovo Frito
|
||||
Raw Chicken=Carne de Galinha (Crua)
|
||||
Cooked Chicken=Galinha Assada
|
||||
Feather=Pluma
|
||||
Cow already milked!=Vaca já ordenhada!
|
||||
Cow=Vaca
|
||||
Bucket of Milk=Balde de leite
|
||||
Cheese=Queijo
|
||||
Cheese Block=Bloco de Queijo
|
||||
[MOD] Mobs Redo 'Animals' loaded=[MOBS_ANIMAL] Mod carregado completamente
|
||||
Kitten=Gato
|
||||
Penguin=Pinguim
|
||||
Rat=Rato
|
||||
Cooked Rat=Rato (Assado)
|
||||
Black=Preto
|
||||
Blue=Azul
|
||||
Brown=Marrom
|
||||
Cyan=Ciano
|
||||
Dark Green=Verde Escuro
|
||||
Dark Grey=Cinza Escuro
|
||||
Green=Verde
|
||||
Grey=Cinza
|
||||
Magenta=Rosa Magenta
|
||||
Orange=Laranja
|
||||
Pink=Rosa
|
||||
Red=Vermelho
|
||||
Violet=Violeta
|
||||
White=Branco
|
||||
Yellow=Amarelo
|
||||
@1 Sheep=Ovelha @1
|
||||
Raw Mutton=Carneiro (Cru)
|
||||
Cooked Mutton=Carneiro (Assado)
|
||||
Warthog=Javali
|
||||
Raw Porkchop=Costeleta de Javali (Crua)
|
||||
Cooked Porkchop=Costeleta de Javali Assada
|
46
locale/mobs_animal.pt_BR.tr
Normal file
46
locale/mobs_animal.pt_BR.tr
Normal file
@ -0,0 +1,46 @@
|
||||
# textdomain: Lunovox Heavenfinder (https://libreplanet.org/wiki/User:Lunovox) <lunovox@disroot.org>
|
||||
Bee=Abelha
|
||||
Honey=Mel
|
||||
Beehive=Colméia
|
||||
Honey Block=Bloco de Mel
|
||||
Bunny=Coelho
|
||||
Raw Rabbit=Carne de Coelho (Cru)
|
||||
Cooked Rabbit=Coelho (Assado)
|
||||
Rabbit Hide=Pele de Coelho
|
||||
Chicken=Galinha
|
||||
Chicken Egg=Ovo de Galinha
|
||||
Fried Egg=Ovo Frito
|
||||
Raw Chicken=Carne de Galinha (Crua)
|
||||
Cooked Chicken=Galinha Assada
|
||||
Feather=Pluma
|
||||
Cow already milked!=Vaca já ordenhada!
|
||||
Cow=Vaca
|
||||
Bucket of Milk=Balde de leite
|
||||
Cheese=Queijo
|
||||
Cheese Block=Bloco de Queijo
|
||||
[MOD] Mobs Redo 'Animals' loaded=[MOBS_ANIMAL] Mod carregado completamente
|
||||
Kitten=Gato
|
||||
Penguin=Pinguim
|
||||
Rat=Rato
|
||||
Cooked Rat=Rato (Assado)
|
||||
Black=Preto
|
||||
Blue=Azul
|
||||
Brown=Marrom
|
||||
Cyan=Ciano
|
||||
Dark Green=Verde Escuro
|
||||
Dark Grey=Cinza Escuro
|
||||
Green=Verde
|
||||
Grey=Cinza
|
||||
Magenta=Rosa Magenta
|
||||
Orange=Laranja
|
||||
Pink=Rosa
|
||||
Red=Vermelho
|
||||
Violet=Violeta
|
||||
White=Branco
|
||||
Yellow=Amarelo
|
||||
@1 Sheep=Ovelha @1
|
||||
Raw Mutton=Carneiro (Cru)
|
||||
Cooked Mutton=Carneiro (Assado)
|
||||
Warthog=Javali
|
||||
Raw Porkchop=Costeleta de Javali (Crua)
|
||||
Cooked Porkchop=Costeleta de Javali Assada
|
116
locale/po2tr.lua
Normal file
116
locale/po2tr.lua
Normal file
@ -0,0 +1,116 @@
|
||||
#!/usr/bin/env luajit
|
||||
|
||||
-- Convert regular Gettext PO files to Minetest-specific TR files. If there is
|
||||
-- already a TR file with the same name of the PO file except the file suffix
|
||||
-- bneing .tr (or .TR) instead of .po (or .PO) then THIS FILE WILL BE
|
||||
-- OVERWRITTEN WITHOUT INFORMATION OR A WAY TO RECOVER THE PREVIOUS FILE!
|
||||
--
|
||||
--
|
||||
-- ▄██▄
|
||||
-- ▀███
|
||||
-- █
|
||||
-- ▄▄▄▄▄ █
|
||||
-- ▀▄ ▀▄ █ BACKUP
|
||||
-- ▄▀▀▀▄ █▄▄▄▄█▄▄ ▄▀▀▀▄ █
|
||||
-- █ ▄ █ █ ▄ █ █
|
||||
-- ▀▄ ▄▀ ▀▄ ▄▀ █
|
||||
-- █▀▀▀ ▀▀▀ █ █
|
||||
-- █ █ █ ALL
|
||||
-- ▄▀▄▄▀▄ █ ▄█▀█▀█▀█▀█▀█▄ █ █
|
||||
-- █▒▒▒▒█ █ █████████████▄ █ █
|
||||
-- █▒▒▒▒█ █ ██████████████▄ █ █
|
||||
-- █▒▒▒▒█ █ ██████████████▄ █ █
|
||||
-- █▒▒▒▒█ █ ██████████████ █ █
|
||||
-- █▒▒▒▒█ █ ██████████████▀ █ █ THE
|
||||
-- █▒▒▒▒█ ██ ██████████████ █ █
|
||||
-- ▀████▀ ██▀█ █████████████▀ █▄█
|
||||
-- ██ ██ ▀█ █▄█▄█▄█▄█▄█▀ ▄█▀
|
||||
-- ██ ██ ▀█ ▄▀▓█
|
||||
-- ██ ██ ▀█▀▄▄▄▄▄▄▄▄▄▀▀▓▓▓█
|
||||
-- ████ █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█
|
||||
-- ███ █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█ THINGS
|
||||
-- ██ █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█
|
||||
-- ██ █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█
|
||||
-- ██ ▐█▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█
|
||||
-- ██ ▐█▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█
|
||||
-- ██ ▐█▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▌ !!!
|
||||
-- ██ ▐█▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▌
|
||||
-- ██ ▐█▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▌
|
||||
-- ██ ▐█▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▌
|
||||
--
|
||||
--
|
||||
-- The syntax of TR files according to the introducing forum post is:
|
||||
--
|
||||
-- # textdomain: namespace
|
||||
-- original 1 = translation 1
|
||||
-- original 2 = translation 2
|
||||
-- original 3 = tralslation 3
|
||||
-- original N = translation N
|
||||
--
|
||||
-- Where namespace should be the name of the mod. Following strings have to be
|
||||
-- escaped using @.
|
||||
--
|
||||
-- String | Escape
|
||||
-- -------+--------
|
||||
-- `@` |`@@`
|
||||
-- `=` |`@=`
|
||||
-- `\n` |`@\n`
|
||||
--
|
||||
-- See https://forum.minetest.net/viewtopic.php?t=18349 for details.
|
||||
|
||||
|
||||
-- Preparation
|
||||
if arg[1] == nil or arg[2] == nil then
|
||||
print('Provide the namesspace as first parameter')
|
||||
print('Provide the path to the source PO file as second parameter')
|
||||
print('Example: '..arg[0]..' mymod path/to/my/source.po')
|
||||
return
|
||||
end
|
||||
local SEP = package.path:match('(%p)%?%.') or '/' -- wonky but hey ... :)
|
||||
|
||||
|
||||
-- Assign parameters to local variables
|
||||
local namespace = arg[1]
|
||||
local po_file = arg[2]
|
||||
local tr_file = arg[2]:gsub('po$', 'tr'):gsub('PO$', 'TR')
|
||||
|
||||
|
||||
-- Get the translations through crude plaintext file parsing
|
||||
local file_contents = {}
|
||||
local translations = {}
|
||||
|
||||
local po_file_handle = io.open(po_file, 'rb')
|
||||
if po_file_handle == nil then print('No base file found') return end
|
||||
|
||||
for line in po_file_handle:lines() do
|
||||
if line:match('^msgid') or line:match('^msgstr') then
|
||||
table.insert(file_contents, line)
|
||||
end
|
||||
end
|
||||
|
||||
local escape_string = function (s)
|
||||
s = s:gsub('@([^%d])', '@@%1') -- All @ not followed by a number become @@
|
||||
s = s:gsub('([^@]@)$', '%1@') -- An @ at the end of the string become @@
|
||||
s = s:gsub('=', '@=') -- All = become @=
|
||||
return s
|
||||
end
|
||||
|
||||
for number,line_content in pairs(file_contents) do
|
||||
if line_content:match('^msgid') then
|
||||
local o = line_content:gsub('^msgid "(.+)"$', '%1')
|
||||
local t = file_contents[number + 1]:gsub('^msgstr "(.+)"$', '%1')
|
||||
if o ~= 'msgid = ""' and t ~= 'msgstr ""' then
|
||||
table.insert(translations, escape_string(o)..'='..escape_string(t))
|
||||
end
|
||||
end
|
||||
end
|
||||
print(number)
|
||||
po_file_handle:close()
|
||||
|
||||
|
||||
-- Write translation to file
|
||||
local tr_file_handle = io.open(tr_file, 'w+')
|
||||
if tr_file_handle == nil then print('Could not open target file') return end
|
||||
tr_file_handle:write('# textdomain: '..namespace, "\n")
|
||||
for _,line in pairs(translations) do tr_file_handle:write(line, "\n") end
|
||||
tr_file_handle:close()
|
199
locale/pt.po
Normal file
199
locale/pt.po
Normal file
@ -0,0 +1,199 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-07-31 11:28+0200\n"
|
||||
"PO-Revision-Date: 2021-06-20 18:51-0300\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"Last-Translator: Lunovox Heavenfinder <lunovox@disroot.org>\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Language: pt_BR\n"
|
||||
|
||||
#: bee.lua
|
||||
msgid "Bee"
|
||||
msgstr "Abelha"
|
||||
|
||||
#: bee.lua
|
||||
msgid "Honey"
|
||||
msgstr "Mel"
|
||||
|
||||
#: bee.lua
|
||||
msgid "Beehive"
|
||||
msgstr "Colméia"
|
||||
|
||||
#: bee.lua
|
||||
msgid "Honey Block"
|
||||
msgstr "Bloco de Mel"
|
||||
|
||||
#: bunny.lua
|
||||
msgid "Bunny"
|
||||
msgstr "Coelho"
|
||||
|
||||
#: bunny.lua
|
||||
msgid "Raw Rabbit"
|
||||
msgstr "Carne de Coelho (Cru)"
|
||||
|
||||
#: bunny.lua
|
||||
msgid "Cooked Rabbit"
|
||||
msgstr "Coelho (Assado)"
|
||||
|
||||
#: bunny.lua
|
||||
msgid "Rabbit Hide"
|
||||
msgstr "Pele de Coelho"
|
||||
|
||||
#: chicken.lua
|
||||
msgid "Chicken"
|
||||
msgstr "Galinha"
|
||||
|
||||
#: chicken.lua
|
||||
msgid "Chicken Egg"
|
||||
msgstr "Ovo de Galinha"
|
||||
|
||||
#: chicken.lua
|
||||
msgid "Fried Egg"
|
||||
msgstr "Ovo Frito"
|
||||
|
||||
#: chicken.lua
|
||||
msgid "Raw Chicken"
|
||||
msgstr "Carne de Galinha (Crua)"
|
||||
|
||||
#: chicken.lua
|
||||
msgid "Cooked Chicken"
|
||||
msgstr "Galinha Assada"
|
||||
|
||||
#: chicken.lua
|
||||
msgid "Feather"
|
||||
msgstr "Pluma"
|
||||
|
||||
#: cow.lua
|
||||
msgid "Cow already milked!"
|
||||
msgstr "Vaca já ordenhada!"
|
||||
|
||||
#: cow.lua
|
||||
msgid "Cow"
|
||||
msgstr "Vaca"
|
||||
|
||||
#: cow.lua
|
||||
msgid "Bucket of Milk"
|
||||
msgstr "Balde de leite"
|
||||
|
||||
#: cow.lua
|
||||
msgid "Cheese"
|
||||
msgstr "Queijo"
|
||||
|
||||
#: cow.lua
|
||||
msgid "Cheese Block"
|
||||
msgstr "Bloco de Queijo"
|
||||
|
||||
#: init.lua
|
||||
msgid "[MOD] Mobs Redo 'Animals' loaded"
|
||||
msgstr "[MOBS_ANIMAL] Mod carregado completamente"
|
||||
|
||||
#: kitten.lua
|
||||
msgid "Kitten"
|
||||
msgstr "Gato"
|
||||
|
||||
#: penguin.lua
|
||||
msgid "Penguin"
|
||||
msgstr "Pinguim"
|
||||
|
||||
#: rat.lua
|
||||
msgid "Rat"
|
||||
msgstr "Rato"
|
||||
|
||||
#: rat.lua
|
||||
msgid "Cooked Rat"
|
||||
msgstr "Rato (Assado)"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Black"
|
||||
msgstr "Preto"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Blue"
|
||||
msgstr "Azul"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Brown"
|
||||
msgstr "Marrom"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Cyan"
|
||||
msgstr "Ciano"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Dark Green"
|
||||
msgstr "Verde Escuro"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Dark Grey"
|
||||
msgstr "Cinza Escuro"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Green"
|
||||
msgstr "Verde"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Grey"
|
||||
msgstr "Cinza"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Magenta"
|
||||
msgstr "Rosa Magenta"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Orange"
|
||||
msgstr "Laranja"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Pink"
|
||||
msgstr "Rosa"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Red"
|
||||
msgstr "Vermelho"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Violet"
|
||||
msgstr "Violeta"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "White"
|
||||
msgstr "Branco"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Yellow"
|
||||
msgstr "Amarelo"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "@1 Sheep"
|
||||
msgstr "Ovelha @1 "
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Raw Mutton"
|
||||
msgstr "Carneiro (Cru)"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Cooked Mutton"
|
||||
msgstr "Carneiro (Assado)"
|
||||
|
||||
#: warthog.lua
|
||||
msgid "Warthog"
|
||||
msgstr "Javali"
|
||||
|
||||
#: warthog.lua
|
||||
msgid "Raw Porkchop"
|
||||
msgstr "Costeleta de Javali (Crua)"
|
||||
|
||||
#: warthog.lua
|
||||
msgid "Cooked Porkchop"
|
||||
msgstr "Costeleta de Javali Assada"
|
46
locale/pt.txt
Normal file
46
locale/pt.txt
Normal file
@ -0,0 +1,46 @@
|
||||
# textdomain: Lunovox Heavenfinder (https://libreplanet.org/wiki/User:Lunovox) <lunovox@disroot.org>
|
||||
Bee=Abelha
|
||||
Honey=Mel
|
||||
Beehive=Colméia
|
||||
Honey Block=Bloco de Mel
|
||||
Bunny=Coelho
|
||||
Raw Rabbit=Carne de Coelho (Cru)
|
||||
Cooked Rabbit=Coelho (Assado)
|
||||
Rabbit Hide=Pele de Coelho
|
||||
Chicken=Galinha
|
||||
Chicken Egg=Ovo de Galinha
|
||||
Fried Egg=Ovo Frito
|
||||
Raw Chicken=Carne de Galinha (Crua)
|
||||
Cooked Chicken=Galinha Assada
|
||||
Feather=Pluma
|
||||
Cow already milked!=Vaca já ordenhada!
|
||||
Cow=Vaca
|
||||
Bucket of Milk=Balde de leite
|
||||
Cheese=Queijo
|
||||
Cheese Block=Bloco de Queijo
|
||||
[MOD] Mobs Redo 'Animals' loaded=[MOBS_ANIMAL] Mod carregado completamente
|
||||
Kitten=Gato
|
||||
Penguin=Pinguim
|
||||
Rat=Rato
|
||||
Cooked Rat=Rato (Assado)
|
||||
Black=Preto
|
||||
Blue=Azul
|
||||
Brown=Marrom
|
||||
Cyan=Ciano
|
||||
Dark Green=Verde Escuro
|
||||
Dark Grey=Cinza Escuro
|
||||
Green=Verde
|
||||
Grey=Cinza
|
||||
Magenta=Rosa Magenta
|
||||
Orange=Laranja
|
||||
Pink=Rosa
|
||||
Red=Vermelho
|
||||
Violet=Violeta
|
||||
White=Branco
|
||||
Yellow=Amarelo
|
||||
@1 Sheep=Ovelha @1
|
||||
Raw Mutton=Carneiro (Cru)
|
||||
Cooked Mutton=Carneiro (Assado)
|
||||
Warthog=Javali
|
||||
Raw Porkchop=Costeleta de Javali (Crua)
|
||||
Cooked Porkchop=Costeleta de Javali Assada
|
199
locale/pt_BR.po
Normal file
199
locale/pt_BR.po
Normal file
@ -0,0 +1,199 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-07-31 11:28+0200\n"
|
||||
"PO-Revision-Date: 2021-06-20 18:51-0300\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"Last-Translator: Lunovox Heavenfinder <lunovox@disroot.org>\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Language: pt_BR\n"
|
||||
|
||||
#: bee.lua
|
||||
msgid "Bee"
|
||||
msgstr "Abelha"
|
||||
|
||||
#: bee.lua
|
||||
msgid "Honey"
|
||||
msgstr "Mel"
|
||||
|
||||
#: bee.lua
|
||||
msgid "Beehive"
|
||||
msgstr "Colméia"
|
||||
|
||||
#: bee.lua
|
||||
msgid "Honey Block"
|
||||
msgstr "Bloco de Mel"
|
||||
|
||||
#: bunny.lua
|
||||
msgid "Bunny"
|
||||
msgstr "Coelho"
|
||||
|
||||
#: bunny.lua
|
||||
msgid "Raw Rabbit"
|
||||
msgstr "Carne de Coelho (Cru)"
|
||||
|
||||
#: bunny.lua
|
||||
msgid "Cooked Rabbit"
|
||||
msgstr "Coelho (Assado)"
|
||||
|
||||
#: bunny.lua
|
||||
msgid "Rabbit Hide"
|
||||
msgstr "Pele de Coelho"
|
||||
|
||||
#: chicken.lua
|
||||
msgid "Chicken"
|
||||
msgstr "Galinha"
|
||||
|
||||
#: chicken.lua
|
||||
msgid "Chicken Egg"
|
||||
msgstr "Ovo de Galinha"
|
||||
|
||||
#: chicken.lua
|
||||
msgid "Fried Egg"
|
||||
msgstr "Ovo Frito"
|
||||
|
||||
#: chicken.lua
|
||||
msgid "Raw Chicken"
|
||||
msgstr "Carne de Galinha (Crua)"
|
||||
|
||||
#: chicken.lua
|
||||
msgid "Cooked Chicken"
|
||||
msgstr "Galinha Assada"
|
||||
|
||||
#: chicken.lua
|
||||
msgid "Feather"
|
||||
msgstr "Pluma"
|
||||
|
||||
#: cow.lua
|
||||
msgid "Cow already milked!"
|
||||
msgstr "Vaca já ordenhada!"
|
||||
|
||||
#: cow.lua
|
||||
msgid "Cow"
|
||||
msgstr "Vaca"
|
||||
|
||||
#: cow.lua
|
||||
msgid "Bucket of Milk"
|
||||
msgstr "Balde de leite"
|
||||
|
||||
#: cow.lua
|
||||
msgid "Cheese"
|
||||
msgstr "Queijo"
|
||||
|
||||
#: cow.lua
|
||||
msgid "Cheese Block"
|
||||
msgstr "Bloco de Queijo"
|
||||
|
||||
#: init.lua
|
||||
msgid "[MOD] Mobs Redo 'Animals' loaded"
|
||||
msgstr "[MOBS_ANIMAL] Mod carregado completamente"
|
||||
|
||||
#: kitten.lua
|
||||
msgid "Kitten"
|
||||
msgstr "Gato"
|
||||
|
||||
#: penguin.lua
|
||||
msgid "Penguin"
|
||||
msgstr "Pinguim"
|
||||
|
||||
#: rat.lua
|
||||
msgid "Rat"
|
||||
msgstr "Rato"
|
||||
|
||||
#: rat.lua
|
||||
msgid "Cooked Rat"
|
||||
msgstr "Rato (Assado)"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Black"
|
||||
msgstr "Preto"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Blue"
|
||||
msgstr "Azul"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Brown"
|
||||
msgstr "Marrom"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Cyan"
|
||||
msgstr "Ciano"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Dark Green"
|
||||
msgstr "Verde Escuro"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Dark Grey"
|
||||
msgstr "Cinza Escuro"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Green"
|
||||
msgstr "Verde"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Grey"
|
||||
msgstr "Cinza"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Magenta"
|
||||
msgstr "Rosa Magenta"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Orange"
|
||||
msgstr "Laranja"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Pink"
|
||||
msgstr "Rosa"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Red"
|
||||
msgstr "Vermelho"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Violet"
|
||||
msgstr "Violeta"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "White"
|
||||
msgstr "Branco"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Yellow"
|
||||
msgstr "Amarelo"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "@1 Sheep"
|
||||
msgstr "Ovelha @1 "
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Raw Mutton"
|
||||
msgstr "Carneiro (Cru)"
|
||||
|
||||
#: sheep.lua
|
||||
msgid "Cooked Mutton"
|
||||
msgstr "Carneiro (Assado)"
|
||||
|
||||
#: warthog.lua
|
||||
msgid "Warthog"
|
||||
msgstr "Javali"
|
||||
|
||||
#: warthog.lua
|
||||
msgid "Raw Porkchop"
|
||||
msgstr "Costeleta de Javali (Crua)"
|
||||
|
||||
#: warthog.lua
|
||||
msgid "Cooked Porkchop"
|
||||
msgstr "Costeleta de Javali Assada"
|
46
locale/pt_BR.txt
Normal file
46
locale/pt_BR.txt
Normal file
@ -0,0 +1,46 @@
|
||||
# textdomain: Lunovox Heavenfinder (https://libreplanet.org/wiki/User:Lunovox) <lunovox@disroot.org>
|
||||
Bee=Abelha
|
||||
Honey=Mel
|
||||
Beehive=Colméia
|
||||
Honey Block=Bloco de Mel
|
||||
Bunny=Coelho
|
||||
Raw Rabbit=Carne de Coelho (Cru)
|
||||
Cooked Rabbit=Coelho (Assado)
|
||||
Rabbit Hide=Pele de Coelho
|
||||
Chicken=Galinha
|
||||
Chicken Egg=Ovo de Galinha
|
||||
Fried Egg=Ovo Frito
|
||||
Raw Chicken=Carne de Galinha (Crua)
|
||||
Cooked Chicken=Galinha Assada
|
||||
Feather=Pluma
|
||||
Cow already milked!=Vaca já ordenhada!
|
||||
Cow=Vaca
|
||||
Bucket of Milk=Balde de leite
|
||||
Cheese=Queijo
|
||||
Cheese Block=Bloco de Queijo
|
||||
[MOD] Mobs Redo 'Animals' loaded=[MOBS_ANIMAL] Mod carregado completamente
|
||||
Kitten=Gato
|
||||
Penguin=Pinguim
|
||||
Rat=Rato
|
||||
Cooked Rat=Rato (Assado)
|
||||
Black=Preto
|
||||
Blue=Azul
|
||||
Brown=Marrom
|
||||
Cyan=Ciano
|
||||
Dark Green=Verde Escuro
|
||||
Dark Grey=Cinza Escuro
|
||||
Green=Verde
|
||||
Grey=Cinza
|
||||
Magenta=Rosa Magenta
|
||||
Orange=Laranja
|
||||
Pink=Rosa
|
||||
Red=Vermelho
|
||||
Violet=Violeta
|
||||
White=Branco
|
||||
Yellow=Amarelo
|
||||
@1 Sheep=Ovelha @1
|
||||
Raw Mutton=Carneiro (Cru)
|
||||
Cooked Mutton=Carneiro (Assado)
|
||||
Warthog=Javali
|
||||
Raw Porkchop=Costeleta de Javali (Crua)
|
||||
Cooked Porkchop=Costeleta de Javali Assada
|
@ -12,7 +12,7 @@ if minetest.get_modpath("lucky_block") then
|
||||
{"spw", "mobs:chicken", 5},
|
||||
{"dro", {"mobs:egg"}, 5},
|
||||
{"spw", "mobs:cow", 5},
|
||||
{"dro", {"mobs:bucket_milk"}, 8},
|
||||
{"dro", {"mobs:bucket_milk", "bucket:bucket_water"}, 8},
|
||||
{"spw", "mobs:kitten", 2},
|
||||
{"exp"},
|
||||
{"dro", {"mobs:hairball"}, 3},
|
||||
|
3
mod.conf
3
mod.conf
@ -1 +1,4 @@
|
||||
name = mobs_animal
|
||||
depends = mobs
|
||||
optional_depends = default, lucky_block, intllib
|
||||
description = Adds farm animals.
|
||||
|
@ -1,6 +1,5 @@
|
||||
|
||||
local S = mobs.intllib
|
||||
|
||||
local S = mobs.intllib_animal
|
||||
|
||||
-- Panda by AspireMint (CC BY-SA 3.0)
|
||||
|
||||
|
17
penguin.lua
17
penguin.lua
@ -1,6 +1,5 @@
|
||||
|
||||
local S = mobs.intllib
|
||||
|
||||
local S = mobs.intllib_animal
|
||||
|
||||
-- Penguin by D00Med
|
||||
|
||||
@ -46,17 +45,9 @@ stepheight = 0.6,
|
||||
fly_in = {"default:water_source", "default:water_flowing"},
|
||||
floats = 0,
|
||||
follow = {
|
||||
"ethereal:fish_raw",
|
||||
"mobs_fish:clownfish_set", "mobs_fish:clownfish",
|
||||
"mobs_fish:tropical_set", "mobs_fish:tropical",
|
||||
"fishing:fish_raw",
|
||||
"fishing:clownfish_raw",
|
||||
"fishing:bluewhite_raw",
|
||||
"fishing:exoticfish_raw",
|
||||
"fishing:carp_raw",
|
||||
"fishing:perch_raw",
|
||||
"fishing:catfish_raw",
|
||||
"xocean:fish_edible",
|
||||
"group:food_fish_raw", "mobs_fish:clownfish", "mobs_fish:tropical",
|
||||
"mobs_fish:clownfish_set", "mobs_fish:tropical_set", "xocean:fish_edible",
|
||||
"group:fishraw" -- Edit from NALC: Group from fishing mod
|
||||
},
|
||||
view_range = 5,
|
||||
|
||||
|
7
rat.lua
7
rat.lua
@ -1,6 +1,5 @@
|
||||
|
||||
local S = mobs.intllib
|
||||
|
||||
local S = mobs.intllib_animal
|
||||
|
||||
-- Rat by PilzAdam (B3D model by sirrobzeroone)
|
||||
|
||||
@ -92,12 +91,12 @@ minetest.register_craftitem(":mobs:rat_cooked", {
|
||||
description = S("Cooked Rat"),
|
||||
inventory_image = "mobs_cooked_rat.png",
|
||||
on_use = minetest.item_eat(3),
|
||||
groups = {food_rat = 1, flammable = 2},
|
||||
groups = {food_rat = 1, flammable = 2}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "mobs:rat_cooked",
|
||||
recipe = "mobs_animal:rat",
|
||||
cooktime = 5,
|
||||
cooktime = 5
|
||||
})
|
||||
|
BIN
screenshot.png
BIN
screenshot.png
Binary file not shown.
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 229 KiB |
28
sheep.lua
28
sheep.lua
@ -1,5 +1,5 @@
|
||||
|
||||
local S = mobs.intllib
|
||||
local S = mobs.intllib_animal
|
||||
|
||||
local all_colours = {
|
||||
{"black", S("Black"), "#000000b0"},
|
||||
@ -16,7 +16,7 @@ local all_colours = {
|
||||
{"red", S("Red"), "#ff0000a0"},
|
||||
{"violet", S("Violet"), "#2000c970"},
|
||||
{"white", S("White"), "#abababc0"},
|
||||
{"yellow", S("Yellow"), "#e3ff0070"},
|
||||
{"yellow", S("Yellow"), "#e3ff0070"}
|
||||
}
|
||||
|
||||
|
||||
@ -36,13 +36,13 @@ for _, col in ipairs(all_colours) do
|
||||
visual = "mesh",
|
||||
mesh = "mobs_sheep.b3d",
|
||||
textures = {
|
||||
{"mobs_sheep_base.png^(mobs_sheep_wool.png^[colorize:" .. col[3] .. ")"},
|
||||
{"mobs_sheep_base.png^(mobs_sheep_wool.png^[colorize:" .. col[3] .. ")"}
|
||||
},
|
||||
gotten_texture = {"mobs_sheep_shaved.png"},
|
||||
gotten_mesh = "mobs_sheep_shaved.b3d",
|
||||
makes_footstep_sound = true,
|
||||
sounds = {
|
||||
random = "mobs_sheep",
|
||||
random = "mobs_sheep"
|
||||
},
|
||||
walk_velocity = 1,
|
||||
run_velocity = 2,
|
||||
@ -52,7 +52,7 @@ for _, col in ipairs(all_colours) do
|
||||
pushable = true,
|
||||
drops = {
|
||||
{name = "mobs:mutton_raw", chance = 1, min = 1, max = 2},
|
||||
{name = "wool:"..col[1], chance = 1, min = 1, max = 1},
|
||||
{name = "wool:"..col[1], chance = 1, min = 1, max = 1}
|
||||
},
|
||||
water_damage = 0,
|
||||
lava_damage = 5,
|
||||
@ -64,6 +64,12 @@ for _, col in ipairs(all_colours) do
|
||||
stand_end = 80,
|
||||
walk_start = 81,
|
||||
walk_end = 100,
|
||||
|
||||
die_start = 1, -- we dont have a specific death animation so we will
|
||||
die_end = 2, -- re-use 2 standing frames at a speed of 1 fps and
|
||||
die_speed = 1, -- have mob rotate when dying.
|
||||
die_loop = false,
|
||||
die_rotate = true
|
||||
},
|
||||
follow = {
|
||||
"farming:wheat", "default:grass_1", "farming:barley",
|
||||
@ -97,14 +103,14 @@ for _, col in ipairs(all_colours) do
|
||||
--are we feeding?
|
||||
if mobs:feed_tame(self, clicker, 8, true, true) then
|
||||
|
||||
--if fed 7x grass or wheat then sheep regrows wool
|
||||
--if fed 7 times then sheep regrows wool
|
||||
if self.food and self.food > 6 then
|
||||
|
||||
self.gotten = false
|
||||
|
||||
self.object:set_properties({
|
||||
textures = {"mobs_sheep_base.png^(mobs_sheep_wool.png^[colorize:" .. col[3] .. ")"},
|
||||
mesh = "mobs_sheep.b3d",
|
||||
mesh = "mobs_sheep.b3d"
|
||||
})
|
||||
end
|
||||
|
||||
@ -217,7 +223,7 @@ mobs:spawn({
|
||||
chance = 8000, -- 15000
|
||||
min_height = 0,
|
||||
max_height = 200,
|
||||
day_toggle = true,
|
||||
day_toggle = true
|
||||
})
|
||||
end
|
||||
|
||||
@ -229,7 +235,7 @@ minetest.register_craftitem(":mobs:mutton_raw", {
|
||||
description = S("Raw Mutton"),
|
||||
inventory_image = "mobs_mutton_raw.png",
|
||||
on_use = minetest.item_eat(2),
|
||||
groups = {food_meat_raw = 1, food_mutton_raw = 1, flammable = 2},
|
||||
groups = {food_meat_raw = 1, food_mutton_raw = 1, flammable = 2}
|
||||
})
|
||||
|
||||
-- cooked mutton
|
||||
@ -237,12 +243,12 @@ minetest.register_craftitem(":mobs:mutton_cooked", {
|
||||
description = S("Cooked Mutton"),
|
||||
inventory_image = "mobs_mutton_cooked.png",
|
||||
on_use = minetest.item_eat(6),
|
||||
groups = {food_meat = 1, food_mutton = 1, flammable = 2},
|
||||
groups = {food_meat = 1, food_mutton = 1, flammable = 2}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "mobs:mutton_cooked",
|
||||
recipe = "mobs:mutton_raw",
|
||||
cooktime = 5,
|
||||
cooktime = 5
|
||||
})
|
||||
|
BIN
textures/mobs_chicken_white.png
Normal file
BIN
textures/mobs_chicken_white.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 103 B |
BIN
textures/mobs_kitten_black.png
Executable file
BIN
textures/mobs_kitten_black.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 166 B |
BIN
textures/mobs_wooden_bucket_milk.png
Normal file
BIN
textures/mobs_wooden_bucket_milk.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 195 B |
25
warthog.lua
25
warthog.lua
@ -1,6 +1,5 @@
|
||||
|
||||
local S = mobs.intllib
|
||||
|
||||
local S = mobs.intllib_animal
|
||||
|
||||
-- Warthog originally by KrupnoPavel, B3D model by sirrobzeroone
|
||||
|
||||
@ -21,12 +20,12 @@ mobs:register_mob("mobs_animal:pumba", {
|
||||
visual = "mesh",
|
||||
mesh = "mobs_pumba.b3d",
|
||||
textures = {
|
||||
{"mobs_pumba.png"},
|
||||
{"mobs_pumba.png"}
|
||||
},
|
||||
makes_footstep_sound = true,
|
||||
sounds = {
|
||||
random = "mobs_pig",
|
||||
attack = "mobs_pig_angry",
|
||||
attack = "mobs_pig_angry"
|
||||
},
|
||||
walk_velocity = 2,
|
||||
run_velocity = 3,
|
||||
@ -37,7 +36,7 @@ mobs:register_mob("mobs_animal:pumba", {
|
||||
view_range = 10,
|
||||
drops = {
|
||||
{name = "mobs:pork_raw", chance = 1, min = 1, max = 3},
|
||||
{name = "maptools:silver_coin", chance = 10, min = 0, max = 1,},
|
||||
{name = "maptools:silver_coin", chance = 10, min = 0, max = 1}
|
||||
},
|
||||
water_damage = 0,
|
||||
lava_damage = 5,
|
||||
@ -51,13 +50,19 @@ mobs:register_mob("mobs_animal:pumba", {
|
||||
walk_end = 100,
|
||||
punch_start = 70,
|
||||
punch_end = 100,
|
||||
|
||||
die_start = 1, -- we dont have a specific death animation so we will
|
||||
die_end = 2, -- re-use 2 standing frames at a speed of 1 fps and
|
||||
die_speed = 1, -- have mob rotate when dying.
|
||||
die_loop = false,
|
||||
die_rotate = true
|
||||
},
|
||||
on_rightclick = function(self, clicker)
|
||||
|
||||
if mobs:feed_tame(self, clicker, 8, true, true) then return end
|
||||
if mobs:protect(self, clicker) then return end
|
||||
if mobs:capture_mob(self, clicker, 0, 5, 50, false, nil) then return end
|
||||
end,
|
||||
end
|
||||
})
|
||||
|
||||
local spawn_on = {"default:dirt_with_grass"}
|
||||
@ -83,7 +88,7 @@ mobs:spawn({
|
||||
chance = 8000, -- 15000
|
||||
min_height = 0,
|
||||
max_height = 200,
|
||||
day_toggle = true,
|
||||
day_toggle = true
|
||||
})
|
||||
end
|
||||
|
||||
@ -98,7 +103,7 @@ minetest.register_craftitem(":mobs:pork_raw", {
|
||||
description = S("Raw Porkchop"),
|
||||
inventory_image = "mobs_pork_raw.png",
|
||||
on_use = minetest.item_eat(4),
|
||||
groups = {food_meat_raw = 1, food_pork_raw = 1, flammable = 2},
|
||||
groups = {food_meat_raw = 1, food_pork_raw = 1, flammable = 2}
|
||||
})
|
||||
|
||||
-- cooked porkchop
|
||||
@ -106,12 +111,12 @@ minetest.register_craftitem(":mobs:pork_cooked", {
|
||||
description = S("Cooked Porkchop"),
|
||||
inventory_image = "mobs_pork_cooked.png",
|
||||
on_use = minetest.item_eat(8),
|
||||
groups = {food_meat = 1, food_pork = 1, flammable = 2},
|
||||
groups = {food_meat = 1, food_pork = 1, flammable = 2}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "mobs:pork_cooked",
|
||||
recipe = "mobs:pork_raw",
|
||||
cooktime = 5,
|
||||
cooktime = 5
|
||||
})
|
||||
|
Reference in New Issue
Block a user