├── .gitignore ├── c3_chart.js ├── calculator.js ├── data ├── 0.7.10 │ ├── Commonwealth │ │ ├── Commonwealth_AirCarrier.json │ │ ├── Commonwealth_Battleship.json │ │ ├── Commonwealth_Cruiser.json │ │ ├── Commonwealth_Destroyer.json │ │ └── shiptypes.json │ ├── France │ │ ├── France_AirCarrier.json │ │ ├── France_Battleship.json │ │ ├── France_Cruiser.json │ │ ├── France_Destroyer.json │ │ └── shiptypes.json │ ├── Germany │ │ ├── Germany_AirCarrier.json │ │ ├── Germany_Battleship.json │ │ ├── Germany_Cruiser.json │ │ ├── Germany_Destroyer.json │ │ └── shiptypes.json │ ├── Italy │ │ ├── Italy_AirCarrier.json │ │ ├── Italy_Battleship.json │ │ ├── Italy_Cruiser.json │ │ ├── Italy_Destroyer.json │ │ └── shiptypes.json │ ├── Japan │ │ ├── Japan_AirCarrier.json │ │ ├── Japan_Battleship.json │ │ ├── Japan_Cruiser.json │ │ ├── Japan_Destroyer.json │ │ └── shiptypes.json │ ├── Pan_America │ │ ├── Pan_America_Cruiser.json │ │ └── shiptypes.json │ ├── Pan_Asia │ │ ├── Pan_Asia_AirCarrier.json │ │ ├── Pan_Asia_Battleship.json │ │ ├── Pan_Asia_Cruiser.json │ │ ├── Pan_Asia_Destroyer.json │ │ └── shiptypes.json │ ├── Poland │ │ ├── Poland_AirCarrier.json │ │ ├── Poland_Battleship.json │ │ ├── Poland_Cruiser.json │ │ ├── Poland_Destroyer.json │ │ └── shiptypes.json │ ├── Russia │ │ ├── Russia_AirCarrier.json │ │ ├── Russia_Battleship.json │ │ ├── Russia_Cruiser.json │ │ ├── Russia_Destroyer.json │ │ └── shiptypes.json │ ├── USA │ │ ├── USA_AirCarrier.json │ │ ├── USA_Battleship.json │ │ ├── USA_Cruiser.json │ │ ├── USA_Destroyer.json │ │ └── shiptypes.json │ ├── United_Kingdom │ │ ├── United_Kingdom_AirCarrier.json │ │ ├── United_Kingdom_Battleship.json │ │ ├── United_Kingdom_Cruiser.json │ │ ├── United_Kingdom_Destroyer.json │ │ └── shiptypes.json │ └── nations.json ├── 0.7.12 │ ├── Commonwealth │ │ ├── Commonwealth_Cruiser.json │ │ ├── Commonwealth_Destroyer.json │ │ └── shiptypes.json │ ├── France │ │ ├── France_Battleship.json │ │ ├── France_Cruiser.json │ │ ├── France_Destroyer.json │ │ └── shiptypes.json │ ├── Germany │ │ ├── Germany_Battleship.json │ │ ├── Germany_Cruiser.json │ │ ├── Germany_Destroyer.json │ │ └── shiptypes.json │ ├── Italy │ │ ├── Italy_Battleship.json │ │ ├── Italy_Cruiser.json │ │ ├── Italy_Destroyer.json │ │ └── shiptypes.json │ ├── Japan │ │ ├── Japan_Battleship.json │ │ ├── Japan_Cruiser.json │ │ ├── Japan_Destroyer.json │ │ └── shiptypes.json │ ├── Pan_America │ │ ├── Pan_America_Cruiser.json │ │ └── shiptypes.json │ ├── Pan_Asia │ │ ├── Pan_Asia_Cruiser.json │ │ ├── Pan_Asia_Destroyer.json │ │ └── shiptypes.json │ ├── Poland │ │ ├── Poland_Destroyer.json │ │ └── shiptypes.json │ ├── Russia │ │ ├── Russia_Battleship.json │ │ ├── Russia_Cruiser.json │ │ ├── Russia_Destroyer.json │ │ └── shiptypes.json │ ├── USA │ │ ├── USA_Battleship.json │ │ ├── USA_Cruiser.json │ │ ├── USA_Destroyer.json │ │ └── shiptypes.json │ ├── United_Kingdom │ │ ├── United_Kingdom_Battleship.json │ │ ├── United_Kingdom_Cruiser.json │ │ ├── United_Kingdom_Destroyer.json │ │ └── shiptypes.json │ └── nations.json ├── 0.7.2 │ ├── Commonwealth │ │ ├── Commonwealth_AirCarrier.json │ │ ├── Commonwealth_Battleship.json │ │ ├── Commonwealth_Cruiser.json │ │ ├── Commonwealth_Destroyer.json │ │ └── shiptypes.json │ ├── France │ │ ├── France_AirCarrier.json │ │ ├── France_Battleship.json │ │ ├── France_Cruiser.json │ │ ├── France_Destroyer.json │ │ └── shiptypes.json │ ├── Germany │ │ ├── Germany_AirCarrier.json │ │ ├── Germany_Battleship.json │ │ ├── Germany_Cruiser.json │ │ ├── Germany_Destroyer.json │ │ └── shiptypes.json │ ├── Italy │ │ ├── Italy_AirCarrier.json │ │ ├── Italy_Battleship.json │ │ ├── Italy_Cruiser.json │ │ ├── Italy_Destroyer.json │ │ └── shiptypes.json │ ├── Japan │ │ ├── Japan_AirCarrier.json │ │ ├── Japan_Battleship.json │ │ ├── Japan_Cruiser.json │ │ ├── Japan_Destroyer.json │ │ └── shiptypes.json │ ├── Pan_Asia │ │ ├── Pan_Asia_AirCarrier.json │ │ ├── Pan_Asia_Battleship.json │ │ ├── Pan_Asia_Cruiser.json │ │ ├── Pan_Asia_Destroyer.json │ │ └── shiptypes.json │ ├── Poland │ │ ├── Poland_AirCarrier.json │ │ ├── Poland_Battleship.json │ │ ├── Poland_Cruiser.json │ │ ├── Poland_Destroyer.json │ │ └── shiptypes.json │ ├── Russia │ │ ├── Russia_AirCarrier.json │ │ ├── Russia_Battleship.json │ │ ├── Russia_Cruiser.json │ │ ├── Russia_Destroyer.json │ │ └── shiptypes.json │ ├── USA │ │ ├── USA_AirCarrier.json │ │ ├── USA_Battleship.json │ │ ├── USA_Cruiser.json │ │ ├── USA_Destroyer.json │ │ └── shiptypes.json │ ├── United_Kingdom │ │ ├── United_Kingdom_AirCarrier.json │ │ ├── United_Kingdom_Battleship.json │ │ ├── United_Kingdom_Cruiser.json │ │ ├── United_Kingdom_Destroyer.json │ │ └── shiptypes.json │ └── nations.json ├── 0.7.5 │ ├── Commonwealth │ │ ├── Commonwealth_AirCarrier.json │ │ ├── Commonwealth_Battleship.json │ │ ├── Commonwealth_Cruiser.json │ │ ├── Commonwealth_Destroyer.json │ │ └── shiptypes.json │ ├── France │ │ ├── France_AirCarrier.json │ │ ├── France_Battleship.json │ │ ├── France_Cruiser.json │ │ ├── France_Destroyer.json │ │ └── shiptypes.json │ ├── Germany │ │ ├── Germany_AirCarrier.json │ │ ├── Germany_Battleship.json │ │ ├── Germany_Cruiser.json │ │ ├── Germany_Destroyer.json │ │ └── shiptypes.json │ ├── Italy │ │ ├── Italy_AirCarrier.json │ │ ├── Italy_Battleship.json │ │ ├── Italy_Cruiser.json │ │ ├── Italy_Destroyer.json │ │ └── shiptypes.json │ ├── Japan │ │ ├── Japan_AirCarrier.json │ │ ├── Japan_Battleship.json │ │ ├── Japan_Cruiser.json │ │ ├── Japan_Destroyer.json │ │ └── shiptypes.json │ ├── Pan_Asia │ │ ├── Pan_Asia_AirCarrier.json │ │ ├── Pan_Asia_Battleship.json │ │ ├── Pan_Asia_Cruiser.json │ │ ├── Pan_Asia_Destroyer.json │ │ └── shiptypes.json │ ├── Poland │ │ ├── Poland_AirCarrier.json │ │ ├── Poland_Battleship.json │ │ ├── Poland_Cruiser.json │ │ ├── Poland_Destroyer.json │ │ └── shiptypes.json │ ├── Russia │ │ ├── Russia_AirCarrier.json │ │ ├── Russia_Battleship.json │ │ ├── Russia_Cruiser.json │ │ ├── Russia_Destroyer.json │ │ └── shiptypes.json │ ├── USA │ │ ├── USA_AirCarrier.json │ │ ├── USA_Battleship.json │ │ ├── USA_Cruiser.json │ │ ├── USA_Destroyer.json │ │ └── shiptypes.json │ ├── United_Kingdom │ │ ├── United_Kingdom_AirCarrier.json │ │ ├── United_Kingdom_Battleship.json │ │ ├── United_Kingdom_Cruiser.json │ │ ├── United_Kingdom_Destroyer.json │ │ └── shiptypes.json │ └── nations.json ├── 0.7.8 │ ├── Commonwealth │ │ ├── Commonwealth_AirCarrier.json │ │ ├── Commonwealth_Battleship.json │ │ ├── Commonwealth_Cruiser.json │ │ ├── Commonwealth_Destroyer.json │ │ └── shiptypes.json │ ├── France │ │ ├── France_AirCarrier.json │ │ ├── France_Battleship.json │ │ ├── France_Cruiser.json │ │ ├── France_Destroyer.json │ │ └── shiptypes.json │ ├── Germany │ │ ├── Germany_AirCarrier.json │ │ ├── Germany_Battleship.json │ │ ├── Germany_Cruiser.json │ │ ├── Germany_Destroyer.json │ │ └── shiptypes.json │ ├── Italy │ │ ├── Italy_AirCarrier.json │ │ ├── Italy_Battleship.json │ │ ├── Italy_Cruiser.json │ │ ├── Italy_Destroyer.json │ │ └── shiptypes.json │ ├── Japan │ │ ├── Japan_AirCarrier.json │ │ ├── Japan_Battleship.json │ │ ├── Japan_Cruiser.json │ │ ├── Japan_Destroyer.json │ │ └── shiptypes.json │ ├── Pan_Asia │ │ ├── Pan_Asia_AirCarrier.json │ │ ├── Pan_Asia_Battleship.json │ │ ├── Pan_Asia_Cruiser.json │ │ ├── Pan_Asia_Destroyer.json │ │ └── shiptypes.json │ ├── Poland │ │ ├── Poland_AirCarrier.json │ │ ├── Poland_Battleship.json │ │ ├── Poland_Cruiser.json │ │ ├── Poland_Destroyer.json │ │ └── shiptypes.json │ ├── Russia │ │ ├── Russia_AirCarrier.json │ │ ├── Russia_Battleship.json │ │ ├── Russia_Cruiser.json │ │ ├── Russia_Destroyer.json │ │ └── shiptypes.json │ ├── USA │ │ ├── USA_AirCarrier.json │ │ ├── USA_Battleship.json │ │ ├── USA_Cruiser.json │ │ ├── USA_Destroyer.json │ │ └── shiptypes.json │ ├── United_Kingdom │ │ ├── United_Kingdom_AirCarrier.json │ │ ├── United_Kingdom_Battleship.json │ │ ├── United_Kingdom_Cruiser.json │ │ ├── United_Kingdom_Destroyer.json │ │ └── shiptypes.json │ └── nations.json ├── 0.8.3 │ ├── Commonwealth │ │ ├── Commonwealth_AirCarrier.json │ │ ├── Commonwealth_Battleship.json │ │ ├── Commonwealth_Cruiser.json │ │ ├── Commonwealth_Destroyer.json │ │ └── shiptypes.json │ ├── France │ │ ├── France_AirCarrier.json │ │ ├── France_Battleship.json │ │ ├── France_Cruiser.json │ │ ├── France_Destroyer.json │ │ └── shiptypes.json │ ├── Germany │ │ ├── Germany_AirCarrier.json │ │ ├── Germany_Battleship.json │ │ ├── Germany_Cruiser.json │ │ ├── Germany_Destroyer.json │ │ └── shiptypes.json │ ├── Italy │ │ ├── Italy_AirCarrier.json │ │ ├── Italy_Battleship.json │ │ ├── Italy_Cruiser.json │ │ ├── Italy_Destroyer.json │ │ └── shiptypes.json │ ├── Japan │ │ ├── Japan_AirCarrier.json │ │ ├── Japan_Battleship.json │ │ ├── Japan_Cruiser.json │ │ ├── Japan_Destroyer.json │ │ └── shiptypes.json │ ├── Pan_America │ │ ├── Pan_America_AirCarrier.json │ │ ├── Pan_America_Battleship.json │ │ ├── Pan_America_Cruiser.json │ │ ├── Pan_America_Destroyer.json │ │ └── shiptypes.json │ ├── Pan_Asia │ │ ├── Pan_Asia_AirCarrier.json │ │ ├── Pan_Asia_Battleship.json │ │ ├── Pan_Asia_Cruiser.json │ │ ├── Pan_Asia_Destroyer.json │ │ └── shiptypes.json │ ├── Poland │ │ ├── Poland_AirCarrier.json │ │ ├── Poland_Battleship.json │ │ ├── Poland_Cruiser.json │ │ ├── Poland_Destroyer.json │ │ └── shiptypes.json │ ├── Russia │ │ ├── Russia_AirCarrier.json │ │ ├── Russia_Battleship.json │ │ ├── Russia_Cruiser.json │ │ ├── Russia_Destroyer.json │ │ └── shiptypes.json │ ├── USA │ │ ├── USA_AirCarrier.json │ │ ├── USA_Battleship.json │ │ ├── USA_Cruiser.json │ │ ├── USA_Destroyer.json │ │ └── shiptypes.json │ ├── United_Kingdom │ │ ├── United_Kingdom_AirCarrier.json │ │ ├── United_Kingdom_Battleship.json │ │ ├── United_Kingdom_Cruiser.json │ │ ├── United_Kingdom_Destroyer.json │ │ └── shiptypes.json │ └── nations.json ├── 0.8.4 │ ├── Commonwealth │ │ ├── Commonwealth_AirCarrier.json │ │ ├── Commonwealth_Battleship.json │ │ ├── Commonwealth_Cruiser.json │ │ ├── Commonwealth_Destroyer.json │ │ └── shiptypes.json │ ├── France │ │ ├── France_AirCarrier.json │ │ ├── France_Battleship.json │ │ ├── France_Cruiser.json │ │ ├── France_Destroyer.json │ │ └── shiptypes.json │ ├── Germany │ │ ├── Germany_AirCarrier.json │ │ ├── Germany_Battleship.json │ │ ├── Germany_Cruiser.json │ │ ├── Germany_Destroyer.json │ │ └── shiptypes.json │ ├── Italy │ │ ├── Italy_AirCarrier.json │ │ ├── Italy_Battleship.json │ │ ├── Italy_Cruiser.json │ │ ├── Italy_Destroyer.json │ │ └── shiptypes.json │ ├── Japan │ │ ├── Japan_AirCarrier.json │ │ ├── Japan_Battleship.json │ │ ├── Japan_Cruiser.json │ │ ├── Japan_Destroyer.json │ │ └── shiptypes.json │ ├── Pan_America │ │ ├── Pan_America_AirCarrier.json │ │ ├── Pan_America_Battleship.json │ │ ├── Pan_America_Cruiser.json │ │ ├── Pan_America_Destroyer.json │ │ └── shiptypes.json │ ├── Pan_Asia │ │ ├── Pan_Asia_AirCarrier.json │ │ ├── Pan_Asia_Battleship.json │ │ ├── Pan_Asia_Cruiser.json │ │ ├── Pan_Asia_Destroyer.json │ │ └── shiptypes.json │ ├── Poland │ │ ├── Poland_AirCarrier.json │ │ ├── Poland_Battleship.json │ │ ├── Poland_Cruiser.json │ │ ├── Poland_Destroyer.json │ │ └── shiptypes.json │ ├── Russia │ │ ├── Russia_AirCarrier.json │ │ ├── Russia_Battleship.json │ │ ├── Russia_Cruiser.json │ │ ├── Russia_Destroyer.json │ │ └── shiptypes.json │ ├── USA │ │ ├── USA_AirCarrier.json │ │ ├── USA_Battleship.json │ │ ├── USA_Cruiser.json │ │ ├── USA_Destroyer.json │ │ └── shiptypes.json │ ├── United_Kingdom │ │ ├── United_Kingdom_AirCarrier.json │ │ ├── United_Kingdom_Battleship.json │ │ ├── United_Kingdom_Cruiser.json │ │ ├── United_Kingdom_Destroyer.json │ │ └── shiptypes.json │ └── nations.json ├── 0.8.5 │ ├── Commonwealth │ │ ├── Commonwealth_AirCarrier.json │ │ ├── Commonwealth_Battleship.json │ │ ├── Commonwealth_Cruiser.json │ │ ├── Commonwealth_Destroyer.json │ │ └── shiptypes.json │ ├── France │ │ ├── France_AirCarrier.json │ │ ├── France_Battleship.json │ │ ├── France_Cruiser.json │ │ ├── France_Destroyer.json │ │ └── shiptypes.json │ ├── Germany │ │ ├── Germany_AirCarrier.json │ │ ├── Germany_Battleship.json │ │ ├── Germany_Cruiser.json │ │ ├── Germany_Destroyer.json │ │ └── shiptypes.json │ ├── Italy │ │ ├── Italy_AirCarrier.json │ │ ├── Italy_Battleship.json │ │ ├── Italy_Cruiser.json │ │ ├── Italy_Destroyer.json │ │ └── shiptypes.json │ ├── Japan │ │ ├── Japan_AirCarrier.json │ │ ├── Japan_Battleship.json │ │ ├── Japan_Cruiser.json │ │ ├── Japan_Destroyer.json │ │ └── shiptypes.json │ ├── Pan_America │ │ ├── Pan_America_AirCarrier.json │ │ ├── Pan_America_Battleship.json │ │ ├── Pan_America_Cruiser.json │ │ ├── Pan_America_Destroyer.json │ │ └── shiptypes.json │ ├── Pan_Asia │ │ ├── Pan_Asia_AirCarrier.json │ │ ├── Pan_Asia_Battleship.json │ │ ├── Pan_Asia_Cruiser.json │ │ ├── Pan_Asia_Destroyer.json │ │ └── shiptypes.json │ ├── Poland │ │ ├── Poland_AirCarrier.json │ │ ├── Poland_Battleship.json │ │ ├── Poland_Cruiser.json │ │ ├── Poland_Destroyer.json │ │ └── shiptypes.json │ ├── Russia │ │ ├── Russia_AirCarrier.json │ │ ├── Russia_Battleship.json │ │ ├── Russia_Cruiser.json │ │ ├── Russia_Destroyer.json │ │ └── shiptypes.json │ ├── USA │ │ ├── USA_AirCarrier.json │ │ ├── USA_Battleship.json │ │ ├── USA_Cruiser.json │ │ ├── USA_Destroyer.json │ │ └── shiptypes.json │ ├── United_Kingdom │ │ ├── United_Kingdom_AirCarrier.json │ │ ├── United_Kingdom_Battleship.json │ │ ├── United_Kingdom_Cruiser.json │ │ ├── United_Kingdom_Destroyer.json │ │ └── shiptypes.json │ └── nations.json └── 0.9.1 │ ├── Commonwealth │ ├── Commonwealth_AirCarrier.json │ ├── Commonwealth_Battleship.json │ ├── Commonwealth_Cruiser.json │ ├── Commonwealth_Destroyer.json │ └── shiptypes.json │ ├── Europe │ ├── Europe_AirCarrier.json │ ├── Europe_Battleship.json │ ├── Europe_Cruiser.json │ ├── Europe_Destroyer.json │ └── shiptypes.json │ ├── France │ ├── France_AirCarrier.json │ ├── France_Battleship.json │ ├── France_Cruiser.json │ ├── France_Destroyer.json │ └── shiptypes.json │ ├── Germany │ ├── Germany_AirCarrier.json │ ├── Germany_Battleship.json │ ├── Germany_Cruiser.json │ ├── Germany_Destroyer.json │ └── shiptypes.json │ ├── Italy │ ├── Italy_AirCarrier.json │ ├── Italy_Battleship.json │ ├── Italy_Cruiser.json │ ├── Italy_Destroyer.json │ └── shiptypes.json │ ├── Japan │ ├── Japan_AirCarrier.json │ ├── Japan_Battleship.json │ ├── Japan_Cruiser.json │ └── Japan_Destroyer.json │ ├── Pan_America │ ├── Pan_America_AirCarrier.json │ ├── Pan_America_Battleship.json │ ├── Pan_America_Cruiser.json │ ├── Pan_America_Destroyer.json │ └── shiptypes.json │ ├── Pan_Asia │ ├── Pan_Asia_AirCarrier.json │ ├── Pan_Asia_Battleship.json │ ├── Pan_Asia_Cruiser.json │ ├── Pan_Asia_Destroyer.json │ └── shiptypes.json │ ├── Russia │ ├── Russia_AirCarrier.json │ ├── Russia_Battleship.json │ ├── Russia_Cruiser.json │ ├── Russia_Destroyer.json │ └── shiptypes.json │ ├── USA │ ├── USA_AirCarrier.json │ ├── USA_Battleship.json │ ├── USA_Cruiser.json │ ├── USA_Destroyer.json │ └── shiptypes.json │ ├── United_Kingdom │ ├── United_Kingdom_AirCarrier.json │ ├── United_Kingdom_Battleship.json │ ├── United_Kingdom_Cruiser.json │ ├── United_Kingdom_Destroyer.json │ └── shiptypes.json │ └── nations.json ├── index.html ├── multi_chart.js ├── thirdparty ├── c3.min.css ├── c3.min.js ├── d3.v3.min.js ├── jquery-3.2.1.min.js └── require.js └── tools └── rm_dup_ships.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /c3_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/c3_chart.js -------------------------------------------------------------------------------- /calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/calculator.js -------------------------------------------------------------------------------- /data/0.7.10/Commonwealth/Commonwealth_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/Commonwealth/Commonwealth_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/Commonwealth/Commonwealth_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Commonwealth/Commonwealth_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.10/Commonwealth/Commonwealth_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Commonwealth/Commonwealth_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.10/Commonwealth/shiptypes.json: -------------------------------------------------------------------------------- 1 | ["Destroyer","Cruiser"] -------------------------------------------------------------------------------- /data/0.7.10/France/France_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/France/France_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/France/France_Battleship.json -------------------------------------------------------------------------------- /data/0.7.10/France/France_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/France/France_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.10/France/France_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/France/France_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.10/France/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/France/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.10/Germany/Germany_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/Germany/Germany_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Germany/Germany_Battleship.json -------------------------------------------------------------------------------- /data/0.7.10/Germany/Germany_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Germany/Germany_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.10/Germany/Germany_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Germany/Germany_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.10/Germany/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Germany/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.10/Italy/Italy_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/Italy/Italy_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Italy/Italy_Battleship.json -------------------------------------------------------------------------------- /data/0.7.10/Italy/Italy_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Italy/Italy_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.10/Italy/Italy_Destroyer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/Italy/shiptypes.json: -------------------------------------------------------------------------------- 1 | ["Cruiser","Battleship"] -------------------------------------------------------------------------------- /data/0.7.10/Japan/Japan_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/Japan/Japan_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Japan/Japan_Battleship.json -------------------------------------------------------------------------------- /data/0.7.10/Japan/Japan_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Japan/Japan_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.10/Japan/Japan_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Japan/Japan_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.10/Japan/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Japan/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.10/Pan_America/Pan_America_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Pan_America/Pan_America_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.10/Pan_America/shiptypes.json: -------------------------------------------------------------------------------- 1 | ["Cruiser"] -------------------------------------------------------------------------------- /data/0.7.10/Pan_Asia/Pan_Asia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/Pan_Asia/Pan_Asia_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/Pan_Asia/Pan_Asia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Pan_Asia/Pan_Asia_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.10/Pan_Asia/Pan_Asia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Pan_Asia/Pan_Asia_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.10/Pan_Asia/shiptypes.json: -------------------------------------------------------------------------------- 1 | ["Destroyer","Cruiser"] -------------------------------------------------------------------------------- /data/0.7.10/Poland/Poland_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/Poland/Poland_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/Poland/Poland_Cruiser.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/Poland/Poland_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Poland/Poland_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.10/Poland/shiptypes.json: -------------------------------------------------------------------------------- 1 | ["Destroyer"] -------------------------------------------------------------------------------- /data/0.7.10/Russia/Russia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/Russia/Russia_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Russia/Russia_Battleship.json -------------------------------------------------------------------------------- /data/0.7.10/Russia/Russia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Russia/Russia_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.10/Russia/Russia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Russia/Russia_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.10/Russia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/Russia/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.10/USA/USA_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/USA/USA_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/USA/USA_Battleship.json -------------------------------------------------------------------------------- /data/0.7.10/USA/USA_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/USA/USA_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.10/USA/USA_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/USA/USA_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.10/USA/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/USA/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.10/United_Kingdom/United_Kingdom_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.10/United_Kingdom/United_Kingdom_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/United_Kingdom/United_Kingdom_Battleship.json -------------------------------------------------------------------------------- /data/0.7.10/United_Kingdom/United_Kingdom_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/United_Kingdom/United_Kingdom_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.10/United_Kingdom/United_Kingdom_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/United_Kingdom/United_Kingdom_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.10/United_Kingdom/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/United_Kingdom/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.10/nations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.10/nations.json -------------------------------------------------------------------------------- /data/0.7.12/Commonwealth/Commonwealth_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Commonwealth/Commonwealth_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.12/Commonwealth/Commonwealth_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Commonwealth/Commonwealth_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.12/Commonwealth/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Commonwealth/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.12/France/France_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/France/France_Battleship.json -------------------------------------------------------------------------------- /data/0.7.12/France/France_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/France/France_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.12/France/France_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/France/France_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.12/France/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/France/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.12/Germany/Germany_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Germany/Germany_Battleship.json -------------------------------------------------------------------------------- /data/0.7.12/Germany/Germany_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Germany/Germany_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.12/Germany/Germany_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Germany/Germany_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.12/Germany/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Germany/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.12/Italy/Italy_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Italy/Italy_Battleship.json -------------------------------------------------------------------------------- /data/0.7.12/Italy/Italy_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Italy/Italy_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.12/Italy/Italy_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Italy/Italy_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.12/Italy/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Italy/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.12/Japan/Japan_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Japan/Japan_Battleship.json -------------------------------------------------------------------------------- /data/0.7.12/Japan/Japan_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Japan/Japan_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.12/Japan/Japan_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Japan/Japan_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.12/Japan/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Japan/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.12/Pan_America/Pan_America_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Pan_America/Pan_America_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.12/Pan_America/shiptypes.json: -------------------------------------------------------------------------------- 1 | ["Cruiser"] -------------------------------------------------------------------------------- /data/0.7.12/Pan_Asia/Pan_Asia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Pan_Asia/Pan_Asia_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.12/Pan_Asia/Pan_Asia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Pan_Asia/Pan_Asia_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.12/Pan_Asia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Pan_Asia/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.12/Poland/Poland_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Poland/Poland_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.12/Poland/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Destroyer" 3 | ] 4 | -------------------------------------------------------------------------------- /data/0.7.12/Russia/Russia_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Russia/Russia_Battleship.json -------------------------------------------------------------------------------- /data/0.7.12/Russia/Russia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Russia/Russia_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.12/Russia/Russia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Russia/Russia_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.12/Russia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/Russia/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.12/USA/USA_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/USA/USA_Battleship.json -------------------------------------------------------------------------------- /data/0.7.12/USA/USA_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/USA/USA_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.12/USA/USA_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/USA/USA_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.12/USA/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/USA/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.12/United_Kingdom/United_Kingdom_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/United_Kingdom/United_Kingdom_Battleship.json -------------------------------------------------------------------------------- /data/0.7.12/United_Kingdom/United_Kingdom_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/United_Kingdom/United_Kingdom_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.12/United_Kingdom/United_Kingdom_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/United_Kingdom/United_Kingdom_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.12/United_Kingdom/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/United_Kingdom/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.12/nations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.12/nations.json -------------------------------------------------------------------------------- /data/0.7.2/Commonwealth/Commonwealth_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/Commonwealth/Commonwealth_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/Commonwealth/Commonwealth_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Commonwealth/Commonwealth_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.2/Commonwealth/Commonwealth_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Commonwealth/Commonwealth_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.2/Commonwealth/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Cruiser" 3 | ] 4 | -------------------------------------------------------------------------------- /data/0.7.2/France/France_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/France/France_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/France/France_Battleship.json -------------------------------------------------------------------------------- /data/0.7.2/France/France_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/France/France_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.2/France/France_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/France/France_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.2/France/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Battleship", 3 | "Cruiser" 4 | ] 5 | -------------------------------------------------------------------------------- /data/0.7.2/Germany/Germany_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/Germany/Germany_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Germany/Germany_Battleship.json -------------------------------------------------------------------------------- /data/0.7.2/Germany/Germany_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Germany/Germany_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.2/Germany/Germany_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Germany/Germany_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.2/Germany/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Germany/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.2/Italy/Italy_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/Italy/Italy_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Italy/Italy_Battleship.json -------------------------------------------------------------------------------- /data/0.7.2/Italy/Italy_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Italy/Italy_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.2/Italy/Italy_Destroyer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/Italy/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Battleship", 3 | "Cruiser" 4 | ] 5 | -------------------------------------------------------------------------------- /data/0.7.2/Japan/Japan_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/Japan/Japan_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Japan/Japan_Battleship.json -------------------------------------------------------------------------------- /data/0.7.2/Japan/Japan_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Japan/Japan_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.2/Japan/Japan_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Japan/Japan_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.2/Japan/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Japan/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.2/Pan_Asia/Pan_Asia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/Pan_Asia/Pan_Asia_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/Pan_Asia/Pan_Asia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Pan_Asia/Pan_Asia_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.2/Pan_Asia/Pan_Asia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Pan_Asia/Pan_Asia_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.2/Pan_Asia/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Cruiser", 3 | "Destroyer" 4 | ] 5 | -------------------------------------------------------------------------------- /data/0.7.2/Poland/Poland_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/Poland/Poland_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/Poland/Poland_Cruiser.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/Poland/Poland_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Poland/Poland_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.2/Poland/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Destroyer" 3 | ] 4 | -------------------------------------------------------------------------------- /data/0.7.2/Russia/Russia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/Russia/Russia_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Russia/Russia_Battleship.json -------------------------------------------------------------------------------- /data/0.7.2/Russia/Russia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Russia/Russia_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.2/Russia/Russia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Russia/Russia_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.2/Russia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/Russia/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.2/USA/USA_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/USA/USA_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/USA/USA_Battleship.json -------------------------------------------------------------------------------- /data/0.7.2/USA/USA_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/USA/USA_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.2/USA/USA_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/USA/USA_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.2/USA/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/USA/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.2/United_Kingdom/United_Kingdom_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.2/United_Kingdom/United_Kingdom_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/United_Kingdom/United_Kingdom_Battleship.json -------------------------------------------------------------------------------- /data/0.7.2/United_Kingdom/United_Kingdom_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/United_Kingdom/United_Kingdom_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.2/United_Kingdom/United_Kingdom_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/United_Kingdom/United_Kingdom_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.2/United_Kingdom/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/United_Kingdom/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.2/nations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.2/nations.json -------------------------------------------------------------------------------- /data/0.7.5/Commonwealth/Commonwealth_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/Commonwealth/Commonwealth_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/Commonwealth/Commonwealth_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Commonwealth/Commonwealth_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.5/Commonwealth/Commonwealth_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Commonwealth/Commonwealth_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.5/Commonwealth/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Cruiser" 3 | ] 4 | -------------------------------------------------------------------------------- /data/0.7.5/France/France_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/France/France_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/France/France_Battleship.json -------------------------------------------------------------------------------- /data/0.7.5/France/France_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/France/France_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.5/France/France_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/France/France_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.5/France/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Battleship", 3 | "Cruiser" 4 | ] 5 | -------------------------------------------------------------------------------- /data/0.7.5/Germany/Germany_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/Germany/Germany_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Germany/Germany_Battleship.json -------------------------------------------------------------------------------- /data/0.7.5/Germany/Germany_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Germany/Germany_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.5/Germany/Germany_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Germany/Germany_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.5/Germany/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Germany/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.5/Italy/Italy_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/Italy/Italy_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Italy/Italy_Battleship.json -------------------------------------------------------------------------------- /data/0.7.5/Italy/Italy_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Italy/Italy_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.5/Italy/Italy_Destroyer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/Italy/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Battleship", 3 | "Cruiser" 4 | ] 5 | -------------------------------------------------------------------------------- /data/0.7.5/Japan/Japan_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/Japan/Japan_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Japan/Japan_Battleship.json -------------------------------------------------------------------------------- /data/0.7.5/Japan/Japan_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Japan/Japan_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.5/Japan/Japan_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Japan/Japan_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.5/Japan/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Japan/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.5/Pan_Asia/Pan_Asia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/Pan_Asia/Pan_Asia_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/Pan_Asia/Pan_Asia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Pan_Asia/Pan_Asia_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.5/Pan_Asia/Pan_Asia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Pan_Asia/Pan_Asia_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.5/Pan_Asia/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Cruiser", 3 | "Destroyer" 4 | ] 5 | -------------------------------------------------------------------------------- /data/0.7.5/Poland/Poland_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/Poland/Poland_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/Poland/Poland_Cruiser.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/Poland/Poland_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Poland/Poland_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.5/Poland/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Destroyer" 3 | ] 4 | -------------------------------------------------------------------------------- /data/0.7.5/Russia/Russia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/Russia/Russia_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Russia/Russia_Battleship.json -------------------------------------------------------------------------------- /data/0.7.5/Russia/Russia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Russia/Russia_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.5/Russia/Russia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Russia/Russia_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.5/Russia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/Russia/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.5/USA/USA_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/USA/USA_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/USA/USA_Battleship.json -------------------------------------------------------------------------------- /data/0.7.5/USA/USA_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/USA/USA_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.5/USA/USA_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/USA/USA_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.5/USA/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/USA/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.5/United_Kingdom/United_Kingdom_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.5/United_Kingdom/United_Kingdom_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/United_Kingdom/United_Kingdom_Battleship.json -------------------------------------------------------------------------------- /data/0.7.5/United_Kingdom/United_Kingdom_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/United_Kingdom/United_Kingdom_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.5/United_Kingdom/United_Kingdom_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/United_Kingdom/United_Kingdom_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.5/United_Kingdom/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/United_Kingdom/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.5/nations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.5/nations.json -------------------------------------------------------------------------------- /data/0.7.8/Commonwealth/Commonwealth_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/Commonwealth/Commonwealth_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/Commonwealth/Commonwealth_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Commonwealth/Commonwealth_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.8/Commonwealth/Commonwealth_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Commonwealth/Commonwealth_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.8/Commonwealth/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Cruiser" 3 | ] 4 | -------------------------------------------------------------------------------- /data/0.7.8/France/France_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/France/France_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/France/France_Battleship.json -------------------------------------------------------------------------------- /data/0.7.8/France/France_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/France/France_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.8/France/France_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/France/France_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.8/France/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/France/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.8/Germany/Germany_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/Germany/Germany_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Germany/Germany_Battleship.json -------------------------------------------------------------------------------- /data/0.7.8/Germany/Germany_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Germany/Germany_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.8/Germany/Germany_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Germany/Germany_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.8/Germany/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Germany/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.8/Italy/Italy_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/Italy/Italy_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Italy/Italy_Battleship.json -------------------------------------------------------------------------------- /data/0.7.8/Italy/Italy_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Italy/Italy_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.8/Italy/Italy_Destroyer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/Italy/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Battleship", 3 | "Cruiser" 4 | ] 5 | -------------------------------------------------------------------------------- /data/0.7.8/Japan/Japan_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/Japan/Japan_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Japan/Japan_Battleship.json -------------------------------------------------------------------------------- /data/0.7.8/Japan/Japan_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Japan/Japan_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.8/Japan/Japan_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Japan/Japan_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.8/Japan/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Japan/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.8/Pan_Asia/Pan_Asia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/Pan_Asia/Pan_Asia_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/Pan_Asia/Pan_Asia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Pan_Asia/Pan_Asia_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.8/Pan_Asia/Pan_Asia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Pan_Asia/Pan_Asia_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.8/Pan_Asia/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Cruiser", 3 | "Destroyer" 4 | ] 5 | -------------------------------------------------------------------------------- /data/0.7.8/Poland/Poland_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/Poland/Poland_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/Poland/Poland_Cruiser.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/Poland/Poland_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Poland/Poland_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.8/Poland/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Destroyer" 3 | ] 4 | -------------------------------------------------------------------------------- /data/0.7.8/Russia/Russia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/Russia/Russia_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Russia/Russia_Battleship.json -------------------------------------------------------------------------------- /data/0.7.8/Russia/Russia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Russia/Russia_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.8/Russia/Russia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Russia/Russia_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.8/Russia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/Russia/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.8/USA/USA_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/USA/USA_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/USA/USA_Battleship.json -------------------------------------------------------------------------------- /data/0.7.8/USA/USA_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/USA/USA_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.8/USA/USA_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/USA/USA_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.8/USA/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/USA/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.8/United_Kingdom/United_Kingdom_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.7.8/United_Kingdom/United_Kingdom_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/United_Kingdom/United_Kingdom_Battleship.json -------------------------------------------------------------------------------- /data/0.7.8/United_Kingdom/United_Kingdom_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/United_Kingdom/United_Kingdom_Cruiser.json -------------------------------------------------------------------------------- /data/0.7.8/United_Kingdom/United_Kingdom_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/United_Kingdom/United_Kingdom_Destroyer.json -------------------------------------------------------------------------------- /data/0.7.8/United_Kingdom/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/United_Kingdom/shiptypes.json -------------------------------------------------------------------------------- /data/0.7.8/nations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.7.8/nations.json -------------------------------------------------------------------------------- /data/0.8.3/Commonwealth/Commonwealth_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Commonwealth/Commonwealth_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Commonwealth/Commonwealth_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Commonwealth/Commonwealth_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.3/Commonwealth/Commonwealth_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Commonwealth/Commonwealth_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.3/Commonwealth/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Commonwealth/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.3/France/France_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/France/France_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/France/France_Battleship.json -------------------------------------------------------------------------------- /data/0.8.3/France/France_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/France/France_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.3/France/France_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/France/France_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.3/France/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/France/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.3/Germany/Germany_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Germany/Germany_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Germany/Germany_Battleship.json -------------------------------------------------------------------------------- /data/0.8.3/Germany/Germany_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Germany/Germany_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.3/Germany/Germany_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Germany/Germany_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.3/Germany/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Germany/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.3/Italy/Italy_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Italy/Italy_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Italy/Italy_Battleship.json -------------------------------------------------------------------------------- /data/0.8.3/Italy/Italy_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Italy/Italy_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.3/Italy/Italy_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Italy/Italy_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.3/Italy/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Italy/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.3/Japan/Japan_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Japan/Japan_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Japan/Japan_Battleship.json -------------------------------------------------------------------------------- /data/0.8.3/Japan/Japan_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Japan/Japan_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.3/Japan/Japan_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Japan/Japan_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.3/Japan/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Japan/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.3/Pan_America/Pan_America_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Pan_America/Pan_America_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Pan_America/Pan_America_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Pan_America/Pan_America_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.3/Pan_America/Pan_America_Destroyer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Pan_America/shiptypes.json: -------------------------------------------------------------------------------- 1 | ["Cruiser"] -------------------------------------------------------------------------------- /data/0.8.3/Pan_Asia/Pan_Asia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Pan_Asia/Pan_Asia_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Pan_Asia/Pan_Asia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Pan_Asia/Pan_Asia_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.3/Pan_Asia/Pan_Asia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Pan_Asia/Pan_Asia_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.3/Pan_Asia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Pan_Asia/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.3/Poland/Poland_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Poland/Poland_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Poland/Poland_Cruiser.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Poland/Poland_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Poland/Poland_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.3/Poland/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Destroyer" 3 | ] 4 | -------------------------------------------------------------------------------- /data/0.8.3/Russia/Russia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/Russia/Russia_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Russia/Russia_Battleship.json -------------------------------------------------------------------------------- /data/0.8.3/Russia/Russia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Russia/Russia_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.3/Russia/Russia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Russia/Russia_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.3/Russia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/Russia/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.3/USA/USA_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/USA/USA_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/USA/USA_Battleship.json -------------------------------------------------------------------------------- /data/0.8.3/USA/USA_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/USA/USA_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.3/USA/USA_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/USA/USA_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.3/USA/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/USA/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.3/United_Kingdom/United_Kingdom_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.3/United_Kingdom/United_Kingdom_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/United_Kingdom/United_Kingdom_Battleship.json -------------------------------------------------------------------------------- /data/0.8.3/United_Kingdom/United_Kingdom_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/United_Kingdom/United_Kingdom_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.3/United_Kingdom/United_Kingdom_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/United_Kingdom/United_Kingdom_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.3/United_Kingdom/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/United_Kingdom/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.3/nations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.3/nations.json -------------------------------------------------------------------------------- /data/0.8.4/Commonwealth/Commonwealth_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Commonwealth/Commonwealth_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Commonwealth/Commonwealth_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Commonwealth/Commonwealth_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.4/Commonwealth/Commonwealth_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Commonwealth/Commonwealth_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.4/Commonwealth/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Commonwealth/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.4/France/France_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/France/France_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/France/France_Battleship.json -------------------------------------------------------------------------------- /data/0.8.4/France/France_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/France/France_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.4/France/France_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/France/France_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.4/France/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/France/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.4/Germany/Germany_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Germany/Germany_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Germany/Germany_Battleship.json -------------------------------------------------------------------------------- /data/0.8.4/Germany/Germany_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Germany/Germany_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.4/Germany/Germany_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Germany/Germany_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.4/Germany/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Germany/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.4/Italy/Italy_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Italy/Italy_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Italy/Italy_Battleship.json -------------------------------------------------------------------------------- /data/0.8.4/Italy/Italy_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Italy/Italy_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.4/Italy/Italy_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Italy/Italy_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.4/Italy/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Italy/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.4/Japan/Japan_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Japan/Japan_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Japan/Japan_Battleship.json -------------------------------------------------------------------------------- /data/0.8.4/Japan/Japan_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Japan/Japan_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.4/Japan/Japan_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Japan/Japan_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.4/Japan/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Japan/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.4/Pan_America/Pan_America_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Pan_America/Pan_America_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Pan_America/Pan_America_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Pan_America/Pan_America_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.4/Pan_America/Pan_America_Destroyer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Pan_America/shiptypes.json: -------------------------------------------------------------------------------- 1 | ["Cruiser"] -------------------------------------------------------------------------------- /data/0.8.4/Pan_Asia/Pan_Asia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Pan_Asia/Pan_Asia_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Pan_Asia/Pan_Asia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Pan_Asia/Pan_Asia_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.4/Pan_Asia/Pan_Asia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Pan_Asia/Pan_Asia_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.4/Pan_Asia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Pan_Asia/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.4/Poland/Poland_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Poland/Poland_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Poland/Poland_Cruiser.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Poland/Poland_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Poland/Poland_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.4/Poland/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Destroyer" 3 | ] 4 | -------------------------------------------------------------------------------- /data/0.8.4/Russia/Russia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/Russia/Russia_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Russia/Russia_Battleship.json -------------------------------------------------------------------------------- /data/0.8.4/Russia/Russia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Russia/Russia_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.4/Russia/Russia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Russia/Russia_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.4/Russia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/Russia/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.4/USA/USA_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/USA/USA_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/USA/USA_Battleship.json -------------------------------------------------------------------------------- /data/0.8.4/USA/USA_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/USA/USA_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.4/USA/USA_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/USA/USA_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.4/USA/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/USA/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.4/United_Kingdom/United_Kingdom_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.4/United_Kingdom/United_Kingdom_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/United_Kingdom/United_Kingdom_Battleship.json -------------------------------------------------------------------------------- /data/0.8.4/United_Kingdom/United_Kingdom_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/United_Kingdom/United_Kingdom_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.4/United_Kingdom/United_Kingdom_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/United_Kingdom/United_Kingdom_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.4/United_Kingdom/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/United_Kingdom/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.4/nations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.4/nations.json -------------------------------------------------------------------------------- /data/0.8.5/Commonwealth/Commonwealth_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Commonwealth/Commonwealth_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Commonwealth/Commonwealth_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Commonwealth/Commonwealth_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.5/Commonwealth/Commonwealth_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Commonwealth/Commonwealth_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.5/Commonwealth/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Commonwealth/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.5/France/France_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/France/France_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/France/France_Battleship.json -------------------------------------------------------------------------------- /data/0.8.5/France/France_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/France/France_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.5/France/France_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/France/France_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.5/France/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/France/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.5/Germany/Germany_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Germany/Germany_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Germany/Germany_Battleship.json -------------------------------------------------------------------------------- /data/0.8.5/Germany/Germany_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Germany/Germany_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.5/Germany/Germany_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Germany/Germany_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.5/Germany/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Germany/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.5/Italy/Italy_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Italy/Italy_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Italy/Italy_Battleship.json -------------------------------------------------------------------------------- /data/0.8.5/Italy/Italy_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Italy/Italy_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.5/Italy/Italy_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Italy/Italy_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.5/Italy/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Italy/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.5/Japan/Japan_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Japan/Japan_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Japan/Japan_Battleship.json -------------------------------------------------------------------------------- /data/0.8.5/Japan/Japan_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Japan/Japan_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.5/Japan/Japan_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Japan/Japan_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.5/Japan/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Japan/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.5/Pan_America/Pan_America_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Pan_America/Pan_America_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Pan_America/Pan_America_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Pan_America/Pan_America_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.5/Pan_America/Pan_America_Destroyer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Pan_America/shiptypes.json: -------------------------------------------------------------------------------- 1 | ["Cruiser"] -------------------------------------------------------------------------------- /data/0.8.5/Pan_Asia/Pan_Asia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Pan_Asia/Pan_Asia_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Pan_Asia/Pan_Asia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Pan_Asia/Pan_Asia_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.5/Pan_Asia/Pan_Asia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Pan_Asia/Pan_Asia_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.5/Pan_Asia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Pan_Asia/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.5/Poland/Poland_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Poland/Poland_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Poland/Poland_Cruiser.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Poland/Poland_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Poland/Poland_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.5/Poland/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Destroyer" 3 | ] 4 | -------------------------------------------------------------------------------- /data/0.8.5/Russia/Russia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/Russia/Russia_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Russia/Russia_Battleship.json -------------------------------------------------------------------------------- /data/0.8.5/Russia/Russia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Russia/Russia_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.5/Russia/Russia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Russia/Russia_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.5/Russia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/Russia/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.5/USA/USA_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/USA/USA_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/USA/USA_Battleship.json -------------------------------------------------------------------------------- /data/0.8.5/USA/USA_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/USA/USA_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.5/USA/USA_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/USA/USA_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.5/USA/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/USA/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.5/United_Kingdom/United_Kingdom_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.8.5/United_Kingdom/United_Kingdom_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/United_Kingdom/United_Kingdom_Battleship.json -------------------------------------------------------------------------------- /data/0.8.5/United_Kingdom/United_Kingdom_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/United_Kingdom/United_Kingdom_Cruiser.json -------------------------------------------------------------------------------- /data/0.8.5/United_Kingdom/United_Kingdom_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/United_Kingdom/United_Kingdom_Destroyer.json -------------------------------------------------------------------------------- /data/0.8.5/United_Kingdom/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/United_Kingdom/shiptypes.json -------------------------------------------------------------------------------- /data/0.8.5/nations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.8.5/nations.json -------------------------------------------------------------------------------- /data/0.9.1/Commonwealth/Commonwealth_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/Commonwealth/Commonwealth_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/Commonwealth/Commonwealth_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Commonwealth/Commonwealth_Cruiser.json -------------------------------------------------------------------------------- /data/0.9.1/Commonwealth/Commonwealth_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Commonwealth/Commonwealth_Destroyer.json -------------------------------------------------------------------------------- /data/0.9.1/Commonwealth/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Commonwealth/shiptypes.json -------------------------------------------------------------------------------- /data/0.9.1/Europe/Europe_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/Europe/Europe_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Europe/Europe_Battleship.json -------------------------------------------------------------------------------- /data/0.9.1/Europe/Europe_Cruiser.json: -------------------------------------------------------------------------------- 1 | { 2 | "PWSC101_Gryf": {} 3 | } -------------------------------------------------------------------------------- /data/0.9.1/Europe/Europe_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Europe/Europe_Destroyer.json -------------------------------------------------------------------------------- /data/0.9.1/Europe/shiptypes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Destroyer" 3 | ] 4 | -------------------------------------------------------------------------------- /data/0.9.1/France/France_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/France/France_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/France/France_Battleship.json -------------------------------------------------------------------------------- /data/0.9.1/France/France_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/France/France_Cruiser.json -------------------------------------------------------------------------------- /data/0.9.1/France/France_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/France/France_Destroyer.json -------------------------------------------------------------------------------- /data/0.9.1/France/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/France/shiptypes.json -------------------------------------------------------------------------------- /data/0.9.1/Germany/Germany_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/Germany/Germany_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Germany/Germany_Battleship.json -------------------------------------------------------------------------------- /data/0.9.1/Germany/Germany_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Germany/Germany_Cruiser.json -------------------------------------------------------------------------------- /data/0.9.1/Germany/Germany_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Germany/Germany_Destroyer.json -------------------------------------------------------------------------------- /data/0.9.1/Germany/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Germany/shiptypes.json -------------------------------------------------------------------------------- /data/0.9.1/Italy/Italy_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/Italy/Italy_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Italy/Italy_Battleship.json -------------------------------------------------------------------------------- /data/0.9.1/Italy/Italy_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Italy/Italy_Cruiser.json -------------------------------------------------------------------------------- /data/0.9.1/Italy/Italy_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Italy/Italy_Destroyer.json -------------------------------------------------------------------------------- /data/0.9.1/Italy/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Italy/shiptypes.json -------------------------------------------------------------------------------- /data/0.9.1/Japan/Japan_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/Japan/Japan_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Japan/Japan_Battleship.json -------------------------------------------------------------------------------- /data/0.9.1/Japan/Japan_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Japan/Japan_Cruiser.json -------------------------------------------------------------------------------- /data/0.9.1/Japan/Japan_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Japan/Japan_Destroyer.json -------------------------------------------------------------------------------- /data/0.9.1/Pan_America/Pan_America_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/Pan_America/Pan_America_Battleship.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/Pan_America/Pan_America_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Pan_America/Pan_America_Cruiser.json -------------------------------------------------------------------------------- /data/0.9.1/Pan_America/Pan_America_Destroyer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/Pan_America/shiptypes.json: -------------------------------------------------------------------------------- 1 | ["Cruiser"] -------------------------------------------------------------------------------- /data/0.9.1/Pan_Asia/Pan_Asia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/Pan_Asia/Pan_Asia_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Pan_Asia/Pan_Asia_Battleship.json -------------------------------------------------------------------------------- /data/0.9.1/Pan_Asia/Pan_Asia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Pan_Asia/Pan_Asia_Cruiser.json -------------------------------------------------------------------------------- /data/0.9.1/Pan_Asia/Pan_Asia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Pan_Asia/Pan_Asia_Destroyer.json -------------------------------------------------------------------------------- /data/0.9.1/Pan_Asia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Pan_Asia/shiptypes.json -------------------------------------------------------------------------------- /data/0.9.1/Russia/Russia_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/Russia/Russia_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Russia/Russia_Battleship.json -------------------------------------------------------------------------------- /data/0.9.1/Russia/Russia_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Russia/Russia_Cruiser.json -------------------------------------------------------------------------------- /data/0.9.1/Russia/Russia_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Russia/Russia_Destroyer.json -------------------------------------------------------------------------------- /data/0.9.1/Russia/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/Russia/shiptypes.json -------------------------------------------------------------------------------- /data/0.9.1/USA/USA_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/USA/USA_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/USA/USA_Battleship.json -------------------------------------------------------------------------------- /data/0.9.1/USA/USA_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/USA/USA_Cruiser.json -------------------------------------------------------------------------------- /data/0.9.1/USA/USA_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/USA/USA_Destroyer.json -------------------------------------------------------------------------------- /data/0.9.1/USA/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/USA/shiptypes.json -------------------------------------------------------------------------------- /data/0.9.1/United_Kingdom/United_Kingdom_AirCarrier.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/0.9.1/United_Kingdom/United_Kingdom_Battleship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/United_Kingdom/United_Kingdom_Battleship.json -------------------------------------------------------------------------------- /data/0.9.1/United_Kingdom/United_Kingdom_Cruiser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/United_Kingdom/United_Kingdom_Cruiser.json -------------------------------------------------------------------------------- /data/0.9.1/United_Kingdom/United_Kingdom_Destroyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/United_Kingdom/United_Kingdom_Destroyer.json -------------------------------------------------------------------------------- /data/0.9.1/United_Kingdom/shiptypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/United_Kingdom/shiptypes.json -------------------------------------------------------------------------------- /data/0.9.1/nations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/data/0.9.1/nations.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/index.html -------------------------------------------------------------------------------- /multi_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/multi_chart.js -------------------------------------------------------------------------------- /thirdparty/c3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/thirdparty/c3.min.css -------------------------------------------------------------------------------- /thirdparty/c3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/thirdparty/c3.min.js -------------------------------------------------------------------------------- /thirdparty/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/thirdparty/d3.v3.min.js -------------------------------------------------------------------------------- /thirdparty/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/thirdparty/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /thirdparty/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/thirdparty/require.js -------------------------------------------------------------------------------- /tools/rm_dup_ships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangHX/ship_ap_calculator/HEAD/tools/rm_dup_ships.py --------------------------------------------------------------------------------