add masodlagos ertekek at level 1 for 2E create character

This commit is contained in:
2024-01-14 10:59:47 +01:00
committed by Bálint Mórász
parent d56d7c9899
commit e9c4452908
19 changed files with 325 additions and 12 deletions
@@ -0,0 +1,3 @@
export function SignedNumberToText(val: number) : string {
return val === 0 ? " 0" : (val > 0 ? '+'+val : val.toString())
}