From 1e4e43e03e9a715070594528fd3824cc27c36464 Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Sun, 19 May 2024 09:38:14 -0500 Subject: [PATCH] Misery PFPs --- PFPs.json | 10 ++++++++++ index.js | 1 - 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/PFPs.json b/PFPs.json index e8a5cdf..dc63a77 100644 --- a/PFPs.json +++ b/PFPs.json @@ -19,6 +19,16 @@ "idle": ["BasilSad.webp", "BasilDepressed.webp", "BasilMiserable.webp"], "fallback": "/pfps/Basil/BasilToast.webp" } + }, + { + "name": "Misery", + "pfpRoot": "/pfps/Misery/", + "pfps": { + "online": ["MiseryHappy.png", "MiseryBedHappy.png"], + "dnd": ["MiseryBedAngry.png", "MiseryAngry.png"], + "idle": ["MiseryBedNeutral.png", "MiseryNeutral.png"], + "fallback": "/pfps/Misery/MiseryNeutral.png" + } } ], "christmas": [ diff --git a/index.js b/index.js index a6f631f..ca8bdf1 100644 --- a/index.js +++ b/index.js @@ -34,7 +34,6 @@ app.get("/v1/pfp", (req, res) => { var pfpConfig = JSON.parse(fs.readFileSync(path.join(__dirname, "PFPs.json")))[pfpSeason] var characterNumb = time.getDate() % pfpConfig.length - // Was originally meant to alternate, didn't really feel like it though. Might add back later. var char = pfpConfig[characterNumb] var pfps = char.pfps