Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Skills.java #433

Merged
merged 1 commit into from
Feb 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions src/main/scala/com/github/unchama/seichiassist/Skills.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ public enum Skills {
NONE("[この表示を目にした場合はバグです]", 0, 0, 0, 99999, 99999, null, Kind.SINGLE),
ASSAULT(/* TODO */),
VENDER_BRIZARD(/* TODO */),

// SINGLE
DUAL_BREAK("デュアル・ブレイク", 1, 2, 0.0, 1, 10, NONE, Kind.SINGLE),
TRIALE_BREAK("トリアル・ブレイク", 3, 2, 0.0, 3, 20, DUAL_BREAK, Kind.SINGLE),
Expand All @@ -16,13 +17,14 @@ public enum Skills {
BRILLIANT_DETONATION("ブリリアント・デトネーション", 11, 11, 9, 3.5, 200, 70, GIGANTIC_BOMB, Kind.SINGLE),
REMLIA_IMPACT("レムリア・インパクト", 13, 13, 11, 5.0, 350, 80, BRILLIANT_DETONATION, Kind.SINGLE),
ETERNAL_VAIS("エターナル・ヴァイス", 15, 15, 13, 7.0, 500, 90, REMLIA_IMPACT, Kind.SINGLE),

// MULTI
TOM_BOY("トム・ボウイ", 3, 3, 3, 3, 0.6, 28, 40, EXPLOSION, Kind.MULTI),
THUNDER_STORM("サンダーストーム", 3, 3, 3, 7, 1.4, 65, 50, TOM_BOY, Kind.MULTI),
STARLIGHT_BREAKER("スターライト・ブレイカー", 5, 5, 5, 3, 2.4, 90, 60, THUNDER_STORM, Kind.MULTI),
EARTH_DIVIDE("アース・ディバイド", 5, 5, 5, 5, 3.4, 185, 70, STARLIGHT_BREAKER, Kind.MULTI),
HEAVEN_GAYBOLG("ヘヴン・ゲイボルグ", 7, 7, 7, 3, 4.8, 330, 80, EARTH_DIVIDE, Kind.MULTI),
DECISION("ディシジョン", 7, 7, 7, 7, 6.8, 480, 90, HEAVEN_GAYBOLG, Kind.FAR),
DECISION("ディシジョン", 7, 7, 7, 7, 6.8, 480, 90, HEAVEN_GAYBOLG, Kind.MULTI),

// FAR
EBIFURAI_DORAIBU("エビフライ・ドライブ", 3, 3, 3, 0.2, 18, 40, EXPLOSION, Kind.FAR),
Expand Down Expand Up @@ -58,11 +60,17 @@ public enum Skills {
}

public enum Kind {
/**
* 近接単爆型。
*/
SINGLE,
/**
* 近接複爆型。
*/
MULTI,
/**
* 遠距離型。例: エビフライ
*/
FAR,
}
}
}