We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13c5439 commit 6c13c04Copy full SHA for 6c13c04
public/head-icons/min-min.png
14.5 KB
src/tech/AllCharacterMetadata.ts
@@ -4,6 +4,9 @@ export interface CharacterMetadata {
4
idNumber: number;
5
isEchoFighter: boolean;
6
displayName: string;
7
+
8
+ // The character's title according to the boxing ring stage. See the table
9
+ // here: https://www.ssbwiki.com/Boxing_Ring#Character_titles
10
title: string;
11
}
12
@@ -501,6 +504,12 @@ const allCharacterMetadataInternal = {
501
504
displayName: "Byleth",
502
505
title: "Ashen Demon",
503
506
},
507
+ "min-min": {
508
+ idNumber: 76,
509
+ isEchoFighter: false,
510
+ displayName: "Min Min",
511
+ title: "The Ramen Bomber",
512
+ },
513
514
};
515
0 commit comments