|
20 | 20 | <img class="rank-bg" src="{{host}}/assets/ongeki/gameUi/UI_CMN_Signage_UserRank_BG_0{{profile.rankPattern}}.webp"> |
21 | 21 | <img class="rank rank-0{{profile.rankPattern}}" src="{{host}}/assets/ongeki/gameUi/UI_CMN_Signage_UserRank_Rank_{{profile.rankId | number: '2.0-0'}}.webp"> |
22 | 22 | <div class="battle-point bp-0{{profile.rankPattern}}">{{profile.battlePoint | number}}</div> |
23 | | - <img class="rating-header" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getRatingType(profile.playerRating)}}_Header.webp"> |
24 | | - <div class="rating"> |
25 | | - <img *ngIf="Math.floor(profile.playerRating / 1000) > 0" class="rating-num-integer" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getRatingType(profile.playerRating)}}/{{Math.floor(profile.playerRating / 1000)}}.webp"> |
26 | | - <img class="rating-num-integer" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getRatingType(profile.playerRating)}}/{{Math.floor(profile.playerRating / 100) % 10}}.webp"> |
27 | | - <img class="rating-num-dot" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getRatingType(profile.playerRating)}}/dot.webp"> |
28 | | - <img class="rating-num-fractional" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getRatingType(profile.playerRating)}}/{{Math.floor(profile.playerRating / 10) % 10}}.webp"> |
29 | | - <img class="rating-num-fractional" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getRatingType(profile.playerRating)}}/{{Math.floor(profile.playerRating) % 10}}.webp"> |
30 | | - <div class="rating-highest text-nowrap">(Max: {{(profile.highestRating / 100) | number: '0.2-2'}})</div> |
31 | | - </div> |
| 23 | + <ng-template [ngIf]="compareVersion(profile.lastRomVersion, '1.50.00', '<')"> |
| 24 | + <img class="rating-header" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getRatingType(profile.playerRating)}}_Header.webp"> |
| 25 | + <div class="rating"> |
| 26 | + <img *ngIf="Math.floor(profile.playerRating / 1000) > 0" class="rating-num-integer" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getRatingType(profile.playerRating)}}/{{Math.floor(profile.playerRating / 1000)}}.webp"> |
| 27 | + <img class="rating-num-integer" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getRatingType(profile.playerRating)}}/{{Math.floor(profile.playerRating / 100) % 10}}.webp"> |
| 28 | + <img class="rating-num-dot" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getRatingType(profile.playerRating)}}/dot.webp"> |
| 29 | + <img class="rating-num-fractional" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getRatingType(profile.playerRating)}}/{{Math.floor(profile.playerRating / 10) % 10}}.webp"> |
| 30 | + <img class="rating-num-fractional" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getRatingType(profile.playerRating)}}/{{Math.floor(profile.playerRating) % 10}}.webp"> |
| 31 | + <div class="rating-highest text-nowrap">(Max: {{(profile.highestRating / 100) | number: '0.2-2'}})</div> |
| 32 | + </div> |
| 33 | + </ng-template> |
| 34 | + <ng-template [ngIf]="compareVersion(profile.lastRomVersion, '1.50.00', '>=')"> |
| 35 | + <img class="rating-header" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getNewRatingType(profile.newPlayerRating)}}_Header.webp" alt=""> |
| 36 | + <div class="rating"> |
| 37 | + <img *ngIf="Math.floor(profile.newPlayerRating / 10000) > 0" class="rating-num-integer" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getNewRatingType(profile.newPlayerRating)}}/{{Math.floor(profile.newPlayerRating / 10000)}}.webp"> |
| 38 | + <img class="rating-num-integer" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getNewRatingType(profile.newPlayerRating)}}/{{Math.floor(profile.newPlayerRating / 1000) % 10}}.webp"> |
| 39 | + <img class="rating-num-dot" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getNewRatingType(profile.newPlayerRating)}}/dot.webp"> |
| 40 | + <img class="rating-num-fractional" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getNewRatingType(profile.newPlayerRating)}}/{{Math.floor(profile.newPlayerRating / 100) % 10}}.webp"> |
| 41 | + <img class="rating-num-fractional" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getNewRatingType(profile.newPlayerRating)}}/{{Math.floor(profile.newPlayerRating / 10) % 10}}.webp"> |
| 42 | + <img class="rating-num-fractional" src="{{host}}/assets/ongeki/gameUi/UI_NUM_30pt_Rating_{{getNewRatingType(profile.newPlayerRating)}}/{{Math.floor(profile.playerRating) % 10}}.webp"> |
| 43 | + <div class="rating-highest text-nowrap">(Max: {{(profile.newHighestRating / 1000) | number: '0.2-3'}})</div> |
| 44 | + </div> |
| 45 | + </ng-template> |
32 | 46 | </div> |
33 | 47 | <div class="chara-container"> |
34 | 48 | <img class="chara-img" src="{{host}}assets/ongeki/character/{{profile.characterId}}.webp"> |
|
0 commit comments