パッケージ model.type
列挙クラス ActionType
- すべての実装されたインタフェース:
Serializable,Comparable<ActionType>,Constable
Classifies the type of action performed by a character during the simulation.
Used by AttackAction and CSV multiplier files to identify which
talent category a given hit belongs to, so that the correct DMG Bonus%
modifiers (e.g. StatType.NORMAL_ATTACK_DMG_BONUS,
StatType.BURST_DMG_BONUS) and ICD rules are applied.
The values match the AbilityType header values in the character
CSV files (stored as uppercase strings).
-
ネストされたクラスの概要
クラスから継承されたネストされたクラス/インタフェース java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
列挙型定数の概要
列挙定数列挙型定数説明Elemental Burst (Q key).Charged Attack (stamina-consuming follow-up or hold attack).Dash / sprint action; does not deal damage.Normal Attack (left-click chain).Catch-all for actions that do not fit the above categories.Plunge Attack (falling aerial attack).Elemental Skill (E key). -
メソッドの概要
修飾子とタイプメソッド説明static ActionTypeこのクラスの列挙型定数を指定した名前で返します。static ActionType[]values()この列挙クラスの定数を含む配列を宣言されている順序で 返します。
-
列挙型定数の詳細
-
NORMAL
Normal Attack (left-click chain). -
CHARGE
Charged Attack (stamina-consuming follow-up or hold attack). -
PLUNGE
Plunge Attack (falling aerial attack). -
SKILL
Elemental Skill (E key). -
BURST
Elemental Burst (Q key). -
DASH
Dash / sprint action; does not deal damage. -
OTHER
Catch-all for actions that do not fit the above categories.
-
-
メソッドの詳細
-
values
この列挙クラスの定数を含む配列を宣言されている順序で 返します。- 戻り値:
- この列挙クラスの定数を宣言されている順序で含む配列
-
valueOf
このクラスの列挙型定数を指定した名前で返します。 文字列は、このクラスの列挙型定数の宣言に使用された識別子と正確に 一致する必要があります。(余分な空白文字は使用 できません。)- パラメータ:
name- 返される列挙型定数の名前。- 戻り値:
- 指定した名前の列挙型定数
- 例外:
IllegalArgumentException- この列挙クラスに、指定した名前の定数がない場合NullPointerException- 引数がnullの場合
-