diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index 80e7afc3accfa408a284ecfeb9a9c71a7a3b65c2..e787f930959262323d557fc2ca60cc7990ddae2a 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -1181,6 +1181,7 @@ FertilityAge($fertilityAge) <<set $securityForceSpacePlanePower = 0>> /* Has the SF found a busted down spaceplane begging for work? */ <<set $securityForceFortressZeppelin = 0>> /* Has the SF found a busted down fortress zeppelin begging for work? */ <<set $securityForceAC130 = 0>> /* Has the SF found a busted down AC-130 begging for work? */ +<<set securityForceHeavyTransport = 0>> /* Has the SF found a busted down heavy yransport begging for work? */ <<set $securityForceDronePower = 0>> /* How many drone upgrades has the player bought? */ <<set $securityForceSatalitePower = 0>> /* Has the SF commendeered a satellite relay? */ <<set $securityForceGiantRobot = 0>> /* Has the player assembled a makeshift giant robot */ diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index 6ec2a45c28e822854b0b1f85c3a678b828d044a3..948743cd5fea882e987095496c9a411037ea9d37 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -603,6 +603,7 @@ <</if>> <<if ndef $securityForceHeavyBattleTank>> <<set $securityForceHeavyBattleTank = 0>> +<</if>> <<if ndef $securityForceColonelToken>> <<set $securityForceColonelToken = 0>> <</if>> @@ -615,6 +616,9 @@ <<if ndef $securityForceAC130>> <<set $securityForceAC130 = 0>> <</if>> +<<if ndef $securityForceHeavyTransport>> + <<set $securityForceHeavyTransport = 0>> +<</if>> <<if ndef $securityForceSatalitePower>> <<set $securityForceSatalitePower = 0>> <</if>> diff --git a/src/uncategorized/SFMBarracks.tw b/src/uncategorized/SFMBarracks.tw index e4be53562f096f8260b1e4d7829b96b6a22daa8a..a8c91312aafd61a8b4d4c27924eba551d01e2cce 100644 --- a/src/uncategorized/SFMBarracks.tw +++ b/src/uncategorized/SFMBarracks.tw @@ -30,11 +30,12 @@ securityForceVehiclePower(7) securityForceHeavyBattleTank(3) <</if>> - <<if $securityForceArcologyUpgrades >= 4>>Hangar(27) + <<if $securityForceArcologyUpgrades >= 4>>Hangar(30) securityForceAircraftPower(8) securityForceSpacePlanePower(11) securityForceFortressZeppelin(3) securityForceAC130(5) + securityForceHeavyTransport(3) <</if>> <<if $securityForceArcologyUpgrades >= 2>>Drone Bay(6) securityForceDronePower(6) @@ -68,8 +69,8 @@ securityForceX */ <<set _Garage = $securityForceVehiclePower+$securityForceHeavyBattleTank>> <<set _GarageMax = 10>> -<<set _Hangar = $securityForceAircraftPower+$securityForceSpacePlanePower+$securityForceFortressZeppelin+$securityForceAC130>> -<<set _HangarMax = 27>> +<<set _Hangar = $securityForceAircraftPower+$securityForceSpacePlanePower+$securityForceFortressZeppelin+$securityForceAC130+$securityForceHeavyTransport>> +<<set _HangarMax = 30>> <<set _DroneBay = $securityForceDronePower>> <<set _DroneBayMax = 6>> @@ -326,6 +327,15 @@ securityForceX */ Modernized the AC-130's armor, weaponry, electronics and crew seating. <</if>> <</if>> +<<if $securityForceHeavyTransport > 0>> + /* 3 upgrades */ + <<if $securityForceHeavyTransport == 1>> + A basic heavy transport has been 'borrowed' from the old world. + <<elseif $securityForceHeavyTransport == 2>> + Modernized the heavy transport's armor. + <<elseif $securityForceHeavyTransport == 3>> + Modernized the armor and engines of the heavy transport. +<</if>> <</if>> <<if $securityForceArcologyUpgrades >= 2>> @@ -942,6 +952,24 @@ securityForceX */ <<if $securityForceAC130 == 5>> <br>//$securityForceName has fully upgraded the AC-130 to support it's activities.// <</if>> + + <<if $securityForceAircraftPower >= 5 && _StimulantLab >= 5 && _Barracks >= 5 && $securityForceVehiclePower >= 5 && _DroneBay >= 5 && _Armoury >= 5 && $securityForceHeavyTransport < 1>> + <br><<link "A heavy transport">> + <<replace "#resultY">> + "Sure, boss." she says, nodding. "A heavy transport would help a lot." She laughs. "The scum out there don't seem to like it when we have things that their shit equipment can't damage." She picks up a tablet and taps a few commands on it. "I'll get right on it." + <<set $securityForceUpgradeToken = 1, $securityForceHeavyTransport++, $cash -= 40000000*_Env>> + <</replace>><</link>> // Costs ¤<<print 40000000*_Env>> // + <<elseif $securityForceHeavyTransport >= 1>> + <br><<link "Heavy transport">> + <<replace "#resultY">> + "Sure, boss." she says, nodding. "Upgrading the heavy transport, should help us gain a massive advantage." She laughs, picks up a tablet, and taps a few commands on it. "I'll get right on it." + <<set $securityForceUpgradeToken = 1, $securityForceHeavyTransport++, $cash -= 30000000*_Env>> + <</replace>> + <</link>> // Costs ¤<<print 30000000*_Env>> // + <</if>> + <<if $securityForceHeavyTransport == 3>> + <br>//$securityForceName has fully upgraded the heavy transport to support it's activities.// + <</if>> </span> <</replace>> diff --git a/src/uncategorized/securityForceEOWReport.tw b/src/uncategorized/securityForceEOWReport.tw index 784a45e45f9f7d16bc5c6da5514d91e52307d33b..e6358e7b2cc3b9c5192f72cb89ed0f76bf6fac68 100644 --- a/src/uncategorized/securityForceEOWReport.tw +++ b/src/uncategorized/securityForceEOWReport.tw @@ -12,11 +12,12 @@ The upgrades are currently ordered as: securityForceVehiclePower(7) securityForceHeavyBattleTank(3) <</if>> - <<if $securityForceArcologyUpgrades >= 4>>Hangar(27) + <<if $securityForceArcologyUpgrades >= 4>>Hangar(30) securityForceAircraftPower(8) securityForceSpacePlanePower(11) securityForceFortressZeppelin(3) securityForceAC130(5) + securityForceHeavyTransport(3) <</if>> <<if $securityForceArcologyUpgrades >= 2>>Drone Bay(6) securityForceDronePower(6) @@ -202,6 +203,8 @@ securityForceX <<set $securityForceTrade += (0.25*($securityForceFortressZeppelin))>> <</if>> <<if $securityForceAC130 > 0>> <<set $securityForceTrade += (0.25*($securityForceAC130))>> <</if>> + <<if $securityForceHeavyTransport > 0>> + <<set $securityForceTrade += (0.25*($securityForceHeavyTransport))>> <</if>> <</if>> <<if $securityForceArcologyUpgrades >= 2>> @@ -667,6 +670,15 @@ securityForceX Modernized the AC-130's armor, weaponry, electronics and crew seating. <</if>> <</if>> +<<if $securityForceHeavyTransport > 0>> + /* 3 upgrades */ + <<if $securityForceHeavyTransport == 1>> + A basic heavy transport has been 'borrowed' from the old world. + <<elseif $securityForceHeavyTransport == 2>> + Modernized the heavy transport's armor. + <<elseif $securityForceHeavyTransport == 3>> + Modernized the armor and engines of the heavy transport. +<</if>> <</if>> <<if $securityForceArcologyUpgrades >= 2>>