diff --git a/operators/blackbeard/index.ts b/operators/blackbeard/index.ts index 0b707b4..a79bb61 100644 --- a/operators/blackbeard/index.ts +++ b/operators/blackbeard/index.ts @@ -6,8 +6,8 @@ export const blackbeard: IOperator = { org: "NAVY SEAL", squad: "REDHAMMER", ratings: { - health: 2, - speed: 2, + health: 3, + speed: 1, difficulty: 1, }, meta: { diff --git a/operators/denari/index.ts b/operators/denari/index.ts new file mode 100644 index 0000000..049620b --- /dev/null +++ b/operators/denari/index.ts @@ -0,0 +1,24 @@ +import { IOperator } from "~/types/operator" + +export const denari: IOperator = { + name: "Denari", + role: "Defender", + org: "NIGHTHAVEN", + squad: "NIGHTHAVEN", + ratings: { + health: 1, + speed: 3, + difficulty: 3, + }, + meta: { + gender: "m", + country: "ch", + season: "Y10S3", + height: 190, + weight: 73, + }, + bio: { + real_name: "Leon Winzenried", + birthplace: "Lugano, Switzerland", + }, +} diff --git a/operators/index.ts b/operators/index.ts index ed4bce6..6b0ef8d 100644 --- a/operators/index.ts +++ b/operators/index.ts @@ -14,6 +14,7 @@ export { castle } from "./castle" export { caveira } from "./caveira" export { clash } from "./clash" export { deimos } from "./deimos" +export { denari } from "./denari" export { doc } from "./doc" export { dokkaebi } from "./dokkaebi" export { echo } from "./echo" diff --git a/operators/sledge/index.ts b/operators/sledge/index.ts index a45e4b3..cf97c74 100644 --- a/operators/sledge/index.ts +++ b/operators/sledge/index.ts @@ -6,8 +6,8 @@ export const sledge: IOperator = { org: "SAS", squad: "REDHAMMER", ratings: { - health: 3, - speed: 1, + health: 2, + speed: 2, difficulty: 1, }, meta: { diff --git a/scripts/config.ts b/scripts/config.ts index 8a144b5..d0ad0b8 100644 --- a/scripts/config.ts +++ b/scripts/config.ts @@ -8,7 +8,7 @@ const DIST_DIR = path.resolve(`./dist`) const ENTRY_FILE = path.resolve("./src/index.ts") const DECLARATION_FILE = path.resolve("./src/types/index.d.ts") -const CURRENT_SEASON = "Y10S1" +const CURRENT_SEASON = "Y10S3" const SVGO_PLUGINS: PluginConfig[] = [ // "cleanupIDs" plugin is added at the build-optimized-svg script directly