Skip to content

Commit

Permalink
+ Data: Correcting various Prototype weapon BVs.
Browse files Browse the repository at this point in the history
  • Loading branch information
HammerGS committed Nov 14, 2023
1 parent 921a79c commit 3ae86eb
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions megamek/docs/history.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ VERSION HISTORY:
+ PR #4875: Done and skip buttons handle changes in GUI Scale better
+ Issue #4861: Fix for RAC and UAC ammo bingo state hanging game
+ PR #4853: Fixes MekHQ #3594, MekHQ #3773
+ Data: Correcting various Prototype weapon BVs.


0.49.15 (2023-10-21 1530 UTC)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public ISBASupportPPC() {
criticals = 2;
flags = flags.or(F_BA_WEAPON).andNot(F_MECH_WEAPON).andNot(F_TANK_WEAPON)
.andNot(F_AERO_WEAPON).andNot(F_PROTO_WEAPON);
bv = 12;
bv = 14;
cost = 14000;
rulesRefs = "267, TM";
techAdvancement.setTechBase(TechAdvancement.TECH_BASE_IS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public CLStreakSRM4Prototype() {
extremeRange = 12;
tonnage = 3.0;
criticals = 2;
bv = 39;
bv = 59;
cost = 60000;
shortAV = 4;
maxRange = RANGE_SHORT;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public CLStreakSRM6Prototype() {
extremeRange = 12;
tonnage = 4.5;
criticals = 2;
bv = 59;
bv = 89;
cost = 120000;
shortAV = 8;
maxRange = RANGE_SHORT;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public ISERLaserLargePrototype() {
shortName = "ER Large Laser (P)";
toHitModifier = 1;
flags = flags.or(F_PROTOTYPE);
heat = 18;
heat = 12;
damage = 8;
shortRange = 7;
mediumRange = 14;
Expand All @@ -56,7 +56,7 @@ public ISERLaserLargePrototype() {
maxRange = RANGE_LONG;
tonnage = 5.0;
criticals = 2;
bv = 163;
bv = 136;
cost = 600000;
rulesRefs = "103, IO";
flags = flags.or(F_PROTOTYPE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public ISNarcPrototype() {
this.extremeRange = 12;
this.tonnage = 3.0;
this.criticals = 2;
this.bv = 30;
this.bv = 15;
this.cost = 300000;
flags = flags.or(F_PROTOTYPE);
rulesRefs = "71, IO";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public ISPulseLaserLargePrototype() {
waterExtremeRange = 10;
tonnage = 7.0;
criticals = 2;
bv = 119;
bv = 108;
cost = 875000;
shortAV = 9;
medAV = 9;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public ISPulseLaserMediumPrototype() {
waterExtremeRange = 6;
tonnage = 2.0;
criticals = 1;
bv = 48;
bv = 43;
cost = 300000;
rulesRefs = "71, IO";
techAdvancement.setTechBase(TECH_BASE_IS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public ISPulseLaserSmallPrototype() {
this.waterExtremeRange = 4;
this.tonnage = 1.0;
this.criticals = 1;
this.bv = 12;
this.bv = 11;
this.cost = 80000;
this.shortAV = 3;
this.maxRange = RANGE_SHORT;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public PrototypeRL10() {
extremeRange = 22;
tonnage = .5;
criticals = 1;
bv = 17;
bv = 15;
cost = 15000;
shortAV = 6;
medAV = 6;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public PrototypeRL15() {
extremeRange = 18;
tonnage = 1.0;
criticals = 2;
bv = 21;
bv = 18;
cost = 30000;
shortAV = 9;
medAV = 9;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public PrototypeRL20() {
extremeRange = 14;
tonnage = 1.5;
criticals = 3;
bv = 22;
bv = 19;
cost = 45000;
shortAV = 12;
medAV = 12;
Expand Down

0 comments on commit 3ae86eb

Please sign in to comment.