Jump to content

Elin:解析/フィート: Difference between revisions

記事を翻訳
m (デフォルトソートなどを設定)
(記事を翻訳)
Line 1: Line 1:
{{DISPLAYTITLE:解析/フィート}}
{{DISPLAYTITLE:解析/フィート}}
{{解析}}
{{解析}}
{{Untranslated}}
{{バージョン|23.74}}
{{Version|23.74}}


'''フィート'''にはいくつかの種類があります。
'''フィート'''にはいくつかの種類があります。


# 種族フィート:種族選択時に獲得します。
#種族フィート:種族選択時に獲得します。
# 職業フィート:職業に応じて獲得します。
#職業フィート:職業に応じて獲得します。
# 後天フィート:レベルアップおよびフィートポイントの消費によって獲得します。
#後天フィート:レベルアップおよびフィートポイントの消費によって獲得します。


このページでは、実際の効果はプレイヤーからは見えないフィートの一部を紹介します。
このページでは、実際の効果はプレイヤーからは見えないフィートの一部を紹介します。
Line 128: Line 127:


*すべてのフィートは整数(レベル)で表示されています。 111種類のフィートがあります。  
*すべてのフィートは整数(レベル)で表示されています。 111種類のフィートがあります。  
** 「*」マークのついているものだけをこのページでは見ていきます。  
**「*」マークのついているものだけをこのページでは見ていきます。
** 「x」マークがついているものは、効果がすべてゲーム内で表示されているものです。
**「x」マークがついているものは、効果がすべてゲーム内で表示されているものです。
** マークがついていないものは、コード解析班がまだそのフィートを見つけていないことを意味します。
**マークがついていないものは、コード解析班がまだそのフィートを見つけていないことを意味します。
* 自分で効果を確認したい場合は、その番号をコード内で検索してください。
*自分で効果を確認したい場合は、その番号をコード内で検索してください。


==職業フィート==
==職業フィート==
Line 156: Line 155:
*The "talisman mastery 2" trait of swordmage positively influence the effect of created talismans. Specifically:
*The "talisman mastery 2" trait of swordmage positively influence the effect of created talismans. Specifically:
**The number of charges created by swordmage will be '''(magic_book_charges * num_of_charge_gained_if_read * 2 / 5) + 1'''.
**The number of charges created by swordmage will be '''(magic_book_charges * num_of_charge_gained_if_read * 2 / 5) + 1'''.
**For a normal PC, the number of charges will be '''(magic_book_charges * num_of_charge_gained_if_read * 1 / 5) + 1'''.
** For a normal PC, the number of charges will be '''(magic_book_charges * num_of_charge_gained_if_read * 1 / 5) + 1'''.  
***For example, for a magic book with 3 reads left with each read giving PC 10 charges, the number of talisman charge by swordmage would be 13, while by normal PC would be 7.
***For example, for a magic book with 3 reads left with each read giving PC 10 charges, the number of talisman charge by swordmage would be 13, while by normal PC would be 7.
**The talisman level created by swordmage is fixed at 120, while fixed at 100 by normal PC.
** The talisman level created by swordmage is fixed at 120, while fixed at 100 by normal PC.


===featManameat (マナの体)===
* 陰陽師の特性「霊符の知識2」は、霊符の作成にプラスに働きます。具体的には、
** 陰陽師が作成した霊符のストック数は、'''(魔法書の残り回数 * その魔法書を読んだ時に得られる魔法ストック数 * 2 / 5) + 1''' となります。
** 一方、通常のPCの場合は、霊符のストック数は'''(魔法書の残り回数 * その魔法書を読んだ時に得られる魔法ストック数 * 2 / 5) + 1''' となります。
*** 例えば、魔法書が3回分残っており、1回の解読すると10の魔法ストックが得られる場合、陰陽師による霊符の使用回数数は13、通常のPCの場合は7となります。
** 陰陽師が作成する霊符のレベルは120で固定ですが、通常のPCが作成する霊符のレベルは100で固定です。
 
=== featManameat (マナの体)===
<syntaxhighlight lang="c#" line="1">
<syntaxhighlight lang="c#" line="1">
if (Evalue(1421) >= 2 && base.hp <= MaxHP / (9 - Evalue(1421) * 2))
if (Evalue(1421) >= 2 && base.hp <= MaxHP / (9 - Evalue(1421) * 2))
Line 170: Line 175:
</syntaxhighlight>
</syntaxhighlight>


