diff --git a/dbdbuilder2.js b/dbdbuilder2.js index 2df368c..99ad5ee 100644 --- a/dbdbuilder2.js +++ b/dbdbuilder2.js @@ -2,8 +2,8 @@ /*Code for DbD Character Buider Author: "Vykaris" Current Version: 0.99 - Game Version: 6.2.0 - Date of current version: 30.08.2022*/ + Game Version: 6.6.0 + Date of current version: 16.04.2023*/ //var currentCharacter; //declare lists for all game elements //characters @@ -42,6 +42,8 @@ var artistAddons = []; var onryoAddons = []; var dredgeAddons= []; var mastermindAddons = []; +var knightAddons = []; +var merchantAddons = []; //item addon lists var flashlightAddons = []; @@ -422,6 +424,36 @@ function selectRebecca() { //ADD survivors.push(selectRebecca()); +function selectToscano() { + var toscano = new selectSurvivor(); + toscano.name = "Vittorio Toscano"; + toscano.portrait = "S34_charPreview_portrait.png"; + return toscano; +} + +//ADD +survivors.push(selectToscano()); + +function selectThalita() { + var thalita = new selectSurvivor(); + thalita.name = "Thalita Lyra"; + thalita.portrait = "S35_charPreview_portrait.png"; + return thalita; +} + +//ADD +survivors.push(selectThalita()); + +function selectRenato() { + var renato = new selectSurvivor(); + renato.name = "Renato Lyra"; + renato.portrait = "S36_charPreview_portrait.png"; + return renato; +} + +//ADD +survivors.push(selectRenato()); + //ADD ANY NEW SURVIVORS ABOVE HERE AND THEN PUSH TO LIST -- P L O X //end base survivor section //begin loadout item section @@ -597,7 +629,7 @@ function rainbowMap() { survivorItems.push(rainbowMap()); //Chinese Firecracker function chineseFirecracker() { - var sItem = survItems("Chinese Firecracker", ["Distracts the Killer.", "Can blind and deafen the killer temporarily."], "event", "Explosive distraction device.", "IconItems_chineseFirecracker.png", "Chinese Firecracker", ["extra", "extra"], 1, "explosive"); + var sItem = survItems("Chinese Firecracker", ["Distracts the Killer.", "Can blind and deafen the killer temporarily."], "event", "Explosive distraction device.", "iconItems_chineseFirecracker.png", "Chinese Firecracker", ["extra", "extra"], 1, "explosive"); sItem.isRedacted = false; return sItem; } @@ -605,7 +637,7 @@ function chineseFirecracker() { survivorItems.push(chineseFirecracker()); function willOWisp() { - var sItem = survItems("Will O' Wisp", ["item text", "item text"], "event", "item text", "IconItems_willOWisp.png", "Flashlight", ["extra", "extra"], 8, "seconds"); + var sItem = survItems("Will O' Wisp", ["item text", "item text"], "event", "item text", "iconItems_flashlightHalloween.png", "Flashlight", ["extra", "extra"], 8, "seconds"); sItem.isRedacted = false; return sItem; } @@ -614,7 +646,7 @@ function willOWisp() { survivorItems.push(willOWisp()); function lunchbox() { - var sItem = survItems("All Hallows' Eve Lunchbox", ["item text", "item text"], "event", "item text", "IconItems_allHallowsEveLunchbox.png", "First Aid Kit", ["extra", "extra"], 16, "charges"); + var sItem = survItems("All Hallows' Eve Lunchbox", ["item text", "item text"], "event", "item text", "iconItems_medkitHalloween.png", "First Aid Kit", ["extra", "extra"], 16, "charges"); sItem.isRedacted = false; return sItem; } @@ -623,7 +655,7 @@ function lunchbox() { survivorItems.push(lunchbox()); function winterCracker() { - var sItem = survItems("Winter Party Starter", ["item text", "item text"], "event", "item text", "IconItems_winterPartyStarter.png", "Explosive distraction device.", ["extra", "extra"], 1, "explosive"); + var sItem = survItems("Winter Party Starter", ["item text", "item text"], "event", "item text", "iconItems_winterEventFirecracker.png", "Explosive distraction device.", ["extra", "extra"], 1, "explosive"); sItem.isRedacted = false; return sItem; } @@ -632,7 +664,7 @@ function winterCracker() { survivorItems.push(winterCracker()); function partyPopper() { - var sItem = survItems("Third Year Party Starter", ["item text", "item text"], "event", "item text", "iconItems_partyPopper1.png", "Explosive distraction device.", ["extra", "extra"], 1, "explosive"); + var sItem = survItems("Third Year Party Starter (2019)", ["item text", "item text"], "event", "item text", "iconItems_partyPopper.png", "Explosive distraction device.", ["extra", "extra"], 1, "explosive"); sItem.isRedacted = false; return sItem; } @@ -640,35 +672,60 @@ function partyPopper() { //ADD survivorItems.push(partyPopper()); -function fourthYearFlashlight() { - var sItem = survItems("Fourth Year Flashlight", ["item text", "item text"], "event", "item text", "IconItems_anniversaryFlashlight.png", "Flashlight", ["extra", "extra"], 8, "seconds"); +function anniversaryFlashlight2020() { + var sItem = survItems("Anniversary Flashlight (2020)", ["item text", "item text"], "event", "item text", "iconItems_flashlight_anniversary2020.png", "Flashlight", ["extra", "extra"], 8, "seconds"); sItem.isRedacted = false; return sItem; } //ADD -survivorItems.push(fourthYearFlashlight()); +survivorItems.push(anniversaryFlashlight2020()); -function fourthYearMedKit() { - var sItem = survItems("Anniversary Med-Kit", ["item text", "item text"], "event", "item text", "IconItems_anniversaryMed-Kit.png", "First Aid Kit", ["extra", "extra"], 24, "charges"); +function anniversaryFlashlight2022() { + var sItem = survItems("Masquerade Flashlight (2022)", ["item text", "item text"], "event", "item text", "iconItems_flashlight_anniversary2022.png", "Flashlight", ["extra", "extra"], 8, "seconds"); sItem.isRedacted = false; return sItem; } //ADD -survivorItems.push(fourthYearMedKit()); +survivorItems.push(anniversaryFlashlight2020()); -function anniversaryToolBox() { - var sItem = survItems("Anniversary Toolbox", ["item text", "item text"], "event", "item text", "IconItems_anniversaryToolbox.png", "Toolbox", ["extra", "extra"], 32, "charges") +function anniversaryMedKit2020() { + var sItem = survItems("Anniversary Med-Kit (2020)", ["item text", "item text"], "event", "item text", "iconItems_medkit_anniversary2020.png", "First Aid Kit", ["extra", "extra"], 24, "charges"); + sItem.isRedacted = false; + return sItem; +} + +//ADD +survivorItems.push(anniversaryMedKit2020()); + +function anniversaryMedKit2022() { + var sItem = survItems("Masquerade Med-Kit (2022)", ["item text", "item text"], "event", "item text", "iconItems_medkit_anniversary2022.png", "First Aid Kit", ["extra", "extra"], 24, "charges"); + sItem.isRedacted = false; + return sItem; +} + +//ADD +survivorItems.push(anniversaryMedKit2022()); + +function anniversaryToolBox2021() { + var sItem = survItems("Anniversary Toolbox (2021)", ["item text", "item text"], "event", "item text", "iconItems_toolbox_anniversary2021.png", "Toolbox", ["extra", "extra"], 32, "charges") sItem.isRedacted = false; return sItem; } - //ADD -survivorItems.push(anniversaryToolBox()); +survivorItems.push(anniversaryToolBox2021()); + +function anniversaryToolBox2022() { + var sItem = survItems("Masquerade Toolbox (2022)", ["item text", "item text"], "event", "item text", "iconItems_toolbox_anniversary2022.png", "Toolbox", ["extra", "extra"], 32, "charges") + sItem.isRedacted = false; + return sItem; +} +//ADD +survivorItems.push(anniversaryToolBox2022()); function festiveToolbox() { - var sItem = survItems("Festive Toolbox", ["item text", "item text"], "event", "item text", "IconItems_festiveToolbox.png", "Toolbox", ["extra", "extra"], 32, "charges") + var sItem = survItems("Festive Toolbox (2019)", ["item text", "item text"], "event", "item text", "iconItems_toolboxLunar.png", "Toolbox", ["extra", "extra"], 32, "charges") sItem.isRedacted = false; return sItem; } @@ -797,7 +854,7 @@ function antiHemoragicSyringe() { medkitAddons.push(antiHemoragicSyringe()); function refinedSerum() { - var addon = selectAddOn("Refined Serum", ["A refined version of the Putrid Serum that's mostly safe for human consumption. Mostly.", "Creates a Blight trail behind the Survivor.", "Moderately increases Movement speed for 16 seconds."], "event", "second use", "IconAddon_refinedSerum.png", "First Aid Kit", ["extra", "extra", "extra"]); + var addon = selectAddOn("Refined Serum", ["A refined version of the Putrid Serum that's mostly safe for human consumption. Mostly.", "Creates a Blight trail behind the Survivor.", "Moderately increases Movement speed for 16 seconds."], "event", "second use", "iconAddon_blightedSyringe.png", "First Aid Kit", ["extra", "extra", "extra"]); return addon; } @@ -1001,12 +1058,12 @@ function oddBulb() { flashlightAddons.push(oddBulb()); function brokenBulb() { - var addon = selectAddOn("Broken Bulb", ["A damaged bulb that causes a spooky flickering effect.", "Causes the Flashlight to flicker."], "event", "Tremendously increased effect and less battery life.", "IconAddon_brokenBulb.png", "Flashlight", ["extra", "extra"]); + var addon = selectAddOn("Broken Bulb", ["A damaged bulb that causes a spooky flickering effect.", "Causes the Flashlight to flicker."], "event", "Tremendously increased effect and less battery life.", "iconAddon_brokenFlashlightBulb.png", "Flashlight", ["extra", "extra"]); return addon; } //ADD -flashlightAddons.push(oddBulb()); +flashlightAddons.push(brokenBulb()); //ADD ADDITIONAL ITEMS OF THIS TYPE ABOVE THIS LINE //key Add-ons @@ -5872,8 +5929,338 @@ mastermindAddons.push(iridescentUroborosVial()); //end Mastermind Add-Ons +//start Knight Add-Ons + +function tatteredTabard() { + var addon = selectAddOn("Tattered Tabard", ["addon text"], "Common", "addon text", "iconAddon_TatteredTabard.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(tatteredTabard()); + +function pillagedMead() { + var addon = selectAddOn("Pillaged Mead", ["addon text"], "Common", "addon text", "iconAddon_PillagedMead.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(pillagedMead()); + +function mapoftheRealm() { + var addon = selectAddOn("Map of the Realm", ["addon text"], "Common", "addon text", "iconAddon_MapoftheRealms.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(mapoftheRealm()); + +function grittyLump() { + var addon = selectAddOn("Gritty Lump", ["addon text"], "Common", "addon text", "iconAddon_GrittyLump.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(grittyLump()); + +function treatedBlade() { + var addon = selectAddOn("Treated Blade", ["addon text"], "Uncommon", "addon text", "iconAddon_TreatedBlade.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(treatedBlade()); + +function driedHorsemeat() { + var addon = selectAddOn("Dried Horsemeat", ["addon text"], "Uncommon", "addon text", "iconAddon_DriedHorsemeat.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(driedHorsemeat()); + +function coldSteelManacles() { + var addon = selectAddOn("Cold Steel Manacles", ["addon text"], "Uncommon", "addon text", "iconAddon_ColdSteelManacles.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(coldSteelManacles()); + +function callToArms() { + var addon = selectAddOn("Call To Arms", ["addon text"], "Uncommon", "addon text", "iconAddon_CallToArms.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(callToArms()); + +function battleaxeHead() { + var addon = selectAddOn("Battle Axe Head", ["addon text"], "Uncommon", "addon text", "iconAddon_BattleaxeHead.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(battleaxeHead()); + +function townWatchsTorch() { + var addon = selectAddOn("Town Watch's Torch", ["addon text"], "Rare", "addon text", "iconAddon_TownWatctTorch.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(townWatchsTorch()); + +function ironworkerTongs() { + var addon = selectAddOn("Ironworker's Tongs", ["addon text"], "Rare", "addon text", "iconAddon_IronworkerTongs.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(ironworkerTongs()); + +function grimIronMask() { + var addon = selectAddOn("Grim Iron Mask", ["addon text"], "Rare", "addon text", "iconAddon_GrimIronMask.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(grimIronMask()); + +function chainmailFragment() { + var addon = selectAddOn("Chain Mail Fragment", ["addon text"], "Rare", "addon text", "iconAddon_ChainmailFragment.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(chainmailFragment()); + +function brokenHilt() { + var addon = selectAddOn("Broken Hilt", ["addon text"], "Rare", "addon text", "iconAddon_BrokenHilt.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(brokenHilt()); + +function lightweightGreaves() { + var addon = selectAddOn("Lightweight Greaves", ["addon text"], "Very Rare", "addon text", "iconAddon_LightweightGreaves.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(lightweightGreaves()); + +function healingPoultice() { + var addon = selectAddOn("Healing Poultice", ["addon text"], "Very Rare", "addon text", "iconAddon_HealingPoultice.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(healingPoultice()); + +function flintandSteel() { + var addon = selectAddOn("Flint and Steel", ["addon text"], "Very Rare", "addon text", "iconAddon_FlintandSteel.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(flintandSteel()); + +function blacksmithHammer() { + var addon = selectAddOn("Blacksmith's Hammer", ["addon text"], "Very Rare", "addon text", "iconAddon_BlacksmithHammer.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(blacksmithHammer()); + +function knightContract() { + var addon = selectAddOn("Knight's Contract", ["addon text"], "Ultra Rare", "addon text", "iconAddon_KnightContract.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(knightContract()); + +function iridescentCompanyBanner() { + var addon = selectAddOn("Iridescent Company Banner", ["addon text"], "Ultra Rare", "addon text", "iconAddon_IridescentCompanyBanner.png", "Knight", ["extra"]); + return addon; +} + +//ADD +knightAddons.push(iridescentCompanyBanner()); + + +//end Knight Add-Ons + +//start Merchant Add-Ons + +function ultrasonicTrapSpeaker() { + var addon = selectAddOn("Ultrasonic Trap Speaker", ["addon text"], "Common", "addon text", "iconAddon_UltrasonicTrapSpeaker.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(ultrasonicTrapSpeaker()); + +function highPowerFloodlight() { + var addon = selectAddOn("High-Power Floodlight", ["addon text"], "Common", "addon text", "iconAddon_HighPowerFloodlight.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(highPowerFloodlight()); + +function highCurrentUpgrade() { + var addon = selectAddOn("High-Current Upgrade", ["addon text"], "Common", "addon text", "iconAddon_HighCurrentUpgrade.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(highCurrentUpgrade()); + +function adiValente1() { + var addon = selectAddOn("Adi Valente Issue 1", ["addon text"], "Common", "addon text", "iconAddon_AdiValente1.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(adiValente1()); + +function stereoRemoteMic() { + var addon = selectAddOn("Stereo Remote Mic", ["addon text"], "Uncommon", "addon text", "iconAddon_StereoRemoteMic.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(stereoRemoteMic()); + +function shotgunSpeakers() { + var addon = selectAddOn("Shotgun Speakers", ["addon text"], "Uncommon", "addon text", "iconAddon_ShotgunSpeakers.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(shotgunSpeakers()); + +function supercharge() { + var addon = selectAddOn("Supercharge", ["addon text"], "Uncommon", "addon text", "iconAddon_Overcharge.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(supercharge()); + +function lowPowerMode() { + var addon = selectAddOn("Low-Power Mode", ["addon text"], "Uncommon", "addon text", "iconAddon_LowPowerMode.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(lowPowerMode()); + +function adaptiveLighting() { + var addon = selectAddOn("Adaptive Lighting", ["addon text"], "Uncommon", "addon text", "iconAddon_AdaptiveLighting.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(adaptiveLighting()); + +function vitalTargetingProcessor() { + var addon = selectAddOn("Vital Targeting Processor", ["addon text"], "Rare", "addon text", "iconAddon_VitalTargetingProcessor.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(vitalTargetingProcessor()); + +function powderedGlass() { + var addon = selectAddOn("Powdered Glass", ["addon text"], "Rare", "addon text", "iconAddon_PowderedGlass.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(powderedGlass()); + +function looseScrew() { + var addon = selectAddOn("Loose Screw", ["addon text"], "Rare", "addon text", "iconAddon_LooseScrew.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(looseScrew()); + +function infaredUpgrade() { + var addon = selectAddOn("Infrared Upgrade", ["addon text"], "Rare", "addon text", "iconAddon_InfaredUpgrade.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(infaredUpgrade()); + +function brownNoiseGenerator() { + var addon = selectAddOn("Brown Noise Generator", ["addon text"], "Rare", "addon text", "iconAddon_BrownNoiseGenerator.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(brownNoiseGenerator()); + +function randomizedStrobes() { + var addon = selectAddOn("Randomised Strobes", ["addon text"], "Very Rare", "addon text", "iconAddon_RandomizedStrobes.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(randomizedStrobes()); + +function geographicalReadout() { + var addon = selectAddOn("Geographical Readout", ["addon text"], "Very Rare", "addon text", "iconAddon_GeographicalReadout.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(geographicalReadout()); + +function prototypeRotor() { + var addon = selectAddOn("Prototype Rotor", ["addon text"], "Very Rare", "addon text", "iconAddon_PrototypeRotor.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(prototypeRotor()); + +function advancedMovementPrediction() { + var addon = selectAddOn("Advanced Movement Prediction", ["addon text"], "Very Rare", "addon text", "iconAddon_AdvancedMovementPrediction.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(advancedMovementPrediction()); + +function expiredBatteries() { + var addon = selectAddOn("Expired Batteries", ["addon text"], "Ultra Rare", "addon text", "iconAddon_ExpiredBatteries.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(expiredBatteries()); + +function iridescentUnpublishedManuscript() { + var addon = selectAddOn("Iridescent Unpublished Manuscript", ["addon text"], "Ultra Rare", "addon text", "iconAddon_IridescentUnpublishedManuscript.png", "Merchant", ["extra"]); + return addon; +} + +//ADD +merchantAddons.push(iridescentUnpublishedManuscript()); + + +//end Merchant Add-Ons + function blightSerum() { - var addon = selectAddOn("Blight Serum", ["addon text"], "event", "addon text", "IconAddon_blightSerum.png", "All", ["extra"]); + var addon = selectAddOn("Blight Serum", ["addon text"], "event", "addon text", "iconAddon_blightedSerum.png", "All", ["extra"]); return addon; } @@ -5905,7 +6292,8 @@ artistAddons.push(blightSerum()); onryoAddons.push(blightSerum()); dredgeAddons.push(blightSerum()); mastermindAddons.push(blightSerum()); - +knightAddons.push(blightSerum()); +merchantAddons.push(blightSerum()); //end specific add on Section //base perk Section (native to lets us know if it is teachable) @@ -6826,6 +7214,78 @@ function hyperfocus() { //ADD survivorPerks.push(hyperfocus()); +function potentialEnergy() { + var perk = selectPerk("Potential Energy", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_PotentialEnergy.png", "survivor", "Vittorio Toscano"); + return perk; +} + +//ADD +survivorPerks.push(potentialEnergy()); + +function fogwise() { + var perk = selectPerk("Fogwise", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_Fogwise.png", "survivor", "Vittorio Toscano"); + return perk; +} + +//ADD +survivorPerks.push(fogwise()); + +function vittoriosGambit() { + var perk = selectPerk("Quick Gambit", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_VittoriosGambit.png", "survivor", "Vittorio Toscano"); + return perk; +} + +//ADD +survivorPerks.push(vittoriosGambit()); + +function friendlyCompetition() { + var perk = selectPerk("Friendly Competition", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_FriendlyCompetition.png", "survivor", "Thalita Lyra"); + return perk; +} + +//ADD +survivorPerks.push(friendlyCompetition()); + +function teamworkPowerOfTwo() { + var perk = selectPerk("Teamwork: Power of Two", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_TeamworkPowerOfTwo.png", "survivor", "Thalita Lyra"); + return perk; +} + +//ADD +survivorPerks.push(teamworkPowerOfTwo()); + +function cutLoose() { + var perk = selectPerk("Cut Loose", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_CutLoose.png", "survivor", "Thalita Lyra"); + return perk; +} + +//ADD +survivorPerks.push(cutLoose()); + +function bloodRush() { + var perk = selectPerk("Blood Rush", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_BloodRush.png", "survivor", "Renato Lyra"); + return perk; +} + +//ADD +survivorPerks.push(bloodRush()); + +function teamworkCollectiveStealth() { + var perk = selectPerk("Teamwork: Collective Stealth", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_TeamworkCollectiveStealth.png", "survivor", "Renato Lyra"); + return perk; +} + +//ADD +survivorPerks.push(teamworkCollectiveStealth()); + +function backgroundPlayer() { + var perk = selectPerk("Background Player", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_BackgroundPlayer.png", "survivor", "Renato Lyra"); + return perk; +} + +//ADD +survivorPerks.push(backgroundPlayer()); + //end specific survivor perk section //begin specific killer perk section @@ -7613,6 +8073,54 @@ function terminus() { //ADD killerPerks.push(terminus()); +function nowhereToHide() { + var perk = selectPerk("Nowhere to Hide", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_NowhereToHide.png", "killer", "Knight"); + return perk; +} + +//ADD +killerPerks.push(nowhereToHide()); + +function hexFaceTheDarkness() { + var perk = selectPerk("Hex: Face the Darkness", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_HexFaceTheDarkness.png", "killer", "Knight"); + return perk; +} + +//ADD +killerPerks.push(hexFaceTheDarkness()); + +function hubris() { + var perk = selectPerk("Hubris", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_Hubris.png", "killer", "Knight"); + return perk; +} + +//ADD +killerPerks.push(hubris()); + +function thwack() { + var perk = selectPerk("THWACK!", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_Thwack.png", "killer", "Merchant"); + return perk; +} + +//ADD +killerPerks.push(thwack()); + +function leverage() { + var perk = selectPerk("Leverage", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_Leverage.png", "killer", "Merchant"); + return perk; +} + +//ADD +killerPerks.push(leverage()); + +function gameAfoot() { + var perk = selectPerk("Game Afoot", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_GameAfoot.png", "killer", "Merchant"); + return perk; +} + +//ADD +killerPerks.push(gameAfoot()); + function shatteredHope() { var perk = selectPerk("Shattered Hope", ["perk text"], ["extra"], "Very Rare", "perk text", "iconPerks_BoonDestroyer.png", "killer", "All"); return perk; @@ -8404,7 +8912,7 @@ killerOfferings.push(jigsawPiece()); survivorOfferings.push(jigsawPiece()); function redEnvelope() { - var offering = selectOffering("Red Envelope", "x", "event", "x", "IconFavors_redEnvelope.png", "All"); + var offering = selectOffering("Red Envelope", "x", "event", "x", "iconFavors_redMoneyPacket.png", "All"); offering.isRedacted = true; return offering; } @@ -8506,7 +9014,7 @@ killerOfferings.push(marysLetter()); survivorOfferings.push(marysLetter()); function gruesomeGateau() { - var offering = selectOffering("Gruesome Gateau", "off text", "event", "off text", "iconFavors_gruesomeGateau.png", "all"); + var offering = selectOffering("Gruesome Gateau (2019)", "off text", "event", "off text", "iconFavors_gruesomeGateau.png", "all"); return offering; } @@ -8515,7 +9023,7 @@ killerOfferings.push(gruesomeGateau()); survivorOfferings.push(gruesomeGateau()); function ghastlyGateau() { - var offering = selectOffering("Ghastly Gateau", "off text", "event", "off text", "IconFavors_ghastlyGateau.png", "all"); + var offering = selectOffering("Ghastly Gateau (2020)", "off text", "event", "off text", "iconFavors_4thAnniversary.png", "all"); return offering; } @@ -8579,7 +9087,7 @@ killerOfferings.push(rPDBadge()); survivorOfferings.push(rPDBadge()); function crowsEye() { - var offering = selectOffering("Crow's Eye", "Offering Text", "rare", "Offering Text", "iconsFavors_CrowsEye.png", "All"); + var offering = selectOffering("Crow's Eye", "Offering Text", "rare", "Offering Text", "IconFavors_CrowsEye.png", "All"); offering.isRedacted = false; return offering; } @@ -8589,7 +9097,7 @@ killerOfferings.push(crowsEye()); survivorOfferings.push(crowsEye()); function anniversary5th() { - var offering = selectOffering("Sacrificial Cake", "Offering Text", "event", "", "IconFavors_sacrificialCake.png", "All"); + var offering = selectOffering("Sacrificial Cake (2021)", "Offering Text", "event", "", "iconFavors_5thAnniversary.png", "All"); offering.isRedacted = false; return offering; } @@ -8598,6 +9106,16 @@ function anniversary5th() { killerOfferings.push(anniversary5th()); survivorOfferings.push(anniversary5th()); +function anniversary6th() { + var offering = selectOffering("Frightful Flan (2022)", "Offering Text", "event", "", "iconFavors_6thAnniversary.png", "All"); + offering.isRedacted = false; + return offering; +} + +//ADD x 2 +killerOfferings.push(anniversary6th()); +survivorOfferings.push(anniversary6th()); + function pustulaPetals() { var offering = selectOffering("Pustula Petals", "Offering Text", "event", "Offering Text", "IconFavors_pustulaPetals.png", "All"); offering.isRedacted = false; @@ -8952,6 +9470,28 @@ function selectMastermind() { //ADD killers.push(selectMastermind()); +function selectKnight() { + var knight = selectKiller(); + knight.name = "The Knight"; + knight.itemOrAbility = selectAddOn("The knight", ["Guardia Compagnia"], "Common", "Guardia Compagnia", "iconPowers_Executioner.png", "killer", ["extra"]); + knight.addonLink = knightAddons; + knight.portrait = "K30_charPreview_portrait.png"; + return knight; +} +//ADD +killers.push(selectKnight()); + +function selectMerchant() { + var merchant = selectKiller(); + merchant.name = "The Skull Merchant"; + merchant.itemOrAbility = selectAddOn("The Skull Merchant", ["Eyes in the Sky"], "Common", "Eyes in the Sky", "iconPowers_drones.png", "killer", ["extra"]); + merchant.addonLink = merchantAddons; + merchant.portrait = "K31_charPreview_portrait.png"; + return merchant; +} +//ADD +killers.push(selectMerchant()); + //end basic killer section - add new killers above here, plox //END DATA SECTION @@ -9108,6 +9648,7 @@ function assignGraphic(targetItem) { case "map": case "key": case "chinese firecracker": + case "All Hallows' Eve Lunchbox": case "addon": switch (targetItem.rarity.toLowerCase()) { case "common": @@ -9121,7 +9662,7 @@ function assignGraphic(targetItem) { case "ultra rare": return filePath + "BoxUltraRare.png"; case "event": - return filePath; + return filePath + "BoxEvent.png"; } break; //sense killer for killer power box @@ -9142,7 +9683,7 @@ function assignGraphic(targetItem) { case "ultra rare": return filePath + "OffUltraRare.png"; case "event": - return filePath; + return filePath + "OffEvent.png"; } break; //sense perks @@ -9159,7 +9700,7 @@ function assignGraphic(targetItem) { case "ultra rare": return filePath + "PerkUltraRare.png"; case "event": - return filePath; + return filePath + "PerkEvent.png"; } break; //by default we return an error @@ -9176,7 +9717,7 @@ function assignGraphic(targetItem) { case "ultra rare": return filePath + "BoxUltraRare.png"; case "event": - return filePath; + return filePath + "BoxEvent.png"; } } return -1; @@ -9269,7 +9810,9 @@ function getColor(rarityStr) { return "#a20435"; case "very rare": return "#502167"; - default: + case "event": + return "#b65207"; + default: return "#312d2e"; } } @@ -11909,4 +12452,4 @@ var kRedList = generateList(killerPerks); if(typeof toolboxAddons[i].type != 'undefined') ; else console.log(toolboxAddons[i].name); }*/ -//testMain(); +//testMain(); \ No newline at end of file diff --git a/graphics/BoxEvent.png b/graphics/BoxEvent.png new file mode 100644 index 0000000..0f65acd Binary files /dev/null and b/graphics/BoxEvent.png differ diff --git a/graphics/IconAddon_blightSerum.png b/graphics/IconAddon_blightSerum.png deleted file mode 100644 index 273d3ae..0000000 Binary files a/graphics/IconAddon_blightSerum.png and /dev/null differ diff --git a/graphics/IconAddon_refinedSerum.png b/graphics/IconAddon_refinedSerum.png deleted file mode 100644 index 850bd6c..0000000 Binary files a/graphics/IconAddon_refinedSerum.png and /dev/null differ diff --git a/graphics/IconFavors_ghastlyGateau.png b/graphics/IconFavors_ghastlyGateau.png deleted file mode 100644 index bdeffa3..0000000 Binary files a/graphics/IconFavors_ghastlyGateau.png and /dev/null differ diff --git a/graphics/IconFavors_pustulaPetals.png b/graphics/IconFavors_pustulaPetals.png index 6539e8f..004208e 100644 Binary files a/graphics/IconFavors_pustulaPetals.png and b/graphics/IconFavors_pustulaPetals.png differ diff --git a/graphics/IconFavors_redEnvelope.png b/graphics/IconFavors_redEnvelope.png deleted file mode 100644 index 145fc2c..0000000 Binary files a/graphics/IconFavors_redEnvelope.png and /dev/null differ diff --git a/graphics/IconFavors_sacrificialCake.png b/graphics/IconFavors_sacrificialCake.png deleted file mode 100644 index 49e5824..0000000 Binary files a/graphics/IconFavors_sacrificialCake.png and /dev/null differ diff --git a/graphics/IconItems_allHallowsEveLunchbox.png b/graphics/IconItems_allHallowsEveLunchbox.png deleted file mode 100644 index fe65350..0000000 Binary files a/graphics/IconItems_allHallowsEveLunchbox.png and /dev/null differ diff --git a/graphics/IconItems_anniversaryFlashlight.png b/graphics/IconItems_anniversaryFlashlight.png deleted file mode 100644 index ea4567a..0000000 Binary files a/graphics/IconItems_anniversaryFlashlight.png and /dev/null differ diff --git a/graphics/IconItems_anniversaryMed-Kit.png b/graphics/IconItems_anniversaryMed-Kit.png deleted file mode 100644 index 5af0350..0000000 Binary files a/graphics/IconItems_anniversaryMed-Kit.png and /dev/null differ diff --git a/graphics/IconItems_anniversaryToolbox.png b/graphics/IconItems_anniversaryToolbox.png deleted file mode 100644 index 00edcf9..0000000 Binary files a/graphics/IconItems_anniversaryToolbox.png and /dev/null differ diff --git a/graphics/IconItems_chineseFirecracker.png b/graphics/IconItems_chineseFirecracker.png index f7b01fa..ac295c4 100644 Binary files a/graphics/IconItems_chineseFirecracker.png and b/graphics/IconItems_chineseFirecracker.png differ diff --git a/graphics/IconItems_festiveToolbox.png b/graphics/IconItems_festiveToolbox.png deleted file mode 100644 index 9ce6349..0000000 Binary files a/graphics/IconItems_festiveToolbox.png and /dev/null differ diff --git a/graphics/IconItems_willOWisp.png b/graphics/IconItems_willOWisp.png deleted file mode 100644 index 7f29272..0000000 Binary files a/graphics/IconItems_willOWisp.png and /dev/null differ diff --git a/graphics/IconItems_winterPartyStarter.png b/graphics/IconItems_winterPartyStarter.png deleted file mode 100644 index 64d4dc6..0000000 Binary files a/graphics/IconItems_winterPartyStarter.png and /dev/null differ diff --git a/graphics/K30_charPreview_portrait.png b/graphics/K30_charPreview_portrait.png new file mode 100644 index 0000000..da9058a Binary files /dev/null and b/graphics/K30_charPreview_portrait.png differ diff --git a/graphics/K31_charPreview_portrait.png b/graphics/K31_charPreview_portrait.png new file mode 100644 index 0000000..811ad5b Binary files /dev/null and b/graphics/K31_charPreview_portrait.png differ diff --git a/graphics/OffEvent.png b/graphics/OffEvent.png new file mode 100644 index 0000000..0bcd070 Binary files /dev/null and b/graphics/OffEvent.png differ diff --git a/graphics/PerkEvent.png b/graphics/PerkEvent.png new file mode 100644 index 0000000..c6ad4d6 Binary files /dev/null and b/graphics/PerkEvent.png differ diff --git a/graphics/S34_charPreview_portrait.png b/graphics/S34_charPreview_portrait.png new file mode 100644 index 0000000..7abd51f Binary files /dev/null and b/graphics/S34_charPreview_portrait.png differ diff --git a/graphics/S35_charPreview_portrait.png b/graphics/S35_charPreview_portrait.png new file mode 100644 index 0000000..cde8ed9 Binary files /dev/null and b/graphics/S35_charPreview_portrait.png differ diff --git a/graphics/S36_charPreview_portrait.png b/graphics/S36_charPreview_portrait.png new file mode 100644 index 0000000..5b1a72e Binary files /dev/null and b/graphics/S36_charPreview_portrait.png differ diff --git a/graphics/iconAddon_AdaptiveLighting.png b/graphics/iconAddon_AdaptiveLighting.png new file mode 100644 index 0000000..df3db96 Binary files /dev/null and b/graphics/iconAddon_AdaptiveLighting.png differ diff --git a/graphics/iconAddon_AdiValente1.png b/graphics/iconAddon_AdiValente1.png new file mode 100644 index 0000000..c487146 Binary files /dev/null and b/graphics/iconAddon_AdiValente1.png differ diff --git a/graphics/iconAddon_AdvancedMovementPrediction.png b/graphics/iconAddon_AdvancedMovementPrediction.png new file mode 100644 index 0000000..8b5e8e6 Binary files /dev/null and b/graphics/iconAddon_AdvancedMovementPrediction.png differ diff --git a/graphics/iconAddon_BattleaxeHead.png b/graphics/iconAddon_BattleaxeHead.png new file mode 100644 index 0000000..4bf011c Binary files /dev/null and b/graphics/iconAddon_BattleaxeHead.png differ diff --git a/graphics/iconAddon_BlacksmithHammer.png b/graphics/iconAddon_BlacksmithHammer.png new file mode 100644 index 0000000..470e285 Binary files /dev/null and b/graphics/iconAddon_BlacksmithHammer.png differ diff --git a/graphics/iconAddon_BrokenHilt.png b/graphics/iconAddon_BrokenHilt.png new file mode 100644 index 0000000..86581d6 Binary files /dev/null and b/graphics/iconAddon_BrokenHilt.png differ diff --git a/graphics/iconAddon_BrownNoiseGenerator.png b/graphics/iconAddon_BrownNoiseGenerator.png new file mode 100644 index 0000000..2b93aa7 Binary files /dev/null and b/graphics/iconAddon_BrownNoiseGenerator.png differ diff --git a/graphics/iconAddon_CallToArms.png b/graphics/iconAddon_CallToArms.png new file mode 100644 index 0000000..2585ca5 Binary files /dev/null and b/graphics/iconAddon_CallToArms.png differ diff --git a/graphics/iconAddon_ChainmailFragment.png b/graphics/iconAddon_ChainmailFragment.png new file mode 100644 index 0000000..02e8f67 Binary files /dev/null and b/graphics/iconAddon_ChainmailFragment.png differ diff --git a/graphics/iconAddon_ColdSteelManacles.png b/graphics/iconAddon_ColdSteelManacles.png new file mode 100644 index 0000000..de3b2fa Binary files /dev/null and b/graphics/iconAddon_ColdSteelManacles.png differ diff --git a/graphics/iconAddon_DriedHorsemeat.png b/graphics/iconAddon_DriedHorsemeat.png new file mode 100644 index 0000000..3ad6646 Binary files /dev/null and b/graphics/iconAddon_DriedHorsemeat.png differ diff --git a/graphics/iconAddon_ExpiredBatteries.png b/graphics/iconAddon_ExpiredBatteries.png new file mode 100644 index 0000000..75bdeb4 Binary files /dev/null and b/graphics/iconAddon_ExpiredBatteries.png differ diff --git a/graphics/iconAddon_FlintandSteel.png b/graphics/iconAddon_FlintandSteel.png new file mode 100644 index 0000000..4cf5c18 Binary files /dev/null and b/graphics/iconAddon_FlintandSteel.png differ diff --git a/graphics/iconAddon_GeographicalReadout.png b/graphics/iconAddon_GeographicalReadout.png new file mode 100644 index 0000000..ff5bfaf Binary files /dev/null and b/graphics/iconAddon_GeographicalReadout.png differ diff --git a/graphics/iconAddon_GrimIronMask.png b/graphics/iconAddon_GrimIronMask.png new file mode 100644 index 0000000..8f969dd Binary files /dev/null and b/graphics/iconAddon_GrimIronMask.png differ diff --git a/graphics/iconAddon_GrittyLump.png b/graphics/iconAddon_GrittyLump.png new file mode 100644 index 0000000..eaf21dc Binary files /dev/null and b/graphics/iconAddon_GrittyLump.png differ diff --git a/graphics/iconAddon_HealingPoultice.png b/graphics/iconAddon_HealingPoultice.png new file mode 100644 index 0000000..c1c99f1 Binary files /dev/null and b/graphics/iconAddon_HealingPoultice.png differ diff --git a/graphics/iconAddon_HighCurrentUpgrade.png b/graphics/iconAddon_HighCurrentUpgrade.png new file mode 100644 index 0000000..1731b44 Binary files /dev/null and b/graphics/iconAddon_HighCurrentUpgrade.png differ diff --git a/graphics/iconAddon_HighPowerFloodlight.png b/graphics/iconAddon_HighPowerFloodlight.png new file mode 100644 index 0000000..a4763be Binary files /dev/null and b/graphics/iconAddon_HighPowerFloodlight.png differ diff --git a/graphics/iconAddon_InfaredUpgrade.png b/graphics/iconAddon_InfaredUpgrade.png new file mode 100644 index 0000000..e50a6e9 Binary files /dev/null and b/graphics/iconAddon_InfaredUpgrade.png differ diff --git a/graphics/iconAddon_IridescentCompanyBanner.png b/graphics/iconAddon_IridescentCompanyBanner.png new file mode 100644 index 0000000..67aefbe Binary files /dev/null and b/graphics/iconAddon_IridescentCompanyBanner.png differ diff --git a/graphics/iconAddon_IridescentUnpublishedManuscript.png b/graphics/iconAddon_IridescentUnpublishedManuscript.png new file mode 100644 index 0000000..c43c1ec Binary files /dev/null and b/graphics/iconAddon_IridescentUnpublishedManuscript.png differ diff --git a/graphics/iconAddon_IronworkerTongs.png b/graphics/iconAddon_IronworkerTongs.png new file mode 100644 index 0000000..0942131 Binary files /dev/null and b/graphics/iconAddon_IronworkerTongs.png differ diff --git a/graphics/iconAddon_KnightContract.png b/graphics/iconAddon_KnightContract.png new file mode 100644 index 0000000..4f96925 Binary files /dev/null and b/graphics/iconAddon_KnightContract.png differ diff --git a/graphics/iconAddon_LightweightGreaves.png b/graphics/iconAddon_LightweightGreaves.png new file mode 100644 index 0000000..735c3ea Binary files /dev/null and b/graphics/iconAddon_LightweightGreaves.png differ diff --git a/graphics/iconAddon_LooseScrew.png b/graphics/iconAddon_LooseScrew.png new file mode 100644 index 0000000..d500d21 Binary files /dev/null and b/graphics/iconAddon_LooseScrew.png differ diff --git a/graphics/iconAddon_LowPowerMode.png b/graphics/iconAddon_LowPowerMode.png new file mode 100644 index 0000000..d0058bb Binary files /dev/null and b/graphics/iconAddon_LowPowerMode.png differ diff --git a/graphics/iconAddon_MapoftheRealms.png b/graphics/iconAddon_MapoftheRealms.png new file mode 100644 index 0000000..b532d76 Binary files /dev/null and b/graphics/iconAddon_MapoftheRealms.png differ diff --git a/graphics/iconAddon_Overcharge.png b/graphics/iconAddon_Overcharge.png new file mode 100644 index 0000000..761c7ae Binary files /dev/null and b/graphics/iconAddon_Overcharge.png differ diff --git a/graphics/iconAddon_PillagedMead.png b/graphics/iconAddon_PillagedMead.png new file mode 100644 index 0000000..05a802c Binary files /dev/null and b/graphics/iconAddon_PillagedMead.png differ diff --git a/graphics/iconAddon_PowderedGlass.png b/graphics/iconAddon_PowderedGlass.png new file mode 100644 index 0000000..a0c57c3 Binary files /dev/null and b/graphics/iconAddon_PowderedGlass.png differ diff --git a/graphics/iconAddon_PrototypeRotor.png b/graphics/iconAddon_PrototypeRotor.png new file mode 100644 index 0000000..d50be24 Binary files /dev/null and b/graphics/iconAddon_PrototypeRotor.png differ diff --git a/graphics/iconAddon_RandomizedStrobes.png b/graphics/iconAddon_RandomizedStrobes.png new file mode 100644 index 0000000..f10702d Binary files /dev/null and b/graphics/iconAddon_RandomizedStrobes.png differ diff --git a/graphics/iconAddon_ShotgunSpeakers.png b/graphics/iconAddon_ShotgunSpeakers.png new file mode 100644 index 0000000..1bfd35e Binary files /dev/null and b/graphics/iconAddon_ShotgunSpeakers.png differ diff --git a/graphics/iconAddon_StereoRemoteMic.png b/graphics/iconAddon_StereoRemoteMic.png new file mode 100644 index 0000000..53d2a88 Binary files /dev/null and b/graphics/iconAddon_StereoRemoteMic.png differ diff --git a/graphics/iconAddon_TatteredTabard.png b/graphics/iconAddon_TatteredTabard.png new file mode 100644 index 0000000..1b61290 Binary files /dev/null and b/graphics/iconAddon_TatteredTabard.png differ diff --git a/graphics/iconAddon_TownWatctTorch.png b/graphics/iconAddon_TownWatctTorch.png new file mode 100644 index 0000000..758686b Binary files /dev/null and b/graphics/iconAddon_TownWatctTorch.png differ diff --git a/graphics/iconAddon_TreatedBlade.png b/graphics/iconAddon_TreatedBlade.png new file mode 100644 index 0000000..bf56964 Binary files /dev/null and b/graphics/iconAddon_TreatedBlade.png differ diff --git a/graphics/iconAddon_UltrasonicTrapSpeaker.png b/graphics/iconAddon_UltrasonicTrapSpeaker.png new file mode 100644 index 0000000..d554d61 Binary files /dev/null and b/graphics/iconAddon_UltrasonicTrapSpeaker.png differ diff --git a/graphics/iconAddon_VitalTargetingProcessor.png b/graphics/iconAddon_VitalTargetingProcessor.png new file mode 100644 index 0000000..4b0040b Binary files /dev/null and b/graphics/iconAddon_VitalTargetingProcessor.png differ diff --git a/graphics/iconFavors_4thAnniversary.png b/graphics/iconFavors_4thAnniversary.png index 68d77f3..ad6c426 100644 Binary files a/graphics/iconFavors_4thAnniversary.png and b/graphics/iconFavors_4thAnniversary.png differ diff --git a/graphics/iconFavors_5thAnniversary.png b/graphics/iconFavors_5thAnniversary.png new file mode 100644 index 0000000..02df76d Binary files /dev/null and b/graphics/iconFavors_5thAnniversary.png differ diff --git a/graphics/iconFavors_6thAnniversary.png b/graphics/iconFavors_6thAnniversary.png new file mode 100644 index 0000000..b22070a Binary files /dev/null and b/graphics/iconFavors_6thAnniversary.png differ diff --git a/graphics/iconFavors_ArcaneDowsingRod.png b/graphics/iconFavors_ArcaneDowsingRod.png new file mode 100644 index 0000000..1366131 Binary files /dev/null and b/graphics/iconFavors_ArcaneDowsingRod.png differ diff --git a/graphics/iconFavors_BeefTallowMixture.png b/graphics/iconFavors_BeefTallowMixture.png new file mode 100644 index 0000000..443dac6 Binary files /dev/null and b/graphics/iconFavors_BeefTallowMixture.png differ diff --git a/graphics/iconFavors_BlackTea.png b/graphics/iconFavors_BlackTea.png new file mode 100644 index 0000000..06a8e70 Binary files /dev/null and b/graphics/iconFavors_BlackTea.png differ diff --git a/graphics/iconFavors_BlankPostcard.png b/graphics/iconFavors_BlankPostcard.png new file mode 100644 index 0000000..9dd958d Binary files /dev/null and b/graphics/iconFavors_BlankPostcard.png differ diff --git a/graphics/iconFavors_BloodstoneChalice.png b/graphics/iconFavors_BloodstoneChalice.png new file mode 100644 index 0000000..23091f3 Binary files /dev/null and b/graphics/iconFavors_BloodstoneChalice.png differ diff --git a/graphics/iconFavors_BoneDoll.png b/graphics/iconFavors_BoneDoll.png new file mode 100644 index 0000000..360c68f Binary files /dev/null and b/graphics/iconFavors_BoneDoll.png differ diff --git a/graphics/iconFavors_BurdockTea.png b/graphics/iconFavors_BurdockTea.png new file mode 100644 index 0000000..ff461aa Binary files /dev/null and b/graphics/iconFavors_BurdockTea.png differ diff --git a/graphics/iconFavors_CeramicChalice.png b/graphics/iconFavors_CeramicChalice.png new file mode 100644 index 0000000..bf5e193 Binary files /dev/null and b/graphics/iconFavors_CeramicChalice.png differ diff --git a/graphics/iconFavors_ClayDoll.png b/graphics/iconFavors_ClayDoll.png new file mode 100644 index 0000000..20d07de Binary files /dev/null and b/graphics/iconFavors_ClayDoll.png differ diff --git a/graphics/iconFavors_CopperChalice.png b/graphics/iconFavors_CopperChalice.png new file mode 100644 index 0000000..f571903 Binary files /dev/null and b/graphics/iconFavors_CopperChalice.png differ diff --git a/graphics/iconFavors_CrumpledPostcard.png b/graphics/iconFavors_CrumpledPostcard.png new file mode 100644 index 0000000..c20e3e8 Binary files /dev/null and b/graphics/iconFavors_CrumpledPostcard.png differ diff --git a/graphics/iconFavors_CursedSeed.png b/graphics/iconFavors_CursedSeed.png new file mode 100644 index 0000000..75cf636 Binary files /dev/null and b/graphics/iconFavors_CursedSeed.png differ diff --git a/graphics/iconFavors_FleshDoll.png b/graphics/iconFavors_FleshDoll.png new file mode 100644 index 0000000..de75edb Binary files /dev/null and b/graphics/iconFavors_FleshDoll.png differ diff --git a/graphics/iconFavors_LotusLeafTea.png b/graphics/iconFavors_LotusLeafTea.png new file mode 100644 index 0000000..eb22a27 Binary files /dev/null and b/graphics/iconFavors_LotusLeafTea.png differ diff --git a/graphics/iconFavors_LoversPostcard.png b/graphics/iconFavors_LoversPostcard.png new file mode 100644 index 0000000..6db80ec Binary files /dev/null and b/graphics/iconFavors_LoversPostcard.png differ diff --git a/graphics/iconFavors_MilkTea.png b/graphics/iconFavors_MilkTea.png new file mode 100644 index 0000000..6846409 Binary files /dev/null and b/graphics/iconFavors_MilkTea.png differ diff --git a/graphics/iconFavors_ShatteredBottle.png b/graphics/iconFavors_ShatteredBottle.png new file mode 100644 index 0000000..779b289 Binary files /dev/null and b/graphics/iconFavors_ShatteredBottle.png differ diff --git a/graphics/iconFavors_StampedPostcard.png b/graphics/iconFavors_StampedPostcard.png new file mode 100644 index 0000000..2ccf6d0 Binary files /dev/null and b/graphics/iconFavors_StampedPostcard.png differ diff --git a/graphics/iconFavors_ThornDoll.png b/graphics/iconFavors_ThornDoll.png new file mode 100644 index 0000000..4b04b6c Binary files /dev/null and b/graphics/iconFavors_ThornDoll.png differ diff --git a/graphics/iconFavors_WoodenChalice.png b/graphics/iconFavors_WoodenChalice.png new file mode 100644 index 0000000..0bcceee Binary files /dev/null and b/graphics/iconFavors_WoodenChalice.png differ diff --git a/graphics/iconFavors_graduationCap.png b/graphics/iconFavors_graduationCap.png new file mode 100644 index 0000000..0dfc8aa Binary files /dev/null and b/graphics/iconFavors_graduationCap.png differ diff --git a/graphics/iconFavors_gruesomeGateau.png b/graphics/iconFavors_gruesomeGateau.png index 90fe44e..bcf8669 100644 Binary files a/graphics/iconFavors_gruesomeGateau.png and b/graphics/iconFavors_gruesomeGateau.png differ diff --git a/graphics/iconFavors_marysLetter.png b/graphics/iconFavors_marysLetter.png index c607c3c..c65c5b5 100644 Binary files a/graphics/iconFavors_marysLetter.png and b/graphics/iconFavors_marysLetter.png differ diff --git a/graphics/iconFavors_redMoneyPacket.png b/graphics/iconFavors_redMoneyPacket.png index acae482..d2e324d 100644 Binary files a/graphics/iconFavors_redMoneyPacket.png and b/graphics/iconFavors_redMoneyPacket.png differ diff --git a/graphics/iconFavors_strodeRealtyKey.png b/graphics/iconFavors_strodeRealtyKey.png new file mode 100644 index 0000000..91db52e Binary files /dev/null and b/graphics/iconFavors_strodeRealtyKey.png differ diff --git a/graphics/iconItems_LimitedFragileMirror.png b/graphics/iconItems_LimitedFragileMirror.png new file mode 100644 index 0000000..f3776b3 Binary files /dev/null and b/graphics/iconItems_LimitedFragileMirror.png differ diff --git a/graphics/iconItems_LimitedItemVaccine.png b/graphics/iconItems_LimitedItemVaccine.png new file mode 100644 index 0000000..d4f13b1 Binary files /dev/null and b/graphics/iconItems_LimitedItemVaccine.png differ diff --git a/graphics/iconItems_LimitedLamentConfiguration.png b/graphics/iconItems_LimitedLamentConfiguration.png new file mode 100644 index 0000000..f79d496 Binary files /dev/null and b/graphics/iconItems_LimitedLamentConfiguration.png differ diff --git a/graphics/iconItems_LimitedRepairedMirror.png b/graphics/iconItems_LimitedRepairedMirror.png new file mode 100644 index 0000000..1fa4ffc Binary files /dev/null and b/graphics/iconItems_LimitedRepairedMirror.png differ diff --git a/graphics/iconItems_LimitedStabilizingSpray.png b/graphics/iconItems_LimitedStabilizingSpray.png new file mode 100644 index 0000000..aef292d Binary files /dev/null and b/graphics/iconItems_LimitedStabilizingSpray.png differ diff --git a/graphics/iconItems_LimitedVhsTape.png b/graphics/iconItems_LimitedVhsTape.png new file mode 100644 index 0000000..75ec15a Binary files /dev/null and b/graphics/iconItems_LimitedVhsTape.png differ diff --git a/graphics/iconItems_carriedBody.png b/graphics/iconItems_carriedBody.png new file mode 100644 index 0000000..831e46a Binary files /dev/null and b/graphics/iconItems_carriedBody.png differ diff --git a/graphics/iconItems_flashbangGrenade.png b/graphics/iconItems_flashbangGrenade.png new file mode 100644 index 0000000..3b84f06 Binary files /dev/null and b/graphics/iconItems_flashbangGrenade.png differ diff --git a/graphics/iconItems_flashlight.png b/graphics/iconItems_flashlight.png new file mode 100644 index 0000000..8e62abc Binary files /dev/null and b/graphics/iconItems_flashlight.png differ diff --git a/graphics/iconItems_flashlightHalloween.png b/graphics/iconItems_flashlightHalloween.png index c2ce05f..2c2ab99 100644 Binary files a/graphics/iconItems_flashlightHalloween.png and b/graphics/iconItems_flashlightHalloween.png differ diff --git a/graphics/iconItems_flashlight_anniversary2022.png b/graphics/iconItems_flashlight_anniversary2022.png new file mode 100644 index 0000000..9eabc3c Binary files /dev/null and b/graphics/iconItems_flashlight_anniversary2022.png differ diff --git a/graphics/iconItems_medkitHalloween.png b/graphics/iconItems_medkitHalloween.png index aab8fa3..ddd8b2e 100644 Binary files a/graphics/iconItems_medkitHalloween.png and b/graphics/iconItems_medkitHalloween.png differ diff --git a/graphics/iconItems_medkit_anniversary2020.png b/graphics/iconItems_medkit_anniversary2020.png index 3c4b04a..75b67fe 100644 Binary files a/graphics/iconItems_medkit_anniversary2020.png and b/graphics/iconItems_medkit_anniversary2020.png differ diff --git a/graphics/iconItems_medkit_anniversary2022.png b/graphics/iconItems_medkit_anniversary2022.png new file mode 100644 index 0000000..65ed90d Binary files /dev/null and b/graphics/iconItems_medkit_anniversary2022.png differ diff --git a/graphics/iconItems_partyPopper.png b/graphics/iconItems_partyPopper.png index dbbbb30..6829b98 100644 Binary files a/graphics/iconItems_partyPopper.png and b/graphics/iconItems_partyPopper.png differ diff --git a/graphics/iconItems_partyPopper1.png b/graphics/iconItems_partyPopper1.png deleted file mode 100644 index dbbbb30..0000000 Binary files a/graphics/iconItems_partyPopper1.png and /dev/null differ diff --git a/graphics/iconItems_toolboxCommodious_-_Copy.png b/graphics/iconItems_toolboxCommodious_-_Copy.png new file mode 100644 index 0000000..9d6d983 Binary files /dev/null and b/graphics/iconItems_toolboxCommodious_-_Copy.png differ diff --git a/graphics/iconItems_toolboxLunar.png b/graphics/iconItems_toolboxLunar.png index 5b6969e..33663d9 100644 Binary files a/graphics/iconItems_toolboxLunar.png and b/graphics/iconItems_toolboxLunar.png differ diff --git a/graphics/iconItems_toolbox_anniversary2021.png b/graphics/iconItems_toolbox_anniversary2021.png new file mode 100644 index 0000000..8d8aebf Binary files /dev/null and b/graphics/iconItems_toolbox_anniversary2021.png differ diff --git a/graphics/iconItems_toolbox_anniversary2022.png b/graphics/iconItems_toolbox_anniversary2022.png new file mode 100644 index 0000000..4bfe8de Binary files /dev/null and b/graphics/iconItems_toolbox_anniversary2022.png differ diff --git a/graphics/iconItems_winterEventFirecracker.png b/graphics/iconItems_winterEventFirecracker.png index 892a57a..6e479b2 100644 Binary files a/graphics/iconItems_winterEventFirecracker.png and b/graphics/iconItems_winterEventFirecracker.png differ diff --git a/graphics/iconPerks_BBQAndChili.png b/graphics/iconPerks_BBQAndChili.png new file mode 100644 index 0000000..f40636e Binary files /dev/null and b/graphics/iconPerks_BBQAndChili.png differ diff --git a/graphics/iconPerks_BackgroundPlayer.png b/graphics/iconPerks_BackgroundPlayer.png new file mode 100644 index 0000000..46ce876 Binary files /dev/null and b/graphics/iconPerks_BackgroundPlayer.png differ diff --git a/graphics/iconPerks_BloodRush.png b/graphics/iconPerks_BloodRush.png new file mode 100644 index 0000000..e175029 Binary files /dev/null and b/graphics/iconPerks_BloodRush.png differ diff --git a/graphics/iconPerks_CutLoose.png b/graphics/iconPerks_CutLoose.png new file mode 100644 index 0000000..e151ee2 Binary files /dev/null and b/graphics/iconPerks_CutLoose.png differ diff --git a/graphics/iconPerks_Fogwise.png b/graphics/iconPerks_Fogwise.png new file mode 100644 index 0000000..a4701a8 Binary files /dev/null and b/graphics/iconPerks_Fogwise.png differ diff --git a/graphics/iconPerks_FriendlyCompetition.png b/graphics/iconPerks_FriendlyCompetition.png new file mode 100644 index 0000000..dc281cf Binary files /dev/null and b/graphics/iconPerks_FriendlyCompetition.png differ diff --git a/graphics/iconPerks_GameAfoot.png b/graphics/iconPerks_GameAfoot.png new file mode 100644 index 0000000..50c1461 Binary files /dev/null and b/graphics/iconPerks_GameAfoot.png differ diff --git a/graphics/iconPerks_HexFaceTheDarkness.png b/graphics/iconPerks_HexFaceTheDarkness.png new file mode 100644 index 0000000..3791c9a Binary files /dev/null and b/graphics/iconPerks_HexFaceTheDarkness.png differ diff --git a/graphics/iconPerks_Hubris.png b/graphics/iconPerks_Hubris.png new file mode 100644 index 0000000..c291512 Binary files /dev/null and b/graphics/iconPerks_Hubris.png differ diff --git a/graphics/iconPerks_HuntressLullaby.png b/graphics/iconPerks_HuntressLullaby.png new file mode 100644 index 0000000..63ffecf Binary files /dev/null and b/graphics/iconPerks_HuntressLullaby.png differ diff --git a/graphics/iconPerks_Leverage.png b/graphics/iconPerks_Leverage.png new file mode 100644 index 0000000..0c0b7a1 Binary files /dev/null and b/graphics/iconPerks_Leverage.png differ diff --git a/graphics/iconPerks_NowhereToHide.png b/graphics/iconPerks_NowhereToHide.png new file mode 100644 index 0000000..3a4d536 Binary files /dev/null and b/graphics/iconPerks_NowhereToHide.png differ diff --git a/graphics/iconPerks_PotentialEnergy.png b/graphics/iconPerks_PotentialEnergy.png new file mode 100644 index 0000000..a4b9487 Binary files /dev/null and b/graphics/iconPerks_PotentialEnergy.png differ diff --git a/graphics/iconPerks_TeamworkCollectiveStealth.png b/graphics/iconPerks_TeamworkCollectiveStealth.png new file mode 100644 index 0000000..319f168 Binary files /dev/null and b/graphics/iconPerks_TeamworkCollectiveStealth.png differ diff --git a/graphics/iconPerks_TeamworkPowerOfTwo.png b/graphics/iconPerks_TeamworkPowerOfTwo.png new file mode 100644 index 0000000..b87a7f4 Binary files /dev/null and b/graphics/iconPerks_TeamworkPowerOfTwo.png differ diff --git a/graphics/iconPerks_Thwack.png b/graphics/iconPerks_Thwack.png new file mode 100644 index 0000000..986d9f2 Binary files /dev/null and b/graphics/iconPerks_Thwack.png differ diff --git a/graphics/iconPerks_VittoriosGambit.png b/graphics/iconPerks_VittoriosGambit.png new file mode 100644 index 0000000..4746ee9 Binary files /dev/null and b/graphics/iconPerks_VittoriosGambit.png differ diff --git a/graphics/iconPerks_franklinsLoss.png b/graphics/iconPerks_franklinsLoss.png new file mode 100644 index 0000000..59aff13 Binary files /dev/null and b/graphics/iconPerks_franklinsLoss.png differ diff --git a/graphics/iconPerks_guardian.png b/graphics/iconPerks_guardian.png new file mode 100644 index 0000000..e4c2449 Binary files /dev/null and b/graphics/iconPerks_guardian.png differ diff --git a/graphics/iconPerks_kindred.png b/graphics/iconPerks_kindred.png new file mode 100644 index 0000000..e4e3181 Binary files /dev/null and b/graphics/iconPerks_kindred.png differ diff --git a/graphics/iconPerks_pushThroughIt.png b/graphics/iconPerks_pushThroughIt.png new file mode 100644 index 0000000..ddb20b7 Binary files /dev/null and b/graphics/iconPerks_pushThroughIt.png differ diff --git a/graphics/iconPerks_situationalAwareness.png b/graphics/iconPerks_situationalAwareness.png new file mode 100644 index 0000000..64d48aa Binary files /dev/null and b/graphics/iconPerks_situationalAwareness.png differ diff --git a/graphics/iconPerks_survivalInstincts.png b/graphics/iconPerks_survivalInstincts.png new file mode 100644 index 0000000..f7fc00b Binary files /dev/null and b/graphics/iconPerks_survivalInstincts.png differ diff --git a/graphics/iconPowers_Executioner.png b/graphics/iconPowers_Executioner.png new file mode 100644 index 0000000..af8bd9b Binary files /dev/null and b/graphics/iconPowers_Executioner.png differ diff --git a/graphics/iconPowers_drones.png b/graphics/iconPowers_drones.png new file mode 100644 index 0000000..b685e5e Binary files /dev/null and b/graphics/iconPowers_drones.png differ diff --git a/graphics/iconsFavors_6thAnniversary.png b/graphics/iconsFavors_6thAnniversary.png new file mode 100644 index 0000000..b22070a Binary files /dev/null and b/graphics/iconsFavors_6thAnniversary.png differ diff --git a/index.html b/index.html index f1cc487..bc749b3 100644 --- a/index.html +++ b/index.html @@ -562,7 +562,7 @@
-

CHAPTER XXV: Resident Evil: PROJECT W DLC content has been added to the site.(30.08.2022)
Questions? Comments? Found a bug? Contact me on Twitter! @Saengerkrieg12 (currently Updating and Hosting DBD-Builder) @Vykaris (Original Maker of DBD-Builder) Source Code

All copyrighted material displayed here is property of its owners. This site is not officially affiliated with the developer or publisher of Dead By Daylight.

+

CHAPTER XXVII: Resident Evil: Tools of Torment DLC content has been added to the site.(16.04.2023)
Questions? Comments? Found a bug? Contact me on Twitter! @Saengerkrieg12 (currently Updating and Hosting DBD-Builder) @Vykaris (Original Maker of DBD-Builder) Source Code

All copyrighted material displayed here is property of its owners. This site is not officially affiliated with the developer or publisher of Dead By Daylight.

diff --git a/sitemap.xml b/sitemap.xml index 474e5af..95683bb 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -9,7 +9,7 @@ https://dbdbuilder.de/ - 2022-11-06T2:00:00+01:00 + 2023-04-16T2:33:00+01:00