Skip to content

Commit

Permalink
feat: VPR and PCT support
Browse files Browse the repository at this point in the history
  • Loading branch information
arcan1s committed Jul 3, 2024
1 parent f3535f6 commit c4be6f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/scala/me/arcanis/ffxivbis/models/Job.scala
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ object Job {
case object RPR extends Drgs
case object NIN extends Nins
case object SAM extends Mnks
case object VPR extends Mnks

case object BRD extends Ranges
case object MCH extends Ranges
Expand All @@ -103,9 +104,10 @@ object Job {
case object BLM extends Casters
case object SMN extends Casters
case object RDM extends Casters
case object PCT extends Casters

val available: Seq[Job] =
Seq(PLD, WAR, DRK, GNB, WHM, SCH, AST, SGE, MNK, DRG, RPR, NIN, SAM, BRD, MCH, DNC, BLM, SMN, RDM)
Seq(PLD, WAR, DRK, GNB, WHM, SCH, AST, SGE, MNK, DRG, RPR, NIN, SAM, VPR, BRD, MCH, DNC, BLM, SMN, RDM, PCT)
val availableWithAnyJob: Seq[Job] = available.prepended(AnyJob)

def withName(job: String): Job =
Expand Down

0 comments on commit c4be6f1

Please sign in to comment.