misc: calcTournamentTerm ts 이식

This commit is contained in:
2023-03-09 02:20:13 +09:00
parent aab00fc427
commit a72cfc8e1c
2 changed files with 6 additions and 1 deletions
+2 -1
View File
@@ -13,4 +13,5 @@ export { getNPCColor } from "./getNPCColor";
export { isValidObjKey } from "./isValidObjKey";
export { nextExpLevelRemain } from "./nextExpLevelRemain";
export { postFilterNationCommandGen } from "./postFilterNationCommandGen";
export { isTechLimited, convTechLevel, getMaxRelativeTechLevel } from "./techLevel";
export { isTechLimited, convTechLevel, getMaxRelativeTechLevel } from "./techLevel";
export { calcTournamentTerm } from "./tournament";
+4
View File
@@ -0,0 +1,4 @@
import { clamp } from 'lodash-es';
export function calcTournamentTerm(turnTerm: number): number{
return clamp(turnTerm, 5, 120);
}