Skip to content

Commit

Permalink
feat(classes): add Factory classes
Browse files Browse the repository at this point in the history
  • Loading branch information
rudnovd committed Jan 1, 2024
1 parent 5eb8d15 commit 28be49b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/assets/database/classes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,20 @@ export const classes: Array<Class> = [
power: 1,
knowledge: 2,
},
{
id: 21,
name: 'Artificer',
attack: 0,
defense: 1,
power: 2,
knowledge: 2,
},
{
id: 22,
name: 'Mercenary',
attack: 3,
defense: 1,
power: 1,
knowledge: 1,
},
]
2 changes: 2 additions & 0 deletions src/models/enums.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,8 @@ export enum Classes {
Elementalist,
Captain,
Navigator,
Artificer,
Mercenary,
}

export enum Towns {
Expand Down

0 comments on commit 28be49b

Please sign in to comment.