Merge pull request #204 from jedmund/add-r-characters

Add support for R characters
This commit is contained in:
Justin Edmund 2023-01-30 01:35:09 -08:00 committed by GitHub
commit 432428f4dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 1 deletions

View file

@ -12,6 +12,7 @@ button.DropdownLabel {
padding: $unit ($unit * 1.5) $unit $unit-2x;
div {
align-items: center;
display: flex;
gap: $unit-half;
}

View file

@ -69,6 +69,7 @@
"byline": "{{partyName}} by {{username}}"
},
"rarities": {
"r": "R",
"sr": "SR",
"ssr": "SSR"
},

View file

@ -81,6 +81,7 @@
"byline": "{{username}}さんからの{{partyName}}"
},
"rarities": {
"r": "R",
"sr": "SR",
"ssr": "SSR"
},

View file

@ -1,4 +1,8 @@
export const emptyRarityState: RarityState = {
r: {
id: 1,
checked: false,
},
sr: {
id: 2,
checked: false,

View file

@ -1,4 +1,4 @@
export const rarities = ['sr', 'ssr']
export const rarities = ['r', 'sr', 'ssr']
export const elements = [
'null',