베팅장에서 관련 스탯 출력시키기

This commit is contained in:
2022-04-10 01:34:54 -07:00
parent 0eebd8dc1a
commit 3986ff5dda
2 changed files with 45 additions and 32 deletions
+9
View File
@@ -64,6 +64,15 @@ function getNationLevel(int $level) {
][$level];
}
function convertTournamentType(string $type){
return[
'전력전'=>0,
'통솔전'=>1,
'일기토'=>2,
'설전'=>3,
][$type]??-1;
}
function getGenChar(?string $type) {
if($type === null){
return '-';