Skip to content
Merged
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
4 changes: 2 additions & 2 deletions operators/blackbeard/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
24 changes: 24 additions & 0 deletions operators/denari/index.ts
Original file line number Diff line number Diff line change
@@ -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",
},
}
1 change: 1 addition & 0 deletions operators/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions operators/sledge/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ export const sledge: IOperator = {
org: "SAS",
squad: "REDHAMMER",
ratings: {
health: 3,
speed: 1,
health: 2,
speed: 2,
difficulty: 1,
},
meta: {
Expand Down
2 changes: 1 addition & 1 deletion scripts/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading