Draft:Two Worlds:Heal: Difference between revisions
Fandom Two Worlds>Phicr (More information added to infobox) |
m (Text replacement - "[[Category:Air Magic]" to "Category:Two Worlds Air Magic") |
||
(12 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{Two Worlds Draft}} | |||
{{ItemTransformer | |||
|style={{{style|}}} | |style={{{style|}}} | ||
|name=Heal | |name=Heal | ||
|image=[[File:Magic_Heal.jpg]] | |image=[[File:Magic_Heal.jpg]] | ||
|magiccircle=1 | |magiccircle=1 | ||
| | |firsteffect= 100 HP | ||
|firstduration= | |firstduration= | ||
|firstmana= | |firstmana= 45 | ||
| | |secondeffect= 200 HP | ||
|secondduration= | |secondduration= | ||
|secondmana= | |secondmana= 45 | ||
| | |additionaleffect=See [[Heal#HP Restoration]] | ||
|additionalduration= | |additionalduration= | ||
|additionalmana=+ 5. | |additionalmana=+40/7 ≈ 5.714 | ||
}} | }}Heal is an air [[magic]] spell that restores HP. | ||
==Formulas== | ==Formulas== | ||
===HP Restoration=== | ===HP Restoration=== | ||
Healling power is calculated using the formula:<syntaxhighlight lang="julia"> | Healling power is calculated using the formula:<syntaxhighlight lang="julia"> | ||
(cards * spell_booster_level * 100) + ( | (cards * spell_booster_level * 100) + | ||
(cards * air_magic_level * 100) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
*<code>cards</code> = Number of | *<code>cards</code> = Number of Heal cards | ||
*<code>spell_booster_level</code> = Level increased by [[Spell Booster| | *<code>spell_booster_level</code> = Level increased by [[Spell Booster|Spell Boosters]] | ||
*<code> | *<code>air_magic_level</code> = Level of [[Air Magic]] | ||
Examples: | Examples: | ||
*3 cards, 0 spell boosters, air school level 1: < | *3 cards, 0 spell boosters, air school level 1:<syntaxhighlight lang="julia"> | ||
*3 cards, 0 spell boosters, air school level 15: < | 0 + (1 * 3 * 100) HP = | ||
*3 cards, 2 spell boosters, air school level | 300 HP | ||
</syntaxhighlight> | |||
*3 cards, 0 spell boosters, air school level 15:<syntaxhighlight lang="julia"> | |||
0 + (15 * 3 * 100) HP = | |||
4500 HP | |||
</syntaxhighlight> | |||
*3 cards, 2 spell boosters, air school level 15:<syntaxhighlight lang="julia"> | |||
(3 * 3 * 100) + (15 * 3 * 100) HP = | |||
900 + 4500 HP = | |||
5400 HP | |||
</syntaxhighlight> | |||
===Mana Cost=== | ===Mana Cost=== | ||
Mana consumption is calculated | Mana consumption is calculated by the formula:<syntaxhighlight lang="julia"> | ||
floor(40 + 40/7 + max(0, cards + air_magic_level + spell_booster_level - 3) * 40/7) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
For examples and more information, see the [[Mana Cost]] page.<br /> | |||
[[Category:Two Worlds Air Magic]]] | |||
<br /> | |||
[[Category:Air Magic]] | |||
Latest revision as of 01:15, December 4, 2023
![]() |
This article is a Two Worlds draft.
Articles are created and sometimes moved to the Draft namespace for numerous reasons. "Two Worlds:Heal" needs to be either updated to fit the current Manual of Style or lacks relevant information and content. |
Template:ItemInfoBoxHeal is an air magic spell that restores HP.
Formulas[edit | edit source]
HP Restoration[edit | edit source]
Healling power is calculated using the formula:<syntaxhighlight lang="julia"> (cards * spell_booster_level * 100) + (cards * air_magic_level * 100) </syntaxhighlight>
cards
= Number of Heal cardsspell_booster_level
= Level increased by Spell Boostersair_magic_level
= Level of Air Magic
Examples:
- 3 cards, 0 spell boosters, air school level 1:<syntaxhighlight lang="julia">
0 + (1 * 3 * 100) HP = 300 HP </syntaxhighlight>
- 3 cards, 0 spell boosters, air school level 15:<syntaxhighlight lang="julia">
0 + (15 * 3 * 100) HP = 4500 HP </syntaxhighlight>
- 3 cards, 2 spell boosters, air school level 15:<syntaxhighlight lang="julia">
(3 * 3 * 100) + (15 * 3 * 100) HP = 900 + 4500 HP = 5400 HP </syntaxhighlight>
Mana Cost[edit | edit source]
Mana consumption is calculated by the formula:<syntaxhighlight lang="julia"> floor(40 + 40/7 + max(0, cards + air_magic_level + spell_booster_level - 3) * 40/7) </syntaxhighlight>
For examples and more information, see the Mana Cost page.
]