Jump to content

Elin:解析/基本ステータス: Difference between revisions

Line 97: Line 97:
** 耐久力(END)が20で、合計スキルレベルが40の新しいPCは、最大スタミナが60しかありません。
** 耐久力(END)が20で、合計スキルレベルが40の新しいPCは、最大スタミナが60しかありません。


==Carryweight Limit==
==運搬重量限界==
<syntaxhighlight lang="c#" line="1">
<syntaxhighlight lang="c#" line="1">
public override int WeightLimit => (base.STR * 500 + base.END * 250 + Evalue(207) * 2000) * ((!HasElement(1411)) ? 1 : 5) + 45000;
public override int WeightLimit => (base.STR * 500 + base.END * 250 + Evalue(207) * 2000) * ((!HasElement(1411)) ? 1 : 5) + 45000;
</syntaxhighlight>
</syntaxhighlight>


The carryweight limit of characters is determined by the following factors:
キャラクターの運搬重量限界は以下の要素によって決まります:
* Base limit is 0.5 * STR + 0.25 * END + 2 * Weightlifting skill. (Each "s" in game is 1000 in code.)
 
* If the character is golden knight, then this is further modified by 500%.
*基本限界は、'''0.5s * STR + 0.25s * END + 2s * スキル「重量上げ」のレベル'''に基づきます。(ゲーム内の「s」はcodeでは1000に相当します。)
* A 45s base carry weight is added to the final result.
*キャラクターが[[Elin:黄金の騎士|黄金の騎士]]である場合、これはさらに500%修正されます。
*最後に、45sの基本運搬重量が最終結果に加算されます。


==Sanity==
==Sanity==
367

edits