*If the feat Mana body is at least level 2, then if the character's HP is lower than a threshold, all mana cost is cut by 50%.
*マナの体フィートのランクが2以上の場合、キャラクターのHPが一定値より低い場合、マナコストがすべて50%カットされる。
**Specifically, if feat Level is 2, when HP <= 20% Maximum HP, if feat Level is 3, when HP <= 33% Maximum HP.
** 具体的な閾値は、マナの体2の場合最大HPの20%以下、3の場合最大HPの33%以下。


<syntaxhighlight lang="c#" line="1">
<syntaxhighlight lang="c#" line="1">
Line 212: Line 217:
</syntaxhighlight>
</syntaxhighlight>


*It seems, that this mana cost reduction by 50% is also applied when HP is equal or less than 0 (only when Mana body >= level 2).
*(マナの体が2以上の場合のみ)HPが0以下の場合、マナコストの50%削減が適用されるようです。
**This effectively cut the damage these character recieved when HP is 0 by 50%.
** これにより、HPが0の時にはマナの体2を持つキャラクターが受けるダメージが50%削減されます。


===featExecutioner (死の神髄)===
===featExecutioner (死の神髄)===
Line 228: Line 233:
</syntaxhighlight>
</syntaxhighlight>


*This is calculated after ALL other calculation is done. Such as Natural 20 hit, Natural 1 miss, etc.
* これは、他のすべての計算が完了した後に算出されます。例えば、ナチュラル20ヒット、ナチュラル1ミスなど。
**A number (num3) is calculated through the percentage of HP left of a character. For example, if a character has 10% HP, that number is 90.
** 数値(num3)は、キャラクターの残りのHPの割合から算出されます。例えば、キャラクターのHPが10%の場合、その数値は90となります。
*If the number is >= 50 (Character have less than 50% Max HP), we generate a random number, and test if num3^4 /3 is bigger than that number.
* この数値が50以上の場合(キャラクターの最大HPが50%以下)、乱数を生成し、num3^4 /3がその数値より大きいかどうかをテストします。
**This effectively translate to a 33% Critical chance at 0 HP, and about 2% Critical chance at 50% HP.
** これは、HPが0の場合のクリティカル確率が33%、HPが50%の場合のクリティカル確率が約2%に相当します。
*Remember, this calculation is done '''after all other calculations''', including all evasions. If player doesn't have this feat, this attack will hit anyway.
* この計算は、すべての回避行動を含む'''他のすべての計算'''の後に実行されることを覚えておいてください。プレイヤーがこのフィートを持っていない場合、この攻撃は必ず命中します。
**In other words, in order to trigger this effect, you have to first hit the enemy.
** つまり、この効果を発動させるには、まず敵に命中させる必要があります。


===featPaladin (敬虔)===
===featPaladin (敬虔)===
Line 267: Line 272:
</syntaxhighlight>
</syntaxhighlight>


*The benefit of feat Devout is about 12.5% per level of that feat (15 of 120).
*The benefit of feat Devout is about 12.5% per level of that feat (15 of 120).敬虔フィートのボーナスは、フィートランク1ごとに約12.5%です(15/120)。


===featTourist (観光気分)===
===featTourist (観光気分)===
Line 285: Line 290:
</syntaxhighlight>
</syntaxhighlight>


*The price for tourist will be increase by 100% (0.2f * lvl 5), the stock of shops will be increased by 25% (100 + 5 * 5)/100.
*観光客の場合、店の価格は100%増加し(0.2f * Lv. 5)、在庫は25%増加します(100 + 5 * 5)/100。


===featPianist (音楽家)===
===featPianist (音楽家)===
Line 307: Line 312:
</syntaxhighlight>
</syntaxhighlight>


*The feat of Musician (lvl 2 by default) decrease the mistakes made by players
* 音楽家のフィート(デフォルトではレベル2)は、プレイヤーの演奏ミスを減少させます。
**Specifically, if the song is of progress more than 2, the mistake possibility is decreased by 50%.
** 具体的には、曲の難易度が2以上の場合、ミスの可能性が50%減少します。
**By a possibility of 50%, the experience of player's song is increased.
** 50%の可能性で、プレイヤーの曲の経験値が増加します。
***If normal player, the number of increase is 2.
*** 通常のプレイヤーの場合、増加数は2です。
***If Musician, the number of increase is a number among 2, 4, 6.
*** 音楽家の場合は、増加数は2、4、6のいずれかの数です。


