Skip to content

Commit

Permalink
Merge pull request #143 from BaptisteLongy/t4-cube-ticket-tracker
Browse files Browse the repository at this point in the history
feat: add t4 cube tickets to tracker
  • Loading branch information
fayaine authored Nov 29, 2024
2 parents c7970ac + 614c706 commit aeebcbf
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export class RosterService extends FirestoreStorage<Roster> {
EbonyCubeLevel3: 0,
EbonyCubeLevel4: 0,
EbonyCubeLevel5: 0,
EbonyCube1stUnlock: 0,
platinumFields: 0
};
}
Expand Down
7 changes: 7 additions & 0 deletions apps/client/src/app/data/tickets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ export const tickets: {tier?: number, icon: string, rarity: ItemRarity, key: key
key: "EbonyCubeLevel5",
name: "Ebony Cube Level 5"
},
{
tier: 3,
icon: 'ebony1640.png',
rarity: ItemRarity.LEGENDARY,
key: "EbonyCube1stUnlock",
name: "Ebony Cube 1st Unlock"
},
{
icon: 'platinum_fields.png',
rarity: ItemRarity.LEGENDARY,
Expand Down
1 change: 1 addition & 0 deletions apps/client/src/app/model/character/character.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export interface Character {
EbonyCubeLevel3: number;
EbonyCubeLevel4: number;
EbonyCubeLevel5: number;
EbonyCube1stUnlock: number;
platinumFields: number;
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export class RosterComponent {
EbonyCubeLevel3: 0,
EbonyCubeLevel4: 0,
EbonyCubeLevel5: 0,
EbonyCube1stUnlock: 0,
platinumFields: 0
}
});
Expand Down
Binary file added apps/client/src/assets/icons/ebony1640.png
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 aeebcbf

Please sign in to comment.