mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Splash Damage with Clusters and Ship Radar effects (#206)
* Splash Damage with Clusters and Ship Radar effects Based on the Splash Damage 2.0 by wheelyjoe, FrozenDroid and spencershepard/GRIMM (21 December 2021 version) New features: -damage boost for parked aircraft since they are hard to kill (DCS: Retribution OCA/Aircraft mission improvement) -cluster weapons support -helicopter gunship autocannon fragmentation effect support -napalm will now spawn fire on impact -ship radars might turn off when hit with anti-radiation missiles -BDA messages for splash damage New features can be tweaked, turned on or off in the Retribution settings and/or in the script options. * Updated changelog.md * Added missing changelog entry from 29 May 2022 to Weapons_Damage_Updated.lua * Integrate splashdamageclusters into original * Fix 'nil' exceptions * Remove Ghosti's original implementation --------- Co-authored-by: Raffson <Raffson@users.noreply.github.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"nameInUI": "Splash Damage 2.0 by RotorOps",
|
||||
"nameInUI": "Splash Damage 2.1",
|
||||
"defaultValue": false,
|
||||
"specificOptions": [
|
||||
{
|
||||
@@ -23,25 +23,77 @@
|
||||
"defaultValue": false
|
||||
},
|
||||
{
|
||||
"nameInUI": "Overall damage multiplier",
|
||||
"nameInUI": "Number of seconds to show messages",
|
||||
"mnemonic": "message_time",
|
||||
"minimumValue": 5,
|
||||
"maximumValue": 60,
|
||||
"defaultValue": 10
|
||||
},
|
||||
{
|
||||
"nameInUI": "Enable cluster munition effects",
|
||||
"mnemonic": "clusterEffectsEnable",
|
||||
"defaultValue": false
|
||||
},
|
||||
{
|
||||
"nameInUI": "Ship radars damaged by anti-radiation missiles",
|
||||
"mnemonic": "shipRadarDamage",
|
||||
"defaultValue": false
|
||||
},
|
||||
{
|
||||
"nameInUI": "Overall damage multiplier (%)",
|
||||
"mnemonic": "explTable_multiplier",
|
||||
"minimumValue": 0.1,
|
||||
"maximumValue": 2.5,
|
||||
"defaultValue": 1.0
|
||||
"minimumValue": 10,
|
||||
"maximumValue": 500,
|
||||
"defaultValue": 100
|
||||
},
|
||||
{
|
||||
"nameInUI": "Rockets damage multiplier (%)",
|
||||
"mnemonic": "rocket_multiplier",
|
||||
"minimumValue": 10,
|
||||
"maximumValue": 500,
|
||||
"defaultValue": 130
|
||||
},
|
||||
{
|
||||
"nameInUI": "Cluster munitions damage multiplier (%)",
|
||||
"mnemonic": "cluster_multiplier",
|
||||
"minimumValue": 10,
|
||||
"maximumValue": 500,
|
||||
"defaultValue": 100
|
||||
},
|
||||
{
|
||||
"nameInUI": "OCA aircraft damage boost for wave explosions",
|
||||
"mnemonic": "oca_aircraft_damage_boost",
|
||||
"minimumValue": 0,
|
||||
"maximumValue": 5000,
|
||||
"defaultValue": 3000
|
||||
},
|
||||
{
|
||||
"nameInUI": "Static damage boost for wave explosions",
|
||||
"mnemonic": "static_damage_boost",
|
||||
"minimumValue": 500,
|
||||
"minimumValue": 0,
|
||||
"maximumValue": 5000,
|
||||
"defaultValue": 1000
|
||||
},
|
||||
{
|
||||
"nameInUI": "Maximum blast radius",
|
||||
"nameInUI": "Maximum blast radius (meters)",
|
||||
"mnemonic": "blast_search_radius",
|
||||
"minimumValue": 10,
|
||||
"minimumValue": 0,
|
||||
"maximumValue": 1000,
|
||||
"defaultValue": 100
|
||||
},
|
||||
{
|
||||
"nameInUI": "Multiplier to thermobaric and napalm bombs (%)",
|
||||
"mnemonic": "firebomb_splash_factor",
|
||||
"minimumValue": 0,
|
||||
"maximumValue": 4000,
|
||||
"defaultValue": 800
|
||||
},
|
||||
{
|
||||
"nameInUI": "Distribution radius of submunition explosions (meters)",
|
||||
"mnemonic": "cluster_munition_distribution_radius",
|
||||
"minimumValue": 50.0,
|
||||
"maximumValue": 250.0,
|
||||
"defaultValue": 75
|
||||
}
|
||||
],
|
||||
"scriptsWorkOrders": [
|
||||
|
||||
Reference in New Issue
Block a user