*This feat also increase the reward earned by player.
* このフィートは、プレイヤーが獲得するおひねりも増加させます。
**Specifically, increase 10% per level of feat (i.e. 20% total).
** 具体的には、フィートのレベルが1つ上がるごとに10%ずつ増加します(合計20%)。


===featArcher (射撃の名手) & featWarrior (武器の知識)===
===featArcher (射撃の名手) & featWarrior (武器の知識)===
Line 323: Line 328:
</syntaxhighlight>
</syntaxhighlight>


*This feat increase the damage multiplier of ranged attack/melee attack by 0.05 per level of feat.  
*このフィートは、フィートのレベルごとに遠距離攻撃/近接攻撃のダメージ倍率を0.05増加させます。
**Not 5% flat, mind you. The default damage multiplier is 0.6, and with more skills, the effect of this feat is diminished.
** 5%のフラットダメージではありません。デフォルトのダメージ倍率は0.6で、スキルが増えると、このフィートの効果は減少します。


===featFarmer (農夫の足腰)===
===featFarmer (農夫の足腰)===
Line 340: Line 345:
</syntaxhighlight>
</syntaxhighlight>


*For the feat of farmer "Farming Legs 2", the stamina cost of actions is randomly 100%, 83%, 72%.
*農夫のフィート「農夫の足腰2」の場合、行動ごとのスタミナ消費量がランダムで100%、83%、72%となります。


===featPaladin2 (防衛本能)===
===featPaladin2 (防衛本能)===
Line 361: Line 366:
</syntaxhighlight>
</syntaxhighlight>


*Remember that you can only use layhand ability on a character that is friend or above.
*レイハンドは友好的以上のキャラクターにしか使えないので、覚えておいてください。


==種族フィート==
==種族フィート==
Line 389: Line 394:
</syntaxhighlight>
</syntaxhighlight>


*The resistance granted to metal races only work when the feat is at very, very high level.
* メタル種族に付与される耐性は、フィートが非常に高いレベルの場合にのみ役立ちます。
**Specifically, level 999 grant 24 level resistance for each type of damage.
** 具体的には、レベル999だと各ダメージに対して24レベルの耐性を獲得します。
*Furthermore, for any damage done, the damage is decreased sharply.
* さらに、受けるダメージが大幅に減少します。
**Specifically, level 999 grant a damage reduction of 99.9%, rounded down to nearest integer.
** 具体的には、フィートレベル999は99.9%のダメージ減少効果を付与しますが、これは切り捨てられて整数になります。
***1000 damage will become 1, and anything less than 999 is shrugged off.
*** 1000のダメージは1になり、999未満のダメージは無効になります。
**But if the damage is reduced to 0 at last step, in 1/4 chances the damage is returned to 1.
** しかし、ダメージが最終段階で0まで減少した場合、1/4の確率でダメージが1に戻ります。


===featDwarf (蜜酒の虜)===
===featDwarf (蜜酒の虜)===
Line 416: Line 421:
</syntaxhighlight>
</syntaxhighlight>


*The power of the random buff hillfolks receive is based on the power of alcohol (but if the alcohol power is always static, then it is static. '''Need Confirmation'''.). The base power of alcohol is further increased by a randomized 0 to 100% amount.
* 丘の民が受けるランダムバフのパワーは、酒のパワーに依存します(ただし、酒のパワーが常に固定であれば、固定となります。'''要確認''')。酒のベースパワーは、追加でで0~100%の範囲でランダムに増加します。
**If the alcohol is blessed, its base power is also multiplied by 2. Try that next time when you are in a pinch.
** 酒が祝福されている場合、ベースパワーも2倍になります。ピンチの時に試してみてください。
*One of your main attributes will be buffed. this include the major eight, and speed.
* 主能力のうち1つが強化されます。これには、主能力8つと速度が含まれます。
 
<syntaxhighlight lang="c#" line="1">
<syntaxhighlight lang="c#" line="1">
if (host != null && host.ride == this && ((host.isConfused && EClass.rnd(2) == 0) || (host.isDrunk && EClass.rnd(IsIdle ? 2 : 8) == 0 && !host.HasElement(1215))))
if (host != null && host.ride == this && ((host.isConfused && EClass.rnd(2) == 0) || (host.isDrunk && EClass.rnd(IsIdle ? 2 : 8) == 0 && !host.HasElement(1215))))
Line 438: Line 442:
</syntaxhighlight>
</syntaxhighlight>


