
Security News
crates.io Ships Security Tab and Tightens Publishing Controls
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.
西北风套件,分为视图无关的核心和基于核心实现的视图两部分。
主要用于模拟碧蓝航线中舰船面板属性的计算、编队配置等。可调整舰船的等级、突破等级、好感、强化值、改造进度等所有参与白值运算的数值,可携带装备与兵装,可自由调整舰队科技提供的属性值,并实时计算舰船的最终面板。
pnpm i maestrale
加载游戏数据:
import { ShareCfg } from "maestrale";
await ShareCfg.load();
初始化舰队科技对象:
import { useTechnology } from "maestrale";
const technology = useTechnology();
现在可以创建我们的第一艘舰船了:
import { createShip } from "maestrale";
const ship = createShip(60104, {
technology,
});
第一个参数为舰船的 ID,可以通过检查数据源中的 ship_data_statistics.json 文件获取。由于其键值的最后一位始终表示舰船的突破等级,因此我们使用截去最后一位的数值作为舰船的 ID。
如果要在初始化舰船时为她添加装备,可以向配置项中的 equips 字段传入一个数组,每个下标位分别表示对应装备槽上的装备对象或 ID,如果传入 null 则表示置空。同样,它可以通过检查数据源中的 equip_data_statistics.json 文件获取;兵装同理,检查 spweapon_data_statistics.json 文件即可:
import { createEquip, createSPWeapon } from "maestrale";
const ship = createShip(60104, {
technology,
equips: [
null,
createEquip(35340),
null,
2640,
2640,
],
spweapon: createSPWeapon(10180),
});
# 安装依赖
pnpm i
# 启动开发服务器
pnpm -C simulator dev
FAQs
Maestrale Kit for Azurlane
We found that maestrale demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.

Research
/Security News
A Chrome extension claiming to hide Amazon ads was found secretly hijacking affiliate links, replacing creators’ tags with its own without user consent.

Security News
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.