Skip to content

Commit

Permalink
Merge pull request #5622 from Sleet01/Fix_MML_1532_Total_Warfare_Flam…
Browse files Browse the repository at this point in the history
…er_Not_Unofficial

Fix MML 1532: Total Warfare Flamer should be unofficial
  • Loading branch information
Sleet01 authored Jun 22, 2024
2 parents 0a4ad29 + e9b317f commit a734089
Showing 1 changed file with 29 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,33 +22,35 @@
*/
public class InfantryTWFlamerWeapon extends InfantryWeapon {

/**
*
*/
private static final long serialVersionUID = -5741978934100309295L;
/**
*
*/
private static final long serialVersionUID = -5741978934100309295L;

public InfantryTWFlamerWeapon() {
super();
// Range 1, reduced damage flamer for TW Platoon support
public InfantryTWFlamerWeapon() {
super();
// Range 1, reduced damage flamer for TW Platoon support

name = "Total Warfare Flamer";
setInternalName(name);
addLookupName("InfantryTWFlamer");
addLookupName("InfantryTWPortableFlamer");
cost = 100;
bv = 0.36;
tonnage = .015;
flags = flags.or(F_DIRECT_FIRE).or(F_FLAMER).or(F_ENERGY).or(F_INF_ENCUMBER).or(F_INF_SUPPORT);
infantryDamage = 0.35;
infantryRange = 1;
crew = 1;
// This Weapon has been replaced by the Flamer Pistol. Moving to
// Unofficial.
techAdvancement.setTechBase(TECH_BASE_ALL).setISAdvancement(2100, 2100, 2100, DATE_NONE, DATE_NONE)
.setISApproximate(false, false, false, false, false)
.setClanAdvancement(2100, 2100, 2100, DATE_NONE, DATE_NONE)
.setClanApproximate(false, false, false, false, false).setTechRating(RATING_C)
.setAvailability(RATING_B, RATING_B, RATING_B, RATING_B);

}
name = "Total Warfare Flamer";
setInternalName(name);
addLookupName("InfantryTWFlamer");
addLookupName("InfantryTWPortableFlamer");
cost = 100;
bv = 0.36;
tonnage = .015;
flags = flags.or(F_DIRECT_FIRE).or(F_FLAMER).or(F_ENERGY).or(F_INF_ENCUMBER).or(F_INF_SUPPORT);
infantryDamage = 0.35;
infantryRange = 1;
crew = 1;
// This Weapon has been replaced by the Flamer Pistol. Moving to
// Unofficial.
techAdvancement.setTechBase(TECH_BASE_ALL)
.setISAdvancement(2100, 2100, 2100, DATE_NONE, DATE_NONE)
.setISApproximate(false, false, false, false, false)
.setClanAdvancement(2100, 2100, 2100, DATE_NONE, DATE_NONE)
.setClanApproximate(false, false, false, false, false)
.setTechRating(RATING_C)
.setAvailability(RATING_B, RATING_B, RATING_B, RATING_B)
.setUnofficial(true);
}
}

0 comments on commit a734089

Please sign in to comment.