|
|
@@ -130,7 +130,7 @@ export default function AttendancePage()
|
|
|
body: { greeting: greeting.trim() || '' }
|
|
|
}).then((res) => {
|
|
|
const data = res.data!;
|
|
|
- let msg = `출석 완료! 순위: ${data.rank}등 | 연속: ${data.consecutiveDays}일 | 경험치: +${data.expRewarded} | 코인: +${data.pointRewarded}P`;
|
|
|
+ let msg = `출석 완료! 순위: ${data.rank}등 | 연속: ${data.consecutiveDays}일 | 경험치: +${data.expRewarded} | 토큰: +${data.pointRewarded}P`;
|
|
|
if (data.rankBonusExp > 0 || data.rankBonusPoint > 0) {
|
|
|
msg += ` (순위 보상: +${data.rankBonusExp}EXP, +${data.rankBonusPoint}P)`;
|
|
|
}
|
|
|
@@ -273,13 +273,13 @@ export default function AttendancePage()
|
|
|
<div className="attendance__guide">
|
|
|
<section className="attendance__guide-section">
|
|
|
<h3>기본 보상</h3>
|
|
|
- <p>매일 출석 시 경험치 <strong>{config.attendance?.baseExp ?? 0}</strong>, 코인 <strong>{config.attendance?.basePoint ?? 0}P</strong>가 지급됩니다.</p>
|
|
|
+ <p>매일 출석 시 경험치 <strong>{config.attendance?.baseExp ?? 0}</strong>, 토큰 <strong>{config.attendance?.basePoint ?? 0}P</strong>가 지급됩니다.</p>
|
|
|
</section>
|
|
|
|
|
|
{config.attendance?.useStreakBonus && (
|
|
|
<section className="attendance__guide-section">
|
|
|
<h3>연속 출석 보상</h3>
|
|
|
- <p>연속 출석 시 1일당 추가 경험치 <strong>+{config.attendance.streakBonusPerDay}</strong>, 코인 <strong>+{config.attendance.streakBonusPointPerDay}P</strong>가 지급됩니다.</p>
|
|
|
+ <p>연속 출석 시 1일당 추가 경험치 <strong>+{config.attendance.streakBonusPerDay}</strong>, 토큰 <strong>+{config.attendance.streakBonusPointPerDay}P</strong>가 지급됩니다.</p>
|
|
|
{config.attendance.streakBonusMaxDays > 0 && (
|
|
|
<p>최대 <strong>{config.attendance.streakBonusMaxDays}일</strong>까지 적용됩니다.</p>
|
|
|
)}
|
|
|
@@ -295,7 +295,7 @@ export default function AttendancePage()
|
|
|
<tr>
|
|
|
<th scope="col">순위</th>
|
|
|
<th scope="col">추가 경험치</th>
|
|
|
- <th scope="col">추가 코인</th>
|
|
|
+ <th scope="col">추가 토큰</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@@ -398,7 +398,7 @@ export default function AttendancePage()
|
|
|
<span>별명</span>
|
|
|
<span>출석 인사</span>
|
|
|
<span>출석 일시</span>
|
|
|
- <span>코인</span>
|
|
|
+ <span>토큰</span>
|
|
|
<span>경험치</span>
|
|
|
<span>개근(일)</span>
|
|
|
</div>
|