*When a person is drunk, there is a 50% chance of randomly moving to a neighboring position if this character is Idle (not moving), and 12.5% if the character is moving.
* その人が酔っている場合、このキャラクターがアイドル(移動していない)状態であれば50%の確率でランダムに隣接する位置に移動し、移動中であれば12.5%の確率で移動します。
*When a person is confused, there is a 50% chance of randomly moving too.
* その人が混乱している場合、50%の確率でランダムに移動します。
*The Mead Blood feat negates the drunk part, but not the confused part.
* 丘の民の蜜酒の虜フィートは酔っている時の処理を無効にしますが、混乱している時の処理は無効にしません。


===featMilitant (前線指揮)===
===featMilitant (前線指揮)===
Line 478: Line 482:
</syntaxhighlight>
</syntaxhighlight>


*The Frontier Commander feat is applied to STR, DEX, PER. (70, 72,73)
* 前線指揮のフィートはSTR、DEX、PERに適用される。 (70,72,73)
*For each character with the feat, num2 is increased by the level of that feat (1).
* そのフィートを持つキャラクター1人につき、num2はフィートのレベル分(1)増加する。
*For each hostile character to PC in the current map, num3 is increased by 1.
* 現在いるマップのPCに敵対するキャラクター1人につき、num3は1増加する。
*The final bonus to that stat is calculated by:
* そのステータスに対する最終的なボーナスは、以下のように計算される。
**At least 1,
** 少なくとも1
**The current value * Clamp(4 + sqrt(num3) * num2 * 2, 5, 30) / 100
** 現在の値 * Clamp(4 + sqrt(num3) * num2 * 2, 5, 30) / 100
***At least 5% of the current value of that stat, at most 30%.
*** 現在値の少なくとも5%、最大30%のボーナスが
***the bonus is determined by the Square root of number of enemy, times the amount of NPC with the feat, times 2, plus 4.
*** 与えられます。ボーナスは、敵の数の平方根に、そのフィートを持つNPCの数をかけたものに2を足した値で決定されます。
***The maximum bonus is reached at 169 enemies if 1 character with feat, but only about 39 enemies if 2 characters.
*** 最大ボーナスは、前線指揮を持っているキャラが1人の場合、敵が169体で到達しますが、2人の場合は、敵が約39体で到達します。


===featWhiteVixen (巫女)===
===featWhiteVixen (巫女)===
Line 529: Line 533:
return;
return;
}
}
</syntaxhighlight>
</syntaxhighlight>'''プレイヤー'''に与えられる魔法の経験値は、いくつかの要因によって決定されます。


*The spell exp given to '''PC''' is determined by several factors.
* 基本値:200 + 装備のLV * 3
**Base value: 200 + 3 * LV of equipment
* 奇跡品質の場合、値は300%に増加します。
**If Legendary (or Miracle), the value is increased to 300%.
* 神器品質の場合、値は500%に増加します。
**If Mythical (or Godly), the value is increase to 500%.
* 装備が堕落している場合、さらに2倍になります。
**If equipment is doomed, further times 2.


===featSnail (かたつむり)===
===featSnail (かたつむり)===
Line 555: Line 558:
</syntaxhighlight>
</syntaxhighlight>


*Oh you poor snail...Hope you are doing ok, but this piece of code will ruin your day...
* ああ、かわいそうなかたつむり...何事もなく元気に過ごせることを願うが、このコードがあなたの一日を台無しにしてしまうだろう...
*If a janitor sees a snail within 4 blocks, and they are not in the casino:
* もし清掃員が4ブロック以内にかたつむりを見つけ、それがカジノ内にいない場合、
**The janitor will generate a pot of salt water and throw it to the snail's position.
** 清掃員は塩水のポーションを生成し、それをかたつむりのいる場所に投げつけるだろう。
***The id of salt water is hard coded though, and if the id change...
*** 塩水のIDはハードコードされているが、もしIDが変更されたら...
 
<syntaxhighlight lang="c#" line="1">
<syntaxhighlight lang="c#" line="1">
case EffectId.SaltWater:
case EffectId.SaltWater:
Line 575: Line 577:
</syntaxhighlight>
</syntaxhighlight>


