Dead by Daylight Wiki

A documentação para este módulo pode ser criada na página Módulo:Datatable/Archive/Perks/doc

local p = {}
local frame = mw.getCurrentFrame()
local str = require("Module:Strings")

--This include overrides several Strings functions
require("Module:Datatable/Archive")

p.perks = {
	["Streetwise"] = {
		{
			units = {5}, 
			values = {10, 12, 15},
			patch  = "2.3.0",
			desc =
        		"Long nights out taught you to do a lot with what you have got." ..
        		list(b("Increases") .. " the Efficiency of your " .. iconLink(ils.items) .. " by #pl(1).") ..
        		"#pn extends its effect to all other " .. iconLink(ils.survivors) .. " within " .. bclr(2, "8 metres") .. " of your location and lingers for " .. bclr(6, "15 seconds") .. dot .. nlp ..
        		quote("You are doing it wrong! Let me show you how it is done.", "Nea Karlsson")
		},
		{
			units = {5}, 
			values = {10, 12, 15},
			patch  = "1.1.0",
			desc = 
				"Long nights out taught you to do a lot with what you have got." ..
				list(b("Increases") .. " the Efficiency of your " .. b("Items") .. " by #pl(1).") ..
				"#pn extends its effect to all other Survivors within " .. bclr(2, "8 metres") .. " of your location."
		}
	}
}

return p