Fractal Softworks Forum

Please login or register.

Login with username, password and session length
Pages: 1 [2] 3 4 ... 7

Author Topic: Conquest appreciation thread (0.95.1a)  (Read 8388 times)

CapnHector

  • Admiral
  • *****
  • Posts: 1056
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #15 on: October 09, 2022, 11:20:09 PM »

Oh yeah, re left vs right: I like putting the guns on the left so its the same as on an Odyssey in terms of flying.

This implies you are flying non-Conquest spaceships which is your first mistake.

"The missilespam"
[close]
Logged
5 ships vs 5 Ordos: Executor · Invictus · Paragon · Astral · Legion · Onslaught · Odyssey | Video LibraryHiruma Kai's Challenge

BCS

  • Captain
  • ****
  • Posts: 279
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #16 on: October 09, 2022, 11:27:55 PM »

Augmented drive field, efficiency overhaul, locust. Damn, I am too much of a coward to use stuff that does not directly help in combat. I suppose locust does I just rarely use it and mostly on Apogees if I do.

I actually prefer the Locust because if the AI is going to waste a salvo on every passing frigate - and it will - I want it to at least do something. Seeing an entire Squall salvo go nowhere gives me conniptions.

That said two Locusts is... a LOT of missiles. Gets into the "finishing off a cruiser" territory.
Logged

Candesce

  • Captain
  • ****
  • Posts: 262
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #17 on: October 10, 2022, 03:21:22 PM »

That said two Locusts is... a LOT of missiles. Gets into the "finishing off a cruiser" territory.
I actually find myself using Locusts for their "intended" purpose fairly often: making fighter wings threatening my frigate wolfpacks go away.
Logged

Brainwright

  • Admiral
  • *****
  • Posts: 623
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #18 on: October 10, 2022, 08:26:50 PM »

That said two Locusts is... a LOT of missiles. Gets into the "finishing off a cruiser" territory.
I actually find myself using Locusts for their "intended" purpose fairly often: making fighter wings threatening my frigate wolfpacks go away.

Better range than my solution : one devastator on each side and dual squalls.  Leaves just about enough flux for one mjolnir.

Ever since I noticed Devastators were HE, they're popping up everywhere...
Logged

CapnHector

  • Admiral
  • *****
  • Posts: 1056
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #19 on: October 10, 2022, 09:59:10 PM »

Considering Locust vs. Squall, we have this
SquallLocust
Range25001400
Ammo for2.62.2 minutes of continuous fire (no expanded missile racks)
1 volley is fired over19.4 seconds8.9 seconds
DPS vs shields512224.75
DPS vs armor128+EMP224.75
TrackingBadExcellent
I'm still going to go with the Squall for the range and combination with Hellbores, but now I'm really curious about which is objectively the superior choice. Anybody have any ideas how this could be tested empirically, like simulations of fleet combat?
Logged
5 ships vs 5 Ordos: Executor · Invictus · Paragon · Astral · Legion · Onslaught · Odyssey | Video LibraryHiruma Kai's Challenge

Thaago

  • Global Moderator
  • Admiral
  • *****
  • Posts: 7238
  • Harpoon Affectionado
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #20 on: October 11, 2022, 12:05:59 AM »

Be careful with that DPS vs armor... both get reduced a lot, but Squalls have 125 hit strength (in this version anyways) vs 50 for Locusts, so in practice do a lot more. Squalls missiles are almost as powerful as HVD rounds (275 kinetic damage for HVD vs 250 for Squall) so they will fairly quickly deal with destroyer grade armor.
Logged

CapnHector

  • Admiral
  • *****
  • Posts: 1056
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #21 on: October 11, 2022, 03:12:10 AM »

Oh true, I forgot. Let's do this right. Damage from a missile hit = damage*max(0.15,(damage)/(damage+(max0.05*armor,(armor-cumulative damage))). Let's assume we are fighting a dominator. Then apparently the effective armor is 9/15*1500+12/15*750 if I understand this cell thing right, if all missiles hit the same cell. So 1500 armor. Then apparently the total damage for k missiles doing x damage is given by Sum[x Max[0.15, x/(x + Max[1500 - x i, 0.05 1500])], {i, 0, k}] in Wolfram language. It's actually even more complicated than that. Here's some R code.
Spoiler
remainingarmor <- function(damage, armor, startingarmor) max(0.05*startingarmor,armor-damage)
armordamage <- function(damage, armor) damage*(max(0.15,damage/(damage+armor)))

totalarmordamage <- function(damage, startingarmor, salvo){
  armor <-startingarmor
  totaldamage <- 0
  for (i in 1:salvo){
  totaldamage <- totaldamage + armordamage(damage, armor)
  armor <- remainingarmor(armordamage(damage,armor), armor, startingarmor)
  }
  totaldamage
}

armorhpremaining <- function(missiledamage, multiplier, startingarmor, salvo) startingarmor - totalarmordamage(missiledamage*multiplier,startingarmor,salvo)

shieldhpremaining <- function(duration, dps, multiplier, startingshields, regenrate) startingshields-duration*dps*multiplier+duration*regenrate

hullhpremaining <- function(missiledamage, startinghull, salvo) startinghull-missiledamage*salvo
[close]

After one Squall salvo the Dominator will have 1125 armor remaining. Used in pairs, after two Squall salvos the Dominator will have 750 armor remaining. It will take a total of 4 salvos (65 missiles) to penetrate Dominator armor.

On the other hand, after one Locust salvo the Dominator will have 1200 armor remaining. Used in pairs, after two Locust salvos the Dominator will have 900 armor remaining. It will take a total of 5 salvos (186 missiles) to penetrate Dominator armor. So the Squall wins out despite lower DPS.

For the complete picture, let's factor in the dominator's shield which is 10 000 points of flux at 1 points of flux / damage and 500 points dissipation / second (base). With 1 Squall, after the salvo time of 19.4 seconds the Dominator will have 9767.2 points of shields left. With 2 Squalls, the Dominator will lose shields (-165.6 hp left). With Locusts, the shields can't be downed at all using just the missiles, since the regen rate is greater than the damage, even when used in pairs.

The Locusts will do 8000 hull damage per salvo, so once the armor is down they will eliminate the Dominator with 2 salvos. Meanwhile the Squalls will require 3 salvos to do so.

Apparently the reason the Squall spam strategy works is partly that when you have several Conquests worth of Squalls firing at a single target, it is enough to penetrate even cruiser/capital level armor in addition to devastating shields. Also, because of the range, you usually have several ships that can spam missiles at a single target. Of course, this is ignoring that you should also mount Harpoons to go with the Squalls.
« Last Edit: October 11, 2022, 06:26:04 AM by CapnHector »
Logged
5 ships vs 5 Ordos: Executor · Invictus · Paragon · Astral · Legion · Onslaught · Odyssey | Video LibraryHiruma Kai's Challenge

Brainwright

  • Admiral
  • *****
  • Posts: 623
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #22 on: October 11, 2022, 07:35:01 AM »

Apparently the reason the Squall spam strategy works is partly that when you have several Conquests worth of Squalls firing at a single target, it is enough to penetrate even cruiser/capital level armor in addition to devastating shields. Also, because of the range, you usually have several ships that can spam missiles at a single target. Of course, this is ignoring that you should also mount Harpoons to go with the Squalls.

There's also a behavoral element to it as well.  Most ships won't close the distance if they're under steady fire.

I don't tend to use hellbores as anything I bear down on can dodge the rounds or flicker shields to catch each one, but I find they do keep ships from closing in too aggressively, where they wouldn't be able to dodge.

I also don't find HE that useful on capitals compared to EMP.  On a Conquest, a pair of Harpoon launchers will typically suffice for cracking armor while a mjolnir will crack every ship except low-tech in short order.
Logged

CapnHector

  • Admiral
  • *****
  • Posts: 1056
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #23 on: October 11, 2022, 10:45:28 PM »

Well, I enjoy statistics way too much to leave it at that. Let's find the actual optimum weapons layout for killing Dominators. The weapon data is from the game files this time. All weapons are assumed to hit the target immediately upon firing.

"R code for timeseries"
library(ggplot2)
library(ggthemes)

armordamage <- function(damage, armor, startingarmor) damage*(max(0.15,damage/(damage+max(0.05*startingarmor,armor))))

