-- 不同於我方的船, 敵艦數據無法批量獲取, 故集中管理敵艦數據沒有太大意義 -- 這裡列出的數據主要用於自動計算敵方艦隊的索敵/航速/制空 -- 除明顯有問題的輕巡Η級索敵外數據均抄自萌娘百科相關條目 local ships = {} local function calcAa(fp, cap, aa) local n = math.floor(fp / 5) + 3 if cap < n then n = cap end return math.log((n + 1) * 2) * aa end ships['驅逐Α級Ⅰ型'] = { rarity=1, type='敵驅逐艦', rec=3, speed=35, aa=0, class=2 } ships['驅逐Α級Ⅱ型'] = { rarity=4, type='敵驅逐艦', rec=6, speed=40, aa=0, class=2 } ships['驅逐Α級Ⅲ型'] = { rarity=5, type='敵驅逐艦', rec=10, speed=45, aa=0, class=2 } ships['驅逐Α級Ⅳ型'] = { rarity=6, type='敵驅逐艦', rec=12, speed=45, aa=0, class=2 } ships['驅逐Β級Ⅰ型'] = { rarity=1, type='敵驅逐艦', rec=3, speed=35, aa=0, class=2 } ships['驅逐Β級Ⅱ型'] = { rarity=4, type='敵驅逐艦', rec=6, speed=40, aa=0, class=2 } ships['驅逐Β級Ⅲ型'] = { rarity=5, type='敵驅逐艦', rec=10, speed=45, aa=0, class=2 } ships['驅逐Β級Ⅳ型'] = { rarity=6, type='敵驅逐艦', rec=12, speed=45, aa=0, class=2 } ships['驅逐Γ級Ⅰ型'] = { rarity=1, type='敵驅逐艦', rec=4, speed=35, aa=0, class=2 } ships['驅逐Γ級Ⅱ型'] = { rarity=4, type='敵驅逐艦', rec=7, speed=40, aa=0, class=2 } ships['驅逐Γ級Ⅲ型'] = { rarity=5, type='敵驅逐艦', rec=12, speed=45, aa=0, class=2 } ships['驅逐Γ級Ⅳ型'] = { rarity=6, type='敵驅逐艦', rec=15, speed=45, aa=0, class=2 } ships['驅逐Δ級Ⅰ型'] = { rarity=1, type='敵驅逐艦', rec=4, speed=35, aa=0, class=2 } ships['驅逐Δ級Ⅱ型'] = { rarity=4, type='敵驅逐艦', rec=7, speed=40, aa=0, class=2 } ships['驅逐Δ級Ⅲ型'] = { rarity=5, type='敵驅逐艦', rec=10, speed=45, aa=0, class=2 } ships['輕巡Ε級Ⅰ型'] = { rarity=1, type='敵輕巡洋艦', rec=6, speed=30, aa=0, class=2 } ships['輕巡Ε級Ⅱ型'] = { rarity=4, type='敵輕巡洋艦', rec=6, speed=33, aa=0, class=2 } ships['輕巡Ε級Ⅲ型'] = { rarity=5, type='敵輕巡洋艦', rec=20, speed=36, aa=0, class=2 } ships['輕巡Ε級Ⅳ型'] = { rarity=6, type='敵輕巡洋艦', rec=34, speed=36, aa=0, class=2 } ships['輕巡Ζ級Ⅰ型'] = { rarity=1, type='敵輕巡洋艦', rec=6, speed=30, aa=0, class=2 } ships['輕巡Ζ級Ⅱ型'] = { rarity=4, type='敵輕巡洋艦', rec=6, speed=33, aa=0, class=2 } ships['輕巡Ζ級Ⅲ型'] = { rarity=5, type='敵輕巡洋艦', rec=24, speed=36, aa=0, class=2 } ships['輕巡Ζ級Ⅳ型'] = { rarity=6, type='敵輕巡洋艦', rec=40, speed=36, aa=0, class=2 } ships['輕巡Η級Ⅰ型'] = { rarity=1, type='敵輕巡洋艦', rec=5, speed=30, aa=0, class=2 } ships['輕巡Η級Ⅱ型'] = { rarity=4, type='敵輕巡洋艦', rec=10, speed=33, aa=0, class=2 } ships['輕巡Η級Ⅲ型'] = { rarity=5, type='敵輕巡洋艦', rec=20, speed=36, aa=0, class=2 } ships['雷巡Θ級Ⅰ型'] = { rarity=1, type='敵重雷裝巡洋艦', rec=4, speed=30, aa=0, class=2 } ships['雷巡Θ級Ⅱ型'] = { rarity=4, type='敵重雷裝巡洋艦', rec=10, speed=35, aa=0, class=2 } ships['雷巡Θ級Ⅲ型'] = { rarity=5, type='敵重雷裝巡洋艦', rec=15, speed=40, aa=0, class=2 } ships['雷巡Θ級Ⅳ型'] = { rarity=6, type='敵重雷裝巡洋艦', rec=20, speed=40, aa=0, class=2 } ships['重巡Ι級Ⅰ型'] = { rarity=1, type='敵重巡洋艦', rec=10, speed=25, aa=0, class=2 } ships['重巡Ι級Ⅱ型'] = { rarity=4, type='敵重巡洋艦', rec=15, speed=30, aa=0, class=2 } ships['重巡Ι級Ⅲ型'] = { rarity=5, type='敵重巡洋艦', rec=20, speed=35, aa=0, class=2 } ships['重巡Ι級Ⅳ型'] = { rarity=6, type='敵重巡洋艦', rec=30, speed=35, aa=0, class=2 } ships['戰巡Κ級Ⅰ型'] = { rarity=1, type='敵戰列巡洋艦', rec=10, speed=27, aa=0, class=1 } ships['戰巡Κ級Ⅱ型'] = { rarity=4, type='敵戰列巡洋艦', rec=15, speed=30, aa=0, class=1 } ships['戰巡Κ級Ⅲ型'] = { rarity=5, type='敵戰列巡洋艦', rec=20, speed=33, aa=0, class=1 } ships['戰巡Κ級Ⅳ型'] = { rarity=6, type='敵戰列巡洋艦', rec=30, speed=33, aa=0, class=1 } ships['戰列Λ級Ⅰ型'] = { rarity=1, type='敵戰列艦', rec=20, speed=18, aa=0, class=1 } ships['戰列Λ級Ⅱ型'] = { rarity=4, type='敵戰列艦', rec=20, speed=21, aa=0, class=1 } ships['戰列Λ級Ⅲ型'] = { rarity=5, type='敵戰列艦', rec=30, speed=24, aa=0, class=1 } ships['戰列Λ級Ⅳ型'] = { rarity=6, type='敵戰列艦', rec=36, speed=24, aa=0, class=1 } ships['戰列Μ級Ⅰ型'] = { rarity=1, type='敵戰列艦', rec=25, speed=27, aa=0, class=1 } ships['戰列Μ級Ⅱ型'] = { rarity=4, type='敵戰列艦', rec=30, speed=30, aa=0, class=1 } ships['戰列Μ級Ⅲ型'] = { rarity=5, type='敵戰列艦', rec=35, speed=33, aa=0, class=1 } ships['戰列Μ級Ⅳ型'] = { rarity=6, type='敵戰列艦', rec=40, speed=36, aa=0, class=1 } ships['戰列Ψ級Ⅰ型'] = { rarity=3, type='敵戰列艦', rec=30, speed=30, aa=0, class=1 } ships['戰列Ψ級Ⅱ型'] = { rarity=4, type='敵戰列艦', rec=35, speed=33, aa=0, class=1 } ships['戰列Ψ級Ⅲ型'] = { rarity=5, type='敵戰列艦', rec=40, speed=36, aa=0, class=1 } ships['戰列Ψ級Ⅳ型'] = { rarity=6, type='敵戰列艦', rec=45, speed=40, aa=0, class=1 } ships['旗艦Ν級Ⅰ型'] = { rarity=4, type='敵航空戰列艦', rec=50, speed=30, aa=0, class=1 } ships['旗艦Ν級Ⅱ型'] = { rarity=5, type='敵航空戰列艦', rec=70, speed=33, aa=0, class=1 } ships['旗艦Ν級Ⅲ型'] = { rarity=6, type='敵航空戰列艦', rec=90, speed=36, aa=0, class=1 } ships['輕母Ξ級Ⅰ型'] = { rarity=1, type='敵輕型航母', rec=30, speed=25, aa=calcAa(5, 18, 2), class=1 } ships['輕母Ξ級Ⅱ型'] = { rarity=4, type='敵輕型航母', rec=30, speed=30, aa=calcAa(10, 24, 5), class=1 } ships['輕母Ξ級Ⅲ型'] = { rarity=5, type='敵輕型航母', rec=40, speed=35, aa=calcAa(25, 22, 5), class=1 } ships['輕母Ξ級Ⅳ型'] = { rarity=6, type='敵輕型航母', rec=50, speed=40, aa=calcAa(35, 27, 9), class=1 } ships['航母Ο級Ⅰ型'] = { rarity=1, type='敵航空母艦', rec=40, speed=25, aa=calcAa(10, 27, 2), class=1 } ships['航母Ο級Ⅱ型'] = { rarity=4, type='敵航空母艦', rec=50, speed=30, aa=calcAa(20, 30, 5), class=1 } ships['航母Ο級Ⅲ型'] = { rarity=5, type='敵航空母艦', rec=50, speed=35, aa=calcAa(35, 32, 5), class=1 } ships['航母Ο級Ⅳ型'] = { rarity=6, type='敵航空母艦', rec=60, speed=35, aa=calcAa(50, 36, 9), class=1 } ships['潛艇Π級Ⅰ型'] = { rarity=1, type='敵潛艇', rec=6, speed=15, aa=0, class=3 } ships['潛艇Π級Ⅱ型'] = { rarity=4, type='敵潛艇', rec=8, speed=20, aa=0, class=3 } ships['潛艇Π級Ⅲ型'] = { rarity=5, type='敵潛艇', rec=10, speed=25, aa=0, class=3 } ships['潛艇Π級Ⅳ型'] = { rarity=6, type='敵潛艇', rec=12, speed=25, aa=0, class=3 } ships['潛艇Ρ級Ⅰ型'] = { rarity=1, type='敵潛艇', rec=7, speed=15, aa=0, class=3 } ships['潛艇Ρ級Ⅱ型'] = { rarity=4, type='敵潛艇', rec=9, speed=20, aa=0, class=3 } ships['潛艇Ρ級Ⅲ型'] = { rarity=5, type='敵潛艇', rec=10, speed=25, aa=0, class=3 } ships['潛艇Ρ級Ⅳ型'] = { rarity=6, type='敵潛艇', rec=11, speed=25, aa=0, class=3 } ships['潛艇Σ級Ⅰ型'] = { rarity=1, type='敵潛艇', rec=10, speed=15, aa=0, class=3 } ships['潛艇Σ級Ⅱ型'] = { rarity=4, type='敵潛艇', rec=15, speed=20, aa=0, class=3 } ships['潛艇Σ級Ⅲ型'] = { rarity=5, type='敵潛艇', rec=20, speed=25, aa=0, class=3 } ships['驅逐Τ級Ⅰ型'] = { rarity=3, type='敵驅逐艦', rec=0, speed=0 , aa=0, class=2 } ships['驅逐Τ級Ⅱ型'] = { rarity=4, type='敵驅逐艦', rec=16, speed=40, aa=0, class=2 } ships['驅逐Τ級Ⅲ型'] = { rarity=5, type='敵驅逐艦', rec=25, speed=45, aa=0, class=2 } ships['補給Υ級Ⅰ型'] = { rarity=1, type='敵補給艦', rec=5, speed=25, aa=0, class=2 } ships['補給Υ級Ⅱ型'] = { rarity=4, type='敵補給艦', rec=10, speed=30, aa=0, class=2 } ships['補給Υ級Ⅲ型'] = { rarity=5, type='敵補給艦', rec=15, speed=35, aa=0, class=2 } ships['補給Υ級Ⅳ型'] = { rarity=6, type='敵補給艦', rec=20, speed=35, aa=0, class=2 } return ships