Re: Drydock pre-release
I had sent mj12games a PM about this, but as he hasn't been on for a week (thanks KDLadage for pointing it out), I'll post this up.
I found another couple mistakes. Two are easy fixes, one not so much (for my limited Excel-fu)
Slow weapon modifier is 0.7, should be 0.6
Guided+Telescopic shows as red--due to the range-based weapon trait column having a figure of 82, when it should be 80.
Selecting Piercing 1/2 and Proximity reads as an invalid combination.
For the Piercing 1/2 (Pr1/Pr2) and Proximity (Prx) invalid combo, the problem is that Pr* in the formula in Weapons! AK2:AK101 just looks at the first 2 characters so Pr1 & Prx end up the same.
To fix it, in Weapons!AK2 change this:
IF((COUNTIF(G2:K2,"NPr")+COUNTIF(G2:K2,"Pr*"))>1,1,0)
to this:
IF((COUNTIF(G2:K2,"NPr")+COUNTIF(G2:K2,"Pr1")+COUNTIF(G2:K2,"Pr2"))>1,1,0)
and copy down through AK101.