Dev - #775
Conversation
* feat(island): 新增岛屿可派遣角色达芬奇 - 新增模板 assets/cn/island_select_character/TEMPLATE_DAVINCI.png - 注册 character_templates 映射 DaVinci,识别阈值 0.8 回测通过,无跨格误匹配 - 经营模块角色下拉 _IslandBusinessChar 追加 DaVinci,config_updater 重生成 args.json/config_generated.py - 五语言 i18n 同步角色列表 help 文案与下拉选项翻译 * feat(island/farm): 仓库库存日志改为输出中文作物名 - 为农场/果园/苗圃共 26 种作物配置补充 cn_name 中文名 - warehouse_inventory() 库存日志由英文作物名改为中文显示 * feat(island): 岛屿仓库库存与餐品日志统一输出中文名 - 新增 ISLAND_ITEM_CN_NAMES 统一映射(121 项,来源为 i18n zh-CN、既有 cn_name 与注释) - 基类新增 _item_cn/_inv_cn/_products_cn 日志翻译助手,未知名兜底不报错 - 农田/渔场/矿山林场/牧场库存统计与补种日志改为中文 - 店铺调试信息(仓库/生产中/总库存/备餐计划)与餐品、原材料、蜂蜜/牛奶/芝士限制日志全部中文输出 - 制造业工坊产品日志(文件柜/净水滤芯/刀叉餐具/荠菜干/花束等)同步中文化
- 阳光蜜水按真实配方(草莓蜜沁+蜂蜜柠檬水)统一排产、需求、扣账口径,蜂蜜仅作为蜂蜜柠檬水原料并同步扣减 - 基类排产循环改用当前仓库账重建库存,同轮套餐消耗的原料不再误判为可用,原料槽位目标不再漏排 - 季节高优先级饮品改为带超时循环,移除循环内固定等待,超时抛异常 - 迎春花茶、西瓜汁改用各自专属图标,不再复用苹果汁 - 更新白熊饮品帮助文案,蜂蜜制品支持自动生产
## Summary by Sourcery 为“深渊星仪(Depths of the Astrarium)”配置 20260813 CN 活动地图,包括更新的塞壬 Boss、相机设置以及输入调优参数。 New Features: - 为相关活动地图新增博纳姆·理查德(Bonhomme Richard)塞壬 Boss 模板,涵盖战列舰、航母和潜艇三种变体。 - 为多个 20260813 CN 关卡引入滑动倍数和线条峰值检测参数配置,以提升地图交互与检测效果。 - 为所有支持的语言版本注册博纳姆·理查德塞壬资源模板。 Enhancements: - 调整多张活动地图的相机位置和出生点,使其更好地符合预期布局与玩法。 - 精炼部分地图上的塞壬分布,在不应出现塞壬 Boss 的位置移除通用情绪模板。 - 更新活动目录条目,以反映“深渊星仪(Depths of the Astrarium)”的命名以及新的联合阵营排期行。 Documentation: - 修订战役 Readme,新增联合阵营日期,修正本地化标题,并记录“深渊星仪(Depths of the Astrarium)”活动。 Chores: - 扩展地图提取器模板映射,将内部的博纳姆·理查德标识符转换为新的塞壬 Boss 模板。 <details> <summary>Original summary in English</summary> ## Summary by Sourcery Configure the 20260813 CN event maps for "Depths of the Astrarium", including updated siren bosses, camera settings, and input tuning parameters. New Features: - Add Bonhomme Richard siren boss templates for battleship, carrier, and submarine variants across relevant event maps. - Introduce swipe multiplier and line peak-detection parameter configurations for multiple 20260813 CN stages to improve map interaction and detection. - Register Bonhomme Richard siren asset templates for all supported locales. Enhancements: - Adjust camera positions and spawn points on several event maps to better align with the intended layout and gameplay. - Refine siren presence on certain maps by removing generic emotion-based templates where no siren boss should appear. - Update event catalog entries to reflect the "Depths of the Astrarium" naming and new coalition schedule rows. Documentation: - Revise the campaign Readme to add the new coalition date, correct localized titles, and document the "Depths of the Astrarium" event. Chores: - Extend the map extractor template mapping to translate internal Bonhomme Richard identifiers to the new siren boss templates. </details>
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
There was a problem hiding this comment.
Sorry @Beatrice-betty, you have reached your weekly rate limit of 500000 diff characters.
Please try again later or upgrade to continue using Sourcery
|
⏳ CI 检查进行中,报告将在完成后更新。 |
Reviewer's Guide在各个岛屿子系统中增加了本地化的物品名称日志和特殊材料处理,引入了共享的中文名称映射辅助方法,重构了库存总量重建逻辑以使用实时仓库数据,更新了活动 20260813 的关卡地图和塞壬模板为 Bonhomme Richard 变体,并扩展了岛屿商业配置和角色选择,以支持 DaVinci 以及新的商店选项。 使用 _rebuild_current_totals 进行库存总量重建的流程图flowchart LR
R[run]
W[warehouse_counts updated]
P[post_check_meal updated]
PT[produced_pass]
RC[_rebuild_current_totals produced_pass]
CT[current_totals]
CBD[_compute_base_demands]
PMR[process_meal_requirements]
SP[schedule_production loop]
R --> W
R --> P
R --> PT
W --> RC
P --> RC
PT --> RC
RC --> CT
CT --> CBD
CBD --> PMR
PMR --> SP
SP --> PT
SP --> RC
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your Experience访问你的 dashboard 以:
Getting HelpOriginal review guide in EnglishReviewer's GuideAdds localized item-name logging and special material handling across island subsystems, introduces a shared CN name mapping helper, refactors inventory total reconstruction to use live warehouse data, updates event 20260813 campaign maps and siren templates to Bonhomme Richard variants, and extends island business configuration and character selection to support DaVinci and new shop options. Flow diagram for inventory totals reconstruction with _rebuild_current_totalsflowchart LR
R[run]
W[warehouse_counts updated]
P[post_check_meal updated]
PT[produced_pass]
RC[_rebuild_current_totals produced_pass]
CT[current_totals]
CBD[_compute_base_demands]
PMR[process_meal_requirements]
SP[schedule_production loop]
R --> W
R --> P
R --> PT
W --> RC
P --> RC
PT --> RC
RC --> CT
CT --> CBD
CBD --> PMR
PMR --> SP
SP --> PT
SP --> RC
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Summary by Sourcery
本次改动对岛屿日志进行本地化,收紧特殊材料处理和岛屿生产库存重算逻辑,并为全新的“苍穹深渊(Depths of the Astrarium)”活动以及新的岛屿角色/海妖添加配置和资源。
New Features:
event_20260813_cn地图中为 Bonhomme Richard 海妖变体提供支持,包括新增模板、提取器映射以及用于线条检测和滑动行为的调参配置。Bug Fixes:
honey_lemon和strawberry_honey产品消耗,并应用正确的按件约束。GameStuckError,而不是悄然循环或错误上报状态。Enhancements:
Documentation:
Original summary in English
Summary by Sourcery
Localize island logging, tighten special-material handling and inventory recomputation for island production, and add configuration/assets for the new "Depths of the Astrarium" event and new island characters/sirens.
New Features:
Bug Fixes:
Enhancements:
Documentation: