Skip to content

Commit 6c13c04

Browse files
committed
feat: add Min Min as a character
1 parent 13c5439 commit 6c13c04

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

public/head-icons/min-min.png

14.5 KB
Loading

src/tech/AllCharacterMetadata.ts

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ export interface CharacterMetadata {
44
idNumber: number;
55
isEchoFighter: boolean;
66
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
710
title: string;
811
}
912

@@ -501,6 +504,12 @@ const allCharacterMetadataInternal = {
501504
displayName: "Byleth",
502505
title: "Ashen Demon",
503506
},
507+
"min-min": {
508+
idNumber: 76,
509+
isEchoFighter: false,
510+
displayName: "Min Min",
511+
title: "The Ramen Bomber",
512+
},
504513
},
505514
};
506515

0 commit comments

Comments
 (0)