*If a poor snail accidentally drank salt water, it will receive very, very high damage.
*貧弱なかたつむりがうっかり塩水を浴びてしまうと、非常に大きなダメージを受けます。
**If the snail's HP is higher than 10, it's HP will be reduced to at most 10.
** かたつむりのHPが10より高い場合、最大でも10まで減少します。
**If the snail's HP is lower or equal to 10, then it will receive 10000 damage.
** かたつむりのHPが10以下の場合、10000のダメージを受けます。
***But if you are in autocombat, because the damage is not a source of Finish, it will at most leave you to 0 HP.
*** ただし、オートコンバット中の場合、最大でもHPが0になるだけです。


===featFoxLearn (古き狐の血統)===
=== featFoxLearn (古き狐の血統)===
<syntaxhighlight lang="c#" line="1">
<syntaxhighlight lang="c#" line="1">
public int GetSpellExp(Chara c, Element e, int costMod = 100)
public int GetSpellExp(Chara c, Element e, int costMod = 100)
Line 600: Line 602:
</syntaxhighlight>
</syntaxhighlight>


*The spell exp you earn is normally, the MP cost of spell times 5 + 10, if it is a SP skill, 20 * SP cost + 10.
* 獲得できる魔法経験値は通常、魔法のMPコストの5倍+10、SPスキルであれば20*SPコスト+10です。
*This feat increase the exp gain (of cost) by 30% (without influencing the stable 10 part).
* このフィートは経験値獲得量を30%増加させます(固定値の10の部分には影響しません)。
**'''Need confirmation:''' Exactly how much exp is needed for spell to gain a level?
** '''要確認:'''魔法がレベルアップするために必要な経験値は正確にはいくつ?


===featFoxBless (狐守)===
===featFoxBless (狐守)===
Line 634: Line 636:
</syntaxhighlight>
</syntaxhighlight>


*This feat is only utilized at damage calculation, and only apply when the feat is owned by PC.
* このフィートはダメージ計算の際にのみ使用され、PCがこのフィートを所有している場合にのみ適用されます。
*The damage you and your ally will receive is reduced by 100/ 100 + 5 * x, where x is the number of buffs you have, to maximum of 4.
* 自分と仲間が受けるダメージは、100/100 + 5 * xで減少します。ここでxは自分のバフの数で、最大4までです。
*Similarly, the damage characters not in your party will receive is increased by 5% per each debuff they have, to maximum of 4.
* 同様に、パーティメンバー以外のキャラクターが受けるダメージは、デバフの数1つにつき5%増加します。最大4までです。
**This debuff will also apply to any character not in your party but in your faction, so beware.
** このデバフは、パーティメンバーではなくとも、同じファクションに属するキャラクターにも適用されますので、ご注意ください。


===featFastLearner (習得上手)===
===featFastLearner (習得上手)===
Line 667: Line 669:
</syntaxhighlight>
</syntaxhighlight>


*The training & learning platinum cost will be decreased by 20%, rounding down to the nearest integer, but no less than 1.
* 訓練とスキル習得のプラチナ硬貨のコストは、切り捨てで20%割引となります。ただし1を下回ることはありません。
*Also, if the temporal potential is greater than 1000, no train can be done.
* また、潜在能力が1000を超える場合、訓練を行うことはできません。
**If you are a guild member, but rank is less than 1, then the cost of training is increased by 100%.
** ギルドメンバーであっても、ギルドランクが1未満の場合は、訓練費用が100%増額されます。
 
<syntaxhighlight lang="c#" line="1">
<syntaxhighlight lang="c#" line="1">
     public override int ExpToNext => (100 + base.Value * 10) * (100 - owner.Value(403)) / 100;
     public override int ExpToNext => (100 + base.Value * 10) * (100 - owner.Value(403)) / 100;
Line 677: Line 678:
</syntaxhighlight>
</syntaxhighlight>


*For each element, the lvlup exp needed to get to next level is decreased by 20%.
* 各要素について、次のレベルに到達するために必要な経験値が20%減少します。
*This also apply to the character level up, also decreased by 20%.
* これはキャラクターのレベルアップにも適用され、同じく20%減少します。


===featManabond (マナの体)===
===featManabond (マナとの絆)===
<syntaxhighlight lang="c#" line="1">
<syntaxhighlight lang="c#" line="1">
     int num = -value * 400 / (100 + BaseStats.CC.Evalue(303) * 10);
     int num = -value * 400 / (100 + BaseStats.CC.Evalue(303) * 10);
