当自己拥有 sc 状态的时候, 会增加 bonus 参数为 x,r,n [聽風] #698
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
因为 rA官方的 SC刷新有BUG,本Pull并不能直接使用。但不影响测试。
需等待克总在主分支修复,或其他……
bonus3 bStatusAddBonus,sc,bonus,n;
当自己拥有 sc 状态的时候, 会增加 bonus 参数为 n [聽風]
参数说明:
sc SC 状态编号, 支持常量
例如: 天使之赐福状态的常量是 SC_BLESSING
使用范例:
//人物拥有 天使赐福状态时 额外增加 20点 STR
bonus3 bStatusAddBonus,SC_BLESSING,bStr,20;
注意事项:
本条效果调整器仅支持 bonus 类
且 n 参数只支持数值或常量
bonus4 bStatusAddBonus,sc,bonus,r,n;
当自己拥有 sc 状态的时候, 会增加 bonus 参数为 r,n [聽風]
参数说明:
sc SC 状态编号, 支持常量
例如: 天使之赐福状态的常量是 SC_BLESSING
使用范例:
//人物拥有 天使赐福状态时 额外增加 治愈术回复量 100% (治愈术技能ID为 28)
bonus4 bStatusAddBonus,SC_BLESSING,bSkillHeal,28,100;
注意事项:
本条效果调整器仅支持 bonus2 类
且 r,n 参数只支持数值或常量
bonus5 bStatusAddBonus,sc,bonus,x,r,n;
当自己拥有 sc 状态的时候, 会增加 bonus 参数为 x,r,n [聽風]
参数说明:
sc SC 状态编号, 支持常量
例如: 天使之赐福状态的常量是 SC_BLESSING
使用范例:
//人物拥有 天使赐福状态时 额外增加 普通攻击 10% 自动念咒 火箭术 10级 (火箭术技能ID为 19)
bonus5 bStatusAddBonus,SC_BLESSING,bAutoSpell,19,10,100;
注意事项:
本条效果调整器仅支持 bonus3 类
且 x,r,n 参数只支持数值或常量