#squall fires 2 missiles / sec for 10 secs, then recharges for 10 secs
squalltics <- c(2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0)
#locust fires 10 missiles / sec for 4 secs, then recharges for 5 secs
locusttics <- c(10,10,10,10,0,0,0,0,0)
#hurricane fires 9 missiles every 15 seconds
hurricanetics <- c(9,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
#harpoon pod fires 4 missiles, then recharges for 8 seconds (in reality 8.25)
harpoontics <- c(4,0,0,0,0,0,0,0)
#sabot pod fires 2*5 missiles, then recharges for 8 seconds (in reality 8.75 seconds and firing time is .5 seconds)
sabottics <- c(10,0,0,0,0,0,0,0,0)
#gauss fires 1 shot, then charges for 1 second
gausstics <- c(1,0)
#hephaestus fires 4 shots / sec
hephaestustics <- c(4)
#mark ix fires 4 shots every 3 seconds
markixtics <- c(4,0,0)
#mjolnir fires 4 shots per 3 seconds
mjolnirtics <- c(1.33,1.33,1.33)
#hellbore fires 1 shot per 4 seconds
hellboretics <- c(1,0,0,0)
#storm needler fires 10 shots per second
stormneedlertics <- c(10)

#damage per shot, damage type (2=kinetic, 0.5=he, 0.25=frag, 1=energy), tics, weapon name
squall <- list(250, 2, squalltics, "Squall")
locust <- list(200, 0.25, locusttics, "Locust")
hurricane <- list(500, 0.5, hurricanetics, "Hurricane")
harpoon <- list(750, 0.5, harpoontics, "Harpoon")
sabot <- list(200, 2, sabottics, "Sabot")
gauss <- list(700, 2, gausstics, "Gauss")
hephaestus <- list(120, 0.5, hephaestustics, "Hephaestus")
markix <- list(200, 2, markixtics, "Mark IX")
mjolnir <- list(400, 1, mjolnirtics, "Mjolnir")
hellbore <- list(750, 0.5, hellboretics, "Hellbore")
stormneedler <- list(50, 2, stormneedlertics, "Storm Needler")
dummy <- list(0,0,c(0),"")

weapon1 <- squall
weapon2 <- squall
weapon3 <- dummy
weapon4 <- dummy
weapon5 <- dummy
weapon6 <- dummy

damageattimepoint <- function(weapon, timepoint) c(unlist(weapon[1])*unlist(weapon[3])[timepoint %% length(unlist(weapon[3]))], unlist(weapon[2]))

timeseries <- function(timepoint, shieldhp, armorhp, hullhp, shieldregen, shieldmax, startingarmor){

   
    #flux dissipation - perfect shielduse
    if(hullhp > 0){
    shieldhp <- min(shieldhp+shieldregen, shieldmax)
    } else {shieldhp <- 0}
    #1. shields. if shieldhp is sufficient, use shield to block
    weapon1mult <- unlist(weapon1[2])
    if (shieldhp > damageattimepoint(weapon1, timepoint)[1]*weapon1mult){
      shieldhp <- shieldhp - damageattimepoint(weapon1, timepoint)[1]*weapon1mult
      shieldhp <- max(shieldhp, 0)
    } else {
    #2. armor
      if(armorhp > 0){
      if(unlist(weapon1[2])==0.25){weapon1mult = 0.25} else {weapon1mult= 1 / unlist(weapon1[2])}
      armorhp <- armorhp - armordamage(damageattimepoint(weapon1, timepoint)[1]*weapon1mult,armorhp,startingarmor)
      armorhp <- max(armorhp, 0)
    } else {
    #3. hull
      hulldmg <- damageattimepoint(weapon1, timepoint)[1]
      hullhp <- hullhp - hulldmg*hulldmg/(hulldmg+0.05*startingarmor)
      hullhp <- max(hullhp,0)
    }
    }
    #other weapons
    weapon2mult <- unlist(weapon2[2])
    if (shieldhp > damageattimepoint(weapon2, timepoint)[1]*weapon2mult){
      shieldhp <- shieldhp - damageattimepoint(weapon2, timepoint)[1]*weapon2mult
      shieldhp <- max(shieldhp, 0)
    } else {
      if(armorhp > 0){
        if(unlist(weapon2[2])==0.25){weapon2mult = 0.25} else {weapon2mult= 1 / unlist(weapon2[2])}
        armorhp <- armorhp - armordamage(damageattimepoint(weapon2, timepoint)[1]*weapon2mult,armorhp,startingarmor)
        armorhp <- max(armorhp, 0)
      } else {
        hulldmg <- damageattimepoint(weapon2, timepoint)[1]
        hullhp <- hullhp - hulldmg*hulldmg/(hulldmg+0.05*startingarmor)
        hullhp <- max(hullhp,0)
      }
    }
    weapon3mult <- unlist(weapon3[2])
    if (shieldhp > damageattimepoint(weapon3, timepoint)[1]*weapon3mult){
      shieldhp <- shieldhp - damageattimepoint(weapon3, timepoint)[1]*weapon3mult
      shieldhp <- max(shieldhp, 0)
    } else {
      if(armorhp > 0){
        if(unlist(weapon3[2])==0.25){weapon3mult = 0.25} else {weapon3mult= 1 / unlist(weapon3[2])}
        armorhp <- armorhp - armordamage(damageattimepoint(weapon3, timepoint)[1]*weapon3mult,armorhp,startingarmor)
        armorhp <- max(armorhp, 0)
      } else {
        hulldmg <- damageattimepoint(weapon3, timepoint)[1]
        hullhp <- hullhp - hulldmg*hulldmg/(hulldmg+0.05*startingarmor)
        hullhp <- max(hullhp,0)
      }
    }
    weapon4mult <- unlist(weapon4[2])
    if (shieldhp > damageattimepoint(weapon4, timepoint)[1]*weapon4mult){
      shieldhp <- shieldhp - damageattimepoint(weapon4, timepoint)[1]*weapon4mult
      shieldhp <- max(shieldhp, 0)
    } else {
      if(armorhp > 0){
        if(unlist(weapon4[2])==0.25){weapon4mult = 0.25} else {weapon4mult= 1 / unlist(weapon4[2])}
        armorhp <- armorhp - armordamage(damageattimepoint(weapon4, timepoint)[1]*weapon4mult,armorhp,startingarmor)
        armorhp <- max(armorhp, 0)
      } else {
        hulldmg <- damageattimepoint(weapon4, timepoint)[1]
        hullhp <- hullhp - hulldmg*hulldmg/(hulldmg+0.05*startingarmor)
        hullhp <- max(hullhp,0)
      }
    }
    weapon5mult <- unlist(weapon5[2])
    if (shieldhp > damageattimepoint(weapon5, timepoint)[1]*weapon5mult){
      shieldhp <- shieldhp - damageattimepoint(weapon5, timepoint)[1]*weapon5mult
      shieldhp <- max(shieldhp, 0)
    } else {
      if(armorhp > 0){
        if(unlist(weapon5[2])==0.25){weapon5mult = 0.25} else {weapon5mult= 1 / unlist(weapon5[2])}
        armorhp <- armorhp - armordamage(damageattimepoint(weapon5, timepoint)[1]*weapon5mult,armorhp,startingarmor)
        armorhp <- max(armorhp, 0)
      } else {
        hulldmg <- damageattimepoint(weapon5, timepoint)[1]
        hullhp <- hullhp - hulldmg*hulldmg/(hulldmg+0.05*startingarmor)
        hullhp <- max(hullhp,0)
      }
    }
    weapon6mult <- unlist(weapon6[2])
    if (shieldhp > damageattimepoint(weapon6, timepoint)[1]*weapon6mult){
      shieldhp <- shieldhp - damageattimepoint(weapon6, timepoint)[1]*weapon6mult
      shieldhp <- max(shieldhp, 0)
    } else {
      if(armorhp > 0){
        if(unlist(weapon6[2])==0.25){weapon6mult = 0.25} else {weapon6mult= 1 / unlist(weapon6[2])}
        armorhp <- armorhp - armordamage(damageattimepoint(weapon6, timepoint)[1]*weapon6mult,armorhp,startingarmor)
        armorhp <- max(armorhp, 0)
      } else {
        hulldmg <- damageattimepoint(weapon6, timepoint)[1]
        hullhp <- hullhp - hulldmg*hulldmg/(hulldmg+0.05*startingarmor)
        hullhp <- max(hullhp,0)
      }
    }
    return(c(timepoint, shieldhp, armorhp, hullhp, shieldregen, shieldmax, startingarmor))
}

totaltime = 180

#dominator, hullhp, shieldregen, shieldmax, startingarmor
ship <- c(14000, 500, 10000, 1500)

armorhp <- ship[4]
shieldhp <- ship[3]
hullhp <- ship[1]
shieldregen <- ship[2]
shieldmax <- ship[3]
armorhp <- ship[4]
startingarmor <- ship[4]

timeseriesarray <- data.frame(matrix(ncol = 4,nrow=0))

for (t in 1:totaltime){
  state <- timeseries(t,shieldhp,armorhp,hullhp,shieldregen,shieldmax,startingarmor)
  shieldhp <- state[2]
  armorhp <- state[3]
  hullhp <- state[4]
  flux <- shieldmax - shieldhp
  if(hullhp == 0){flux <- 0}
  timeseriesarray <- rbind(timeseriesarray , c(state[1], flux/shieldmax*100, state[3]/startingarmor*100, state[4]/ship[1]*100))
 
}

colnames(timeseriesarray) <-  c("Time", "Flux", "Armor", "Hull")
weaponstitle <- paste(unlist(weapon1[4]),unlist(weapon2[4]),unlist(weapon3[4]),unlist(weapon4[4]),unlist(weapon5[4]),unlist(weapon6[4]))


ggplot(timeseriesarray, aes(x=Time)) + theme_tufte() +
  geom_line(aes(y = Flux, color = "Flux")) +
  geom_line(aes(y = Armor, color="Armor")) +
  geom_line(aes(y = Hull, color="Hull")) +
  scale_colour_manual("",
                      breaks = c("Flux", "Armor", "Hull"),
                      values = c("lightsteelblue", "red", "maroon")) +
  ylab("% max") +
  xlab("Time (s)") +
  labs(title=weaponstitle)

[close]

Testing manually, Squall Squall is the best large missile combo for killing Dominators. Here is what it does:



Now let's tweak the code a bit and find the optimum weapons combo in the weapon space of weapon1, weapon2=Squall, Locust or Hurricane weapon3, weapon4 = Harpoon or Sabot weapon5,weapon6 = Gauss, Hephaestus, Mark IX, Mjolnir, Hellbore or Storm Needler. Change the code a little

"R code"
armordamage <- function(damage, armor, startingarmor) damage*(max(0.15,damage/(damage+max(0.05*startingarmor,armor)))) 

#squall fires 2 missiles / sec for 10 secs, then recharges for 10 secs
squalltics <- c(2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0)
#locust fires 10 missiles / sec for 4 secs, then recharges for 5 secs
locusttics <- c(10,10,10,10,0,0,0,0,0)
#hurricane fires 9 missiles every 15 seconds
hurricanetics <- c(9,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
#harpoon pod fires 4 missiles, then recharges for 8 seconds (in reality 8.25)
harpoontics <- c(4,0,0,0,0,0,0,0)
#sabot pod fires 2*5 missiles, then recharges for 8 seconds (in reality 8.75 seconds and firing time is .5 seconds)
sabottics <- c(10,0,0,0,0,0,0,0,0)
#gauss fires 1 shot, then charges for 1 second
gausstics <- c(1,0)
#hephaestus fires 4 shots / sec
hephaestustics <- c(4)
#mark ix fires 4 shots every 3 seconds
markixtics <- c(4,0,0)
#mjolnir fires 4 shots per 3 seconds
mjolnirtics <- c(1.33,1.33,1.33)
#hellbore fires 1 shot per 4 seconds
hellboretics <- c(1,0,0,0)
#storm needler fires 10 shots per second
stormneedlertics <- c(10)

#damage per shot, damage type (2=kinetic, 0.5=he, 0.25=frag, 1=energy), tics, weapon name
squall <- list(250, 2, squalltics, "Squall")
locust <- list(200, 0.25, locusttics, "Locust")
hurricane <- list(500, 0.5, hurricanetics, "Hurricane")
harpoon <- list(750, 0.5, harpoontics, "Harpoon")
sabot <- list(200, 2, sabottics, "Sabot")
gauss <- list(700, 2, gausstics, "Gauss")
hephaestus <- list(120, 0.5, hephaestustics, "Hephaestus")
markix <- list(200, 2, markixtics, "Mark IX")
mjolnir <- list(400, 1, mjolnirtics, "Mjolnir")
hellbore <- list(750, 0.5, hellboretics, "Hellbore")
stormneedler <- list(50, 2, stormneedlertics, "Storm Needler")
dummy <- list(0,0,c(0),"")

weapon1 <- squall
weapon2 <- squall
weapon3 <- dummy
weapon4 <- dummy
weapon5 <- dummy
weapon6 <- dummy

weapon1choices <- list(squall, locust, hurricane, dummy)
weapon2choices <- list(squall, locust, hurricane, dummy)
weapon3choices <- list(harpoon, sabot, dummy)
weapon4choices <- list(harpoon, sabot, dummy)
weapon5choices <- list(gauss, markix, mjolnir, hellbore, hephaestus, stormneedler, dummy)
weapon6choices <- list(gauss, markix, mjolnir, hellbore, hephaestus, stormneedler, dummy)

timeseriesarray <- data.frame(matrix(ncol = 7,nrow=0))



timetokill=0

damageattimepoint <- function(weapon, timepoint) c(unlist(weapon[1])*unlist(weapon[3])[timepoint %% length(unlist(weapon[3]))], unlist(weapon[2]))



timeseries <- function(timepoint, shieldhp, armorhp, hullhp, shieldregen, shieldmax, startingarmor){
   
    #flux dissipation - perfect shielduse
    if(hullhp > 0){
    shieldhp <- min(shieldhp+shieldregen, shieldmax)
    } else {shieldhp <- 0}
    #1. shields. if shieldhp is sufficient, use shield to block
    weapon1mult <- unlist(weapon1[2])
    if (shieldhp > damageattimepoint(weapon1, timepoint)[1]*weapon1mult){
      shieldhp <- shieldhp - damageattimepoint(weapon1, timepoint)[1]*weapon1mult
      shieldhp <- max(shieldhp, 0)
    } else {
    #2. armor
      if(armorhp > 0){
      if(unlist(weapon1[2])==0.25){weapon1mult = 0.25} else {weapon1mult= 1 / unlist(weapon1[2])}
      armorhp <- armorhp - armordamage(damageattimepoint(weapon1, timepoint)[1]*weapon1mult,armorhp,startingarmor)
      armorhp <- max(armorhp, 0)
    } else {
    #3. hull
      hulldmg <- damageattimepoint(weapon1, timepoint)[1]
      hullhp <- hullhp - hulldmg*hulldmg/(hulldmg+0.05*startingarmor)
      hullhp <- max(hullhp,0)
    }
    }
    #other weapons
    weapon2mult <- unlist(weapon2[2])
    if (shieldhp > damageattimepoint(weapon2, timepoint)[1]*weapon2mult){
      shieldhp <- shieldhp - damageattimepoint(weapon2, timepoint)[1]*weapon2mult
      shieldhp <- max(shieldhp, 0)
    } else {
      if(armorhp > 0){
        if(unlist(weapon2[2])==0.25){weapon2mult = 0.25} else {weapon2mult= 1 / unlist(weapon2[2])}
        armorhp <- armorhp - armordamage(damageattimepoint(weapon2, timepoint)[1]*weapon2mult,armorhp,startingarmor)
        armorhp <- max(armorhp, 0)
      } else {
        hulldmg <- damageattimepoint(weapon2, timepoint)[1]
        hullhp <- hullhp - hulldmg*hulldmg/(hulldmg+0.05*startingarmor)
        hullhp <- max(hullhp,0)
      }
    }
    weapon3mult <- unlist(weapon3[2])
    if (shieldhp > damageattimepoint(weapon3, timepoint)[1]*weapon3mult){
      shieldhp <- shieldhp - damageattimepoint(weapon3, timepoint)[1]*weapon3mult
      shieldhp <- max(shieldhp, 0)
    } else {
      if(armorhp > 0){
        if(unlist(weapon3[2])==0.25){weapon3mult = 0.25} else {weapon3mult= 1 / unlist(weapon3[2])}
        armorhp <- armorhp - armordamage(damageattimepoint(weapon3, timepoint)[1]*weapon3mult,armorhp,startingarmor)
        armorhp <- max(armorhp, 0)
      } else {
        hulldmg <- damageattimepoint(weapon3, timepoint)[1]
        hullhp <- hullhp - hulldmg*hulldmg/(hulldmg+0.05*startingarmor)
        hullhp <- max(hullhp,0)
      }
    }
    weapon4mult <- unlist(weapon4[2])
    if (shieldhp > damageattimepoint(weapon4, timepoint)[1]*weapon4mult){
      shieldhp <- shieldhp - damageattimepoint(weapon4, timepoint)[1]*weapon4mult
      shieldhp <- max(shieldhp, 0)
    } else {
      if(armorhp > 0){
        if(unlist(weapon4[2])==0.25){weapon4mult = 0.25} else {weapon4mult= 1 / unlist(weapon4[2])}
        armorhp <- armorhp - armordamage(damageattimepoint(weapon4, timepoint)[1]*weapon4mult,armorhp,startingarmor)
        armorhp <- max(armorhp, 0)
      } else {
        hulldmg <- damageattimepoint(weapon4, timepoint)[1]
        hullhp <- hullhp - hulldmg*hulldmg/(hulldmg+0.05*startingarmor)
        hullhp <- max(hullhp,0)
      }
    }
    weapon5mult <- unlist(weapon5[2])
    if (shieldhp > damageattimepoint(weapon5, timepoint)[1]*weapon5mult){
      shieldhp <- shieldhp - damageattimepoint(weapon5, timepoint)[1]*weapon5mult
      shieldhp <- max(shieldhp, 0)
    } else {
      if(armorhp > 0){
        if(unlist(weapon5[2])==0.25){weapon5mult = 0.25} else {weapon5mult= 1 / unlist(weapon5[2])}
        armorhp <- armorhp - armordamage(damageattimepoint(weapon5, timepoint)[1]*weapon5mult,armorhp,startingarmor)
        armorhp <- max(armorhp, 0)
      } else {
        hulldmg <- damageattimepoint(weapon5, timepoint)[1]
        hullhp <- hullhp - hulldmg*hulldmg/(hulldmg+0.05*startingarmor)
        hullhp <- max(hullhp,0)
      }
    }
    weapon6mult <- unlist(weapon6[2])
    if (shieldhp > damageattimepoint(weapon6, timepoint)[1]*weapon6mult){
      shieldhp <- shieldhp - damageattimepoint(weapon6, timepoint)[1]*weapon6mult
      shieldhp <- max(shieldhp, 0)
    } else {
      if(armorhp > 0){
        if(unlist(weapon6[2])==0.25){weapon6mult = 0.25} else {weapon6mult= 1 / unlist(weapon6[2])}
        armorhp <- armorhp - armordamage(damageattimepoint(weapon6, timepoint)[1]*weapon6mult,armorhp,startingarmor)
        armorhp <- max(armorhp, 0)
      } else {
        hulldmg <- damageattimepoint(weapon6, timepoint)[1]
        hullhp <- hullhp - hulldmg*hulldmg/(hulldmg+0.05*startingarmor)
        hullhp <- max(hullhp,0)
      }
    }
    return(c(timepoint, shieldhp, armorhp, hullhp, shieldregen, shieldmax, startingarmor))
}

totaltime = 180

#dominator, hullhp, shieldregen, shieldmax, startingarmor
ship <- c(14000, 500, 10000, 1500)



weapon1choices[[2]]

armorhp <- ship[4]
shieldhp <- ship[3]
hullhp <- ship[1]
shieldregen <- ship[2]
shieldmax <- ship[3]
armorhp <- ship[4]
startingarmor <- ship[4]

for (i in 1:length(weapon1choices)) {
  weapon1<-weapon1choices[]
  for (j in 1:length(weapon2choices)) {
    weapon2<-weapon2choices[[j]]
    for (k in 1:length(weapon3choices)) {
      weapon3<-weapon3choices[[k]]
      for (l in 1:length(weapon4choices)) {
        weapon4<-weapon4choices[[l]]
        for (m in 1:length(weapon5choices)) {
          weapon5<-weapon5choices[[m]]
          for (n in 1:length(weapon6choices)) {
            weapon6<-weapon6choices[[n]]
for (t in 1:totaltime){
  state <- timeseries(t,shieldhp,armorhp,hullhp,shieldregen,shieldmax,startingarmor)
  shieldhp <- state[2]
  armorhp <- state[3]
  hullhp <- state[4]
  flux <- shieldmax - shieldhp
  if(hullhp == 0){flux <- 0
    if (timetokill == 0){timetokill <- t}
  }
}
if (timetokill ==0){timetokill <- NA}

tobind <- c(timetokill,unlist(weapon1[4]),unlist(weapon2[4]),unlist(weapon3[4]),unlist(weapon4[4]),unlist(weapon5[4]),unlist(weapon6[4]))
timeseriesarray <- rbind(timeseriesarray,tobind)

timetokill <- 0
armorhp <- ship[4]
shieldhp <- ship[3]
hullhp <- ship[1]
shieldregen <- ship[2]
shieldmax <- ship[3]
armorhp <- ship[4]
startingarmor <- ship[4]
}
        }
      }
    }
  }
}
colnames(timeseriesarray) <-  c("Timetokill", "Weapon1", "Weapon2", "Weapon3", "Weapon4", "Weapon5", "Weapon6")


timeseriesarray

write.table(timeseriesarray, file = "optimizeweapons.tsv", row.names=FALSE, sep="\t")
timeseriesarray[,1]

sortbytime <- timeseriesarray[order(as.integer(timeseriesarray$Timetokill)),]
sortbytime

write.table(sortbytime, file = "optimizeweaponsbytime.txt", row.names=FALSE, sep="\t")
[close]

Results in next post due to limits.
« Last Edit: October 11, 2022, 11:55:59 PM by CapnHector »
Logged
5 ships vs 5 Ordos: Executor · Invictus · Paragon · Astral · Legion · Onslaught · Odyssey | Video LibraryHiruma Kai's Challenge

CapnHector

  • Admiral
  • *****
  • Posts: 1056
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #24 on: October 11, 2022, 11:50:07 PM »

Results from running the above (truncated at 25 seconds)
Spoiler
"Timetokill"   "Weapon1"   "Weapon2"   "Weapon3"   "Weapon4"   "Weapon5"   "Weapon6"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Hephaestus"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Storm Needler"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   ""
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Hephaestus"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Storm Needler"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   ""   "Gauss"
"17"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"17"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"17"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"17"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"17"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"17"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"17"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"17"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"17"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"17"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"17"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"17"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"17"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"17"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"17"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"17"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hellbore"
"17"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Mjolnir"
"17"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"17"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Storm Needler"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Hephaestus"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Storm Needler"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   ""
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mark IX"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Storm Needler"   "Gauss"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mark IX"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   ""   "Mark IX"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"17"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"17"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"17"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"17"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hellbore"
"17"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Mjolnir"
"17"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"17"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"17"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"17"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"17"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"17"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"17"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"17"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"17"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"17"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"17"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"17"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"17"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"17"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"17"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"17"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"17"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"17"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"17"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"17"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"17"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"17"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"17"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"17"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"17"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"17"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"17"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Storm Needler"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Hephaestus"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Storm Needler"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   ""
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mark IX"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Storm Needler"   "Gauss"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mark IX"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   ""   "Mark IX"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"17"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"17"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"17"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"17"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"17"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"17"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"17"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"17"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"17"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"17"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"17"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"17"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Hephaestus"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Storm Needler"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   ""
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mark IX"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mark IX"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   ""   "Mark IX"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"17"   "Hurricane"   "Hurricane"   "Harpoon"   ""   "Mjolnir"   "Gauss"
"17"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"17"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"17"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Gauss"
"17"   "Hurricane"   "Hurricane"   ""   "Harpoon"   "Mjolnir"   "Gauss"
"17"   "Hurricane"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"17"   "Hurricane"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"17"   "Hurricane"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"17"   "Hurricane"   ""   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"17"   "Hurricane"   ""   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"17"   "Hurricane"   ""   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"17"   ""   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"17"   ""   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"17"   ""   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"17"   ""   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"17"   ""   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"17"   ""   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"19"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"19"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"19"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"19"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"19"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"19"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"19"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"19"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"19"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Mark IX"
"19"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"19"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Hellbore"
"19"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mark IX"   "Mark IX"
"19"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mark IX"   "Mjolnir"
"19"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mark IX"   "Hellbore"
"19"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"19"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Mark IX"
"19"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"19"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Hellbore"   "Gauss"
"19"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Hellbore"   "Mark IX"
"19"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Hellbore"
"19"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"19"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"19"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"19"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Mjolnir"
"19"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"19"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Mark IX"
"19"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"19"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"19"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"19"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"19"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"19"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"19"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"19"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"19"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Hellbore"
"19"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"19"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"19"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"19"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"19"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"19"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"19"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"19"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"19"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"19"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Mark IX"
"19"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"19"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Mark IX"   "Mjolnir"
"19"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"19"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Mjolnir"   "Mark IX"
"19"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"19"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"19"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"19"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"19"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"19"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"19"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"19"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"19"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"19"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"19"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Hellbore"
"19"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Mjolnir"
"19"   "Locust"   "Locust"   "Harpoon"   ""   "Gauss"   "Gauss"
"19"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"19"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"19"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"19"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"19"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"19"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"19"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Mjolnir"
"19"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"19"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Mark IX"
"19"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"19"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Mjolnir"
"19"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"19"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Mark IX"
"19"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Hellbore"
"19"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Hellbore"   "Mjolnir"
"19"   "Locust"   "Locust"   ""   "Harpoon"   "Gauss"   "Gauss"
"19"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"19"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"19"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"19"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"19"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"19"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"19"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"19"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"19"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"19"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"19"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"19"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"19"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"19"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"19"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"19"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"19"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"19"   "Locust"   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"19"   "Locust"   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Mark IX"
"19"   "Locust"   "Hurricane"   "Sabot"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"19"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"19"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"19"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"19"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"19"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"19"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"19"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Hellbore"
"19"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"19"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"19"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"19"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"19"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"19"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"19"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"19"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"19"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"19"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Mark IX"
"19"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"19"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Mark IX"   "Mjolnir"
"19"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"19"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Mark IX"
"19"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"19"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"19"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"19"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"19"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"19"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"19"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"19"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"19"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"19"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"19"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"19"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"19"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"19"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"19"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"19"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"19"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"19"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"19"   "Hurricane"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"19"   "Hurricane"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Mark IX"
"19"   "Hurricane"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Storm Needler"
"19"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Storm Needler"   "Gauss"
"19"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"19"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"19"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"19"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"19"   "Hurricane"   "Hurricane"   "Harpoon"   ""   "Mark IX"   "Mjolnir"
"19"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Hellbore"
"19"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"19"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Mark IX"
"19"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Mjolnir"
"19"   "Hurricane"   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"19"   "Hurricane"   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Mark IX"
"19"   "Hurricane"   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"19"   "Hurricane"   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Hellbore"
"19"   "Hurricane"   "Hurricane"   "Sabot"   "Sabot"   "Mark IX"   "Gauss"
"19"   "Hurricane"   "Hurricane"   "Sabot"   "Sabot"   "Mark IX"   "Mjolnir"
"19"   "Hurricane"   "Hurricane"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"19"   "Hurricane"   "Hurricane"   "Sabot"   "Sabot"   "Mjolnir"   "Mark IX"
"19"   "Hurricane"   "Hurricane"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"19"   "Hurricane"   "Hurricane"   ""   "Harpoon"   "Mark IX"   "Mjolnir"
"19"   "Hurricane"   ""   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"19"   "Hurricane"   ""   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"19"   "Hurricane"   ""   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"19"   "Hurricane"   ""   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"19"   "Hurricane"   ""   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"19"   ""   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"19"   ""   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"19"   ""   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"19"   ""   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"19"   ""   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"20"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"20"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Storm Needler"
"20"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hellbore"
"20"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"20"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Mjolnir"
"20"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mark IX"
"20"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Hephaestus"
"20"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Storm Needler"
"20"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   ""
"20"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Mjolnir"
"20"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Mjolnir"
"20"   "Locust"   "Locust"   "Harpoon"   "Sabot"   ""   "Mjolnir"
"20"   "Locust"   "Locust"   "Harpoon"   ""   "Gauss"   "Mjolnir"
"20"   "Locust"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Gauss"
"20"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Hephaestus"
"20"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Storm Needler"
"20"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   ""
"20"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Mjolnir"
"20"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Mjolnir"
"20"   "Locust"   "Locust"   "Sabot"   "Harpoon"   ""   "Mjolnir"
"20"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Hellbore"
"20"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Hellbore"   "Gauss"
"20"   "Locust"   "Locust"   ""   "Harpoon"   "Gauss"   "Mjolnir"
"20"   "Locust"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Gauss"
"20"   "Locust"   "Hurricane"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"20"   "Hurricane"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"21"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"21"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"21"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hellbore"
"21"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"21"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"21"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"21"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Hellbore"
"21"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"21"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"21"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"21"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"21"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"21"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"21"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"21"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"21"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"21"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"21"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hellbore"
"21"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Hephaestus"
"21"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Storm Needler"
"21"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   ""
"21"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Hephaestus"   "Gauss"
"21"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Storm Needler"   "Gauss"
"21"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   ""   "Gauss"
"21"   "Squall"   "Hurricane"   "Harpoon"   ""   "Gauss"   "Gauss"
"21"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Hephaestus"
"21"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Storm Needler"
"21"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   ""
"21"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Hephaestus"   "Gauss"
"21"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Storm Needler"   "Gauss"
"21"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   ""   "Gauss"
"21"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Mjolnir"   "Hellbore"
"21"   "Squall"   "Hurricane"   ""   "Harpoon"   "Gauss"   "Gauss"
"21"   "Squall"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"21"   "Squall"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"21"   "Squall"   ""   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"21"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"21"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"21"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"21"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"21"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"21"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"21"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"21"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"21"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"21"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Hephaestus"
"21"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Storm Needler"
"21"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   ""
"21"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Hephaestus"
"21"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   ""
"21"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Gauss"
"21"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mark IX"
"21"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Gauss"
"21"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   ""   "Gauss"
"21"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   ""   "Mark IX"
"21"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"21"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Hephaestus"
"21"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Storm Needler"
"21"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   ""
"21"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Mark IX"
"21"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Mark IX"
"21"   "Locust"   "Locust"   "Harpoon"   "Sabot"   ""   "Mark IX"
"21"   "Locust"   "Locust"   "Harpoon"   ""   "Gauss"   "Mark IX"
"21"   "Locust"   "Locust"   "Harpoon"   ""   "Mark IX"   "Mjolnir"
"21"   "Locust"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Mark IX"
"21"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"21"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Hephaestus"
"21"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Storm Needler"
"21"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   ""
"21"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Mark IX"
"21"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Mark IX"
"21"   "Locust"   "Locust"   "Sabot"   "Harpoon"   ""   "Mark IX"
"21"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Hephaestus"
"21"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Storm Needler"
"21"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   ""
"21"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Mark IX"
"21"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Hephaestus"
"21"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Storm Needler"
"21"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   ""
"21"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Hephaestus"   "Gauss"
"21"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Hephaestus"   "Mjolnir"
"21"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Storm Needler"   "Gauss"
"21"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Storm Needler"   "Mjolnir"
"21"   "Locust"   "Locust"   "Sabot"   "Sabot"   ""   "Gauss"
"21"   "Locust"   "Locust"   "Sabot"   "Sabot"   ""   "Mjolnir"
"21"   "Locust"   "Locust"   "Sabot"   ""   "Gauss"   "Gauss"
"21"   "Locust"   "Locust"   "Sabot"   ""   "Gauss"   "Mjolnir"
"21"   "Locust"   "Locust"   "Sabot"   ""   "Mjolnir"   "Gauss"
"21"   "Locust"   "Locust"   "Sabot"   ""   "Mjolnir"   "Mjolnir"
"21"   "Locust"   "Locust"   ""   "Harpoon"   "Gauss"   "Mark IX"
"21"   "Locust"   "Locust"   ""   "Harpoon"   "Mark IX"   "Mjolnir"
"21"   "Locust"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Mark IX"
"21"   "Locust"   "Locust"   ""   "Sabot"   "Gauss"   "Gauss"
"21"   "Locust"   "Locust"   ""   "Sabot"   "Gauss"   "Mjolnir"
"21"   "Locust"   "Locust"   ""   "Sabot"   "Mjolnir"   "Gauss"
"21"   "Locust"   "Locust"   ""   "Sabot"   "Mjolnir"   "Mjolnir"
"21"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Hephaestus"
"21"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Storm Needler"
"21"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   ""
"21"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Hephaestus"   "Gauss"
"21"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Storm Needler"   "Gauss"
"21"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   ""   "Gauss"
"21"   "Locust"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"21"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hellbore"
"21"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Hephaestus"
"21"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Storm Needler"
"21"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   ""
"21"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Hephaestus"   "Gauss"
"21"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Storm Needler"   "Gauss"
"21"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   ""   "Gauss"
"21"   "Hurricane"   "Squall"   "Harpoon"   ""   "Gauss"   "Gauss"
"21"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Hephaestus"
"21"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Storm Needler"
"21"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   ""
"21"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Hephaestus"   "Gauss"
"21"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Storm Needler"   "Gauss"
"21"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   ""   "Gauss"
"21"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Hellbore"
"21"   "Hurricane"   "Squall"   ""   "Harpoon"   "Gauss"   "Gauss"
"21"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Hephaestus"
"21"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Storm Needler"
"21"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   ""
"21"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Gauss"
"21"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Gauss"
"21"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   ""   "Gauss"
"21"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Hephaestus"
"21"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   ""
"21"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Hephaestus"   "Gauss"
"21"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   ""   "Gauss"
"21"   "Hurricane"   "Hurricane"   "Sabot"   "Sabot"   "Hellbore"   "Gauss"
"21"   ""   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"21"   ""   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"21"   ""   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"21"   ""   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"22"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"22"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"22"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"22"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"22"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"22"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"22"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Hellbore"
"22"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"22"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"22"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"22"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"22"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"22"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Hellbore"
"22"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"22"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"22"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Mark IX"
"22"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"22"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"22"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"22"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Hellbore"
"22"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"22"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"22"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Mark IX"
"22"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Hellbore"
"22"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Hellbore"
"22"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Hellbore"
"22"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Hellbore"   "Gauss"
"22"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Hellbore"   "Mark IX"
"22"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"22"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hephaestus"
"22"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Storm Needler"
"22"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   ""
"22"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Hellbore"   "Mjolnir"
"22"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mjolnir"
"22"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mjolnir"
"22"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   ""   "Mjolnir"
"22"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Mark IX"   "Mark IX"
"22"   "Squall"   ""   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"22"   "Squall"   ""   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"22"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"22"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"22"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"22"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"22"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"22"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"22"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"22"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"22"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mark IX"   "Mjolnir"
"22"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Mark IX"
"22"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Hellbore"
"22"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Hellbore"
"22"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Mark IX"
"22"   "Locust"   "Locust"   "Harpoon"   ""   "Mark IX"   "Gauss"
"22"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Hellbore"
"22"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Mark IX"
"22"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Hellbore"
"22"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Hephaestus"
"22"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Storm Needler"
"22"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   ""
"22"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Hellbore"   "Mark IX"
"22"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Hephaestus"   "Mark IX"
"22"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Storm Needler"   "Mark IX"
"22"   "Locust"   "Locust"   "Sabot"   "Sabot"   ""   "Mark IX"
"22"   "Locust"   "Locust"   "Sabot"   ""   "Gauss"   "Mark IX"
"22"   "Locust"   "Locust"   ""   "Harpoon"   "Mark IX"   "Gauss"
"22"   "Locust"   "Locust"   ""   "Sabot"   "Gauss"   "Mark IX"
"22"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"22"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Hellbore"
"22"   "Locust"   "Hurricane"   "Harpoon"   ""   "Gauss"   "Mjolnir"
"22"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"22"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"22"   "Locust"   "Hurricane"   ""   "Harpoon"   "Gauss"   "Mjolnir"
"22"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"22"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hephaestus"
"22"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Storm Needler"
"22"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   ""
"22"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Mjolnir"
"22"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mjolnir"
"22"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mjolnir"
"22"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   ""   "Mjolnir"
"22"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Mark IX"   "Mark IX"
"22"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"22"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Hellbore"
"22"   "Hurricane"   "Locust"   "Harpoon"   ""   "Gauss"   "Mjolnir"
"22"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"22"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"22"   "Hurricane"   "Locust"   ""   "Harpoon"   "Gauss"   "Mjolnir"
"22"   "Hurricane"   "Hurricane"   "Sabot"   "Sabot"   "Mark IX"   "Mark IX"
"22"   "Hurricane"   ""   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"22"   "Hurricane"   ""   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"22"   "Hurricane"   ""   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"22"   "Hurricane"   ""   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"22"   ""   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"22"   ""   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"22"   ""   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"22"   ""   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"22"   ""   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"22"   ""   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"23"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Hellbore"
"23"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"23"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"23"   "Squall"   "Squall"   "Harpoon"   ""   "Gauss"   "Mjolnir"
"23"   "Squall"   "Squall"   "Harpoon"   ""   "Mjolnir"   "Gauss"
"23"   "Squall"   "Squall"   "Harpoon"   ""   "Hellbore"   "Gauss"
"23"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"23"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"23"   "Squall"   "Squall"   ""   "Harpoon"   "Gauss"   "Mjolnir"
"23"   "Squall"   "Squall"   ""   "Harpoon"   "Mjolnir"   "Gauss"
"23"   "Squall"   "Squall"   ""   "Harpoon"   "Hellbore"   "Gauss"
"23"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Hephaestus"
"23"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   ""
"23"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"23"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"23"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Hephaestus"   "Gauss"
"23"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   ""   "Gauss"
"23"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Hellbore"
"23"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Hellbore"   "Mark IX"
"23"   "Squall"   "Hurricane"   "Harpoon"   ""   "Gauss"   "Mark IX"
"23"   "Squall"   "Hurricane"   "Harpoon"   ""   "Mark IX"   "Gauss"
"23"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Hellbore"
"23"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Mark IX"
"23"   "Squall"   "Hurricane"   ""   "Harpoon"   "Gauss"   "Mark IX"
"23"   "Squall"   "Hurricane"   ""   "Harpoon"   "Mark IX"   "Gauss"
"23"   "Squall"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"23"   "Squall"   ""   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"23"   "Squall"   ""   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"23"   "Squall"   ""   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"23"   "Squall"   ""   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"23"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"23"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"23"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"23"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Hellbore"
"23"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Gauss"
"23"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"23"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Gauss"
"23"   "Locust"   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"23"   "Locust"   "Hurricane"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"23"   "Locust"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"23"   "Locust"   ""   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"23"   "Locust"   ""   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"23"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Hephaestus"
"23"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   ""
"23"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"23"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"23"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Hephaestus"   "Gauss"
"23"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   ""   "Gauss"
"23"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Hellbore"
"23"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Hellbore"   "Mark IX"
"23"   "Hurricane"   "Squall"   "Harpoon"   ""   "Gauss"   "Mark IX"
"23"   "Hurricane"   "Squall"   "Harpoon"   ""   "Mark IX"   "Gauss"
"23"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Hellbore"
"23"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Hellbore"   "Mark IX"
"23"   "Hurricane"   "Squall"   ""   "Harpoon"   "Gauss"   "Mark IX"
"23"   "Hurricane"   "Squall"   ""   "Harpoon"   "Mark IX"   "Gauss"
"23"   "Hurricane"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"23"   "Hurricane"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"23"   "Hurricane"   "Hurricane"   "Harpoon"   ""   "Gauss"   "Mjolnir"
"23"   "Hurricane"   "Hurricane"   "Sabot"   ""   "Gauss"   "Gauss"
"23"   "Hurricane"   "Hurricane"   ""   "Harpoon"   "Gauss"   "Mjolnir"
"23"   "Hurricane"   "Hurricane"   ""   "Sabot"   "Gauss"   "Gauss"
"23"   "Hurricane"   ""   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"23"   "Hurricane"   ""   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"23"   ""   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"23"   ""   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"23"   ""   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"23"   ""   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"23"   ""   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"23"   ""   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"23"   ""   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"23"   ""   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"23"   ""   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"23"   ""   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"24"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"24"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Hellbore"
"24"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Hellbore"   "Gauss"
"24"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Hellbore"   "Mjolnir"
"24"   "Squall"   "Squall"   "Harpoon"   ""   "Gauss"   "Hellbore"
"24"   "Squall"   "Squall"   "Harpoon"   ""   "Mjolnir"   "Mjolnir"
"24"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"24"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Hellbore"   "Gauss"
"24"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Hellbore"   "Mjolnir"
"24"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Hellbore"   "Mjolnir"
"24"   "Squall"   "Squall"   "Sabot"   ""   "Gauss"   "Mjolnir"
"24"   "Squall"   "Squall"   "Sabot"   ""   "Mjolnir"   "Gauss"
"24"   "Squall"   "Squall"   ""   "Harpoon"   "Gauss"   "Hellbore"
"24"   "Squall"   "Squall"   ""   "Harpoon"   "Mjolnir"   "Mjolnir"
"24"   "Squall"   "Squall"   ""   "Sabot"   "Gauss"   "Mjolnir"
"24"   "Squall"   "Squall"   ""   "Sabot"   "Mjolnir"   "Gauss"
"24"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hephaestus"
"24"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Storm Needler"
"24"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   ""
"24"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mjolnir"
"24"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mjolnir"
"24"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   ""   "Mjolnir"
"24"   "Squall"   "Locust"   "Sabot"   ""   "Mjolnir"   "Mjolnir"
"24"   "Squall"   "Locust"   ""   "Sabot"   "Mjolnir"   "Mjolnir"
"24"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Hellbore"
"24"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Hellbore"   "Gauss"
"24"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"24"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Gauss"
"24"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Hellbore"
"24"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Hellbore"   "Gauss"
"24"   "Squall"   "Hurricane"   "Sabot"   ""   "Mjolnir"   "Mjolnir"
"24"   "Squall"   "Hurricane"   ""   "Sabot"   "Mjolnir"   "Mjolnir"
"24"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"24"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"24"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"24"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"24"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Hellbore"
"24"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Hellbore"   "Gauss"
"24"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"24"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Hellbore"   "Gauss"
"24"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Hellbore"
"24"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Hellbore"   "Gauss"
"24"   "Hurricane"   "Squall"   "Sabot"   ""   "Mjolnir"   "Mjolnir"
"24"   "Hurricane"   "Squall"   ""   "Sabot"   "Mjolnir"   "Mjolnir"   
[close]

So the absolute most effective combo for killing Dominators is Hurricane-Hurricane-Harpoon-Harpoon-[Gauss or Mjolnir]x2
Squall-Squall-Harpoon-Harpoon is very slightly less effective (16 seconds time to kill vs 17 seconds time to kill) and you can use Gauss, Mjolnir and Hellbore with it provided you do not run 2 Hellbores.

Incidentally here are the top combos for killing Brilliants:
Spoiler
"Timetokill"   "Weapon1"   "Weapon2"   "Weapon3"   "Weapon4"   "Weapon5"   "Weapon6"
"10"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"10"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"10"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"10"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"10"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"10"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"10"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"10"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"10"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"10"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"10"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"10"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"10"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"10"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"10"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"10"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"10"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"10"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"10"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"10"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"10"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"10"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"10"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"10"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"10"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Mark IX"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mark IX"   "Gauss"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mark IX"   "Mark IX"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mark IX"   "Mjolnir"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Mark IX"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Hellbore"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Hellbore"   "Hephaestus"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Hellbore"   "Storm Needler"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Hellbore"   ""
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Hephaestus"   "Hellbore"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Storm Needler"   "Hellbore"
"10"   "Squall"   "Squall"   "Sabot"   "Sabot"   ""   "Hellbore"
"10"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"10"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"10"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"10"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Mjolnir"
"10"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Mark IX"
"10"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"11"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"11"   "Squall"   "Squall"   "Sabot"   ""   "Gauss"   "Hellbore"
"11"   "Squall"   "Squall"   ""   "Sabot"   "Gauss"   "Hellbore"
"11"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Mark IX"
"11"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"11"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Gauss"
"11"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"11"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Hellbore"   "Gauss"
"11"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Hellbore"   "Gauss"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"13"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Hellbore"
"13"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Hellbore"   "Mark IX"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mark IX"   "Hellbore"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Hellbore"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   ""   "Gauss"   "Gauss"
"13"   "Locust"   "Locust"   ""   "Sabot"   "Gauss"   "Gauss"
"15"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"15"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"15"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"15"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"15"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"15"   "Squall"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"15"   "Squall"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"15"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"15"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"15"   "Squall"   "Hurricane"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"15"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"15"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"15"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"15"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"15"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"15"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Hellbore"
"15"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Hellbore"   "Gauss"
"15"   "Hurricane"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"15"   "Hurricane"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"15"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"15"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"15"   "Hurricane"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
[close]

Here, not unexpectedly, you want kinetics. 2 Squalls, or you can also use 1 Squall and 1 Locust for some combos with high anti shield damage in your other slots.
« Last Edit: October 12, 2022, 12:09:33 AM by CapnHector »
Logged
5 ships vs 5 Ordos: Executor · Invictus · Paragon · Astral · Legion · Onslaught · Odyssey | Video LibraryHiruma Kai's Challenge

BCS

  • Captain
  • ****
  • Posts: 279
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #25 on: October 12, 2022, 12:04:26 AM »

I am surprised how many people use Hellbores, I always thought of them as large mount equivalent of the Heavy Mortar - something you get only because you lack flux/OP to get something better.
Logged

CapnHector

  • Admiral
  • *****
  • Posts: 1056
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #26 on: October 12, 2022, 12:26:28 AM »

I am surprised how many people use Hellbores, I always thought of them as large mount equivalent of the Heavy Mortar - something you get only because you lack flux/OP to get something better.

The simulation results bear this statement out. Squall Squall Harpoon Harpoon Mjolnir Mjolnir is one of the top combos for both the highly shielded and the highly armored targets, making it a "universal choice". Swapping one weapon out works - if you swap for Gauss (ie. Mjolnir Gauss) or to Hellbore vs. the highly armored target, Mark IX vs the highly shielded target. I'd assume Mjolnir Mjolnir is better against small targets than Mjolnir Gauss. So it's probably best to run Mjolnir Mjolnir rather than one of the other weapons (except Gauss Gauss) if you can afford the flux, apparently. Squall Squall Harpoon Harpoon Gauss Gauss is another top choice. The latter might even be the best one in practice due to increased range which matches the Squalls and Harpoons better.

Now just need to test in practice whether the increased flux buildup causes problems for the AI.

Some folks might be wondering if the Hellbore is worth it if you do not use Harpoons. The answer is no, at least not 2xHellbore. Vs Dominator:

Spoiler
"Timetokill"   "Weapon1"   "Weapon2"   "Weapon3"   "Weapon4"   "Weapon5"   "Weapon6"
"29"   "Squall"   "Squall"   ""   ""   "Gauss"   "Gauss"
"29"   "Squall"   "Locust"   ""   ""   "Gauss"   "Gauss"
"29"   "Locust"   "Locust"   ""   ""   "Mjolnir"   "Gauss"
"30"   "Squall"   "Squall"   ""   ""   "Gauss"   "Mjolnir"
"30"   "Squall"   "Squall"   ""   ""   "Mjolnir"   "Gauss"
"30"   "Squall"   "Squall"   ""   ""   "Mjolnir"   "Mjolnir"
"30"   "Locust"   "Locust"   ""   ""   "Gauss"   "Gauss"
"30"   "Locust"   "Locust"   ""   ""   "Gauss"   "Mjolnir"
"30"   "Locust"   "Locust"   ""   ""   "Mjolnir"   "Mjolnir"
"31"   "Squall"   "Squall"   ""   ""   "Gauss"   "Mark IX"
"31"   "Squall"   "Squall"   ""   ""   "Mark IX"   "Gauss"
"31"   "Squall"   "Squall"   ""   ""   "Mark IX"   "Hellbore"
"31"   "Squall"   "Squall"   ""   ""   "Hellbore"   "Mark IX"
"31"   "Squall"   "Locust"   ""   ""   "Gauss"   "Mjolnir"
"31"   "Squall"   "Locust"   ""   ""   "Mjolnir"   "Gauss"
"31"   "Squall"   "Hurricane"   ""   ""   "Gauss"   "Gauss"
"31"   "Squall"   "Hurricane"   ""   ""   "Gauss"   "Mark IX"
"31"   "Squall"   "Hurricane"   ""   ""   "Gauss"   "Hellbore"
"31"   "Squall"   "Hurricane"   ""   ""   "Mark IX"   "Gauss"
"31"   "Squall"   "Hurricane"   ""   ""   "Mjolnir"   "Mjolnir"
"31"   "Squall"   "Hurricane"   ""   ""   "Hellbore"   "Gauss"
"31"   "Locust"   "Locust"   ""   ""   "Hellbore"   "Gauss"
"31"   "Hurricane"   "Squall"   ""   ""   "Gauss"   "Gauss"
"31"   "Hurricane"   "Squall"   ""   ""   "Gauss"   "Mark IX"
"31"   "Hurricane"   "Squall"   ""   ""   "Gauss"   "Hellbore"
"31"   "Hurricane"   "Squall"   ""   ""   "Mark IX"   "Gauss"
"31"   "Hurricane"   "Squall"   ""   ""   "Mjolnir"   "Mjolnir"
"31"   "Hurricane"   "Squall"   ""   ""   "Hellbore"   "Gauss"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Gauss"   "Gauss"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Gauss"   "Mark IX"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Gauss"   "Mjolnir"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Gauss"   "Hellbore"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Gauss"   "Hephaestus"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Gauss"   "Storm Needler"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Gauss"   ""
"31"   "Hurricane"   "Hurricane"   ""   ""   "Mark IX"   "Gauss"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Mark IX"   "Mark IX"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Mark IX"   "Mjolnir"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Mjolnir"   "Gauss"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Mjolnir"   "Mark IX"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Hellbore"   "Gauss"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Hephaestus"   "Gauss"
"31"   "Hurricane"   "Hurricane"   ""   ""   "Storm Needler"   "Gauss"
"31"   "Hurricane"   "Hurricane"   ""   ""   ""   "Gauss"
"33"   "Locust"   "Locust"   ""   ""   "Gauss"   "Mark IX"
"33"   "Locust"   "Locust"   ""   ""   "Mark IX"   "Gauss"
"34"   "Squall"   "Locust"   ""   ""   "Mark IX"   "Mjolnir"
"34"   "Squall"   "Locust"   ""   ""   "Mjolnir"   "Mark IX"
"34"   "Squall"   "Hurricane"   ""   ""   "Mark IX"   "Mark IX"
"34"   "Squall"   "Hurricane"   ""   ""   "Mark IX"   "Mjolnir"
"34"   "Squall"   "Hurricane"   ""   ""   "Mjolnir"   "Mark IX"
"34"   "Locust"   "Locust"   ""   ""   "Mark IX"   "Mjolnir"
"34"   "Locust"   "Locust"   ""   ""   "Mjolnir"   "Mark IX"
"34"   "Hurricane"   "Squall"   ""   ""   "Mark IX"   "Mark IX"
"34"   "Hurricane"   "Squall"   ""   ""   "Mark IX"   "Mjolnir"
"34"   "Hurricane"   "Squall"   ""   ""   "Mjolnir"   "Mark IX"
"35"   "Squall"   "Locust"   ""   ""   "Mjolnir"   "Mjolnir"
"35"   "Squall"   "Hurricane"   ""   ""   "Gauss"   "Mjolnir"
"35"   "Squall"   "Hurricane"   ""   ""   "Mjolnir"   "Gauss"
"35"   "Locust"   "Squall"   ""   ""   "Gauss"   "Gauss"
"35"   "Locust"   "Hurricane"   ""   ""   "Gauss"   "Gauss"
"35"   "Hurricane"   "Squall"   ""   ""   "Gauss"   "Mjolnir"
"35"   "Hurricane"   "Squall"   ""   ""   "Mjolnir"   "Gauss"
"35"   "Hurricane"   "Locust"   ""   ""   "Gauss"   "Gauss"
"37"   "Squall"   "Squall"   ""   ""   "Mark IX"   "Mark IX"
"37"   "Squall"   "Squall"   ""   ""   "Mark IX"   "Mjolnir"
"37"   "Squall"   "Locust"   ""   ""   "Gauss"   "Mark IX"
"37"   "Squall"   "Locust"   ""   ""   "Mark IX"   "Gauss"
"37"   "Locust"   "Squall"   ""   ""   "Gauss"   "Mjolnir"
"37"   "Locust"   "Hurricane"   ""   ""   "Gauss"   "Mark IX"
"37"   "Locust"   "Hurricane"   ""   ""   "Mark IX"   "Gauss"
"37"   "Hurricane"   "Locust"   ""   ""   "Gauss"   "Mark IX"
"37"   "Hurricane"   "Locust"   ""   ""   "Mark IX"   "Gauss"
"38"   "Locust"   "Squall"   ""   ""   "Mjolnir"   "Mjolnir"
"38"   "Locust"   "Locust"   ""   ""   "Gauss"   "Hellbore"
"38"   "Hurricane"   "Hurricane"   ""   ""   "Mjolnir"   "Mjolnir"
"39"   "Hurricane"   ""   ""   ""   "Gauss"   "Gauss"
"39"   ""   "Hurricane"   ""   ""   "Gauss"   "Gauss"
"40"   "Squall"   "Squall"   ""   ""   "Mjolnir"   "Mark IX"
"40"   "Locust"   "Squall"   ""   ""   "Mjolnir"   "Gauss"
"40"   "Locust"   "Locust"   ""   ""   "Mark IX"   "Mark IX"
"40"   "Locust"   "Locust"   ""   ""   "Mark IX"   "Hellbore"
"40"   "Locust"   "Locust"   ""   ""   "Mjolnir"   "Hellbore"
"40"   "Locust"   "Locust"   ""   ""   "Hellbore"   "Mjolnir"
"40"   "Locust"   "Hurricane"   ""   ""   "Gauss"   "Mjolnir"
"40"   "Locust"   "Hurricane"   ""   ""   "Mark IX"   "Mark IX"
"40"   "Locust"   "Hurricane"   ""   ""   "Mjolnir"   "Mjolnir"
"40"   "Hurricane"   "Locust"   ""   ""   "Gauss"   "Mjolnir"
"40"   "Hurricane"   "Locust"   ""   ""   "Mark IX"   "Mark IX"
"40"   "Hurricane"   "Locust"   ""   ""   "Mjolnir"   "Mjolnir"
"41"   "Squall"   "Squall"   ""   ""   "Mjolnir"   "Hellbore"
"41"   "Squall"   "Squall"   ""   ""   "Hellbore"   "Mjolnir"
"41"   "Squall"   "Locust"   ""   ""   "Gauss"   "Hellbore"
"41"   "Squall"   "Locust"   ""   ""   "Hellbore"   "Gauss"
"41"   "Locust"   "Squall"   ""   ""   "Gauss"   "Mark IX"
"41"   "Locust"   "Squall"   ""   ""   "Mark IX"   "Gauss"
"41"   "Locust"   "Hurricane"   ""   ""   "Mjolnir"   "Gauss"
"41"   "Hurricane"   "Locust"   ""   ""   "Mjolnir"   "Gauss"
"42"   "Squall"   "Squall"   ""   ""   "Hellbore"   "Gauss"
"42"   "Squall"   "Locust"   ""   ""   "Mark IX"   "Mark IX"
"43"   "Squall"   "Squall"   ""   ""   "Gauss"   "Hellbore"
"43"   "Squall"   ""   ""   ""   "Gauss"   "Gauss"
"43"   "Locust"   "Squall"   ""   ""   "Mark IX"   "Mark IX"
"43"   "Locust"   "Squall"   ""   ""   "Mark IX"   "Mjolnir"
"43"   "Locust"   "Squall"   ""   ""   "Mjolnir"   "Mark IX"
"43"   ""   "Squall"   ""   ""   "Gauss"   "Gauss"
"44"   "Squall"   "Locust"   ""   ""   "Mjolnir"   "Hellbore"
"44"   "Squall"   "Locust"   ""   ""   "Hellbore"   "Mark IX"
"45"   "Squall"   "Locust"   ""   ""   "Hellbore"   "Mjolnir"
"45"   "Locust"   "Squall"   ""   ""   "Hellbore"   "Gauss"
"45"   "Hurricane"   ""   ""   ""   "Gauss"   "Mark IX"
"45"   "Hurricane"   ""   ""   ""   "Mark IX"   "Gauss"
"45"   ""   "Hurricane"   ""   ""   "Gauss"   "Mark IX"
"45"   ""   "Hurricane"   ""   ""   "Mark IX"   "Gauss"
"46"   "Squall"   "Locust"   ""   ""   "Mark IX"   "Hellbore"
"46"   "Squall"   "Hurricane"   ""   ""   "Gauss"   "Hephaestus"
"46"   "Squall"   "Hurricane"   ""   ""   "Gauss"   "Storm Needler"
"46"   "Squall"   "Hurricane"   ""   ""   "Gauss"   ""
"46"   "Squall"   "Hurricane"   ""   ""   "Mark IX"   "Hellbore"
"46"   "Squall"   "Hurricane"   ""   ""   "Mjolnir"   "Hellbore"
"46"   "Squall"   "Hurricane"   ""   ""   "Mjolnir"   "Hephaestus"
"46"   "Squall"   "Hurricane"   ""   ""   "Mjolnir"   "Storm Needler"
"46"   "Squall"   "Hurricane"   ""   ""   "Mjolnir"   ""
"46"   "Squall"   "Hurricane"   ""   ""   "Hellbore"   "Mark IX"
"46"   "Squall"   "Hurricane"   ""   ""   "Hellbore"   "Mjolnir"
"46"   "Squall"   "Hurricane"   ""   ""   "Hephaestus"   "Gauss"
"46"   "Squall"   "Hurricane"   ""   ""   "Hephaestus"   "Mjolnir"
"46"   "Squall"   "Hurricane"   ""   ""   "Storm Needler"   "Gauss"
"46"   "Squall"   "Hurricane"   ""   ""   "Storm Needler"   "Mjolnir"
"46"   "Squall"   "Hurricane"   ""   ""   ""   "Gauss"
"46"   "Squall"   "Hurricane"   ""   ""   ""   "Mjolnir"
"46"   "Squall"   ""   ""   ""   "Gauss"   "Mark IX"
"46"   "Squall"   ""   ""   ""   "Mark IX"   "Gauss"
"46"   "Squall"   ""   ""   ""   "Mjolnir"   "Mjolnir"
"46"   "Locust"   "Squall"   ""   ""   "Gauss"   "Hellbore"
"46"   "Locust"   "Locust"   ""   ""   "Hellbore"   "Mark IX"
"46"   "Locust"   "Hurricane"   ""   ""   "Gauss"   "Hellbore"
"46"   "Locust"   "Hurricane"   ""   ""   "Gauss"   "Storm Needler"
"46"   "Locust"   "Hurricane"   ""   ""   "Mark IX"   "Mjolnir"
"46"   "Locust"   "Hurricane"   ""   ""   "Mark IX"   "Hellbore"
"46"   "Locust"   "Hurricane"   ""   ""   "Mjolnir"   "Mark IX"
"46"   "Locust"   "Hurricane"   ""   ""   "Hellbore"   "Gauss"
"46"   "Locust"   "Hurricane"   ""   ""   "Storm Needler"   "Gauss"
"46"   "Hurricane"   "Squall"   ""   ""   "Gauss"   "Hephaestus"
"46"   "Hurricane"   "Squall"   ""   ""   "Gauss"   "Storm Needler"
"46"   "Hurricane"   "Squall"   ""   ""   "Gauss"   ""
"46"   "Hurricane"   "Squall"   ""   ""   "Mark IX"   "Hellbore"
"46"   "Hurricane"   "Squall"   ""   ""   "Mjolnir"   "Hellbore"
"46"   "Hurricane"   "Squall"   ""   ""   "Mjolnir"   "Hephaestus"
"46"   "Hurricane"   "Squall"   ""   ""   "Mjolnir"   "Storm Needler"
"46"   "Hurricane"   "Squall"   ""   ""   "Mjolnir"   ""
"46"   "Hurricane"   "Squall"   ""   ""   "Hellbore"   "Mark IX"
"46"   "Hurricane"   "Squall"   ""   ""   "Hellbore"   "Mjolnir"
"46"   "Hurricane"   "Squall"   ""   ""   "Hephaestus"   "Gauss"
"46"   "Hurricane"   "Squall"   ""   ""   "Hephaestus"   "Mjolnir"
"46"   "Hurricane"   "Squall"   ""   ""   "Storm Needler"   "Gauss"
"46"   "Hurricane"   "Squall"   ""   ""   "Storm Needler"   "Mjolnir"
"46"   "Hurricane"   "Squall"   ""   ""   ""   "Gauss"
"46"   "Hurricane"   "Squall"   ""   ""   ""   "Mjolnir"
"46"   "Hurricane"   "Locust"   ""   ""   "Gauss"   "Hellbore"
"46"   "Hurricane"   "Locust"   ""   ""   "Gauss"   "Storm Needler"
"46"   "Hurricane"   "Locust"   ""   ""   "Mark IX"   "Mjolnir"
"46"   "Hurricane"   "Locust"   ""   ""   "Mark IX"   "Hellbore"
"46"   "Hurricane"   "Locust"   ""   ""   "Mjolnir"   "Mark IX"
"46"   "Hurricane"   "Locust"   ""   ""   "Hellbore"   "Gauss"
"46"   "Hurricane"   "Locust"   ""   ""   "Storm Needler"   "Gauss"
"46"   "Hurricane"   "Hurricane"   ""   ""   "Mark IX"   "Hellbore"
"46"   "Hurricane"   "Hurricane"   ""   ""   "Hellbore"   "Mark IX"
"46"   "Hurricane"   ""   ""   ""   "Gauss"   "Mjolnir"
"46"   "Hurricane"   ""   ""   ""   "Mark IX"   "Mjolnir"
"46"   "Hurricane"   ""   ""   ""   "Mjolnir"   "Gauss"
"46"   ""   "Squall"   ""   ""   "Gauss"   "Mark IX"
"46"   ""   "Squall"   ""   ""   "Mark IX"   "Gauss"
"46"   ""   "Squall"   ""   ""   "Mjolnir"   "Mjolnir"
"46"   ""   "Hurricane"   ""   ""   "Gauss"   "Mjolnir"
"46"   ""   "Hurricane"   ""   ""   "Mark IX"   "Mjolnir"
"46"   ""   "Hurricane"   ""   ""   "Mjolnir"   "Gauss"
"47"   "Squall"   "Squall"   ""   ""   "Gauss"   "Hephaestus"
"47"   "Squall"   "Squall"   ""   ""   "Gauss"   "Storm Needler"
"47"   "Squall"   "Squall"   ""   ""   "Gauss"   ""
"47"   "Squall"   "Squall"   ""   ""   "Hephaestus"   "Gauss"
"47"   "Squall"   "Squall"   ""   ""   "Storm Needler"   "Gauss"
"47"   "Squall"   "Squall"   ""   ""   ""   "Gauss"
"47"   "Squall"   ""   ""   ""   "Gauss"   "Mjolnir"
"47"   "Locust"   "Squall"   ""   ""   "Mjolnir"   "Hellbore"
"47"   "Locust"   "Squall"   ""   ""   "Hellbore"   "Mjolnir"
"47"   "Locust"   "Hurricane"   ""   ""   "Gauss"   "Hephaestus"
"47"   "Locust"   "Hurricane"   ""   ""   "Gauss"   ""
"47"   "Locust"   "Hurricane"   ""   ""   "Hephaestus"   "Gauss"
"47"   "Locust"   "Hurricane"   ""   ""   ""   "Gauss"
"47"   "Hurricane"   "Locust"   ""   ""   "Gauss"   "Hephaestus"
"47"   "Hurricane"   "Locust"   ""   ""   "Gauss"   ""
"47"   "Hurricane"   "Locust"   ""   ""   "Hephaestus"   "Gauss"
"47"   "Hurricane"   "Locust"   ""   ""   ""   "Gauss"
"47"   ""   "Squall"   ""   ""   "Gauss"   "Mjolnir"
"48"   "Locust"   "Squall"   ""   ""   "Hellbore"   "Mark IX"
"49"   "Squall"   ""   ""   ""   "Gauss"   "Hellbore"
"49"   "Squall"   ""   ""   ""   "Mjolnir"   "Gauss"
"49"   "Squall"   ""   ""   ""   "Hellbore"   "Gauss"
"49"   "Locust"   "Squall"   ""   ""   "Mark IX"   "Hellbore"
"49"   "Locust"   "Locust"   ""   ""   "Gauss"   "Hephaestus"
"49"   "Locust"   "Locust"   ""   ""   "Gauss"   ""
"49"   "Locust"   "Locust"   ""   ""   "Hephaestus"   "Gauss"
"49"   "Locust"   "Locust"   ""   ""   ""   "Gauss"
"49"   "Locust"   "Hurricane"   ""   ""   "Hellbore"   "Mark IX"
"49"   "Hurricane"   "Locust"   ""   ""   "Hellbore"   "Mark IX"
"49"   ""   "Squall"   ""   ""   "Gauss"   "Hellbore"
"49"   ""   "Squall"   ""   ""   "Mjolnir"   "Gauss"
"49"   ""   "Squall"   ""   ""   "Hellbore"   "Gauss"
"50"   "Squall"   "Squall"   ""   ""   "Mjolnir"   "Storm Needler"
"50"   "Squall"   "Squall"   ""   ""   "Storm Needler"   "Mjolnir"
"50"   "Squall"   "Locust"   ""   ""   "Gauss"   "Hephaestus"
"50"   "Squall"   "Locust"   ""   ""   "Gauss"   "Storm Needler"
"50"   "Squall"   "Locust"   ""   ""   "Gauss"   ""
"50"   "Squall"   "Locust"   ""   ""   "Hephaestus"   "Gauss"
"50"   "Squall"   "Locust"   ""   ""   "Storm Needler"   "Gauss"
"50"   "Squall"   "Locust"   ""   ""   ""   "Gauss"
"52"   "Squall"   ""   ""   ""   "Mark IX"   "Mark IX"
"52"   "Squall"   ""   ""   ""   "Mark IX"   "Mjolnir"
"52"   ""   "Squall"   ""   ""   "Mark IX"   "Mark IX"
"52"   ""   "Squall"   ""   ""   "Mark IX"   "Mjolnir"
"53"   "Locust"   ""   ""   ""   "Gauss"   "Gauss"
"53"   ""   "Locust"   ""   ""   "Gauss"   "Gauss"
"55"   "Locust"   "Locust"   ""   ""   "Gauss"   "Storm Needler"
"55"   "Locust"   "Locust"   ""   ""   "Storm Needler"   "Gauss"
"57"   "Locust"   "Locust"   ""   ""   "Mark IX"   "Hephaestus"
"57"   "Locust"   "Locust"   ""   ""   "Mark IX"   "Storm Needler"
"57"   "Locust"   "Locust"   ""   ""   "Mark IX"   ""
"57"   "Locust"   "Locust"   ""   ""   "Hephaestus"   "Mark IX"
"57"   "Locust"   "Locust"   ""   ""   "Storm Needler"   "Mark IX"
"57"   "Locust"   "Locust"   ""   ""   ""   "Mark IX"
[close]

By the way, I forgot to subtract shield upkeep from the Dominator, so assume the Dominator has 20 flux vents (not unreasonable) rather than 0 for the above calculations to be exactly correct.

As a result of these analyses, upgraded my fleet to Squall-Squall-Harpoon-Harpoon-Gauss-Gauss or -Mjolnir-Mjolnir. Very satisfied with results.
Spoiler
[close]
« Last Edit: October 12, 2022, 02:03:29 AM by CapnHector »
Logged
5 ships vs 5 Ordos: Executor · Invictus · Paragon · Astral · Legion · Onslaught · Odyssey | Video LibraryHiruma Kai's Challenge

Vanshilar

  • Admiral
  • *****
  • Posts: 606
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #27 on: October 12, 2022, 11:04:09 AM »

Oh yeah, re left vs right: I like putting the guns on the left so its the same as on an Odyssey in terms of flying.

For AI Conquests, I tend to make sure there are an even number of right-facing and left-facing ones.

Since the Odyssey's guns are on the left, it tends to drift toward the right part of the map as my fleet advances on the enemy fleet. So when there are multiple ones, they tend to all clump up together and then block each other's line of fire (plus, the ones in the back prevent the ones in the front from backing off to vent). Two is about the maximum you can have before they clump up and start blocking each other, so the marginal value of that 3rd Odyssey is pretty low.

So if I have multiple Conquests, I'll make sure some face the right, and some face the left, so that they naturally drift toward opposite sides of the battlefield as my fleet advances.

For player-piloted Conquest, I prefer guns on the right, because...chances are my fleet has an AI Odyssey with its guns pointing to the left :)

I'm still going to go with the Squall for the range and combination with Hellbores, but now I'm really curious about which is objectively the superior choice. Anybody have any ideas how this could be tested empirically, like simulations of fleet combat?

Best thing to do is to use the Detailed Combat Results mod which is invaluable for looking at real-world damage numbers. I have different saves for this purpose, against a standard single Ordos, against a standard double Ordos, and against a standard triple Ordos. Those standard Ordos fleets were chosen for how closely their ship compositions matched the average Ordos fleet, and these saves allow me to test out different fleet compositions and weapon loadouts to evaluate how well they work. I also use the Additional Search Commands mod, in particular its "cloneship" command, to quickly make multiple copies of a given ship configuration to test with. For me personally Ordos fleets are what matter and hence I base my fleet compositions around them, it's up to the individual player to decide what they want to test against.

After one Squall salvo the Dominator will have 1125 armor remaining. Used in pairs, after two Squall salvos the Dominator will have 750 armor remaining. It will take a total of 4 salvos (65 missiles) to penetrate Dominator armor.

Yes and no. First remember that it's unlikely that every single missile (or any weapon) will hit, much less hit in the exact same spot. Also, the inner/outer armor cell mechanic is more complicated, because the outer cells only have half of their armor value count, but they also only have half of the damage applied to them. So 60% of the damage gets applied to the 9 inner cells, while 40% of the damage gets applied to the 12 outer cells. Thus, after the first Squall salvo, yes the Squalls will have done a total of 375 damage to armor. But only half of that 40% of damage that was applied to the outer cells will count toward the armor value that the missile shots "see". So after the first salvo, it will look like the Dominator still had 1200 armor, i.e. 300 damage done. In fact until the weapon starts breaking through armor (which happens on the inner cells first) and starts hitting hull, this "80% of damage" assumption is mathematically valid.

For a weapon (Squall) doing 250 damage per shot, 250 hit strength, kinetic damage, against a target (Dominator) with 1500 armor, it starts hitting hull on the 73rd shot, and armor is fully stripped away on the 101st shot, at which point it'll display 2100 cumulative armor damage, 1903 cumulative hull damage. It then does 156.25 damage to hull per shot, so it takes an additional 78 shots to remove the rest of the Dominator's 14k hull, for a total of 179 shots needed after shields. At 61.5 shots per minute, that's around 175 seconds to kill after shields.

For a weapon (Locust) doing 200 damage per shot, 200 hit strength, frag damage, against a target (Dominator) with 1500 armor, it starts hitting hull on the 200th shot, and armor is fully stripped away on the 325th shot, at which point it'll display 2100 cumulative armor damage, 3613 cumulative hull damage. It then does 80 damage to hull per shot, so it takes an additional 130 shots to remove the rest of the Dominator's 14k hull, for a total of 455 shots needed after shields. At 270 shots per minute, that's around 101 seconds to kill after shields.

The biggest problem though is accounting for the shields. Targets won't really recover much flux when shields are up, since this is all hard flux, so it's really more like, when they drop shields to take damage on armor/hull is when they're recovering their flux, then they raise it again at low health until they overload, then they die. So that complicates the "clean room" simulation. Obviously Squalls will dominate on shields.

In practice Squalls virtually always come out ahead because of their anti-shield damage, at least versus Ordos (which are very shield-heavy), so in practice I'll virtually always mount Squalls over Hurricanes or Locusts.

Also, in practice, high damage per shot weapons such as Gauss or Mjolnir are still decent against armor and hull even though they don't specialize in them. The problem with mounting something like the Hellbore is that it's only good for one thing but takes up a weapon slot that could've been used toward something else. So in practice, Gauss or Mjolnir works out well. My general go-to is Mjolnir. If I'm manually piloting, I'll sometimes use Hephaestus Assault Gun on manual control if I have enough anti-shield, only firing on ships at high flux, so that I can overflux my ship a bit more for higher damage output.

Another consideration that works well for the Gauss is that if you're able to keep the enemy far away, then it's a long range fight so you don't have to spend as much flux defending yourself, so that helps with your overall flux efficiency.
Logged

CapnHector

  • Admiral
  • *****
  • Posts: 1056
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #28 on: October 12, 2022, 11:54:21 AM »

Huh. I'm pretty sure I can add armor cells to the simulation. But first I need to understand the math. How exactly does it work? What is the exact proportion of damage going to hull?

In general if you have n cells contributing 1/n armor and each cell takes 1/n damage, and additionally m cells contributing 1/m armor and each cell takes 1/m damage, then if the first set of cells takes a damage and the second set takes b damage, the sum of damage to the first set of cells is just a/n*n=a and the reduction in armor is a/n*(a/n)/(1/n+a/n) = a/n*(a/(1+a)) so the total reduction across cells is n*(a/n)*etc. And you can perform the same calculations for b, so the total damage is still a+b and the armor behaves like a homogeneous block IF all weapons hit the exact same spot.

So it appears the above is incorrect though. But where? Apparently at least there is some hull damage going through even at incomplete penetration?

For shields, I just assumed they can be instantly flicked on and off, in which case hard and soft flux are equivalent, and that the ship won't overload itself. The results seem reasonable enough (see graph) even though the model is rough.

-Con't. Ok, I think I get it. Thanks for the excellent post. Found some more information in https://fractalsoftworks.com/forum/index.php?topic=22331.0. So let's instead assume the impacts are spread over 6 adjacent cells of armor in a line. The weapons target the middle cell, but also hit other cells with a normal distribution such that one SD is the width of one cell. Then the distribution of the damage is given by
R code to generate distribution
a <- matrix(0,nrow=5,ncol=10)
b <- matrix(0,nrow=5,ncol=5)
b[1:5,2:4] <- 1/30
b[2:4,1:5] <- 1/30
b[2:4,2:4] <- 1/15
normaldistpoints <- c(0.021,0.136,0.341,0.341,0.136,0.021)
for (i in 1:6) {
a[,i:(i+4)] <- a[,i:(i+4)]+b*normaldistpoints
}
[close]
Distribution
      [,1]        [,2]        [,3]       [,4]       [,5]       [,6]       [,7]        [,8]        [,9] [,10]
[1,] 0e+00 0.000700000 0.005233333 0.01660000 0.02726667 0.02726667 0.01660000 0.005233333 0.000700000 0e+00
[2,] 7e-04 0.005933333 0.021833333 0.04456667 0.05976667 0.05976667 0.04456667 0.021833333 0.005933333 7e-04
[3,] 7e-04 0.005933333 0.021833333 0.04456667 0.05976667 0.05976667 0.04456667 0.021833333 0.005933333 7e-04
[4,] 7e-04 0.005933333 0.021833333 0.04456667 0.05976667 0.05976667 0.04456667 0.021833333 0.005933333 7e-04
[5,] 0e+00 0.000700000 0.005233333 0.01660000 0.02726667 0.02726667 0.01660000 0.005233333 0.000700000 0e+00
[close]

Now each cell has 1/15 armor HP, so initial armor HP for a Dominator is
Spoiler
     [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10]
[1,]    0  100  100  100  100  100  100  100  100     0
[2,]  100  100  100  100  100  100  100  100  100   100
[3,]  100  100  100  100  100  100  100  100  100   100
[4,]  100  100  100  100  100  100  100  100  100   100
[5,]    0  100  100  100  100  100  100  100  100     0
[close]
.

And cell armor contributions match the damage distribution.

Let's say it gets hit by a Hellbore shot. Then the armor hp loss looks on average like hpmatrix-damage*damagematrix*damage*damagematrix/(damage*damagematrix+armormatrix), so

Armor HP after hellbore hit
       [,1]     [,2]     [,3]     [,4]     [,5]     [,6]     [,7]     [,8]     [,9]  [,10]
[1,]    NaN 99.98900 99.42364 94.98402 87.98157 87.98157 94.98402 99.42364 99.98900    NaN
[2,] 99.989 99.26621 91.82878 72.79798 56.82838 56.82838 72.79798 91.82878 99.26621 99.989
[3,] 99.989 99.26621 91.82878 72.79798 56.82838 56.82838 72.79798 91.82878 99.26621 99.989
[4,] 99.989 99.26621 91.82878 72.79798 56.82838 56.82838 72.79798 91.82878 99.26621 99.989
[5,]    NaN 99.98900 99.42364 94.98402 87.98157 87.98157 94.98402 99.42364 99.98900    NaN
[close]

So the total (average) damage dealt was 662 damage, rather than the naively expected 750*2*750*2/(1500+750*2)=750.

Now to build this into the code. I can also account for the inability to dissipate hard flux by not letting the shields regenerate on any seconds when shield damage was taken. The assumption is the enemy will not overload itself but will drop shields instead if it were overloaded by blocking.

Edit: alright, it is done. Script now handles armor as a matrix, letting damage through to hull when a cell reaches 0 and also does not let the enemy regenerate shields while taking damage. Because we are using a normal distribution for the damage instead of simulation, we'll decide whether to use the 5% minimum armor rule by taking a probability weighted average of the remaining armor matrix and seeing if it is at least 5%.
R code
library(ggplot2)
library(ggthemes)

armordamagematrix <- matrix(0,nrow=5,ncol=10)
b <- matrix(0,nrow=5,ncol=5)
b[1:5,2:4] <- 1/30
b[2:4,1:5] <- 1/30
b[2:4,2:4] <- 1/15
normaldistpoints <- c(0.022,0.136,0.341,0.341,0.136,0.022)
for (i in 1:6) {
  armordamagematrix[,i:(i+4)] <- armordamagematrix[,i:(i+4)]+b*normaldistpoints
}

armordamage <- function(damage, armor, startingarmor) damage*(max(0.15,damage/(damage+max(0.05*startingarmor,armor))))
armordamageselectivereduction <- function(damage, armor,useminarmor,startingarmor) {
  if(useminarmor == 0){
  if(armor == 0) {return (damage)}
  return(damage*(max(0.15,damage/(damage+armor))))
  }
  else{
  return(damage*(max(0.15,damage/(damage+0.05*startingarmor/15))))
  }
}

#squall fires 2 missiles / sec for 10 secs, then recharges for 10 secs
squalltics <- c(2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0)
#locust fires 10 missiles / sec for 4 secs, then recharges for 5 secs
locusttics <- c(10,10,10,10,0,0,0,0,0)
#hurricane fires 9 missiles every 15 seconds
hurricanetics <- c(9,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
#harpoon pod fires 4 missiles, then recharges for 8 seconds (in reality 8.25)
harpoontics <- c(4,0,0,0,0,0,0,0)
#sabot pod fires 2*5 missiles, then recharges for 8 seconds (in reality 8.75 seconds and firing time is .5 seconds)
sabottics <- c(10,0,0,0,0,0,0,0,0)
#gauss fires 1 shot, then charges for 1 second
gausstics <- c(1,0)
#hephaestus fires 4 shots / sec
hephaestustics <- c(4)
#mark ix fires 4 shots every 3 seconds
markixtics <- c(4,0,0)
#mjolnir fires 4 shots per 3 seconds
mjolnirtics <- c(1.33,1.33,1.33)
#hellbore fires 1 shot per 4 seconds
hellboretics <- c(1,0,0,0)
#storm needler fires 10 shots per second
stormneedlertics <- c(10)

#damage per shot, damage type (2=kinetic, 0.5=he, 0.25=frag, 1=energy), tics, weapon name
squall <- list(250, 2, squalltics, "Squall")
locust <- list(200, 0.25, locusttics, "Locust")
hurricane <- list(500, 0.5, hurricanetics, "Hurricane")
harpoon <- list(750, 0.5, harpoontics, "Harpoon")
sabot <- list(200, 2, sabottics, "Sabot")
gauss <- list(700, 2, gausstics, "Gauss")
hephaestus <- list(120, 0.5, hephaestustics, "Hephaestus")
markix <- list(200, 2, markixtics, "Mark IX")
mjolnir <- list(400, 1, mjolnirtics, "Mjolnir")
hellbore <- list(750, 0.5, hellboretics, "Hellbore")
stormneedler <- list(50, 2, stormneedlertics, "Storm Needler")
dummy <- list(0,0,c(0),"")

weapon1 <- locust
weapon2 <- locust
weapon3 <- dummy
weapon4 <- dummy
weapon5 <- dummy
weapon6 <- dummy

shieldblock <- 0

damageattimepoint <- function(weapon, timepoint) c(unlist(weapon[1])*unlist(weapon[3])[timepoint %% length(unlist(weapon[3]))], unlist(weapon[2]))

timeseries <- function(timepoint, shieldhp, armorhp, hullhp, shieldregen, shieldmax, startingarmor,armormatrix){
  #are we using shield to block?
  shieldblock <- 0
  if(hullhp > 0){} else {shieldhp <- 0}
  useminarmor <- 0
  #are we using the 5% minimum armor rule? deduce this by applying a weighted average of armor
  if(weighted.mean(armormatrix,armordamagematrix) <= startingarmor/15*0.05){useminarmor <- 1}
 
  #1. shields. if shieldhp is sufficient, use shield to block
  if (weapon1[[4]] !=""){
  weapon1mult <- unlist(weapon1[2])
  if (shieldhp > damageattimepoint(weapon1, timepoint)[1]*weapon1mult){
    shieldhp <- shieldhp - damageattimepoint(weapon1, timepoint)[1]*weapon1mult
    shieldhp <- max(shieldhp, 0)
    if(damageattimepoint(weapon1,timepoint)[1] > 0) {shieldblock <- 1}
  } else {
    #if you did not use shield to block, regenerate flux
    #2. armor and hull
      if(unlist(weapon1[2])==0.25){weapon1mult = 0.25} else {weapon1mult= 1 / unlist(weapon1[2])}
      #2.1. damage armor and hull
      hulldamage <- 0   
     
      for (j in 2:9){
        for (i in 2:4){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon1mult*damageattimepoint(weapon1, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon1mult

          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon1mult*damageattimepoint(weapon1, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      for (j in 2:9){
        for (i in c(1,5)){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon1mult*damageattimepoint(weapon1, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon1mult
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon1mult*damageattimepoint(weapon1, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      for (j in c(1,10)){
        for (i in 2:4){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon1mult*damageattimepoint(weapon1, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon1mult
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon1mult*damageattimepoint(weapon1, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      hullhp <- hullhp - hulldamage
      hullhp <- max(hullhp, 0)
     
      armorhp <- sum(armormatrix)/(46/15)
      if(hullhp==0) armorhp <- 0
   
  }
  }
  #repeat for other weapons
  if (weapon2[[4]] != ""){
  weapon2mult <- unlist(weapon2[2])
  if (shieldhp > damageattimepoint(weapon2, timepoint)[1]*weapon2mult){
    shieldhp <- shieldhp - damageattimepoint(weapon2, timepoint)[1]*weapon2mult
    shieldhp <- max(shieldhp, 0)
    if(damageattimepoint(weapon2,timepoint)[1] > 0) {shieldblock <- 1}
  } else {
    if(unlist(weapon2[2])==0.25){weapon2mult = 0.25} else {weapon2mult= 1 / unlist(weapon2[2])}
    #2.1. damage armor and hull
    hulldamage <- 0   
   
    for (j in 2:9){
      for (i in 2:4){
        hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon2mult*damageattimepoint(weapon2, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon2mult
       
        armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon2mult*damageattimepoint(weapon2, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
      }}
    for (j in 2:9){
      for (i in c(1,5)){
        hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon2mult*damageattimepoint(weapon2, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon2mult
        armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon2mult*damageattimepoint(weapon2, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
      }}
    for (j in c(1,10)){
      for (i in 2:4){
        hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon2mult*damageattimepoint(weapon2, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon2mult
        armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon2mult*damageattimepoint(weapon2, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
      }}
    hullhp <- hullhp - hulldamage
    hullhp <- max(hullhp, 0)
   
    armorhp <- sum(armormatrix)/(46/15)
    if(hullhp==0) armorhp <- 0
   
  }
  }
 
  if (weapon3[[4]] != ""){
    weapon3mult <- unlist(weapon3[2])
    if (shieldhp > damageattimepoint(weapon3, timepoint)[1]*weapon3mult){
      shieldhp <- shieldhp - damageattimepoint(weapon3, timepoint)[1]*weapon3mult
      shieldhp <- max(shieldhp, 0)
      if(damageattimepoint(weapon3,timepoint)[1] > 0) {shieldblock <- 1}
    } else {
      if(unlist(weapon3[2])==0.25){weapon3mult = 0.25} else {weapon3mult= 1 / unlist(weapon3[2])}
      #2.1. damage armor and hull
      hulldamage <- 0   
     
      for (j in 2:9){
        for (i in 2:4){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon3mult*damageattimepoint(weapon3, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon3mult
         
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon3mult*damageattimepoint(weapon3, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      for (j in 2:9){
        for (i in c(1,5)){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon3mult*damageattimepoint(weapon3, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon3mult
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon3mult*damageattimepoint(weapon3, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      for (j in c(1,10)){
        for (i in 2:4){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon3mult*damageattimepoint(weapon3, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon3mult
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon3mult*damageattimepoint(weapon3, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      hullhp <- hullhp - hulldamage
      hullhp <- max(hullhp, 0)
     
      armorhp <- sum(armormatrix)/(46/15)
      if(hullhp==0) armorhp <- 0
     
    }
  }
 
  if (weapon4[[4]] != ""){
    weapon4mult <- unlist(weapon4[2])
    if (shieldhp > damageattimepoint(weapon4, timepoint)[1]*weapon4mult){
      shieldhp <- shieldhp - damageattimepoint(weapon4, timepoint)[1]*weapon4mult
      shieldhp <- max(shieldhp, 0)
      if(damageattimepoint(weapon4,timepoint)[1] > 0) {shieldblock <- 1}
    } else {
      if(unlist(weapon4[2])==0.25){weapon4mult = 0.25} else {weapon4mult= 1 / unlist(weapon4[2])}
      #2.1. damage armor and hull
      hulldamage <- 0   
     
      for (j in 2:9){
        for (i in 2:4){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon4mult*damageattimepoint(weapon4, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon4mult
         
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon4mult*damageattimepoint(weapon4, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      for (j in 2:9){
        for (i in c(1,5)){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon4mult*damageattimepoint(weapon4, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon4mult
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon4mult*damageattimepoint(weapon4, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      for (j in c(1,10)){
        for (i in 2:4){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon4mult*damageattimepoint(weapon4, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon4mult
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon4mult*damageattimepoint(weapon4, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      hullhp <- hullhp - hulldamage
      hullhp <- max(hullhp, 0)
     
      armorhp <- sum(armormatrix)/(46/15)
      if(hullhp==0) armorhp <- 0
     
    }
  }
 
  if (weapon5[[4]] != ""){
    weapon5mult <- unlist(weapon5[2])
    if (shieldhp > damageattimepoint(weapon5, timepoint)[1]*weapon5mult){
      shieldhp <- shieldhp - damageattimepoint(weapon5, timepoint)[1]*weapon5mult
      shieldhp <- max(shieldhp, 0)
      if(damageattimepoint(weapon5,timepoint)[1] > 0) {shieldblock <- 1}
    } else {
      if(unlist(weapon5[2])==0.25){weapon5mult = 0.25} else {weapon5mult= 1 / unlist(weapon5[2])}
      #2.1. damage armor and hull
      hulldamage <- 0   
     
      for (j in 2:9){
        for (i in 2:4){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon5mult*damageattimepoint(weapon5, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon5mult
         
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon5mult*damageattimepoint(weapon5, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      for (j in 2:9){
        for (i in c(1,5)){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon5mult*damageattimepoint(weapon5, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon5mult
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon5mult*damageattimepoint(weapon5, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      for (j in c(1,10)){
        for (i in 2:4){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon5mult*damageattimepoint(weapon5, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon5mult
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon5mult*damageattimepoint(weapon5, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      hullhp <- hullhp - hulldamage
      hullhp <- max(hullhp, 0)
     
      armorhp <- sum(armormatrix)/(46/15)
      if(hullhp==0) armorhp <- 0
     
    }
  }
 
  if (weapon6[[4]] != ""){
    weapon6mult <- unlist(weapon6[2])
    if (shieldhp > damageattimepoint(weapon6, timepoint)[1]*weapon6mult){
      shieldhp <- shieldhp - damageattimepoint(weapon6, timepoint)[1]*weapon6mult
      shieldhp <- max(shieldhp, 0)
      if(damageattimepoint(weapon6,timepoint)[1] > 0) {shieldblock <- 1}
    } else {
      if(unlist(weapon6[2])==0.25){weapon6mult = 0.25} else {weapon6mult= 1 / unlist(weapon6[2])}
      #2.1. damage armor and hull
      hulldamage <- 0   
     
      for (j in 2:9){
        for (i in 2:4){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon6mult*damageattimepoint(weapon6, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon6mult
         
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon6mult*damageattimepoint(weapon6, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      for (j in 2:9){
        for (i in c(1,5)){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon6mult*damageattimepoint(weapon6, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon6mult
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon6mult*damageattimepoint(weapon6, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      for (j in c(1,10)){
        for (i in 2:4){
          hulldamage <- hulldamage+max(0,armordamageselectivereduction(armordamagematrix[i,j]*weapon6mult*damageattimepoint(weapon6, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor)-armormatrix[i,j])/weapon6mult
          armormatrix[i,j] <- max(0,armormatrix[i,j]-armordamageselectivereduction(armordamagematrix[i,j]*weapon6mult*damageattimepoint(weapon6, timepoint)[1],armormatrix[i,j],useminarmor,startingarmor))
        }}
      hullhp <- hullhp - hulldamage
      hullhp <- max(hullhp, 0)
     
      armorhp <- sum(armormatrix)/(46/15)
      if(hullhp==0) armorhp <- 0
     
    }
  }
 
  if (shieldblock==0){shieldhp <- min(shieldmax,shieldhp+shieldregen)}
  return(list(timepoint, shieldhp, armorhp, hullhp, shieldregen, shieldmax, startingarmor,armormatrix))
}

totaltime = 200

#dominator, hullhp, shieldregen, shieldmax, startingarmor
ship <- c(14000, 500, 10000, 1500)

armorhp <- ship[4]
shieldhp <- ship[3]
hullhp <- ship[1]
shieldregen <- ship[2]
shieldmax <- ship[3]
armorhp <- ship[4]
startingarmor <- ship[4]
armormatrix <- matrix(ship[4]/15,nrow=5,ncol=10)
armormatrix[1,1] <-0
armormatrix[1,10] <-0
armormatrix[5,1] <-0
armormatrix[5,10] <- 0



timeseriesarray <- data.frame(matrix(ncol = 4,nrow=0))

for (t in 1:totaltime){
  state <- timeseries(t,shieldhp,armorhp,hullhp,shieldregen,shieldmax,startingarmor,armormatrix)
  shieldhp <- state[[2]]
  armorhp <- state[[3]]
  hullhp <- state[[4]]
  flux <- shieldmax - shieldhp
  armormatrix <- state[[8]]
  if(hullhp == 0){flux <- 0}
  timeseriesarray <- rbind(timeseriesarray , c(state[[1]], flux/shieldmax*100, state[[3]]/startingarmor*100, state[[4]]/ship[1]*100))
 
}

colnames(timeseriesarray) <-  c("Time", "Flux", "Armor", "Hull")
weaponstitle <- paste(unlist(weapon1[4]),unlist(weapon2[4]),unlist(weapon3[4]),unlist(weapon4[4]),unlist(weapon5[4]),unlist(weapon6[4]))


ggplot(timeseriesarray, aes(x=Time)) + theme_tufte() +
  geom_line(aes(y = Flux, color = "Flux")) +
  geom_line(aes(y = Armor, color="Armor")) +
  geom_line(aes(y = Hull, color="Hull")) +
  scale_colour_manual("",
                      breaks = c("Flux", "Armor", "Hull"),
                      values = c("lightsteelblue", "red", "maroon")) +
  ylab("% max") +
  xlab("Time (s)") +
  labs(title=weaponstitle)


[close]

It turns out that this was extremely significant for evaluating the performance of the Locust.

 Here are some graphs, again vs Dominator:


And the results for best combo of weapons to kill Dominators with are in. I did NOT expect this.

Locust power
"Timetokill"   "Weapon1"   "Weapon2"   "Weapon3"   "Weapon4"   "Weapon5"   "Weapon6"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Hephaestus"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Storm Needler"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hellbore"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hephaestus"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Storm Needler"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Mjolnir"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Gauss"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mjolnir"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Gauss"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mjolnir"
"12"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"12"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   ""
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Hephaestus"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Storm Needler"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   ""
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   ""
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   ""   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   ""   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   ""   "Mjolnir"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Hellbore"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Hephaestus"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Storm Needler"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Hellbore"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Hephaestus"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Storm Needler"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Hellbore"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Hephaestus"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Storm Needler"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   ""
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Mjolnir"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Hephaestus"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Storm Needler"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Mjolnir"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Hellbore"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Hephaestus"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Storm Needler"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   ""
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Mjolnir"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Hellbore"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Hephaestus"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Storm Needler"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   ""
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   ""   "Mjolnir"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   ""   "Hephaestus"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   ""   "Storm Needler"
"13"   "Locust"   "Locust"   "Harpoon"   ""   "Gauss"   "Mjolnir"
"13"   "Locust"   "Locust"   "Harpoon"   ""   "Gauss"   "Hellbore"
"13"   "Locust"   "Locust"   "Harpoon"   ""   "Gauss"   "Hephaestus"
"13"   "Locust"   "Locust"   "Harpoon"   ""   "Gauss"   "Storm Needler"
"13"   "Locust"   "Locust"   "Harpoon"   ""   "Mark IX"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   ""   "Mark IX"   "Mjolnir"
"13"   "Locust"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Mjolnir"
"13"   "Locust"   "Locust"   "Harpoon"   ""   "Hephaestus"   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   ""   "Storm Needler"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Hephaestus"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Storm Needler"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Hellbore"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Hephaestus"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Storm Needler"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Hephaestus"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Storm Needler"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   ""
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Hephaestus"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Storm Needler"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Hellbore"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Hephaestus"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Storm Needler"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   ""
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Hellbore"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Hephaestus"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Storm Needler"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   ""
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   ""   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   ""   "Hephaestus"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   ""   "Storm Needler"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Hellbore"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Hellbore"   "Mjolnir"
"13"   "Locust"   "Locust"   ""   "Harpoon"   "Gauss"   "Mjolnir"
"13"   "Locust"   "Locust"   ""   "Harpoon"   "Gauss"   "Hellbore"
"13"   "Locust"   "Locust"   ""   "Harpoon"   "Gauss"   "Hephaestus"
"13"   "Locust"   "Locust"   ""   "Harpoon"   "Gauss"   "Storm Needler"
"13"   "Locust"   "Locust"   ""   "Harpoon"   "Mark IX"   "Mark IX"
"13"   "Locust"   "Locust"   ""   "Harpoon"   "Mark IX"   "Mjolnir"
"13"   "Locust"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Gauss"
"13"   "Locust"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Mark IX"
"13"   "Locust"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Mjolnir"
"13"   "Locust"   "Locust"   ""   "Harpoon"   "Hephaestus"   "Gauss"
"13"   "Locust"   "Locust"   ""   "Harpoon"   "Storm Needler"   "Gauss"
"15"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"15"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"15"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Hephaestus"
"15"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Storm Needler"
"15"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"15"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Gauss"
"15"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Gauss"
"15"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"15"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"15"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"15"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"15"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"15"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"15"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"16"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"16"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"16"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"16"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"16"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hephaestus"
"16"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Storm Needler"
"16"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mjolnir"
"16"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mjolnir"
"16"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"16"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"16"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"16"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"16"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hephaestus"
"16"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Storm Needler"
"16"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mjolnir"
"16"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mjolnir"
"16"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"16"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"16"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"16"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"16"   "Locust"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Hellbore"
"16"   "Locust"   "Locust"   "Harpoon"   ""   "Hellbore"   "Mjolnir"
"16"   "Locust"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Hellbore"
"16"   "Locust"   "Locust"   ""   "Harpoon"   "Hellbore"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Hephaestus"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Storm Needler"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   ""
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   ""
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hellbore"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hephaestus"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Storm Needler"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   ""
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Hellbore"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Hephaestus"   "Gauss"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Storm Needler"   "Gauss"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   ""   "Gauss"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   ""   "Mark IX"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   ""   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Hellbore"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Hephaestus"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Storm Needler"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Hellbore"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Hephaestus"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Storm Needler"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Hellbore"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Hephaestus"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Storm Needler"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Hellbore"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Hellbore"   "Hephaestus"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Hellbore"   "Storm Needler"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Hephaestus"   "Gauss"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Hephaestus"   "Mark IX"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Hephaestus"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Hephaestus"   "Hellbore"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Storm Needler"   "Gauss"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Storm Needler"   "Mark IX"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Storm Needler"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Storm Needler"   "Hellbore"
"16"   "Locust"   "Hurricane"   "Harpoon"   ""   "Gauss"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Harpoon"   ""   "Mjolnir"   "Gauss"
"16"   "Locust"   "Hurricane"   "Harpoon"   ""   "Mjolnir"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Hephaestus"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Storm Needler"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Hellbore"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Hephaestus"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Storm Needler"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Hephaestus"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Storm Needler"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Hephaestus"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Storm Needler"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Hephaestus"   "Gauss"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Hephaestus"   "Mark IX"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Hephaestus"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Hephaestus"   "Hellbore"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Storm Needler"   "Gauss"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Storm Needler"   "Mark IX"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Storm Needler"   "Mjolnir"
"16"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Storm Needler"   "Hellbore"
"16"   "Locust"   "Hurricane"   ""   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Locust"   "Hurricane"   ""   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Locust"   "Hurricane"   ""   "Harpoon"   "Mjolnir"   "Mjolnir"
"16"   "Locust"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Locust"   ""   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Hephaestus"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Storm Needler"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   ""
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   ""
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hellbore"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hephaestus"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Storm Needler"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   ""
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   ""   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   ""   "Mark IX"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   ""   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Hellbore"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Hephaestus"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Storm Needler"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Hellbore"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Hephaestus"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Storm Needler"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Hellbore"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Hephaestus"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Storm Needler"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Hephaestus"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Storm Needler"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Mark IX"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Hellbore"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Mark IX"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Hellbore"
"16"   "Hurricane"   "Locust"   "Harpoon"   ""   "Gauss"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Gauss"
"16"   "Hurricane"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Hephaestus"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Storm Needler"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Hellbore"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Hephaestus"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Storm Needler"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Hephaestus"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Storm Needler"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Hephaestus"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Storm Needler"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Gauss"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Mark IX"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Hellbore"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Gauss"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Mark IX"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Mjolnir"
"16"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Hellbore"
"16"   "Hurricane"   "Locust"   ""   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Hurricane"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Hurricane"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Hephaestus"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Storm Needler"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Hephaestus"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Storm Needler"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hellbore"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hephaestus"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Storm Needler"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Hellbore"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Hephaestus"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Storm Needler"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Hephaestus"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Storm Needler"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   ""
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Hellbore"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Hephaestus"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Storm Needler"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   ""
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Hephaestus"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Storm Needler"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   ""
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Hephaestus"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Storm Needler"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Hephaestus"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Hephaestus"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Hephaestus"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Hephaestus"   "Hellbore"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Storm Needler"   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Storm Needler"   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Storm Needler"   "Mjolnir"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   "Storm Needler"   "Hellbore"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   ""   "Gauss"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   ""   "Mark IX"
"16"   "Hurricane"   "Hurricane"   "Sabot"   "Harpoon"   ""   "Mjolnir"
"16"   ""   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"16"   ""   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
[close]

The top combinations for killing Brilliants are:
Spoiler
"Timetokill"   "Weapon1"   "Weapon2"   "Weapon3"   "Weapon4"   "Weapon5"   "Weapon6"
"10"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"10"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"10"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"10"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Hellbore"
"10"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Hellbore"
"10"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Hellbore"   "Mark IX"
"10"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Hellbore"   "Mjolnir"
"10"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Hellbore"
"10"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"10"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Hellbore"   "Mark IX"
"10"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Hellbore"   "Mjolnir"
"10"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"10"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"10"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"10"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"10"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"10"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"10"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"10"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"11"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"11"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"11"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"11"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"11"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"11"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Hephaestus"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Storm Needler"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   ""
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Hephaestus"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Storm Needler"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hephaestus"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Storm Needler"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mark IX"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mjolnir"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mark IX"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mjolnir"
"11"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   ""   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"11"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Hellbore"
"11"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Hephaestus"
"11"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Storm Needler"
"11"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   ""
"11"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Hephaestus"
"11"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Mjolnir"
"11"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   "Sabot"   ""   "Gauss"
"11"   "Squall"   "Locust"   "Harpoon"   ""   "Gauss"   "Gauss"
"11"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"11"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"11"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"11"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Hephaestus"
"11"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Storm Needler"
"11"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   ""
"11"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"11"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Hephaestus"
"11"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Gauss"
"11"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Gauss"
"11"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Mjolnir"
"11"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Gauss"
"11"   "Squall"   "Locust"   "Sabot"   "Harpoon"   ""   "Gauss"
"11"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"11"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"11"   "Squall"   "Locust"   ""   "Harpoon"   "Gauss"   "Gauss"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Hephaestus"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Storm Needler"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   ""
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Hephaestus"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Storm Needler"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mjolnir"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hephaestus"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Storm Needler"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Hephaestus"   "Gauss"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mark IX"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Hephaestus"   "Mjolnir"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Storm Needler"   "Gauss"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mark IX"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Storm Needler"   "Mjolnir"
"11"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   ""   "Gauss"
"11"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"11"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Hellbore"
"11"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Hephaestus"
"11"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Storm Needler"
"11"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   ""
"11"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"11"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Hephaestus"
"11"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hellbore"   "Gauss"
"11"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hephaestus"   "Gauss"
"11"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hephaestus"   "Mjolnir"
"11"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Storm Needler"   "Gauss"
"11"   "Locust"   "Squall"   "Harpoon"   "Sabot"   ""   "Gauss"
"11"   "Locust"   "Squall"   "Harpoon"   ""   "Gauss"   "Gauss"
"11"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"11"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"11"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Hephaestus"
"11"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Storm Needler"
"11"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   ""
"11"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"11"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Hephaestus"
"11"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hellbore"   "Gauss"
"11"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hephaestus"   "Gauss"
"11"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hephaestus"   "Mjolnir"
"11"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Storm Needler"   "Gauss"
"11"   "Locust"   "Squall"   "Sabot"   "Harpoon"   ""   "Gauss"
"11"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"11"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"11"   "Locust"   "Squall"   ""   "Harpoon"   "Gauss"   "Gauss"
"11"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"11"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"11"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"11"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"11"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"11"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"11"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"11"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"11"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Hellbore"
"11"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"11"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"11"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"11"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Gauss"
"11"   "Locust"   "Locust"   "Harpoon"   ""   "Gauss"   "Mark IX"
"11"   "Locust"   "Locust"   "Harpoon"   ""   "Mark IX"   "Gauss"
"11"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"11"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"11"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"11"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"11"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"11"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"11"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Gauss"
"11"   "Locust"   "Locust"   ""   "Harpoon"   "Gauss"   "Mark IX"
"11"   "Locust"   "Locust"   ""   "Harpoon"   "Mark IX"   "Gauss"
"11"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"11"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"11"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"11"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Hellbore"
"11"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"11"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"11"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Hellbore"   "Gauss"
"11"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"11"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"11"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"11"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"11"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"11"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Hellbore"   "Gauss"
"11"   "Locust"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"11"   "Locust"   ""   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"11"   "Locust"   ""   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"11"   "Locust"   ""   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"11"   "Locust"   ""   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"11"   "Locust"   ""   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"11"   "Locust"   ""   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"11"   "Locust"   ""   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"11"   "Locust"   ""   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"11"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"11"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"11"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"11"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Hellbore"
"11"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"11"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"11"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Gauss"
"11"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"11"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"11"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Hellbore"
"11"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"11"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"11"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Gauss"
"11"   ""   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"11"   ""   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"11"   ""   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mjolnir"
"11"   ""   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"11"   ""   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Gauss"
"11"   ""   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"11"   ""   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mjolnir"
"11"   ""   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"11"   ""   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Gauss"
"12"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"12"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"12"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hellbore"
"12"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   ""
"12"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Mjolnir"
"12"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   ""   "Mjolnir"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Hellbore"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Storm Needler"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Mjolnir"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Hephaestus"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Hellbore"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Hephaestus"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Storm Needler"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   ""
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Mjolnir"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Hephaestus"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Storm Needler"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   ""
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   ""   "Hephaestus"
"12"   "Squall"   "Locust"   "Harpoon"   "Sabot"   ""   "Storm Needler"
"12"   "Squall"   "Locust"   "Harpoon"   ""   "Mark IX"   "Hephaestus"
"12"   "Squall"   "Locust"   "Harpoon"   ""   "Mark IX"   "Storm Needler"
"12"   "Squall"   "Locust"   "Harpoon"   ""   "Hephaestus"   "Mark IX"
"12"   "Squall"   "Locust"   "Harpoon"   ""   "Storm Needler"   "Mark IX"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Storm Needler"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Mjolnir"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Hephaestus"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Hellbore"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Hephaestus"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Storm Needler"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   ""
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Mjolnir"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Hephaestus"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Storm Needler"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   ""
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   ""   "Hephaestus"
"12"   "Squall"   "Locust"   "Sabot"   "Harpoon"   ""   "Storm Needler"
"12"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Hellbore"
"12"   "Squall"   "Locust"   ""   "Harpoon"   "Mark IX"   "Hephaestus"
"12"   "Squall"   "Locust"   ""   "Harpoon"   "Mark IX"   "Storm Needler"
"12"   "Squall"   "Locust"   ""   "Harpoon"   "Hephaestus"   "Mark IX"
"12"   "Squall"   "Locust"   ""   "Harpoon"   "Storm Needler"   "Mark IX"
"12"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"12"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"12"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Hellbore"
"12"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   ""
"12"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Mjolnir"
"12"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   ""   "Mjolnir"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Hellbore"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Storm Needler"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hellbore"   "Mjolnir"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hellbore"   "Hephaestus"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hephaestus"   "Hellbore"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hephaestus"   "Hephaestus"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hephaestus"   "Storm Needler"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hephaestus"   ""
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Storm Needler"   "Mjolnir"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Storm Needler"   "Hephaestus"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Storm Needler"   "Storm Needler"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Storm Needler"   ""
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   ""   "Hephaestus"
"12"   "Locust"   "Squall"   "Harpoon"   "Sabot"   ""   "Storm Needler"
"12"   "Locust"   "Squall"   "Harpoon"   ""   "Mark IX"   "Hephaestus"
"12"   "Locust"   "Squall"   "Harpoon"   ""   "Mark IX"   "Storm Needler"
"12"   "Locust"   "Squall"   "Harpoon"   ""   "Hephaestus"   "Mark IX"
"12"   "Locust"   "Squall"   "Harpoon"   ""   "Storm Needler"   "Mark IX"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Hellbore"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Storm Needler"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hellbore"   "Mjolnir"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hellbore"   "Hephaestus"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hephaestus"   "Hellbore"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hephaestus"   "Hephaestus"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hephaestus"   "Storm Needler"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hephaestus"   ""
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Storm Needler"   "Mjolnir"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Storm Needler"   "Hephaestus"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Storm Needler"   "Storm Needler"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Storm Needler"   ""
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   ""   "Hephaestus"
"12"   "Locust"   "Squall"   "Sabot"   "Harpoon"   ""   "Storm Needler"
"12"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Hellbore"
"12"   "Locust"   "Squall"   ""   "Harpoon"   "Mark IX"   "Hephaestus"
"12"   "Locust"   "Squall"   ""   "Harpoon"   "Mark IX"   "Storm Needler"
"12"   "Locust"   "Squall"   ""   "Harpoon"   "Hephaestus"   "Mark IX"
"12"   "Locust"   "Squall"   ""   "Harpoon"   "Storm Needler"   "Mark IX"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"12"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"13"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"13"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"13"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"13"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"13"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"13"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"13"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"13"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"13"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"13"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"13"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"13"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"13"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Hellbore"
"13"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Hellbore"   "Mjolnir"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   ""
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Hellbore"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Hephaestus"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Hellbore"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Hephaestus"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   "Storm Needler"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Hephaestus"   ""
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Hephaestus"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   "Storm Needler"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   "Storm Needler"   ""
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   ""   "Mark IX"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   ""   "Hephaestus"
"13"   "Squall"   "Locust"   "Harpoon"   "Harpoon"   ""   "Storm Needler"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Hellbore"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Hephaestus"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Storm Needler"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   ""
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Mark IX"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Hellbore"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Storm Needler"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   ""
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Mark IX"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Mark IX"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Hellbore"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   ""   "Mjolnir"
"13"   "Squall"   "Locust"   "Harpoon"   "Sabot"   ""   "Hellbore"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Gauss"   "Mjolnir"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Gauss"   "Hellbore"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Gauss"   "Hephaestus"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Mark IX"   "Mjolnir"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Gauss"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Mark IX"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Mjolnir"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Hellbore"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Hephaestus"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Mjolnir"   "Storm Needler"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Hellbore"   "Gauss"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Hellbore"   "Mjolnir"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Hephaestus"   "Gauss"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Hephaestus"   "Mjolnir"
"13"   "Squall"   "Locust"   "Harpoon"   ""   "Storm Needler"   "Mjolnir"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Hellbore"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Hephaestus"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Storm Needler"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   ""
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Mark IX"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Hellbore"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Storm Needler"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   ""
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Mark IX"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Mark IX"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Hellbore"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   ""   "Mjolnir"
"13"   "Squall"   "Locust"   "Sabot"   "Harpoon"   ""   "Hellbore"
"13"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"13"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Mjolnir"
"13"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Mark IX"
"13"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"13"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Hephaestus"
"13"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Storm Needler"
"13"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Hellbore"   "Mjolnir"
"13"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Hephaestus"   "Mjolnir"
"13"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Storm Needler"   "Mjolnir"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Gauss"   "Mjolnir"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Gauss"   "Hellbore"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Gauss"   "Hephaestus"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Mark IX"   "Mjolnir"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Gauss"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Mark IX"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Mjolnir"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Hellbore"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Hephaestus"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Mjolnir"   "Storm Needler"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Hellbore"   "Gauss"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Hellbore"   "Mjolnir"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Hephaestus"   "Gauss"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Hephaestus"   "Mjolnir"
"13"   "Squall"   "Locust"   ""   "Harpoon"   "Storm Needler"   "Mjolnir"
"13"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"13"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Hellbore"
"13"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   ""
"13"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Mark IX"
"13"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Hellbore"
"13"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Hellbore"   "Hephaestus"
"13"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   "Hephaestus"   "Hellbore"
"13"   "Locust"   "Squall"   "Harpoon"   "Harpoon"   ""   "Mark IX"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Hellbore"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Hephaestus"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Storm Needler"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Mjolnir"   ""
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hellbore"   "Mark IX"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hellbore"   "Hellbore"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hellbore"   "Storm Needler"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hellbore"   ""
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Hephaestus"   "Mark IX"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Storm Needler"   "Mark IX"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   "Storm Needler"   "Hellbore"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   ""   "Mjolnir"
"13"   "Locust"   "Squall"   "Harpoon"   "Sabot"   ""   "Hellbore"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Gauss"   "Mjolnir"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Gauss"   "Hellbore"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Gauss"   "Hephaestus"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Mark IX"   "Mjolnir"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Mjolnir"   "Gauss"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Mjolnir"   "Mark IX"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Mjolnir"   "Mjolnir"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Mjolnir"   "Hellbore"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Mjolnir"   "Hephaestus"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Mjolnir"   "Storm Needler"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Hellbore"   "Gauss"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Hellbore"   "Mjolnir"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Hephaestus"   "Gauss"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Hephaestus"   "Mjolnir"
"13"   "Locust"   "Squall"   "Harpoon"   ""   "Storm Needler"   "Mjolnir"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Hellbore"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Hephaestus"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Storm Needler"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Mjolnir"   ""
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hellbore"   "Mark IX"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hellbore"   "Hellbore"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hellbore"   "Storm Needler"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hellbore"   ""
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Hephaestus"   "Mark IX"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Storm Needler"   "Mark IX"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   "Storm Needler"   "Hellbore"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   ""   "Mjolnir"
"13"   "Locust"   "Squall"   "Sabot"   "Harpoon"   ""   "Hellbore"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mark IX"   "Mjolnir"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Mark IX"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Hephaestus"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Storm Needler"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Hellbore"   "Mjolnir"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Hephaestus"   "Mjolnir"
"13"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Storm Needler"   "Mjolnir"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Gauss"   "Mjolnir"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Gauss"   "Hellbore"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Gauss"   "Hephaestus"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Mark IX"   "Mjolnir"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Mjolnir"   "Gauss"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Mjolnir"   "Mark IX"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Mjolnir"   "Mjolnir"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Mjolnir"   "Hellbore"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Mjolnir"   "Hephaestus"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Mjolnir"   "Storm Needler"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Hellbore"   "Gauss"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Hellbore"   "Mjolnir"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Hephaestus"   "Gauss"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Hephaestus"   "Mjolnir"
"13"   "Locust"   "Squall"   ""   "Harpoon"   "Storm Needler"   "Mjolnir"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Hellbore"
"13"   "Locust"   "Locust"   "Harpoon"   "Harpoon"   "Hellbore"   "Gauss"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Hellbore"
"13"   "Locust"   "Locust"   "Harpoon"   "Sabot"   "Hellbore"   "Mark IX"
"13"   "Locust"   "Locust"   "Harpoon"   ""   "Gauss"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Hellbore"
"13"   "Locust"   "Locust"   "Sabot"   "Harpoon"   "Hellbore"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Hellbore"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Hephaestus"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Storm Needler"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Hephaestus"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mark IX"   "Storm Needler"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Hephaestus"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Mjolnir"   "Storm Needler"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Hephaestus"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Hephaestus"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Hephaestus"   "Mjolnir"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Storm Needler"   "Gauss"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Storm Needler"   "Mark IX"
"13"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Storm Needler"   "Mjolnir"
"13"   "Locust"   "Locust"   ""   "Harpoon"   "Gauss"   "Gauss"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Hephaestus"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   "Storm Needler"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Gauss"   ""
"13"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Hephaestus"   "Gauss"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   "Storm Needler"   "Gauss"
"13"   "Locust"   "Hurricane"   "Harpoon"   "Sabot"   ""   "Gauss"
"13"   "Locust"   "Hurricane"   "Harpoon"   ""   "Gauss"   "Gauss"
"13"   "Locust"   "Hurricane"   "Harpoon"   ""   "Gauss"   "Mark IX"
"13"   "Locust"   "Hurricane"   "Harpoon"   ""   "Mark IX"   "Gauss"
"13"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"13"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Hephaestus"
"13"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   "Storm Needler"
"13"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Gauss"   ""
"13"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"13"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"13"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"13"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Hephaestus"   "Gauss"
"13"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   "Storm Needler"   "Gauss"
"13"   "Locust"   "Hurricane"   "Sabot"   "Harpoon"   ""   "Gauss"
"13"   "Locust"   "Hurricane"   ""   "Harpoon"   "Gauss"   "Gauss"
"13"   "Locust"   "Hurricane"   ""   "Harpoon"   "Gauss"   "Mark IX"
"13"   "Locust"   "Hurricane"   ""   "Harpoon"   "Mark IX"   "Gauss"
"13"   "Locust"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"13"   "Locust"   ""   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"13"   "Locust"   ""   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"13"   "Locust"   ""   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mark IX"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Gauss"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Hephaestus"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   "Storm Needler"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Gauss"   ""
"13"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mjolnir"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Hephaestus"   "Gauss"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   "Storm Needler"   "Gauss"
"13"   "Hurricane"   "Locust"   "Harpoon"   "Sabot"   ""   "Gauss"
"13"   "Hurricane"   "Locust"   "Harpoon"   ""   "Gauss"   "Gauss"
"13"   "Hurricane"   "Locust"   "Harpoon"   ""   "Gauss"   "Mark IX"
"13"   "Hurricane"   "Locust"   "Harpoon"   ""   "Mark IX"   "Gauss"
"13"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Gauss"
"13"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Hephaestus"
"13"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   "Storm Needler"
"13"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Gauss"   ""
"13"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"13"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"13"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mjolnir"
"13"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Hephaestus"   "Gauss"
"13"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   "Storm Needler"   "Gauss"
"13"   "Hurricane"   "Locust"   "Sabot"   "Harpoon"   ""   "Gauss"
"13"   "Hurricane"   "Locust"   ""   "Harpoon"   "Gauss"   "Gauss"
"13"   "Hurricane"   "Locust"   ""   "Harpoon"   "Gauss"   "Mark IX"
"13"   "Hurricane"   "Locust"   ""   "Harpoon"   "Mark IX"   "Gauss"
"13"   ""   "Locust"   "Harpoon"   "Harpoon"   "Gauss"   "Mark IX"
"13"   ""   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Gauss"
"13"   ""   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mark IX"
"13"   ""   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mark IX"
"14"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"14"   "Squall"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"14"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"14"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"14"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"14"   "Locust"   "Hurricane"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"14"   "Locust"   ""   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"14"   "Locust"   ""   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"14"   "Locust"   ""   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"14"   "Locust"   ""   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"14"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"14"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"14"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mark IX"   "Mjolnir"
"14"   "Hurricane"   "Locust"   "Harpoon"   "Harpoon"   "Mjolnir"   "Mark IX"
"14"   ""   "Locust"   "Harpoon"   "Sabot"   "Mark IX"   "Mjolnir"
"14"   ""   "Locust"   "Harpoon"   "Sabot"   "Mjolnir"   "Mark IX"
"14"   ""   "Locust"   "Sabot"   "Harpoon"   "Mark IX"   "Mjolnir"
"14"   ""   "Locust"   "Sabot"   "Harpoon"   "Mjolnir"   "Mark IX"
"15"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Gauss"   "Mark IX"
"15"   "Squall"   "Squall"   "Harpoon"   "Sabot"   "Mark IX"   "Gauss"
"15"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Gauss"   "Mark IX"
"15"   "Squall"   "Squall"   "Sabot"   "Harpoon"   "Mark IX"   "Gauss"
"15"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Gauss"
"15"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Gauss"   "Mjolnir"
"15"   "Squall"   "Squall"   "Sabot"   "Sabot"   "Mjolnir"   "Gauss"
"15"   "Squall"   "Locust"   "Harpoon"   ""   "Gauss"   "Storm Needler"
"15"   "Squall"   "Locust"   "Harpoon"   ""   "Storm Needler"   "Gauss"
"15"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Hephaestus"
"15"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Gauss"   "Storm Needler"
"15"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Hellbore"   "Gauss"
"15"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Hephaestus"   "Gauss"
"15"   "Squall"   "Locust"   "Sabot"   "Sabot"   "Storm Needler"   "Gauss"
"15"   "Squall"   "Locust"   ""   "Harpoon"   "Gauss"   "Storm Needler"
"15"   "Squall"   "Locust"   ""   "Harpoon"   "Storm Needler"   "Gauss"
"15"   "Squall"   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"15"   "Squall"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"15"   "Squall"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"15"   "Squall"   ""   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"15"   "Locust"   "Squall"   "Harpoon"   ""   "Gauss"   "Storm Needler"
"15"   "Locust"   "Squall"   "Harpoon"   ""   "Storm Needler"   "Gauss"
"15"   "Locust"   "Squall"   "Sabot"   "Sabot"   "Hellbore"   "Gauss"
"15"   "Locust"   "Squall"   ""   "Harpoon"   "Gauss"   "Storm Needler"
"15"   "Locust"   "Squall"   ""   "Harpoon"   "Storm Needler"   "Gauss"
"15"   "Locust"   "Locust"   "Sabot"   "Sabot"   "Hellbore"   "Gauss"
"15"   "Hurricane"   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"15"   "Hurricane"   ""   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"15"   ""   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
"15"   ""   "Squall"   "Harpoon"   "Harpoon"   "Gauss"   "Mjolnir"
"15"   ""   "Squall"   "Harpoon"   "Harpoon"   "Mjolnir"   "Gauss"
"15"   ""   "Hurricane"   "Harpoon"   "Harpoon"   "Gauss"   "Gauss"
[close]


One more analysis: what if you just don't know what you're facing and are too lazy to figure out a combo? Which weapons are generally best? To solve this, I ran the analyses for Tempest, Hammerhead, Brilliant and Onslaught. Then computed time divided by average time to kill the ship, and summed time values by weapon. Yielding a weapon total score (lower is better ie. means the weapon appears more often earlier in the table). Only comparable within groups.

Best weapons overall
      [Name]            [Total score]              
 [1,] "Squall"        "14083.913945038"
 [2,] "Locust"        "17314.4987742282"
 [3,] "Hurricane"     "17749.5872807338"
 [4,] "Sabot"         "24892.0870271849"
 [5,] "Harpoon"       "24255.9129728151"
 [6,] "Gauss"         "7899.61820082352"
 [7,] "Mark IX"       "7911.18763682106"
 [8,] "Hellbore"      "8103.78176570459"
 [9,] "Hephaestus"    "8454.36403774929"
[10,] "Mjolnir"       "8288.8835490106"
[11,] "Storm Needler" "8490.16480989094"
[close]
« Last Edit: October 13, 2022, 09:19:39 AM by CapnHector »
Logged
5 ships vs 5 Ordos: Executor · Invictus · Paragon · Astral · Legion · Onslaught · Odyssey | Video LibraryHiruma Kai's Challenge

BCS

  • Captain
  • ****
  • Posts: 279
    • View Profile
Re: Conquest appreciation thread (0.95.1a)
« Reply #29 on: October 13, 2022, 12:25:15 PM »

Well, I'm glad to hear that my choice of two Locusts, which was done almost entirely for aesthetic and OCD reasons, turned out to also be pretty effective.
Logged
Pages: 1 [2] 3 4 ... 7