feat: extend S100 dex sync through year 205

This commit is contained in:
2026-08-09 10:54:06 +00:00
parent 4ffd7b5bc0
commit 32d2f7b0d1
4 changed files with 267 additions and 6 deletions
@@ -45,6 +45,18 @@ class AdvanceCentennialAllStar extends \sammo\Event\Action
"<L>올스타 동조율 {$percent}% 달성</>"
);
}
if ($result['hasDexExtensionTarget']
&& $result['dexExtensionMilestone'] > $result['previousDexExtensionMilestone']
) {
$percent = $result['dexExtensionMilestone'] * 20;
$general->getLogger()->pushGeneralActionLog(
"<L>추가 숙련 동조율</>이 <C>{$percent}%</>에 도달했습니다!",
ActionLogger::PLAIN
);
$general->getLogger()->pushGeneralHistoryLog(
"<L>추가 숙련 동조율 {$percent}% 달성</>"
);
}
if ($general->applyDB($db)) {
$updated++;
}