From cb5631049c61338acebb8f04e9584520c7e43166 Mon Sep 17 00:00:00 2001 From: l0k1 Date: Mon, 9 Jan 2017 23:21:59 -0800 Subject: [PATCH] fix wrong cannon damage value. --- BUK-M2/Nasal/damage.nas | 17 +++++++++-------- Frigate/Nasal/damage.nas | 17 +++++++++-------- depot/Nasal/damage.nas | 17 +++++++++-------- groundtarget/Nasal/damage.nas | 17 +++++++++-------- missile-frigate/Nasal/damage.nas | 17 +++++++++-------- 5 files changed, 45 insertions(+), 40 deletions(-) diff --git a/BUK-M2/Nasal/damage.nas b/BUK-M2/Nasal/damage.nas index bbe5aab..40ff9cb 100644 --- a/BUK-M2/Nasal/damage.nas +++ b/BUK-M2/Nasal/damage.nas @@ -7,14 +7,14 @@ var hp = 80; var hp_max = hp; var cannon_types = { - " M70 rocket hit": 0.30, - " M55 cannon shell hit": 0.20, - " KCA cannon shell hit": 0.20, - " Gun Splash On ": 0.30, - " M61A1 shell hit": 0.20, - " GAU-8/A hit": 0.30, - " BK27 cannon hit": 0.20, - " GSh-30 hit": 0.20, + " M70 rocket hit": 0.25, #135mm + " M55 cannon shell hit": 0.10, # 30mm + " KCA cannon shell hit": 0.10, # 30mm + " Gun Splash On ": 0.10, # 30mm + " M61A1 shell hit": 0.05, # 20mm + " GAU-8/A hit": 0.10, # 30mm + " BK27 cannon hit": 0.07, # 27mm + " GSh-30 hit": 0.10, # 30mm " 7.62 hit": 0.30, #UH-1 " 50 BMG hit": 0.20, #p-47 }; @@ -24,6 +24,7 @@ var cannon_types = { var warhead_lbs = { "aim-120": 44.00, "AIM120": 44.00, + "AIM-120": 44.00, "RB-99": 44.00, "aim-7": 88.00, "RB-71": 88.00, diff --git a/Frigate/Nasal/damage.nas b/Frigate/Nasal/damage.nas index 430139e..1352b8c 100644 --- a/Frigate/Nasal/damage.nas +++ b/Frigate/Nasal/damage.nas @@ -7,14 +7,14 @@ var hp = 200; var hp_max = hp; var cannon_types = { - " M70 rocket hit": 0.30, - " M55 cannon shell hit": 0.20, - " KCA cannon shell hit": 0.20, - " Gun Splash On ": 0.30, - " M61A1 shell hit": 0.20, - " GAU-8/A hit": 0.30, - " BK27 cannon hit": 0.20, - " GSh-30 hit": 0.20, + " M70 rocket hit": 0.25, #135mm + " M55 cannon shell hit": 0.10, # 30mm + " KCA cannon shell hit": 0.10, # 30mm + " Gun Splash On ": 0.10, # 30mm + " M61A1 shell hit": 0.05, # 20mm + " GAU-8/A hit": 0.10, # 30mm + " BK27 cannon hit": 0.07, # 27mm + " GSh-30 hit": 0.10, # 30mm " 7.62 hit": 0.30, #UH-1 " 50 BMG hit": 0.20, #p-47 }; @@ -24,6 +24,7 @@ var cannon_types = { var warhead_lbs = { "aim-120": 44.00, "AIM120": 44.00, + "AIM-120": 44.00, "RB-99": 44.00, "aim-7": 88.00, "RB-71": 88.00, diff --git a/depot/Nasal/damage.nas b/depot/Nasal/damage.nas index 04b58da..1ace565 100644 --- a/depot/Nasal/damage.nas +++ b/depot/Nasal/damage.nas @@ -21,14 +21,14 @@ var FALSE = 0; var cannon_types = { - " M70 rocket hit": 0.30, - " M55 cannon shell hit": 0.20, - " KCA cannon shell hit": 0.20, - " Gun Splash On ": 0.30, - " M61A1 shell hit": 0.20, - " GAU-8/A hit": 0.30, - " BK27 cannon hit": 0.20, - " GSh-30 hit": 0.20, + " M70 rocket hit": 0.25, #135mm + " M55 cannon shell hit": 0.10, # 30mm + " KCA cannon shell hit": 0.10, # 30mm + " Gun Splash On ": 0.10, # 30mm + " M61A1 shell hit": 0.05, # 20mm + " GAU-8/A hit": 0.10, # 30mm + " BK27 cannon hit": 0.07, # 27mm + " GSh-30 hit": 0.10, # 30mm " 7.62 hit": 0.30, #UH-1 " 50 BMG hit": 0.20, #p-47 }; @@ -38,6 +38,7 @@ var cannon_types = { var warhead_lbs = { "aim-120": 44.00, "AIM120": 44.00, + "AIM-120": 44.00, "RB-99": 44.00, "aim-7": 88.00, "RB-71": 88.00, diff --git a/groundtarget/Nasal/damage.nas b/groundtarget/Nasal/damage.nas index eb6625c..42d48ce 100644 --- a/groundtarget/Nasal/damage.nas +++ b/groundtarget/Nasal/damage.nas @@ -7,14 +7,14 @@ var hp = 2500; var hp_max = hp; var cannon_types = { - " M70 rocket hit": 0.30, - " M55 cannon shell hit": 0.20, - " KCA cannon shell hit": 0.20, - " Gun Splash On ": 0.30, - " M61A1 shell hit": 0.20, - " GAU-8/A hit": 0.30, - " BK27 cannon hit": 0.20, - " GSh-30 hit": 0.20, + " M70 rocket hit": 0.25, #135mm + " M55 cannon shell hit": 0.10, # 30mm + " KCA cannon shell hit": 0.10, # 30mm + " Gun Splash On ": 0.10, # 30mm + " M61A1 shell hit": 0.05, # 20mm + " GAU-8/A hit": 0.10, # 30mm + " BK27 cannon hit": 0.07, # 27mm + " GSh-30 hit": 0.10, # 30mm " 7.62 hit": 0.30, #UH-1 " 50 BMG hit": 0.20, #p-47 }; @@ -24,6 +24,7 @@ var cannon_types = { var warhead_lbs = { "aim-120": 44.00, "AIM120": 44.00, + "AIM-120": 44.00, "RB-99": 44.00, "aim-7": 88.00, "RB-71": 88.00, diff --git a/missile-frigate/Nasal/damage.nas b/missile-frigate/Nasal/damage.nas index dad1d12..3dc88b4 100644 --- a/missile-frigate/Nasal/damage.nas +++ b/missile-frigate/Nasal/damage.nas @@ -7,14 +7,14 @@ var hp = 200; var hp_max = hp; var cannon_types = { - " M70 rocket hit": 0.30, - " M55 cannon shell hit": 0.20, - " KCA cannon shell hit": 0.20, - " Gun Splash On ": 0.30, - " M61A1 shell hit": 0.20, - " GAU-8/A hit": 0.30, - " BK27 cannon hit": 0.20, - " GSh-30 hit": 0.20, + " M70 rocket hit": 0.25, #135mm + " M55 cannon shell hit": 0.10, # 30mm + " KCA cannon shell hit": 0.10, # 30mm + " Gun Splash On ": 0.10, # 30mm + " M61A1 shell hit": 0.05, # 20mm + " GAU-8/A hit": 0.10, # 30mm + " BK27 cannon hit": 0.07, # 27mm + " GSh-30 hit": 0.10, # 30mm " 7.62 hit": 0.30, #UH-1 " 50 BMG hit": 0.20, #p-47 }; @@ -24,6 +24,7 @@ var cannon_types = { var warhead_lbs = { "aim-120": 44.00, "AIM120": 44.00, + "AIM-120": 44.00, "RB-99": 44.00, "aim-7": 88.00, "RB-71": 88.00,