Shield durability/zh: Difference between revisions

From ZeldaMods (Breath of the Wild)
Jump to navigation Jump to search
(Created page with "* 林克在盾牌上滑行的時候,一個計時器(和盾綁定)會紀錄滑行的時間。 * 如果林克在「光滑的表面」滑行''或''滑行的速度小於 0.0...")
(Created page with "1.6.0 版的參數如下:")
Line 35: Line 35:
* 否則,每當計時器計到 ShieldRideBaseFrame (as configured in [[GlobalParameter]]) 這個數字時,盾牌的耐用度就會減少 <code>RideBreakRatio * ShieldRideHitBaseDamage * Damage</code> 這麼多點,然後計時器歸零。
* 否則,每當計時器計到 ShieldRideBaseFrame (as configured in [[GlobalParameter]]) 這個數字時,盾牌的耐用度就會減少 <code>RideBreakRatio * ShieldRideHitBaseDamage * Damage</code> 這麼多點,然後計時器歸零。


In 1.6.0:
1.6.0 版的參數如下:


* RideBreakRatio is 1.0 for the majority of shields, and 0.2 for the Ancient Shield, which means that the latter takes shield surfing damage at a 20% rate compared to most other shields.  Refer to this [https://docs.google.com/spreadsheets/u/0/d/1qhh_TLCF_1vMdpPY0QHbhYhN-eUIyh6R3Povo-gziMg/pubhtml spreadsheet] for more information on shield stats, including the hidden RideBreakRatio.
* RideBreakRatio is 1.0 for the majority of shields, and 0.2 for the Ancient Shield, which means that the latter takes shield surfing damage at a 20% rate compared to most other shields.  Refer to this [https://docs.google.com/spreadsheets/u/0/d/1qhh_TLCF_1vMdpPY0QHbhYhN-eUIyh6R3Povo-gziMg/pubhtml spreadsheet] for more information on shield stats, including the hidden RideBreakRatio.

Revision as of 04:21, 30 May 2020

Other languages:


盾牌的耐用度会随着玩家抵挡怪物的攻击与盾牌滑行逐渐降低。

抵挡攻击

The logic is as follows[1]:

float damageRatio = GlobalParameter::sInstance->globalParam->shieldDamageRatio.value();
int damage = damageRatio * (param->attackPower - guardPower - additionalGuardPower);
if (param->forceOnlyOneDamage)
  minDamage = 1;
else
  minDamage = param->minDmg;
weapon->takeDamage(max(damage, minDamage));
  • damageRatio (攻换防比)是从 GlobalParameter 里来的("Global" 底下的 "ShieldDamageRatio")。
  • attackPower 是被抵挡的攻击的攻击力。
  • guardPower是盾牌的防御力,也是 bgparamlist 来的("WeaponCommon" 底下的 "GuardPower").
  • additionalGuardPower 就是防御力加成加多少(没有加成则是零)。

minDmg (最小扣耐用)在大部分的时候都是 1 的样子。意思是耐用度至少会降低 1。

1.6.0 版的 ShieldDamageRatio (攻换防比)是 0.2。也就是说,敌人的攻击力比防御力低的时候,抵挡一次扣 1 点耐用度。攻击力比防御高的时候,攻击力每增加 5 点,盾牌的耐用度就多扣 1 点。[2]

盾牌滑行

这个 gist 里有源代码[3](很长所以不放在这里),总结逻辑如下:

  • 林克在盾牌上滑行的时候,一个计时器(和盾绑定)会纪录滑行的时间。
  • 如果林克在“光滑的表面”滑行滑行的速度小于 0.03,则不扣耐用度。
  • 否则,每当计时器计到 ShieldRideBaseFrame (as configured in GlobalParameter) 这个数字时,盾牌的耐用度就会减少 RideBreakRatio * ShieldRideHitBaseDamage * Damage 这么多点,然后计时器归零。

1.6.0 版的参数如下:

  • RideBreakRatio is 1.0 for the majority of shields, and 0.2 for the Ancient Shield, which means that the latter takes shield surfing damage at a 20% rate compared to most other shields. Refer to this spreadsheet for more information on shield stats, including the hidden RideBreakRatio.
  • ShieldRideBaseFrame is 120[4] and ShieldRideHitBaseDamage is 1[5]. This means that shield surfing costs RideBreakRatio * 1 durability points every 4 seconds.
  • This damage is also applied when you start surfing.

Since the timer is tied to the shield instance, switching to another shield will reset the timer and doing so lets the player avoid taking any surf damage.


References