Skip to content

Commit

Permalink
Fix Clan tech progression dates for vehicular jump jets.
Browse files Browse the repository at this point in the history
VJJs only had intro dates for IS factions. The extinction and
reintroduction dates were also missing (IO, p. 35).

Fixes MegaMek/megameklab#306: Clan Vehicular Jump Jets
  • Loading branch information
neoancient committed Jun 10, 2019
1 parent 06d85d9 commit 3edebef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions megamek/src/megamek/common/MiscType.java
Original file line number Diff line number Diff line change
Expand Up @@ -2002,11 +2002,11 @@ public static MiscType createVehicluarJumpJet() {
misc.subType |= S_STANDARD;
misc.bv = 0;
misc.rulesRefs = "348,TO";
misc.techAdvancement.setTechBase(TECH_BASE_ALL).setISAdvancement(2650,3083)
.setApproximate(false, true).setPrototypeFactions(F_TH)
.setProductionFactions(F_CHH).setTechRating(RATING_E)
.setAvailability(RATING_E, RATING_X, RATING_F, RATING_E)
.setStaticTechLevel(SimpleTechLevel.EXPERIMENTAL);
misc.techAdvancement.setTechBase(TECH_BASE_ALL).setAdvancement(2650, 3083, DATE_NONE, 2840, 3083)
.setApproximate(false, true, false, false, true).setPrototypeFactions(F_TH)
.setProductionFactions(F_CHH).setTechRating(RATING_E)
.setAvailability(RATING_E, RATING_X, RATING_F, RATING_E)
.setStaticTechLevel(SimpleTechLevel.EXPERIMENTAL);
return misc;
}

Expand Down

0 comments on commit 3edebef

Please sign in to comment.