-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a866cf4
commit 392d759
Showing
6 changed files
with
69 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export enum ClanRole { | ||
Master = 'MASTER', | ||
Officer = 'OFFICER', | ||
Regular = 'REGULAR', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { ClanRole } from "../enum/clan.enum"; | ||
|
||
export interface ClanMember { | ||
nickname: string; | ||
rank_id: string; | ||
clan_points: string; | ||
clan_role: ClanRole; | ||
} | ||
|
||
export interface Clan { | ||
id: string; | ||
name: string; | ||
members: ClanMember[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import { Achievement } from "./common.interface"; | ||
|
||
export interface Player { | ||
user_id?: string; | ||
nickname?: string; | ||
experience?: number; | ||
rank_id?: number; | ||
clan_id?: number; | ||
clan_name?: string; | ||
kill?: number; | ||
friendly_kills?: number; | ||
kills?: number; | ||
death?: number; | ||
pvp?: number; | ||
pve_kill?: number; | ||
pve_friendly_kills?: number; | ||
pve_kills?: number; | ||
pve_death?: number; | ||
pve?: number; | ||
playtime?: number; | ||
playtime_h?: number; | ||
playtime_m?: number; | ||
favoritPVP?: string; | ||
favoritPVE?: string; | ||
pve_wins?: number; | ||
pvp_wins?: number; | ||
pvp_lost?: number; | ||
pve_lost?: number; | ||
pve_all?: number; | ||
pvp_all?: number; | ||
pvp_wl?: number; | ||
full_player?: Record<string, unknown>; | ||
achievements?: Achievement[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export interface Top { | ||
nickname: string; | ||
clan: string; | ||
class: string; | ||
shard: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters