-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext.lua
More file actions
63 lines (62 loc) · 2.96 KB
/
Copy pathtext.lua
File metadata and controls
63 lines (62 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
-- [[ text.lua - 외부 다국어 데이터베이스 (이모지 제거 버전) ]]
local Text = {
EN = {
title = "THE LONELY KEEP",
subtitle = "Survive nights as the Commander.",
start_btn = "[ CLICK TO START GAME ]",
day = "DAY: %d / %d",
enemy_atk = "ENEMY ATTACK POWER: %d",
hp = "Keep HP: %d / %d",
food = "Food Supply: %d",
research = "Research Level: Lv.%d / 3",
research_active = "(Active effects applied)",
dice_guide = "YOUR DICE (Click to KEEP / Skull will LOCK)",
btn_roll = "ROLL DICE\n(Left: %d)",
btn_def = "START DEFENSE\n(End Turn)",
log_start = "Defend the Keep! Roll the dice.",
log_rolling = "Rolling the dice...",
log_wave = "Wave %d Started! Roll your dice.",
rotate_msg = "Please rotate your device to portrait orientation.",
log_skull = "A Skull appeared! Dice locked.",
log_noreroll = "No rerolls left! Start defense.",
log_result = "Result: Damage -%d, Food consumed!",
win_title = "VICTORY!",
win_msg = "You successfully defended the keep until reinforcements arrived!",
win_btn = "[ CLICK TO RESTART ]",
over_title = "THE KEEP HAS FALLEN...",
over_msg = "You perished on Day %d.",
lang_btn = "Language: EN"
,
exit_btn = "EXIT TO TITLE"
},
KR = {
title = "마지막 보루",
subtitle = "밤의 재앙을 견디는 사령관이 되세요.",
start_btn = "[ 클릭하여 게임 시작 ]",
day = "날짜: %d / %d 일 차",
enemy_atk = "오늘 밤 적의 공격력: %d",
hp = "성벽 내구도: %d / %d",
food = "식량 창고: %d",
research = "연구 레벨: Lv.%d / 3",
research_active = "(활성화된 연구 효과 적용 중)",
dice_guide = "주사위 목록 (클릭해서 고정 / 해골은 잠김)",
btn_roll = "주사위 굴리기\n(남은 기회: %d)",
btn_def = "밤의 전투 시작\n(차례 마침)",
log_start = "성을 사수하세요! 주사위를 굴려야 합니다.",
log_rolling = "주사위를 굴리고 있습니다...",
log_wave = "%d일 차 시작! 주사위를 굴리세요.",
rotate_msg = "기기를 세로 방향으로 회전해 주세요.",
log_skull = "해골이 나와 주사위가 잠겼습니다!",
log_noreroll = "더 이상 재굴릴 수 없습니다! 전투를 시작하세요.",
log_result = "전투 결과: 피해 -%d, 식량 소모 완료!",
win_title = "승리했습니다!",
win_msg = "사령관님의 뛰어난 전략으로 구원군이 올 때까지 성을 지켜냈습니다!",
win_btn = "[ 클릭하여 다시 시작 ]",
over_title = "성이 함락되었습니다...",
over_msg = "당신은 %d일 차 밤에 무릎을 꿇었습니다.",
lang_btn = "언어변경: KR"
,
exit_btn = "타이틀로 이동"
}
}
return Text