1,885
edits
m (→Copper Coins) |
|||
Line 114: | Line 114: | ||
<ol> | <ol> | ||
<li> Calculate End Score based on final point results. | <li> Calculate End Score based on final point results. | ||
<li> Calculate Copper-coin lost for negative End Scores based on the exchange rate. The lost is always capped to a maximum lost if | <li> Calculate Copper-coin lost for negative End Scores based on the exchange rate. The lost is always capped to a maximum lost (<code><nowiki>MaximumLost = EntryLimit - EntryFee</nowiki></code>) if exceeded the limit (<code><nowiki>EndScore < -40</nowiki></code>). | ||
{| class="wikitable" style="min-width:460px;" | {| class="wikitable" style="min-width:460px;" | ||
|- | |- | ||
Line 130: | Line 130: | ||
|} | |} | ||
<p>Formula: <code><nowiki> | <p>Formula: <code><nowiki> | ||
CoinsLost = | CoinsLost = EndScore<-40 ? MaximumLost : EndScore*ExchangeRate | ||
</nowiki></code></p> | </nowiki></code></p> | ||
<li> Sum up the total lost. | <li> Sum up the total lost. | ||
Line 138: | Line 138: | ||
</nowiki></code></p> | </nowiki></code></p> | ||
</ol> | </ol> | ||
Moreover, the Entry Fee is always applied as long as a match is taken successfully, although it's not shown on the final result. | |||
=== Chests === | === Chests === |