Updated Custom Factions (markdown)

C. Perreau
2020-12-20 14:32:40 +01:00
parent 219432075c
commit f72d7dd391

@@ -27,10 +27,10 @@ This json file should contain a json object, with the following parameters :
* **artillery_units** : List of artillery that will fight on the frontline * **artillery_units** : List of artillery that will fight on the frontline
* **infantry_units** : List of infantry units that will fight on the frontline * **infantry_units** : List of infantry units that will fight on the frontline
* **logistics_units** : List of units used for logistics (unused for now) * **logistics_units** : List of units used for logistics (unused for now)
* **shorads** : List of generators used for shorad groups (See the Sam Generator possible choice at the end of this guide) * **air_defenses** : List of generators used for air defense groups (See the list of possible air defenses generators in annex)
* **sams** : List of generators used for sams groups * **ewrs** : List of ewr generators to be used for the IADS (See the list of possible ewr generators in annex)
* **missiles** : List of missiles generators used for sams groups * **missiles** : List of missiles generators used for missiles groups
* **requirements** : Required mods for this faction to work * **requirements** : List of required mods for this faction to work
* **aircraft_carrier** : List of aircraft carriers available * **aircraft_carrier** : List of aircraft carriers available
* **helicopter_carrier** : List of helicopter carriers available * **helicopter_carrier** : List of helicopter carriers available
* **carrier_names** : List of possible name for carriers (will be picked randomly if there is more than one) * **carrier_names** : List of possible name for carriers (will be picked randomly if there is more than one)
@@ -58,10 +58,10 @@ Below is an example of a factions file :
```json ```json
{ {
"country": "USA", "country": "USAF Aggressors",
"name": "USA 2005", "name": "USAF Aggressors",
"authors": "Khopa", "authors": "Khopa",
"description": "", "description": "<p>USAF aggresors.</p>",
"aircrafts": [ "aircrafts": [
"F_15C", "F_15C",
"F_15E", "F_15E",
@@ -69,12 +69,15 @@ Below is an example of a factions file :
"FA_18C_hornet", "FA_18C_hornet",
"F_16C_50", "F_16C_50",
"A_10A", "A_10A",
"A_10C",
"AV8BNA", "AV8BNA",
"UH_1H", "UH_1H",
"AH_64A", "AH_64D",
"Ka_50",
"B_52H", "B_52H",
"B_1B", "B_1B",
"F_117A" "F_117A",
"Su_27"
], ],
"awacs": [ "awacs": [
"E_3A" "E_3A"
@@ -85,12 +88,11 @@ Below is an example of a factions file :
], ],
"frontline_units": [ "frontline_units": [
"MBT_M1A2_Abrams", "MBT_M1A2_Abrams",
"MBT_Leopard_2",
"ATGM_M1134_Stryker", "ATGM_M1134_Stryker",
"APC_M1126_Stryker_ICV",
"IFV_M2A2_Bradley", "IFV_M2A2_Bradley",
"IFV_LAV_25", "IFV_LAV_25",
"APC_M1043_HMMWV_Armament", "APC_M1043_HMMWV_Armament"
"ATGM_M1045_HMMWV_TOW"
], ],
"artillery_units": [ "artillery_units": [
"MLRS_M270", "MLRS_M270",
@@ -103,42 +105,17 @@ Below is an example of a factions file :
"Infantry_M4", "Infantry_M4",
"Soldier_M249" "Soldier_M249"
], ],
"shorads": [ "air_defenses": [
"AvengerGenerator" "AvengerGenerator",
"HawkGenerator",
"PatriotGenerator"
], ],
"sams": [ "ewrs": [
"HawkGenerator" "PatriotEwrGenerator"
],
"aircraft_carrier": [
"CVN_74_John_C__Stennis"
],
"helicopter_carrier": [
"LHA_1_Tarawa"
],
"destroyers": [
"Oliver_Hazzard_Perry_class",
"USS_Arleigh_Burke_IIa"
],
"cruisers": [
"Ticonderoga_class"
], ],
"requirements": {}, "requirements": {},
"carrier_names": [
"CVN-71 Theodore Roosevelt",
"CVN-72 Abraham Lincoln",
"CVN-73 George Washington",
"CVN-74 John C. Stennis"
],
"helicopter_carrier_names": [
"LHA-1 Tarawa",
"LHA-2 Saipan",
"LHA-3 Belleau Wood",
"LHA-4 Nassau",
"LHA-5 Peleliu"
],
"navy_generators": [ "navy_generators": [
"OliverHazardPerryGroupGenerator", "OliverHazardPerryGroupGenerator"
"ArleighBurkeGroupGenerator"
], ],
"has_jtac": true, "has_jtac": true,
"jtac_unit": "MQ_9_Reaper", "jtac_unit": "MQ_9_Reaper",
@@ -197,6 +174,8 @@ Below is an example of a factions file :
* *ColdWarFlakGenerator* * *ColdWarFlakGenerator*
* *EarlyColdWarFlakGenerator* * *EarlyColdWarFlakGenerator*
* *FreyaGenerator* * *FreyaGenerator*
* *AllyWW2FlakGenerator*
* *ZSU57Generator*
## Annex 2 - Possible Navy group generators ## Annex 2 - Possible Navy group generators
@@ -212,3 +191,17 @@ Below is an example of a factions file :
* *KiloSubGroupGenerator* * *KiloSubGroupGenerator*
* *TangoSubGroupGenerator* * *TangoSubGroupGenerator*
* *Type54GroupGenerator* * *Type54GroupGenerator*
## Annex 3 - Possible EWR generators
* *BoxSpringGenerator*
* *TallRackGenerator*
* *DogEarGenerator*
* *RolandEwrGenerator*
* *FlatFaceGenerator*
* *PatriotEwrGenerator*
* *BigBirdGenerator*
* *SnowDriftGenerator*
* *StraightFlushGenerator*
* *HawkEwrGenerator*