Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/tracker-logos/dreadvault_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
79 changes: 79 additions & 0 deletions src/data/trackers/dreadvault.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
import type { TrackerRegistryEntry } from "@/data/tracker-registry"

export const dreadvault: TrackerRegistryEntry = {
// ── Identity ────────────────────────────────────────────────────────
slug: "dreadvault",
name: "DreadVault",
abbreviation: "dv",
url: "https://dreadvault.org",
description: "DreadVault is focused on horror content, including movies, TV shows and horror cartoons/animated series.",

// ── Platform & API ──────────────────────────────────────────────────
platform: "unit3d",
apiPath: "/api/user",

// ── Content ─────────────────────────────────────────────────────────
specialty: "Horror content",
contentCategories: ["Movies", "TV"],
language: "English",

// ── Visual ──────────────────────────────────────────────────────────
color: "#f44336",
logo: "/tracker-logos/dreadvault_logo.png",

// ── External Links ──────────────────────────────────────────────────
trackerHubSlug: "",
statusPageUrl: "",

// ── Community ───────────────────────────────────────────────────────
userClasses: [
{ name: "Leech", requirements: "download slots: 0" },
{ name: "User", requirements: "Ratio ≥ 0.4" },
{ name: "Wanderer", requirements: "Ratio ≥ 0.4, min upload ≥ 1TiB, account age ≥ 1 month" },
{ name: "Survivor", requirements: "Ratio ≥ 0.4, min upload ≥ 5TiB, account age ≥ 2 months" },
{ name: "Night Stalker", requirements: "Ratio ≥ 0.4, min upload ≥ 20TiB, account age ≥ 3 months" },
{ name: "Grave Keeper", requirements: "Ratio ≥ 0.4, min upload ≥ 50TiB, account age ≥ 6 months" },
{ name: "Dreadborn", requirements: "Ratio ≥ 0.4, min upload ≥ 100TiB, account age ≥ 1 year" },
{ name: "Shadow Walker", requirements: "Ratio ≥ 0.4, min seedsize ≥ 5TiB, min avg. seedtime ≥ 1 month, account age ≥ 1 month" },
{ name: "Bloodbound", requirements: "Ratio ≥ 0.4, min seedsize ≥ 10TiB, min avg. seedtime ≥ 2 months, account age ≥ 3 months" },
{ name: "Elder", requirements: "An ancient presence whose experience commands respect" },
{ name: "Harbinger", requirements: "A feared and respected presence among the realm’s greatest" },
{ name: "Ancient One", requirements: "Ratio ≥ 1.5, min upload ≥ 10TiB, account age ≥ 6 months, min avg. seedtime ≥ 1 month, min seedsize ≥ 5 TiB, min uploads 500" },
{ name: "VIP", requirements: "A supporter of DreadVault who has chosen to fuel the darkness. VIP status grants exclusive benefits for the selected duration" },
{ name: "The Eternal", requirements: "A timeless supporter of DreadVault. The Eternal has earned a permanent place within the darkness" },
{ name: "The Dread Ascendant", requirements: "A supreme patron of DreadVault. The Dread Ascendant has risen beyond ordinary supporters and stands among the highest ranks of the darkness" },
{ name: "Lorekeeper", requirements: "???" },
{ name: "Vault Warden ", requirements: "???" },

],
releaseGroups: [],
bannedGroups: [
"YTS",
"YIFY",
"RARBG",
"VXT",
"BONE",
"NeoNoir",
"PSA",
"EVO",
],
notableMembers: [],

// ── Rules ───────────────────────────────────────────────────────────
rules: {
minimumRatio: 0.7,
seedTimeHours: 120,
loginIntervalDays: 0,
fulfillmentPeriodHours: 120,
hnrBanLimit: 3,
},

// ── Status ──────────────────────────────────────────────────────────
warning: false,
warningNote: "",

// ── Flags ───────────────────────────────────────────────────────────
draft: false,
supportsTransitPapers: false,
profileUrlPattern: "",
}
3 changes: 3 additions & 0 deletions src/data/trackers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export * from "./cinemaz"
export * from "./concertos"
export * from "./darkpeers"
export * from "./digitalcore"
export * from "./dreadvault"
export * from "./empornium"
export * from "./exoticaz"
export * from "./fearnopeer"
Expand Down Expand Up @@ -76,6 +77,7 @@ import { cinemaz } from "./cinemaz"
import { concertos } from "./concertos"
import { darkpeers } from "./darkpeers"
import { digitalcore } from "./digitalcore"
import { dreadvault } from "./dreadvault"
import { empornium } from "./empornium"
import { exoticaz } from "./exoticaz"
import { fearnopeer } from "./fearnopeer"
Expand Down Expand Up @@ -132,6 +134,7 @@ export const ALL_TRACKERS: TrackerRegistryEntry[] = [
concertos,
darkpeers,
digitalcore,
dreadvault,
empornium,
exoticaz,
fearnopeer,
Expand Down
Loading