Item Affixes:修订间差异

跳转到导航 跳转到搜索
删除48字节 、​ 2024年12月9日 (星期一)
第30行: 第30行:
首先, 如果这个 qlvl 高于这个 ilvl, 它会被替换. 自然掉落的物品 ilvls 不会低于 qlvl, 所以只有当一个物品的 ilvl 被修改之后, 例如通过 [[Recipes#Imbue|注入]] 或 合成公式.
首先, 如果这个 qlvl 高于这个 ilvl, 它会被替换. 自然掉落的物品 ilvls 不会低于 qlvl, 所以只有当一个物品的 ilvl 被修改之后, 例如通过 [[Recipes#Imbue|注入]] 或 合成公式.


: <code>if (qlvl > ilvl)</code> <code>ilvl = qlvl</code>
: <code>如果 (qlvl > ilvl)</code> <code>ilvl = qlvl</code>


大多数物品的 maglvl 为 0 所以这与它们无关, 但有些物品的魔法等级非-零: 非-精英魔杖 (1), 权杖 (1), 法珠 (1), 和头环类: 头饰 Circlet (3),宝冠 Coronet (8),三重冠 Tiara (13),权冠 Diadem (18). 对于这些物品, alvl 的计算很简单:
大多数物品的 maglvl 为 0 所以这与它们无关, 但有些物品的魔法等级非-零: 非-精英魔杖 (1), 权杖 (1), 法珠 (1), 和头环类: 头饰 Circlet (3),宝冠 Coronet (8),三重冠 Tiara (13),权冠 Diadem (18). 对于这些物品, alvl 的计算很简单:


: <code>if (maglvl > 0)</code> <code>alvl = ilvl + maglvl</code>
: <code>如果 (maglvl > 0)</code> <code>alvl = ilvl + maglvl</code>


For items with a magic level, this has the effect of reducing the minimum ilvl needed for an affix to spawn. For example, a tiara can get +2 to class skills at ilvl 77 rather than needing to be ilvl 90+. Diadems are an interesting case here - they have such a high qlvl and maglvl that their ilvl is irrelevant and their alvl is always 99.
对于具有魔法等级的物品, 这将减少一个词缀生成所需的最小 ilvl. 例如, 一顶三重冠 tiara 可以在 ilvl 77 时获得 +2 职业技能而不是在 ilvl 90+. 权冠 Diadems 是一个有趣的例子 - 他们有如此高的 qlvl maglvl 以至于他们的 ilvl 是无关的并且他们的 alvl 总是 99.


For other items, the alvl follows the formula below. Items with very low qlvls will often have higher alvls than other items of the same ilvl - items with a qlvl of 1 (e.g. amulets/rings/quivers/jewels) will always have an alvl that's equal to their ilvl.
对于其他物品, alvl 遵循以下公式. 等级很低的 qlvls 通常会比相同 ilvl 的其他物品有更高的 alvl - qlvl 1 的物品 (例如. 项链/戒指/箭袋/珠宝) alvl 总是与其 ilvl 相等.


: <code>if (ilvl < 99 - [qlvl/2])</code> <code>then {alvl = ilvl - [qlvl/2]}</code> <code>else {alvl = 2*ilvl - 99}</code>
: <code>如果 (ilvl < 99 - [qlvl/2])</code> <code>那么 {alvl = ilvl - [qlvl/2]}</code> <code>否则 {alvl = 2*ilvl - 99}</code>
For a visual, see the [https://docs.google.com/spreadsheets/d/1-vKTxRlgTxat3_INgrwa3YVMC3A3yJSMZw3uvD8YBoo/edit#gid=78975438 alvl chart]. A portion of the chart is included below, showing the relevant info for alvls 71 and higher. Follow the diagonal line of alvl values and you'll notice:
为了方便观察, 查看这个 [https://docs.google.com/spreadsheets/d/1-vKTxRlgTxat3_INgrwa3YVMC3A3yJSMZw3uvD8YBoo/edit#gid=78975438 alvl 图表]. 下面是图表的一部分, 显示了 alvls 71 以上的相关信息. 沿着所有值的对角线你会注意到:
* 任意 ilvl 85+ 的物品都将达到 alvl 71 或更高, 而 qlvl 1-27 的物品在较低的 alvl 下也可以达到此 ilvls
* 任意 ilvl 85+ 的物品都将达到 alvl 71 或更高, 而 qlvl 1-27 的物品在较低的 alvl 下也可以达到此 ilvls
* 任意 ilvl 92+ 的物品都将达到 alvl 85 或更高, 而 qlvl 1-13 的物品在较低的 alvl 下也可以达到此 ilvls
* 任意 ilvl 92+ 的物品都将达到 alvl 85 或更高, 而 qlvl 1-13 的物品在较低的 alvl 下也可以达到此 ilvls
<div style="display:flex; flex-direction:row; margin:0.5em 0 0 1em;">
<div style="display:flex; flex-direction:row; margin:0.5em 0 0 1em;">
[[File:alvl_chart_partial.png|Partial ALVL Chart]]
[[File:alvl_chart_partial.png|不完整的 ALVL 图表]]
</div>
</div>


5,076

个编辑

导航菜单

MediaWiki Appliance - Powered by TurnKey Linux