Amiibo drops

From ZeldaMods (Breath of the Wild)
Revision as of 20:17, 25 October 2018 by imported>Leoetlino (→‎Logic)
Jump to navigation Jump to search

Drop tables

Idx Name Description
0 Normal
1 Normal2
2 SmallHit
3 SmallHit2
4 BigHit
5 BigHit2
6 GreatHit
7 GreatHit2

Notes on AmiiboMgr

  • amiibo code (AIDef:Action/CreateEpona, AIDef:Action/ItemAmiiboSelectDropTable, AIDef:AI/WolfLinkAmiibo) call AmiiboMgr::updateHistoryFlags[unofficial name][1] every time an amiibo is used.
    • First, AmiiboMgr determines if it should reset its daily amiibo use history (stored in the AmiiboTouchHistory flag)[2].
      • If less than 86400 seconds (1 day) have elapsed since the game was launched, don't do anything.[check]
      • AmiiboMgr then computes 10000 * now.year + 100 * now.month + now.day. If the value is different from AmiiboLastTouchDate (which would mean that a day has elapsed), the AmiiboTouchHistory array is cleared.
    • AmiiboTouchHistoryTotal (which stores the last 200 used amiibos) is updated too. Exactly what happens is currently unknown.
    • Finally, AmiiboLastTouchDate is set to 10000 * now.year + 100 * now.month + now.day.

Logic

AIDef:Action/ItemAmiiboCreateFromDropTable (the action that is responsible for determining the drop table and spawning the drops) follows the following process:

  • Get the number of times the amiibo has been scanned for the current day (using AmiiboTouchHistory).
  • Get the number of times the amiibo has been scanned (using AmiiboTouchHistoryTotal).
  • Determine the drop table category to use.
    • Remain if Find_4Relic_1stClear is set
    • Parasail if IsGet_PlayerStole2 is set
    • Normal otherwise
  • Calculate the "adjust rate"
    • When the amiibo has been scanned 0 to $HitRateAdjustStart times, the adjust rate is 0%.
    • This value increases linearly and reaches its maximum (100%) when the amiibo scan count is >= $HitRateAdjustEnd.
    • In practice, because HitRateAdjustStart and HitRateAdjustEnd are both set to the same value (5), the formula can be simplified: the rate is 100% if the scan count >= $HitRateAdjustEnd and 0% otherwise.
  • Calculate the "Great Hit rate"
    • If the scan count is <2, use GreatHitRate1st.
    • If the scan count is 2, use GreatHitRate2nd.
    • If the scan count is 3, use GreatHitRate3rd.
    • In these three cases, if the great hit rate is >0.0, add adjustRate * (100.0 - greatHitRate) to the great hit rate.
    • Otherwise, if the scan count is >3, the great hit rate is 0%.
  • Determine if there is a Great Hit (RNG)
  • If there was no Great Hit:
    • If the amiibo has been scanned 4 times or more, you get a Big Hit.

References

  1. 0x710064B564 on Switch 1.5.0
  2. 0x710064B3C8