Skip to content

Commit

Permalink
feat: add sentry and striker metadata and icon (#58)
Browse files Browse the repository at this point in the history
* feat: add sentry and striker metadata

* feat: add sentry icon

* fix: sentry icon colors

* feat: add striker icon
  • Loading branch information
danielwerg authored May 31, 2024
1 parent 19c06b5 commit f6d4750
Show file tree
Hide file tree
Showing 5 changed files with 208 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",
},
}
65 changes: 65 additions & 0 deletions operators/sentry/sentry.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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",
},
}
93 changes: 93 additions & 0 deletions operators/striker/striker.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f6d4750

Please sign in to comment.