Skip to content

Commit 770187b

Browse files
committed
彩牌
1 parent 0bb0d02 commit 770187b

File tree

4 files changed

+371
-78
lines changed

4 files changed

+371
-78
lines changed

apps/tools/src/genPlateCondition.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { XMLParser } from 'fast-xml-parser';
22
import fs from 'node:fs';
33
import fsP from 'node:fs/promises';
44

5-
const PLATE_NAME = '真超檄橙晓桃樱紫堇白雪辉舞熊华爽煌宙星祭祝双宴镜'.split('');
6-
const PLATE_NAME_GAME = '真超檄橙暁桃櫻紫菫白雪輝舞熊華爽煌宙星祭祝双宴鏡'.split('');
5+
const PLATE_NAME = '真超檄橙晓桃樱紫堇白雪辉舞熊华爽煌宙星祭祝双宴镜彩'.split('');
6+
const PLATE_NAME_GAME = '真超檄橙暁桃櫻紫菫白雪輝舞熊華爽煌宙星祭祝双宴鏡彩'.split('');
77

88
const baseDir = process.argv[2];
99
const parser = new XMLParser();

apps/web/src/routes/b50/components/B50.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { RatingListEntry, UserMusic, Song, Nameplate as NameplateData, UserCombinedRating, MaiVersion, BUDDIES_PLUS_LOGO, BUDDIES_LOGO, Chart, PRISM_LOGO, PRISM_PLUS_LOGO } from '@clansty/maibot-types';
1+
import { RatingListEntry, UserMusic, Song, Nameplate as NameplateData, UserCombinedRating, MaiVersion, BUDDIES_PLUS_LOGO, BUDDIES_LOGO, Chart, PRISM_LOGO, PRISM_PLUS_LOGO, CIRCLE_LOGO } from '@clansty/maibot-types';
22
import B50Song from './B50Song';
33
import { computeRa, ratingAnalyse } from '@clansty/maibot-utils';
44
import styles from './B50.module.css';
@@ -7,7 +7,7 @@ import { component$ } from '@builder.io/qwik';
77

88
const getLogoByVersion = (ver: MaiVersion) => {
99
switch (ver) {
10-
case 160: return PRISM_PLUS_LOGO;
10+
case 160: return CIRCLE_LOGO;
1111
case 155: return PRISM_PLUS_LOGO;
1212
case 150: return PRISM_LOGO;
1313
case 145: return BUDDIES_PLUS_LOGO;

packages/clients/src/UserProfile.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BUDDIES_LOGO, BUDDIES_PLUS_LOGO, GameVariantPlateMusicList, MaiVersion, PLATE_MUSIC_LIST_145, PLATE_MUSIC_LIST_CN, PLATE_MUSIC_LIST_JP, Regions, Env, Song, UserPreviewSummary, UserProfileDto, PRISM_LOGO, PLATE_MUSIC_LIST_150, ChuniSong, PLATE_MUSIC_LIST_155, PRISM_PLUS_LOGO } from '@clansty/maibot-types';
1+
import { BUDDIES_LOGO, BUDDIES_PLUS_LOGO, GameVariantPlateMusicList, MaiVersion, PLATE_MUSIC_LIST_145, PLATE_MUSIC_LIST_CN, PLATE_MUSIC_LIST_JP, Regions, Env, Song, UserPreviewSummary, UserProfileDto, PRISM_LOGO, PLATE_MUSIC_LIST_150, ChuniSong, PLATE_MUSIC_LIST_155, PRISM_PLUS_LOGO, CIRCLE_LOGO } from '@clansty/maibot-types';
22
import { UserSource } from './UserSource';
33
import AquaDxLegacy from './AquaDxLegacy';
44
import SdgbProxied from './SdgbProxied';
@@ -142,6 +142,8 @@ export class UserProfile {
142142
return PRISM_LOGO;
143143
case 155:
144144
return PRISM_PLUS_LOGO;
145+
case 160:
146+
return CIRCLE_LOGO;
145147
}
146148
}
147149

0 commit comments

Comments
 (0)