Config = {
defaultLang = 'en',
useWebhook = true,
webhook = {
-- Example: https://discord.com/api/webhooks/14016157582420521/ghTBSTcACQmkdddjrjcozqf9T3SKBEgoRngHHxRPOLr
webHookLink = '',
-- Example: https://cdn.discordapp.com/attachments/14016157582420521/12045554394/logo2.png?ex=65d36eb7&is=65c0f9b7&hm=30579c3cd934849e845b&
webHookLogo = '',
-- Example: https://cdn.discordapp.com/attachments/14016157582420521/12045554394/logo2.png?ex=65d36eb7&is=65c0f9b7&hm=30579c3cd934849e845b&
webHookIconUrl = '',
},
bliphash = 1220803671, -- https://github.com/femga/rdr3_discoveries/tree/master/useful_info_from_rpfs/textures/blips
onlyOwnerCanManage = false, -- If true, only the owner can maintain the chicken coop.
joblock = false, -- If true, only characters with an authorised job can maintain the chicken coop.
authorizedJob = {
'farmer',
'breeder',
},
maxCoopByChar = 2, -- The maximum number of chicken coops per character.
spawnAnimals = 7, -- Sets the number of animal props that spawn when approaching the chicken coop.
maxEgg = 20, -- The maximum number of eggs a chick coop can hold. Do not exceed the item limit in the database.
maxAdultAnimalsInCoop = 20, -- Maximum number of adult animals in a chick coop.
animCleanDuration = 15000, -- Duration of cleaning animation in miliseconds.
animFeedDuration = 18000,
foodAccepted = { -- List the items in the database that are used to feed the animals.
'apple',
'corn',
},
cycle = {
adultAge = 1, -- Age from wich animal is an Adult
oldAge = 5, -- Age from which an animal can die of old age
addEggWithoutRoosterInCoop = 80, -- 80% chance to add one egg by chicken without rooster adult in coop
addEggWithRoosterInCoop = 30, -- 30% chance to add one egg by chicken with rooster adult in coop
addChick = 20, -- 20% chance to born a chick
probabilityOfDying = 5, -- 5% chance that an animal will die of old age if it has passed the oldAge
increaseAgeByCycle = 0.15 -- 0.15 year by cycle
},
slaughter = { -- Defines the items obtained when slaughtering animals
rooster = {
['bird'] = {
label = 'Chicken Meat',
quantity = 1
},
['chickenf'] = {
label = 'Chicken Feather',
quantity = 1
},
--[[
['databaseName'] = {
label = 'Chicken Feather',
quantity = 1
},
]]--
},
chicken = {
['bird'] = {
label = 'Rooster Meat',
quantity = 1
},
['chickenf'] = {
label = 'Rooster Feather',
quantity = 1
},
}
}
}