Skip to content

Commit

Permalink
feat: add sentry and striker metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
danielwerg committed May 29, 2024
1 parent 19c06b5 commit 7459381
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
2 changes: 2 additions & 0 deletions operators/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,5 @@ export { recruit_green } from "./recruit_green"
export { recruit_orange } from "./recruit_orange"
export { recruit_red } from "./recruit_red"
export { recruit_yellow } from "./recruit_yellow"
export { striker } from "./striker"
export { sentry } from "./sentry"
24 changes: 24 additions & 0 deletions operators/sentry/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { IOperator } from "~/types/operator"

export const sentry: IOperator = {
name: "Sentry",
role: "Defender",
org: "ROS",
squad: "none",
ratings: {
health: 2,
speed: 2,
difficulty: 1,
},
meta: {
gender: "u",
country: "none",
season: "Y9S2",
height: 0,
weight: 0,
},
bio: {
real_name: "Undefined",
birthplace: "Undefined",
},
}
24 changes: 24 additions & 0 deletions operators/striker/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { IOperator } from "~/types/operator"

export const striker: IOperator = {
name: "Striker",
role: "Attacker",
org: "ROS",
squad: "none",
ratings: {
health: 2,
speed: 2,
difficulty: 1,
},
meta: {
gender: "u",
country: "none",
season: "Y9S2",
height: 0,
weight: 0,
},
bio: {
real_name: "Undefined",
birthplace: "Undefined",
},
}

0 comments on commit 7459381

Please sign in to comment.