diff --git a/cspell.json b/cspell.json index 59f58ac64e88a85efbeb8739b0640716b27b6038..cdbde996998127951de6f4b2316aca84a70ac8ee 100644 --- a/cspell.json +++ b/cspell.json @@ -133,6 +133,7 @@ "recets", "reci", "refi", + "regs", "repop", "ress", "shokushu", @@ -185,6 +186,7 @@ "camelcase", "cartoonishly", "catgirl", + "ceramo-metallic", "creampied", "csec", "cummunist", @@ -265,6 +267,7 @@ "lolis", "macromastia", "majicmix", + "mamluks", "mammaries", "mastersuite", "meatshield", @@ -328,6 +331,7 @@ "repopulationist", "retailored", "retellings", + "ronin", "sagbgone", "sekhmet", "sekhmeti", diff --git a/src/Mods/SecExp/buildings/SecExpBuildingsBC.js b/src/Mods/SecExp/buildings/SecExpBuildingsBC.js index d8555b4c68a438bb49b6149ba34f1e16addd6cb2..09ab6819d20f622b5a6db6ae963ec62b6627e3e3 100644 --- a/src/Mods/SecExp/buildings/SecExpBuildingsBC.js +++ b/src/Mods/SecExp/buildings/SecExpBuildingsBC.js @@ -1,3 +1,5 @@ +// cSpell:ignore recuriter, weap + App.Mods.SecExp.BC = (function() { return { propHub, diff --git a/src/Mods/SecExp/events/conflictHandler.js b/src/Mods/SecExp/events/conflictHandler.js index 15c5782277d0bc00d21023099a811df851f0a47c..99b891022366230c60681625994e979d625e12d7 100644 --- a/src/Mods/SecExp/events/conflictHandler.js +++ b/src/Mods/SecExp/events/conflictHandler.js @@ -749,7 +749,7 @@ App.Events.conflictHandler = function() { } } - let i = 0; // simulates the combat by pitting attk against def + let i = 0; // simulates the combat by pitting attack against defense while (i < turns && ![3, -3].includes(V.SecExp.war.result)) { App.UI.DOM.appendNewElement('p', node, turnReport()); i++; diff --git a/src/Mods/SecExp/js/Unit.js b/src/Mods/SecExp/js/Unit.js index 4f6cd3c6f9eac556b791a7528f13276895f60869..28d7bc614aaa67303fcf331c28d563621a2314eb 100644 --- a/src/Mods/SecExp/js/Unit.js +++ b/src/Mods/SecExp/js/Unit.js @@ -654,7 +654,7 @@ App.Mods.SecExp.unit = (function() { } if (input.cyber > 0) { - el.append(`The soldiers of the unit have been enhanced with numerous cyberaugmentations which greatly increase their raw power. `); + el.append(`The soldiers of the unit have been enhanced with numerous cyber-augmentations which greatly increase their raw power. `); } if (input.medics > 0) { el.append(`The unit has a dedicated squad of medics that will follow them in battle. `); @@ -687,7 +687,7 @@ App.Mods.SecExp.unit = (function() { App.UI.DOM.appendNewElement("div", el); if (jsDef(input.cyber) && input.cyber > 0) { - el.append(`Cyberaugmentations applied. `); + el.append(`Cyber-augmentations applied. `); } if (jsDef(input.medics) && input.medics > 0) { el.append(`Medical squad attached. `); diff --git a/src/Mods/SecExp/js/secExpObject.js b/src/Mods/SecExp/js/secExpObject.js index ecb0a81b7ed6b22a6e65667f664aea3883b201f6..324148426bf2f06e2685edecfa771fec17a8b4ee 100644 --- a/src/Mods/SecExp/js/secExpObject.js +++ b/src/Mods/SecExp/js/secExpObject.js @@ -1,3 +1,5 @@ +// cSpell:ignore Rquirements + App.Mods.SecExp.Obj = (function() { return { BC, diff --git a/src/Mods/SecExp/js/securityReport.js b/src/Mods/SecExp/js/securityReport.js index 720c38b893f5583ef297b8ebdd66829d468ee841..b1e695673a34851ba23200ad098ba449941e19fa 100644 --- a/src/Mods/SecExp/js/securityReport.js +++ b/src/Mods/SecExp/js/securityReport.js @@ -355,7 +355,7 @@ App.Mods.SecExp.securityReport = function(oldACitizens) { if (V.SecExp.edicts.defense.militia >= 1) { let recruitsMultiplier = 1; let recruitLimit = 0; - let adjst; + let adjust; const SF = App.Mods.SecExp.assistanceSF('security', 'militia'); r.push(SF.text); recruitsMultiplier += SF.bonus; @@ -365,42 +365,42 @@ App.Mods.SecExp.securityReport = function(oldACitizens) { recruitsMultiplier *= (1 + propagandaEffects.effect); if (V.SecExp.edicts.defense.militia === 2) { r.push(`Your militia accepts only volunteering citizens, ready to defend their arcology.`); - recruitLimit = App.Mods.SecExp.militiaCap(); adjst = 0.0025; + recruitLimit = App.Mods.SecExp.militiaCap(); adjust = 0.0025; if (V.rep >= 10000) { r.push(`Many citizens volunteer just to fight for someone of your renown.`); - recruitLimit += adjst; + recruitLimit += adjust; } if (V.SecExp.core.authority >= 10000) { r.push(`Many citizens feel it is their duty to fight for you, boosting volunteer enrollment.`); - recruitLimit += adjst; + recruitLimit += adjust; } } else if (V.SecExp.edicts.defense.militia === 3) { r.push(`Adult citizens are required to join the militia for a period of time.`); - recruitLimit = App.Mods.SecExp.militiaCap(); adjst = 0.005; + recruitLimit = App.Mods.SecExp.militiaCap(); adjust = 0.005; } else if (V.SecExp.edicts.defense.militia === 4) { r.push(`Adult citizens are required to register and serve in the militia whenever necessary.`); - recruitLimit = App.Mods.SecExp.militiaCap(); adjst = 0.01; + recruitLimit = App.Mods.SecExp.militiaCap(); adjust = 0.01; } else if (V.SecExp.edicts.defense.militia === 5) { r.push(`Every citizen is required to train and participate in the military activities of the arcology.`); - recruitLimit = App.Mods.SecExp.militiaCap(); adjst = 0.02; + recruitLimit = App.Mods.SecExp.militiaCap(); adjust = 0.02; } if (V.SecExp.edicts.defense.lowerRequirements === 1) { r.push(`Your lax physical requirements to enter the militia allows for a greater number of citizens to join.`); - recruitLimit += adjst; + recruitLimit += adjust; } if (V.SecExp.edicts.defense.militia >= 3) { if (V.SecExp.edicts.defense.militaryExemption === 1) { r.push(`Some citizens prefer to contribute to the arcology's defense through financial support rather than military service, making you <span class="yellowgreen">a small sum.</span>`); - recruitLimit -= adjst; + recruitLimit -= adjust; cashX(250, "securityExpansion"); } if (V.SecExp.edicts.defense.noSubhumansInArmy === 1) { r.push(`Guaranteeing the purity of your armed forces comes with a small loss of potential recruits.`); - recruitLimit -= adjst; + recruitLimit -= adjust; } if (V.SecExp.edicts.defense.pregExemption === 1) { r.push(`Many pregnant citizens prefer to avoid military service not to endanger themselves and their children.`); - recruitLimit -= adjst; + recruitLimit -= adjust; } } diff --git a/src/Mods/SpecialForce/AfterActionReport.js b/src/Mods/SpecialForce/AfterActionReport.js index f476b77e14a267daa11bd05d4978f7096dd3d7cc..077b4b30b8de4af12c25fb65106db16ce5f0e459 100644 --- a/src/Mods/SpecialForce/AfterActionReport.js +++ b/src/Mods/SpecialForce/AfterActionReport.js @@ -325,11 +325,11 @@ App.Mods.SF.AAR = function() { if (V.SF.MercCon.CanAttend === 1) { V.SF.MercCon.Income = 0; V.SF.MercCon.Menials = 0; - const tradeShowAttendes = 200; + const tradeShowAttendees = 200; const menialGiftsPerAttendee = 5; - const menialGifts = Math.ceil(jsRandom(1, ((tradeShowAttendes * menialGiftsPerAttendee) / 10))); + const menialGifts = Math.ceil(jsRandom(1, ((tradeShowAttendees * menialGiftsPerAttendee) / 10))); const TSProfit = Math.ceil(500000 * (1 + (size / 1000)) * (1 + (V.arcologies[0].prosperity / 1000)) * App.Mods.SF.env()); - const NewMercs = jsRandom(1, (tradeShowAttendes / 10)); + const NewMercs = jsRandom(1, (tradeShowAttendees / 10)); V.SF.MercCon.Menials += menialGifts; V.SF.MercCon.TotalMenials += menialGifts; @@ -346,7 +346,7 @@ App.Mods.SF.AAR = function() { V.SF.MercCon.Mercs += NewMercs; } App.UI.DOM.appendNewElement("span", node, "TradeShow: ", ["bold"]); - App.UI.DOM.appendNewElement("span", node, `During a break, The Colonel managed to sell some generic schematics to the ${tradeShowAttendes} attendees, some of whom decided to also give a few menial slaves as a bonus.`); + App.UI.DOM.appendNewElement("span", node, `During a break, The Colonel managed to sell some generic schematics to the ${tradeShowAttendees} attendees, some of whom decided to also give a few menial slaves as a bonus.`); } V.SF.MercCon.CanAttend = -1; @@ -391,7 +391,7 @@ App.Mods.SF.AAR = function() { */ function weeklyGift(input) { let value; - let EnvProsp; + let EnvProsperity; const env = App.Mods.SF.env(); const size = App.Mods.SF.upgrades.total(); @@ -405,11 +405,11 @@ App.Mods.SF.AAR = function() { break; case 3: // Request sabotage switch (env) { - case 4: EnvProsp = 3; break; - case 3: EnvProsp = 5; break; - case 2: EnvProsp = 7; break; + case 4: EnvProsperity = 3; break; + case 3: EnvProsperity = 5; break; + case 2: EnvProsperity = 7; break; } - value = EnvProsp + (Math.ceil(size/100 * env)); + value = EnvProsperity + (Math.ceil(size/100 * env)); if (V.arcologies[0].prosperity + value * 0.8 > V.AProsperityCap) { V.arcologies[0].prosperity = V.AProsperityCap; } else { diff --git a/src/Mods/SpecialForce/FirebaseTour.js b/src/Mods/SpecialForce/FirebaseTour.js index 59d3e5693983839e65b63421587858702bf09948..a57b2b099b8cca251ab57f5cd1b434ba3ba79a6d 100644 --- a/src/Mods/SpecialForce/FirebaseTour.js +++ b/src/Mods/SpecialForce/FirebaseTour.js @@ -1,3 +1,5 @@ +// cSpell:ignore Ahhh + App.UI.firebaseTour = function() { const node = new DocumentFragment(); let r = []; diff --git a/src/Mods/SpecialForce/SpecialForceBC.js b/src/Mods/SpecialForce/SpecialForceBC.js index 250b237f3fa662fe950ed09689da9e96791ae58b..d8ea40b725f7542e7628ecb8d0dd814e60e34a9b 100644 --- a/src/Mods/SpecialForce/SpecialForceBC.js +++ b/src/Mods/SpecialForce/SpecialForceBC.js @@ -1,5 +1,7 @@ // @ts-nocheck /* no-usedOnce */ +// cSpell:ignore SFMOD, vaild, SFUC + App.Mods.SF.BC = function() { function InitClean() { delete V.SFMODToggle; diff --git a/src/Mods/SpecialForce/SpecialForceFS.js b/src/Mods/SpecialForce/SpecialForceFS.js index 4ed5f8ec9e3d91eb17c566068dde6e0d56f4e368..4d5a4e44cc3d873d81975a7e2db9c6c152a9b58c 100644 --- a/src/Mods/SpecialForce/SpecialForceFS.js +++ b/src/Mods/SpecialForce/SpecialForceFS.js @@ -1,3 +1,11 @@ +// cSpell:ignore Valetudinarium, Harpyis, Machinis, caeli, patolli, ullamaliztli, huitzauhqui, Otomies, Excan +// cSpell:ignore Tlahtoloyan, Patecatl, Ixtlilton, yaoquizqueh, xoloitzcuintli, Toth, khopesh, Kemet, nakhtu-aa +// cSpell:ignore reureiopes, Montu, SPATHI, shoin, zukuri, Bakufu, Byoin, kanpo, igaku, Karasu, Shuri, gishis +// cSpell:ignore Eadokkuyado, yukata, Al-Hekma, girih, saifs, al-Shifa, junud, Eash, Alrukh, saghir, Kiraj +// cSpell:ignore muhandises, Hazirat, altayarayn, Alyans, asasiyun, shemagh, jians, Zhonghuá, Yiyuà n, zhongyi, shìbing +// cSpell:ignore Cháo, Chekù, jìshis, Jikù, feixÃngyuán, Paedagogia +// cSpell:ignore CBRN, ATGM, AAMG, ammunitions, punji, camo, tacti-cool, Chobham, docu-dramas, thicc, divs, IFV's, AFV's + App.Mods.SF.fsIntegration = (function() { return { list, @@ -666,9 +674,9 @@ App.Mods.SF.fsIntegration = (function() { )); } else if (V.SF.FS.Tension < 100) { node.append(`You walk past The Colonel and move towards the common area to meet with an exclusive group of her very influential officers that are currently relaxing at their favorite table. These men and women are known for their competence, popularity, and authority within their respective divisions of ${V.SF.Lower}, they are hard to replace, and they are always looking to earn more coin; they are the perfect weak link for trickling your Future Society influences down into the Firebase. As the officers make room at their table for you to sit and join them for discussion, you spot The Colonel staring at you from afar, and she does not look happy with you. As you are her employer, she cannot stop you from speaking with her soldiers or moving around as you please, but she can tell that you are up to no good.`); - const confictingFSs = validityTester(); + const conflictingFSs = validityTester(); for (const currentFS of App.Mods.SF.fsIntegration.list().all) { - if (!confictingFSs.includes(V.SF.FS[currentFS]) && V.SF.FS[currentFS].lv < 100) { + if (!conflictingFSs.includes(V.SF.FS[currentFS]) && V.SF.FS[currentFS].lv < 100) { $(node).wiki(createLink(currentFS)); } if (V.SF.FS[currentFS].gift === 0) { @@ -826,7 +834,7 @@ App.Mods.SF.fsIntegration = (function() { App.UI.DOM.appendNewElement("div", t, `Her army vanguard strikes fast and hard throughout the main Plaza, cutting through your security personnel, defensive platoons, and drones with an ease that stinks of months of careful planning and study. Your defensive platoons, veterans of many Battles, are outmaneuvered at every turn; their hidden ammunition caches are found empty, their communications networks are mysteriously scrambled, and key chokepoints are found to be booby-trapped before your men can even get to them; their well-rehearsed arcology defense routines have gone to ash. Assuming you ever get a chance to speak to The Colonel again, you would ask if her betrayal was actually inevitable rather than something you triggered.`); App.UI.DOM.appendNewElement("div", t, `You watch with immense disappointment as the very APC's and IFV's that you paid for now charge into resisting storefronts to storm the armed civilians inside with heavy infantry at point blank range. Battle Tanks trample wounded civilians in the streets as they maneuver to blast your citizens' hastily-made holdouts to pieces, burying dozens of civilian loyalists under mountains of rubble while hundreds more are gunned down in the streets for want of adequate cover. The Plaza is lost; the enemy vanguard has gained access to the Residential Sectors upstairs. Enticed, entire platoons of her vanguard decide to become bandits, ignoring their Colonel's orders and scattering off from the main force to kick down many apartment doors and help themselves to whatever desirable goods or inhabitants they find within.`); App.UI.DOM.appendNewElement("div", t, `Outside, her many aircraft swarm the local airspace to patrol the Arcology outskirts, conduct recon scans of the upper levels, or monitor your sealed penthouse outside the range of your SAM turrets, while shooting down any other fleeing VTOL's. You will not be escaping by air today. No one will. No escaping by land either: Swarms of her drones are tasing fleeing noncombatants by the hundreds for later enslavement, as the remainder of her army begins to pour into the bloody Plaza. This is your Arcology's darkest hour.`); - App.UI.DOM.appendNewElement("div", t, `And yet your Mercenaries stand ready. On security feeds throughout the Residential Sectors and Garrison you see your elite sellswords charging out of their lodgings in full kit. They are few, but this is their home, and you are their Patron and Commander. They hold firm, fighting like legends of old in some places, and fighting like animals in others. The Mercenaries trapped downstairs near The Garrison take to the Markets, pinning down most of The Colonel's reinforcements from various shopping outlets using towed quad anti-aircraft guns, and ultimately cutting off many of the assets needed for The Colonel's ongoing assault upstairs. Enemy troop carriers laden with heavy infantry breach the shopping centers in order to dislodge them, only to have their inhabitants cooked alive before they can disembark in time or shot to pieces even when they do. Keeping these Mercenaries alive are the roving exosuit-clad tank hunter duos that frag entire armor platoons en route to these shopping outlets, resorting to carving open enemy AFV's up close with their powered CQB weapons once they've run out of missiles. Back in the Residencies upstairs, in the still-evacuating streets and atriums, your actively-camouflaged snipers take up choice positions on various balconies and overpasses, sowing panic among the advancing traitors with their impressive anti-material rifles with one explosive headshot after another, sometimes even hitting them through walls and buildings. In large indoor parks leading up to the main Residential courtyard, Mercenary fireteams force enemy flankers to flee every single footpath they walk through, harassing constantly and prtypeing any hostile reconnaissance or infiltration from being done.`); + App.UI.DOM.appendNewElement("div", t, `And yet your Mercenaries stand ready. On security feeds throughout the Residential Sectors and Garrison you see your elite sellswords charging out of their lodgings in full kit. They are few, but this is their home, and you are their Patron and Commander. They hold firm, fighting like legends of old in some places, and fighting like animals in others. The Mercenaries trapped downstairs near The Garrison take to the Markets, pinning down most of The Colonel's reinforcements from various shopping outlets using towed quad anti-aircraft guns, and ultimately cutting off many of the assets needed for The Colonel's ongoing assault upstairs. Enemy troop carriers laden with heavy infantry breach the shopping centers in order to dislodge them, only to have their inhabitants cooked alive before they can disembark in time or shot to pieces even when they do. Keeping these Mercenaries alive are the roving exosuit-clad tank hunter duos that frag entire armor platoons en route to these shopping outlets, resorting to carving open enemy AFV's up close with their powered CQB weapons once they've run out of missiles. Back in the Residencies upstairs, in the still-evacuating streets and atriums, your actively-camouflaged snipers take up choice positions on various balconies and overpasses, sowing panic among the advancing traitors with their impressive anti-material rifles with one explosive headshot after another, sometimes even hitting them through walls and buildings. In large indoor parks leading up to the main Residential courtyard, Mercenary fireteams force enemy flankers to flee every single footpath they walk through, harassing constantly and preventing any hostile reconnaissance or infiltration from being done.`); App.UI.DOM.appendNewElement("div", t, `The main Residential courtyard features the Residential Sectors' massive elevator complex, which will give The Colonel's forces rapid access to the Promenade, and ultimately, You.`); App.UI.DOM.appendNewElement("div", t, `In front of it, your Mercenary Captain stands atop one of the many meters-thick sandbag walls his men just assembled there, leading the raging defensive blockade in bringing the vanguard's assault to a gory halt. ${V.SF.Lower}'s bodies and bits and debris pile up in small walls on the outskirts under the burning heat of hundreds of flying autocannon rounds and dozens of screeching missiles. Before the vanguard's morale can break however, The Colonel shows up in person behind her own lines, kitted in a customized power armor and dragging, of all things, a hydraulic trebuchet loaded with a crudely-welded large metal box. She launches the box from beyond your Mercenaries' line of sight, sending it reeling towards them and predicting that they will try to shoot it out of the sky. They do, not wanting the slow but strange projectile to hit them directly, only learning of their folly when the metal 'box' detonates midair and releases a dense cloud of cluster bombs over their position. The munitions themselves disable some of the exosuits, but they don't kill too many on their own. However, the bomblets do succeed in detonating the various ammo dumps that were feeding your Mercenaries' blazing guns. The chain explosions, resulting fires, destroyed cover, and widespread casualties and confusion all create the perfect opportunity for The Colonel to storm the previously implacable barricade at the head of her troops, with her followers rushing the merc lines and blasting off the heavy armor plating of your disoriented Mercenaries themselves before stabbing them to death, or in some cases, hauling off the dis-armored and defeated female Mercenaries they discover for immediate use.`); App.UI.DOM.appendNewElement("div", t, `As the few intact Mercenaries remaining desperately struggle to hold off the advancing horde with their remaining ammo, The Colonel takes on your dazed Mercenary Captain in single combat. When their ammunition runs dry, and their blasted battlesuits break down, they both eject, and then the knives come out. Minutes later, she stabs him in the side of his skull after she dodges yet another attempt to land a killing blow on her. With the source of Mercenary command and control gone, The Colonel staunches her own bleeding, yanks a trooper out of a near-pristine battlesuit that she now claims for herself, and directly organizes the isolation and extermination of the smaller teams of Mercenaries that are bleeding her troops everywhere else. She routs your Mercenaries for good with the razing of their Garrison structure. The ${V.SF.Lower} now enjoys absolute air and ground superiority. Soon the surviving rear of her army is brought upstairs from the killing floors down in the Markets, and the many elevators and cargo lifts of the elevator complex are boarded, with your executive override codes to remotely shut down the elevators somehow being manually bypassed by her combat engineers. It won't be long now.`); @@ -845,8 +853,8 @@ App.Mods.SF.fsIntegration = (function() { App.UI.DOM.appendNewElement("div", t, `Finally fed up with your constant intrusions into her territory and crew, The Colonel riles up her people for a full takeover against your arcology. The promises of plunder and dominion over some of the wealthiest tenants in the entire Free City (and their world-class slaves), including you, are all that's needed to get things started. However, not every soldier is eager to betray you.`); App.UI.DOM.appendNewElement("div", t, `It is now Midnight. The lights are the first thing The Colonel's forces disable, as they still have the excellent night vision equipment you purchased for them. Some of your citizens start panicking almost immediately at the sudden blackout; this is very reminiscent of the Daughters of Liberty attack that still haunts many of their memories. Her horde of marauders purges the plaza and lower floors of the arcology mercilessly, thoughtlessly cutting through your tenants with an ease that stinks of true jealously and hatred. Most disturbingly, your penthouse's communications networks are all but destroyed, and your PA has been unreachable, seemingly hacked by some obscure technology you figure only The Colonel's contacts and few others could provide. As bad as all of this is, it is merely meant to distract and disrupt your mercenaries. The real threat is aerial.`); App.UI.DOM.appendNewElement("div", t, `Outside the arcology, her many aircraft swarm the local airspace to patrol the arcology outskirts, conduct recon scans of the upper levels, or monitor your now-secured penthouse, while shooting down any other fleeing VTOL's. You will not be escaping by air. No one will. No escaping by land either: Swarms of her drones are tasing fleeing noncombatants by the hundreds for resale, as the remainder of her army seizes control of vital arcology infrastructure. As you take note of this while donning your bathrobe, several missiles from attack VTOL's come crashing through your penthouse before detonating. Miraculously, no one is harmed by this, and it has even created a gap in a nearby wall for you to escape the penthouse through, but this is but a small comfort in the wake of the squads of disembarking troops, lead by The Colonel herself, rappelling into your penthouse to capture you directly.`); - App.UI.DOM.appendNewElement("div", t, `You run. You run faster than you ever have in your life, past burning shops, burning vehicles, burning crowds, and burning bodies. An entire team of The Colonel's men are chasing you, lead by The Colonel herself, with their heavy kit probably the only reason they haven't caught you yet. They obviously want you alive, and you have been sharp enough to realize that this is very bad news for you. During your sprint, you also happen to run past several security cameras that impassively capture high-definition full-color footage of your retreat. When you typeually bump into one of your mercenaries and are escorted to a shelter, the personnel responsible for overseeing the camera feeds upload the footage of your great chase to the internet, where the entire world can see you being hounded by the men and women you personally hired to protect you and your arcology.`); - App.UI.DOM.appendNewElement("div", t, `typeually, The Colonel's coup collapses. The selfish and malevolent troops following her, easily distracted by the myriad opportunities for rich plunder all around them, end up scattering throughout the arcology and losing cohesion, allowing for your much better organized security forces, mercenary hunter-killer teams, and even local enraged citizens to regroup and typeually overwhelm each enemy looter gang individually until a grinding total victory is achieved by the end of the week. The Colonel never finds, captures, or kills you. Nor is she ever found, captured, or killed herself. But she did set you on the run, and humiliatingly enough, the entire Free City now knows about it. Everyone has seen the clip. When you think about it she did manage to kill you after all, in a manner of speaking.`); + App.UI.DOM.appendNewElement("div", t, `You run. You run faster than you ever have in your life, past burning shops, burning vehicles, burning crowds, and burning bodies. An entire team of The Colonel's men are chasing you, lead by The Colonel herself, with their heavy kit probably the only reason they haven't caught you yet. They obviously want you alive, and you have been sharp enough to realize that this is very bad news for you. During your sprint, you also happen to run past several security cameras that impassively capture high-definition full-color footage of your retreat. When you eventually bump into one of your mercenaries and are escorted to a shelter, the personnel responsible for overseeing the camera feeds upload the footage of your great chase to the internet, where the entire world can see you being hounded by the men and women you personally hired to protect you and your arcology.`); + App.UI.DOM.appendNewElement("div", t, `eventually, The Colonel's coup collapses. The selfish and malevolent troops following her, easily distracted by the myriad opportunities for rich plunder all around them, end up scattering throughout the arcology and losing cohesion, allowing for your much better organized security forces, mercenary hunter-killer teams, and even local enraged citizens to regroup and eventually overwhelm each enemy looter gang individually until a grinding total victory is achieved by the end of the week. The Colonel never finds, captures, or kills you. Nor is she ever found, captured, or killed herself. But she did set you on the run, and humiliatingly enough, the entire Free City now knows about it. Everyone has seen the clip. When you think about it she did manage to kill you after all, in a manner of speaking.`); App.UI.DOM.appendNewElement("div", t, `Your arcology is once more yours, but your people will never forget the horrifying week they spent being slaughtered and hunted by The Colonel's marauders, butchered by the army that you convinced them to allow, or the fact that you couldn't save them because you were very busy being hunted yourself.`); } else if (passage() === "Manage Penthouse") { App.UI.DOM.appendNewElement("div", t, "Visiting the Firebase just takes you to a charnel house of dead bodies, spent ammo casings, collapsed sub-structure, unstable rubble, and live munitions & duds that can detonate at the slightest disturbance. This chamber has proven so troublesome, tedious, and dangerous to clear out that you've decided to halt all salvage operations for the foreseeable future."); @@ -860,7 +868,7 @@ App.Mods.SF.fsIntegration = (function() { App.UI.DOM.appendNewElement("div", t, `Finally fed up with your constant intrusions into her territory and crew, The Colonel riles up her people for a full takeover against your arcology. The promises of plunder and dominion over some of the wealthiest tenants in the entire Free City (and their world-class slaves), including you, are all that's needed to get things started.`); App.UI.DOM.appendNewElement("div", t, `At midnight, the lights are the first thing The Colonel's forces disable, as they still have the excellent night vision equipment you purchased for them. Some of your citizens panic almost immediately at the sudden blackout; this is very reminiscent of the Daughters of Liberty attack that still haunts many of their memories. Her army vanguard strikes fast and hard throughout, cutting through your security units and drones with an ease that stinks of months of careful planning and study. Most disturbingly, your penthouse's communications networks are all but destroyed, and your PA has been unreachable, seemingly hacked by some obscure technology you figure only The Colonel's contacts and few others could provide.`); App.UI.DOM.appendNewElement("div", t, `Outside, her many aircraft swarm the local airspace to patrol the arcology outskirts, conduct recon scans of the upper levels, or monitor your now-secured penthouse, while shooting down any other fleeing VTOL's. You will not be escaping by air. No one will. No escaping by land either: Swarms of her drones are tasing fleeing noncombatants by the hundreds for detainment, as the remainder of her army seizes control of vital arcology infrastructure. After just a few days, the entire arcology falls under her direct control, all dissidents, criminals, and rebels hopelessly outgunned by her lavishly equipped and experienced warriors.`); - App.UI.DOM.appendNewElement("div", t, `You are trapped inside your Penthouse by the detachment of infantry guarding its exits in order to keep you in, probably with the goal of starving you out until you surrender yourself. With your communications down as well, your penthouse might as well be an island. You only salvation comes in the form of your neighboring arcologies and their respective mercenary contingents. They are intervening on your behalf out of paranoia; Free Cities are extremely wary of military power buildups near their borders, and they absolutely will not tolerate a full scale military coup within its borders. Fighting men and women from all over the City are seen battling in the streets of your arcology in a brutal blitzkrieg that your own tenants and mercenaries quickly join in on, pushing The Colonel's forces back gradually with sheer numbers. typeually they are forced back into the Firebase proper, where they are sealed inside by using explosives to collapse part of the arcology atop them, rendering the Firebase itself totally defunct. Only a few small groups manage to scatter and flee this holding action, and your intelligence networks suspects that The Colonel herself was among one of them.`); + App.UI.DOM.appendNewElement("div", t, `You are trapped inside your Penthouse by the detachment of infantry guarding its exits in order to keep you in, probably with the goal of starving you out until you surrender yourself. With your communications down as well, your penthouse might as well be an island. You only salvation comes in the form of your neighboring arcologies and their respective mercenary contingents. They are intervening on your behalf out of paranoia; Free Cities are extremely wary of military power buildups near their borders, and they absolutely will not tolerate a full scale military coup within its borders. Fighting men and women from all over the City are seen battling in the streets of your arcology in a brutal blitzkrieg that your own tenants and mercenaries quickly join in on, pushing The Colonel's forces back gradually with sheer numbers. eventually they are forced back into the Firebase proper, where they are sealed inside by using explosives to collapse part of the arcology atop them, rendering the Firebase itself totally defunct. Only a few small groups manage to scatter and flee this holding action, and your intelligence networks suspects that The Colonel herself was among one of them.`); App.UI.DOM.appendNewElement("div", t, `With the help of some unlikely intervention, you've won this little war. Your arcology is once more yours, but your people will never forget the traumatic week they spent under the heel of the army that you convinced them to allow, or the fact that it took an entire coalition of outsiders to save them.`); } else if (passage() === "Manage Penthouse") { App.UI.DOM.appendNewElement("div", t, "Visiting the Firebase just takes you to its entrance. The two guards that usually let you in will now shoo you away at gunpoint."); @@ -873,8 +881,8 @@ App.Mods.SF.fsIntegration = (function() { App.UI.DOM.appendNewElement("div", t, `Finally weary of your constant intrusions into her territory and crew, The Colonel gathers up her people for a full scale liquidation and dispersal of personnel and assets throughout the Free City itself; they are going to discreetly sell off the majority of their military hardware, assume new identities and melt into the fabric of the Free City's wider population. Gone are the days of plunder and dominion, as this retirement plan will make many of them some of the wealthiest tenants in the entire Free City, and they will no longer need to break their backs living the lives of soldiers. With the liquidation complete and the money distributed, the army moves on to the net stage of the plan.`); App.UI.DOM.appendNewElement("div", t, `At midnight, the lights are the first thing The Colonel's forces disable, as they still have the excellent night vision equipment you purchased for them. Some of your citizens panic almost immediately at the sudden blackout; this is very reminiscent of the Daughters of Liberty attack that still haunts many of their memories. Her army moves fast and quietly throughout the arcology and the streets outside of it, slipping through your security units and drones with an ease that stinks of months of careful planning and study. Most disturbingly, your penthouse's communications networks are all but destroyed, and your PA has been unreachable, seemingly hacked by some obscure technology you figure only The Colonel's contacts and few others could provide.`); App.UI.DOM.appendNewElement("div", t, `Outside, her many aircraft escape the local airspace to patrol the arcology outskirts, evading recon scans, the monitoring systems of your secured penthouse, and the feeble attempts of your sentries to shoot them down. A great many of them will be escaping by air, it seems. Many are escaping by land too: Swarms of personnel carriers and utility trucks are driving off to neighboring arcologies or even neighboring Free Cities by the dozens for retirement, as the remainder of her army purchase new apartments and properties in various arcologies nearby while being dressed in civilian clothing. After just a few days, the entire army has essentially disappeared, hopelessly obscured by mountains of digital noise, detailed fake backstories, lavish fake identities, and lots of bribes and carefully destroyed digital and physical records. Your Special Force has gone completely AWOL and there is nothing you or anyone can do about it. It seems your experienced former warriors have an eye for deception too.`); - App.UI.DOM.appendNewElement("div", t, `You are trapped inside your Penthouse by the electricity-cutting digital virus that has kept you inside and communicatively isolated for the past week. Probably with the goal of keeping you in the dark, figuratively and literally, so that you could not intervene in The Colonel's total assimilation into the Free Cities. The lazy bitch did not want to cooperate with your Future Societies plans, so she and her men decided to stop being soldiers altogether, and live off of their savings. Your only relief comes at the midnight of the stypeh day, when the virus self-terminates and the arcology's electricity, PA, and communications lines return to full functioning.`); - App.UI.DOM.appendNewElement("div", t, `Your arcology is once more yours, but your people will never forget the troubling week they spent in total darkness and lockdown, or the sudden mass desertion and disappearance of the army that you convinced them to allow, or the fact that there was nothing you could do to prtype or mitigate any of it.`); + App.UI.DOM.appendNewElement("div", t, `You are trapped inside your Penthouse by the electricity-cutting digital virus that has kept you inside and communicatively isolated for the past week. Probably with the goal of keeping you in the dark, figuratively and literally, so that you could not intervene in The Colonel's total assimilation into the Free Cities. The lazy bitch did not want to cooperate with your Future Societies plans, so she and her men decided to stop being soldiers altogether, and live off of their savings. Your only relief comes at the midnight of the seventh day, when the virus self-terminates and the arcology's electricity, PA, and communications lines return to full functioning.`); + App.UI.DOM.appendNewElement("div", t, `Your arcology is once more yours, but your people will never forget the troubling week they spent in total darkness and lockdown, or the sudden mass desertion and disappearance of the army that you convinced them to allow, or the fact that there was nothing you could do to prevent or mitigate any of it.`); } else if (passage() === "Manage Penthouse") { App.UI.DOM.appendNewElement("div", t, "Visiting the Firebase just takes you to a very trashy floorspace full of discarded food, apparel, and furniture, as well as piles of empty boxes and crates. The filthy bastards didn't even bother to clean up after themselves."); } @@ -952,7 +960,7 @@ App.Mods.SF.fsIntegration = (function() { } function createLink(selectedFS, fsIncrease = 5) { - const confictingFSs = validityTester(); + const conflictingFSs = validityTester(); let linkText = ``; let InputText1 = ``; let InputText0 = ``; @@ -1018,7 +1026,7 @@ App.Mods.SF.fsIntegration = (function() { } InputText0 += `<br>`; - if (fsIncrease > 0 || confictingFSs.includes(V.SF.FS[selectedFS])) { + if (fsIncrease > 0 || conflictingFSs.includes(V.SF.FS[selectedFS])) { InputText0 += `<br>` + selectedFSText(selectedFS).dec; } @@ -1030,7 +1038,7 @@ App.Mods.SF.fsIntegration = (function() { InputText0 += `<br> Smuggle in FS-optimized (${V.SF.FS[selectedFS].lv}%): `; } - if (V.SF.FS[selectedFS].gift < 1 || (V.SF.FS[selectedFS].lv < 100 && !confictingFSs.includes(V.SF.FS[selectedFS]))) { + if (V.SF.FS[selectedFS].gift < 1 || (V.SF.FS[selectedFS].lv < 100 && !conflictingFSs.includes(V.SF.FS[selectedFS]))) { InputText0 += ` [[${InputText1}|Firebase][cashX(-${cost}, "specialForcesCap"), $SF.FS.Tension += ${tension}, $SF.FS.${[selectedFS]}.gift = ${gift}, $SF.FS.${[selectedFS]}.lv += ${fsIncrease}]]`; if (fsIncrease > 0) { InputText0 += ` (FS acceptance:<span class='green'>+${fsIncrease}%,</span>`; diff --git a/src/Mods/SpecialForce/upgrades/SpecialForceUpgradeText.js b/src/Mods/SpecialForce/upgrades/SpecialForceUpgradeText.js index f6b93308dc6ce6322b97842ea2bc78894516d35b..6c9d228b54173bb14fa55491101bc283a3099ed7 100644 --- a/src/Mods/SpecialForce/upgrades/SpecialForceUpgradeText.js +++ b/src/Mods/SpecialForce/upgrades/SpecialForceUpgradeText.js @@ -1,3 +1,5 @@ +// cSpell:ignore amphet, PGTframe, surviv, recom, torp, thermobaric + App.Mods.SF.UnitText = function(input) { let text = ``; const S = V.SF.Squad;