Line 703: Line 704:
</syntaxhighlight>
</syntaxhighlight>


*This might in fact become a thread on how mana overcasting damage works.
* これは、マナの反動のダメージの仕組みに関する話題になるかもしれません。
*We first calculate a base damage. For each point of mana missing after using mana, 4 point of HP damage will be lost without skill.
* まず、基本ダメージを計算します。MPを使用した後に不足したMP1ポイントにつき、スキルなしで4ポイントのHPダメージが失われます。
**With 10 level of Mana capacity, this damage will be cut in half. 20 level, 33%, 30 level, 25%, etc.
** 魔力の限界スキルが10レベルの場合、このダメージは半分になります。20レベルでは33%、30レベルでは25%、などです。
*If you have the manabond feat, this damage will but further cut by 66%.
* マナとの絆のフィートを持っている場合、このダメージはさらに66%カットされます。
*NPCs will also recieve mana overcasting damage, but will be cut by 80%, and if the final result is less then 10, take no damage.
* NPCもマナの反動ダメージを受けますが、80%カットされ、最終的な結果が10未満の場合はダメージを受けません。
**Even so, this can still be exploited in some way, I think.
** それでも、これはまだ何らかの形で悪用できると思います。
*Finally, the experience gained with mana capacity skill is calculated with '''the mana used''', instead of '''mana depleted''', times 10.
* 最後に、魔力の限界スキルで得られる経験値は、'''減少したMP'''の代わりに'''使用したMP'''に10を掛けた値で計算されます。
**For example, if you cast healing of Juere, which cost 100 mana when you only have 99, you will gain 1000 base experience in mana capacity, while only recieving minimal damage.
** 例えば、MPが99しかない時に100MPを消費する《ジュア》の癒しを唱えた場合、最低限のダメージしか受けずに、魔力の限界スキルで1000の基本経験値を得ることができます。


==後天フィート==
==後天フィート==
Line 735: Line 736:
</syntaxhighlight>
</syntaxhighlight>


*If you don't have this feat, and you eat human flesh, there is a 20% chance that you will gain the Canniblism feat.
* このフィートを持っていない場合、人肉を食べると20%の確率で「カンニバリズム」の能力を得ることができます。
**If you are not human (i.e. if you don't consider eating human flesh as Canniblism), there is still 5% chance you will get this feat.
** あなたが人間系種族でない場合(すなわち、人間を食べることをカンニバリズムとは考えない場合)、このフィートを得る確率は5%です。
 
*This feat will only last for 10080 minutes in game, i.e. a week of in game time. If you have another piece, this timer will refresh.


* このフィートはゲーム内で10080分間、すなわちゲーム内時間で1週間だけ有効です。人肉をもう1枚食べると、このタイマーはリセットされます。<br />


==入手不可能なフィート==
==入手不可能なフィート==
Line 745: Line 745:
このセクションには、通常の手段では得られないフィートが含まれているため情報は鵜呑みにしないでください。ここに記載されているすべてのフィート効果は'''検証が必要です'''。
このセクションには、通常の手段では得られないフィートが含まれているため情報は鵜呑みにしないでください。ここに記載されているすべてのフィート効果は'''検証が必要です'''。


===featBoost (Boost)===
===featBoost (ブースト)===
<syntaxhighlight lang="c#" line="1">
<syntaxhighlight lang="c#" line="1">
if (hp < MaxHP / 3 && HasElement(1409) && !Chara.HasCooldown(1409))
if (hp < MaxHP / 3 && HasElement(1409) && !Chara.HasCooldown(1409))
Line 756: Line 756:
</syntaxhighlight>
</syntaxhighlight>


*With this feat, when your HP is lower than 1/3 of your maximum, your HP will be healed immediately by 50%.
*このフィートにより、HPが最大値の1/3以下になると、HPが即座に50%回復する。
**Boost condition will also be activated, and almost all debuffs and temporal stat decrease will be cured.
** ブースト状態も発動し、ほぼ全てのデバフと時間経過によるステータス減少が回復する。
*Not sure where this is used.
[[Category:JA]]
[[Category:JA]]
[[Category:Elin Spoiler]]
[[Category:Elin Spoiler]]
{{DEFAULTSORT:カイセキ,フィート}}
{{DEFAULTSORT:カイセキ,フィート}}
5,956

edits