Deck: Difference between revisions

From Tears of Themis Wiki
imported>Elaeagnifolia
(Created page with "The Deck Menu is where players can select cards to put together a team to use for Debates. The Deck Menu consists of the Primary Deck and the Support Deck. ==Primary Deck...")
 
imported>Elaeagnifolia
No edit summary
Line 1: Line 1:
{{Notice datamine}}
The Deck Menu is where players can select cards to put together a team to use for [[Debates]]. The Deck Menu consists of the Primary Deck and the Support Deck.
The Deck Menu is where players can select cards to put together a team to use for [[Debates]]. The Deck Menu consists of the Primary Deck and the Support Deck.


Line 6: Line 8:
==Support Deck==
==Support Deck==
These cards provide additional stats to the team but are not used during debate stages. Additionally, some cards have skills which activate only when equipped from the Support Deck, such as the [[Formidable]] skill.
These cards provide additional stats to the team but are not used during debate stages. Additionally, some cards have skills which activate only when equipped from the Support Deck, such as the [[Formidable]] skill.
==Power Calculations==
{| class="wikitable"
! Variable || Value
|-
| attackCoefficient || 1
|-
| defenceCoefficient || 1
|-
| hpCoefficient || 1
|-
| talentCoefficient || 500
|}
<math>deckInfluence = primaryDeckTotalInfluence * attackCoefficient * (1 + supportDeckTotalInfluence)</math>
<math>deckDefense = primaryDeckTotalDefense * defenceCoefficient + (1 + supportDeckTotalDefense)</math>
<math>power = hp * hpCoefficient + skillLevel * talentCoefficient + deckInfluence + deckDefense + primaryDeckTotalSkillValue</math>
===Support Deck Attack Rate Calculations===
<math>levelRate = 0.0202 * (cardLevel -1) * (1 + cardStar * 0.1)</math>
<math>skillRate = skillLevel * 0.0666</math>
{| class="wikitable"
|+cardRateValue
! Card Rarity || cardRateValue
|-
| R || 0.006
|-
| SR || 0.0075
|-
| SSR || 0.01
|}
<math>supportDeckTotalInfluence = (1 + levelRate + skillRate) * cardRateValue</math>
===Support Deck Defense Rate Calculations===
<math>supportDeckTotalDefense = supportDeckAttackRate / 2</math>


[[Category:Game information]]
[[Category:Game information]]

Revision as of 06:26, 24 August 2021

The Deck Menu is where players can select cards to put together a team to use for Debates. The Deck Menu consists of the Primary Deck and the Support Deck.

Primary Deck

These are the cards that are used during debates.

Support Deck

These cards provide additional stats to the team but are not used during debate stages. Additionally, some cards have skills which activate only when equipped from the Support Deck, such as the Formidable skill.

Power Calculations

Variable Value
attackCoefficient 1
defenceCoefficient 1
hpCoefficient 1
talentCoefficient 500

[math]\displaystyle{ deckInfluence = primaryDeckTotalInfluence * attackCoefficient * (1 + supportDeckTotalInfluence) }[/math]

[math]\displaystyle{ deckDefense = primaryDeckTotalDefense * defenceCoefficient + (1 + supportDeckTotalDefense) }[/math]

[math]\displaystyle{ power = hp * hpCoefficient + skillLevel * talentCoefficient + deckInfluence + deckDefense + primaryDeckTotalSkillValue }[/math]

Support Deck Attack Rate Calculations

[math]\displaystyle{ levelRate = 0.0202 * (cardLevel -1) * (1 + cardStar * 0.1) }[/math]

[math]\displaystyle{ skillRate = skillLevel * 0.0666 }[/math]

cardRateValue
Card Rarity cardRateValue
R 0.006
SR 0.0075
SSR 0.01

[math]\displaystyle{ supportDeckTotalInfluence = (1 + levelRate + skillRate) * cardRateValue }[/math]

Support Deck Defense Rate Calculations

[math]\displaystyle{ supportDeckTotalDefense = supportDeckAttackRate / 2 }[/math]