diff --git a/src/facilities/fsPassage.js b/src/facilities/fsPassage.js new file mode 100644 index 0000000000000000000000000000000000000000..aad78c0bdfaba982f1dbf4ebd7e558476de026a5 --- /dev/null +++ b/src/facilities/fsPassage.js @@ -0,0 +1,427 @@ +App.UI.FSPassage = function() { + const el = new DocumentFragment(); + const arc = V.arcologies[0]; + const {hisA} = getPronouns(assistant.pronouns().main).appendSuffix('A'); + V.FSReminder = ""; + setup(); + + el.append(FSPerception()); + + if (V.cheatMode) { + App.UI.DOM.appendNewElement("div", el, App.UI.DOM.link( + "Cheat Edit Future Society", + () => { + V.cheater = 1; + }, + [], + "MOD_Edit FS Cheat" + )); + } + el.append(unlocks()); + + return el; + + /** + * FIRST FS STORING FOR RIVALRY + */ + function setup() { + if (V.rivalryFS === 0) { + if (arc.FSSubjugationist !== "unset") { + V.rivalryFS = "Racial Subjugationism"; + V.rivalryFSRace = arc.FSSubjugationistRace; + } + if (arc.FSSupremacist !== "unset") { + V.rivalryFS = "Racial Supremacism"; + V.rivalryFSRace = arc.FSSupremacistRace; + } + if (arc.FSGenderRadicalist !== "unset") { + V.rivalryFS = "Gender Radicalism"; + } else if (arc.FSGenderFundamentalist !== "unset") { + V.rivalryFS = "Gender Fundamentalism"; + } + if (arc.FSRepopulationFocus !== "unset") { + V.rivalryFS = "Repopulation Focus"; + } else if (arc.FSRestart !== "unset") { + V.rivalryFS = "Eugenics"; + } + if (arc.FSPaternalist !== "unset") { + V.rivalryFS = "Paternalism"; + } else if (arc.FSDegradationist !== "unset") { + V.rivalryFS = "Degradationism"; + } + if (arc.FSBodyPurist !== "unset") { + V.rivalryFS = "Body Purism"; + } else if (arc.FSTransformationFetishist !== "unset") { + V.rivalryFS = "Transformation Fetishism"; + } + if (arc.FSYouthPreferentialist !== "unset") { + V.rivalryFS = "Youth Preferentialism"; + } else if (arc.FSMaturityPreferentialist !== "unset") { + V.rivalryFS = "Maturity Preferentialism"; + } + if (arc.FSSlimnessEnthusiast !== "unset") { + V.rivalryFS = "Slimness Enthusiasm"; + } else if (arc.FSAssetExpansionist !== "unset") { + V.rivalryFS = "Asset Expansionism"; + } + if (arc.FSPastoralist !== "unset") { + V.rivalryFS = "Pastoralism"; + } else if (arc.FSCummunism !== "unset") { + V.rivalryFS = "Cummunism"; + } + if (arc.FSHedonisticDecadence !== "unset") { + V.rivalryFS = "Hedonistic Decadence"; + } else if (arc.FSPhysicalIdealist !== "unset") { + V.rivalryFS = "Physical Idealism"; + } + if (arc.FSIntellectualDependency !== "unset") { + V.rivalryFS = "Intellectual Dependency"; + } else if (arc.FSSlaveProfessionalism !== "unset") { + V.rivalryFS = "Slave Professionalism"; + } + if (arc.FSPetiteAdmiration !== "unset") { + V.rivalryFS = "Petite Admiration"; + } else if (arc.FSStatuesqueGlorification !== "unset") { + V.rivalryFS = "Statuesque Glorification"; + } + if (arc.FSChattelReligionist !== "unset") { + V.rivalryFS = "Chattel Religionism"; + } else if (arc.FSNull !== "unset") { + V.rivalryFS = "Multiculturalism"; + } + if (arc.FSRomanRevivalist !== "unset") { + V.rivalryFS = "Roman Revivalism"; + } else if (arc.FSNeoImperialist !== "unset") { + V.rivalryFS = "Neo-Imperialism"; + } else if (arc.FSAztecRevivalist !== "unset") { + V.rivalryFS = "Aztec Revivalism"; + } else if (arc.FSEgyptianRevivalist !== "unset") { + V.rivalryFS = "Egyptian Revivalism"; + } else if (arc.FSEdoRevivalist !== "unset") { + V.rivalryFS = "Edo Revivalism"; + } else if (arc.FSArabianRevivalist !== "unset") { + V.rivalryFS = "Arabian Revivalism"; + } else if (arc.FSChineseRevivalist !== "unset") { + V.rivalryFS = "Chinese Revivalism"; + } + } + } + + function FSPerception() { // TODO: very formulaic, consider reworking to be a lookup. + const el = new DocumentFragment(); + const r = []; + if (arc.FSSupremacist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly in arc.FSSupremacistRace superiority.`); + } else if (arc.FSSupremacist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with arc.FSSupremacistRace superiority.`); + } else if (arc.FSSupremacist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to arc.FSSupremacistRace superiority.`); + } else if (arc.FSSupremacist !== "unset") { + r.push(`${arc.name} is unconvinced of arc.FSSupremacistRace superiority.`); + } + + if (arc.FSSubjugationist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly in the inferiority of arc.FSSubjugationistRace people.`); + } else if (arc.FSSubjugationist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with the inferiority of arc.FSSubjugationistRace people.`); + } else if (arc.FSSubjugationist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the inferiority of arc.FSSubjugationistRace people.`); + } else if (arc.FSSubjugationist !== "unset") { + r.push(`${arc.name} is unconvinced of the inferiority of arc.FSSubjugationistRace people.`); + } + + if (arc.FSRepopulationFocus >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that all women should be pregnant.`); + } else if (arc.FSRepopulationFocus >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly that all women should be pregnant.`); + } else if (arc.FSRepopulationFocus >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the idea that all women should be pregnant.`); + } else if (arc.FSRepopulationFocus !== "unset") { + r.push(`${arc.name} is unconvinced that all women should be pregnant.`); + } + + if (arc.FSRestart >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that only the elite should reproduce.`); + } else if (arc.FSRestart >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly that only the elite should reproduce.`); + } else if (arc.FSRestart >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the idea only the elite should reproduce.`); + } else if (arc.FSRestart !== "unset") { + r.push(`${arc.name} is unconvinced that only the elite should reproduce.`); + } + + if (arc.FSIntellectualDependency >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that all slaves should be mentally dependant on their owner.`); + } else if (arc.FSIntellectualDependency >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly that all slaves should be bimbos.`); + } else if (arc.FSIntellectualDependency >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the idea that slaves should be dumb and horny.`); + } else if (arc.FSIntellectualDependency !== "unset") { + r.push(`${arc.name} is unconvinced that all slaves should be morons.`); + } + + if (arc.FSSlaveProfessionalism >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that slaves should be masters of the sexual arts.`); + } else if (arc.FSSlaveProfessionalism >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with slavery as a profession.`); + } else if (arc.FSSlaveProfessionalism >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the notion of slavery as a profession.`); + } else if (arc.FSSlaveProfessionalism !== "unset") { + r.push(`${arc.name} is unconvinced that slaves should be highly intelligent.`); + } + + if (arc.FSGenderRadicalist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly in the need to redefine gender around power.`); + } else if (arc.FSGenderRadicalist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with the need to redefine gender around power.`); + } else if (arc.FSGenderRadicalist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the need to redefine gender around power.`); + } else if (arc.FSGenderRadicalist !== "unset") { + r.push(`${arc.name} is unconvinced of the need to redefine gender around power.`); + } + + if (arc.FSGenderFundamentalist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly in the need to preserve traditional gender roles.`); + } else if (arc.FSGenderFundamentalist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with the need to preserve traditional gender roles.`); + } else if (arc.FSGenderFundamentalist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the need to preserve traditional gender roles.`); + } else if (arc.FSGenderFundamentalist !== "unset") { + r.push(`${arc.name} is unconvinced of the need to preserve traditional gender roles.`); + } + + if (arc.FSPaternalist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly in the vision of a well-bred race of slaves.`); + } else if (arc.FSPaternalist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with the vision of a well-bred race of slaves.`); + } else if (arc.FSPaternalist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the vision of a well-bred race of slaves.`); + } else if (arc.FSPaternalist !== "unset") { + r.push(`${arc.name} is unconvinced of the vision of a well-bred race of slaves.`); + } + + if (arc.FSDegradationist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that slaves are not human and should be thoroughly degraded.`); + } else if (arc.FSDegradationist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with the idea that slaves are not human and should be thoroughly degraded.`); + } else if (arc.FSDegradationist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the proposition that slaves are not human and should be thoroughly degraded.`); + } else if (arc.FSDegradationist !== "unset") { + r.push(`${arc.name} is unconvinced that slaves are not human and should be thoroughly degraded.`); + } + + if (arc.FSBodyPurist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly in the unattractive nature of implants.`); + } else if (arc.FSBodyPurist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with the unattractive nature of implants.`); + } else if (arc.FSBodyPurist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the unattractive nature of implants.`); + } else if (arc.FSBodyPurist !== "unset") { + r.push(`${arc.name} is unconvinced of the unattractive nature of implants.`); + } + + if (arc.FSTransformationFetishist >= V.FSLockinLevel) { + r.push(`${arc.name} passionately fetishizes implants.`); + } else if (arc.FSTransformationFetishist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} strongly fetishizes implants.`); + } else if (arc.FSTransformationFetishist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} fetishizes implants.`); + } else if (arc.FSTransformationFetishist !== "unset") { + r.push(`${arc.name} is beginning to fetishize implants.`); + } + + if (arc.FSMaturityPreferentialist >= V.FSLockinLevel) { + r.push(`${arc.name} is passionately enthusiastic for older ladies.`); + } else if (arc.FSMaturityPreferentialist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} is very enthusiastic for older ladies.`); + } else if (arc.FSMaturityPreferentialist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is enthusiastic for older ladies.`); + } else if (arc.FSMaturityPreferentialist !== "unset") { + r.push(`${arc.name} is beginning to be enthusiastic for older ladies.`); + } + + if (arc.FSYouthPreferentialist >= V.FSLockinLevel) { + r.push(`${arc.name} is passionately enthusiastic for young women.`); + } else if (arc.FSYouthPreferentialist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} is very enthusiastic for young women.`); + } else if (arc.FSYouthPreferentialist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is enthusiastic for young women.`); + } else if (arc.FSYouthPreferentialist !== "unset") { + r.push(`${arc.name} is beginning to be enthusiastic for young women.`); + } + + if (arc.FSPetiteAdmiration >= V.FSLockinLevel) { + r.push(`${arc.name} is passionately enthusiastic for short slaves.`); + } else if (arc.FSPetiteAdmiration >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} is very enthusiastic for short slaves.`); + } else if (arc.FSPetiteAdmiration >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is enthusiastic for short slaves.`); + } else if (arc.FSPetiteAdmiration !== "unset") { + r.push(`${arc.name} is beginning to be enthusiastic for short slaves.`); + } + + if (arc.FSStatuesqueGlorification >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that the tall are superior.`); + } else if (arc.FSStatuesqueGlorification >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with the idea that the tall are superior.`); + } else if (arc.FSStatuesqueGlorification >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the idea that the tall are superior.`); + } else if (arc.FSStatuesqueGlorification !== "unset") { + r.push(`${arc.name} is unconvinced that the tall are superior.`); + } + + if (arc.FSSlimnessEnthusiast >= V.FSLockinLevel) { + r.push(`${arc.name} is passionately enthusiastic about slim slaves with girlish figures.`); + } else if (arc.FSSlimnessEnthusiast >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} is very enthusiastic about slim slaves with girlish figures.`); + } else if (arc.FSSlimnessEnthusiast >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is enthusiastic about slim slaves with girlish figures.`); + } else if (arc.FSSlimnessEnthusiast !== "unset") { + r.push(`${arc.name} is beginning to be enthusiastic about slim slaves with girlish figures.`); + } + + if (arc.FSAssetExpansionist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that all tits and asses should be bigger.`); + } else if (arc.FSAssetExpansionist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with the idea that all tits and asses should be bigger.`); + } else if (arc.FSAssetExpansionist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the idea that all tits and asses should be bigger.`); + } else if (arc.FSAssetExpansionist !== "unset") { + r.push(`${arc.name} is unconvinced that all tits and asses should be bigger.`); + } + + if (arc.FSPastoralist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that slaves should be milked.`); + } else if (arc.FSPastoralist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with the idea that slaves should be milked.`); + } else if (arc.FSPastoralist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the idea that slaves should be milked.`); + } else if (arc.FSPastoralist !== "unset") { + r.push(`${arc.name} is unconvinced that slaves should be milked.`); + } + + if (arc.FSPhysicalIdealist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that all slaves should be tall and strong.`); + } else if (arc.FSPhysicalIdealist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with the idea that all slaves should be tall and strong.`); + } else if (arc.FSPhysicalIdealist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the idea that all slaves should be tall and strong.`); + } else if (arc.FSPhysicalIdealist !== "unset") { + r.push(`${arc.name} is unconvinced that all slaves should be tall and strong.`); + } + + if (arc.FSHedonisticDecadence >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that all slaves should be soft and laid-back.`); + } else if (arc.FSHedonisticDecadence >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with the idea that all slaves should be soft and laid-back.`); + } else if (arc.FSHedonisticDecadence >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to the idea that all slaves should be soft and laid-back.`); + } else if (arc.FSHedonisticDecadence !== "unset") { + r.push(`${arc.name} is unconvinced that all slaves should be soft and laid-back.`); + } + + if (arc.FSChattelReligionist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly in a version of religion that emphasizes slaveholding traditions.`); + } else if (arc.FSChattelReligionist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with a version of religion that emphasizes slaveholding traditions.`); + } else if (arc.FSChattelReligionist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to a version of religion that emphasizes slaveholding traditions.`); + } else if (arc.FSChattelReligionist !== "unset") { + r.push(`${arc.name} is unconvinced of a version of religion that emphasizes slaveholding traditions.`); + } + + if (arc.FSNull >= V.FSLockinLevel) { + r.push(`${arc.name} is committed to affording its citizens absolute cultural freedom.`); + } else if (arc.FSNull >= V.FSLockinLevel*0.75) { + r.push(`${arc.name} is committed to affording its citizens great cultural freedom.`); + } else if (arc.FSNull >= V.FSLockinLevel*0.5) { + r.push(`${arc.name} is committed to affording its citizens considerable cultural freedom.`); + } else if (arc.FSNull !== "unset") { + r.push(`${arc.name} is committed to affording its citizens basic cultural freedom.`); + } + + if (arc.FSRomanRevivalist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that it is the new Rome.`); + } else if (arc.FSRomanRevivalist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with your project to build the new Rome.`); + } else if (arc.FSRomanRevivalist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to your project to build the new Rome.`); + } else if (arc.FSRomanRevivalist !== "unset") { + r.push(`${arc.name} is unconvinced of the wisdom of your project to build the new Rome.`); + } + + if (arc.FSNeoImperialist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that your arcology is truly a new Imperial Society.`); + } else if (arc.FSNeoImperialist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with your project to build a new Imperial Society.`); + } else if (arc.FSNeoImperialist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to your project to build a new Imperial Society.`); + } else if (arc.FSNeoImperialist !== "unset") { + r.push(`${arc.name} is unconvinced of the wisdom of your project to build a new Imperial Society.`); + } + + if (arc.FSAztecRevivalist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that it is the new Aztec Empire.`); + } else if (arc.FSAztecRevivalist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with your project to build the new Aztec Empire.`); + } else if (arc.FSAztecRevivalist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to your project to build the new Aztec Empire.`); + } else if (arc.FSAztecRevivalist !== "unset") { + r.push(`${arc.name} is unconvinced of the wisdom of your project to build the new Aztec Empire.`); + } + + if (arc.FSEgyptianRevivalist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that it is the land of the Pharaohs, reborn.`); + } else if (arc.FSEgyptianRevivalist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with your project to build a new land of the Pharaohs.`); + } else if (arc.FSEgyptianRevivalist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to your project to build a new land of the Pharaohs.`); + } else if (arc.FSEgyptianRevivalist !== "unset") { + r.push(`${arc.name} is unconvinced of the wisdom of your project to build a new land of the Pharaohs.`); + } + + if (arc.FSEdoRevivalist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that it is the land of the Shogun, reborn.`); + } else if (arc.FSEdoRevivalist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with your project to build a new Edo Japan.`); + } else if (arc.FSEdoRevivalist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to your project to build a new Edo Japan.`); + } else if (arc.FSEdoRevivalist !== "unset") { + r.push(`${arc.name} is unconvinced of the wisdom of your project to build a new Edo Japan.`); + } + + if (arc.FSArabianRevivalist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that it is ancient Baghdad reborn.`); + } else if (arc.FSArabianRevivalist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with your project to build a new Sultanate.`); + } else if (arc.FSArabianRevivalist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to your project to build a new Sultanate.`); + } else if (arc.FSArabianRevivalist !== "unset") { + r.push(`${arc.name} is unconvinced of the wisdom of your project to build a new Sultanate.`); + } + + if (arc.FSChineseRevivalist >= V.FSLockinLevel) { + r.push(`${arc.name} believes implicitly that possesses the Mandate of Heaven.`); + } else if (arc.FSChineseRevivalist >= V.FSLockinLevel*0.6) { + r.push(`${arc.name} agrees strongly with your pursuit of the Mandate of Heaven.`); + } else if (arc.FSChineseRevivalist >= V.FSLockinLevel*0.3) { + r.push(`${arc.name} is sympathetic to your pursuit of the Mandate of Heaven.`); + } else if (arc.FSChineseRevivalist !== "unset") { + r.push(`${arc.name} is unconvinced of the wisdom of your pursuit of the Mandate of Heaven.`); + } + for (const feedback of r) { + App.UI.DOM.appendNewElement("div", el, feedback); + } + return el; + } + + function unlocks() { + const el = new DocumentFragment(); + const r = []; + r.push(`You have unlocked`); + r.push(App.UI.DOM.makeElement("span", `${num(V.FSGotRepCredits, true)} of ${num(V.FSCreditCount, true)}`, "note")); + r.push(`possible societal customizations.`); + App.Events.addNode(el, r, "div"); + return el; + } +}; diff --git a/src/uncategorized/futureSociety.tw b/src/uncategorized/futureSociety.tw index 7c322f4bf9f556f9b138d3a664a25555d52bc9f6..11f44c670eb6616838e7cb4a489b2a9c915e2355 100644 --- a/src/uncategorized/futureSociety.tw +++ b/src/uncategorized/futureSociety.tw @@ -1,410 +1,15 @@ :: Future Society [nobr jump-to-safe jump-from-safe] <<setAssistantPronouns>> -<<set $nextButton = "Back", $nextLink = "Main", $encyclopedia = "Future Societies", $FSReminder = "">> +<<set $nextButton = "Back", $nextLink = "Main", $encyclopedia = "Future Societies">> -/* FIRST FS STORING FOR RIVALRY */ -<<if $rivalryFS == 0>> - <<if $arcologies[0].FSSubjugationist != "unset">> - <<set $rivalryFS = "Racial Subjugationism">> - <<set $rivalryFSRace = $arcologies[0].FSSubjugationistRace>> - <</if>> - <<if $arcologies[0].FSSupremacist != "unset">> - <<set $rivalryFS = "Racial Supremacism">> - <<set $rivalryFSRace = $arcologies[0].FSSupremacistRace>> - <</if>> - <<if $arcologies[0].FSGenderRadicalist != "unset">> - <<set $rivalryFS = "Gender Radicalism">> - <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - <<set $rivalryFS = "Gender Fundamentalism">> - <</if>> - <<if $arcologies[0].FSRepopulationFocus != "unset">> - <<set $rivalryFS = "Repopulation Focus">> - <<elseif $arcologies[0].FSRestart != "unset">> - <<set $rivalryFS = "Eugenics">> - <</if>> - <<if $arcologies[0].FSPaternalist != "unset">> - <<set $rivalryFS = "Paternalism">> - <<elseif $arcologies[0].FSDegradationist != "unset">> - <<set $rivalryFS = "Degradationism">> - <</if>> - <<if $arcologies[0].FSBodyPurist != "unset">> - <<set $rivalryFS = "Body Purism">> - <<elseif $arcologies[0].FSTransformationFetishist != "unset">> - <<set $rivalryFS = "Transformation Fetishism">> - <</if>> - <<if $arcologies[0].FSYouthPreferentialist != "unset">> - <<set $rivalryFS = "Youth Preferentialism">> - <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> - <<set $rivalryFS = "Maturity Preferentialism">> - <</if>> - <<if $arcologies[0].FSSlimnessEnthusiast != "unset">> - <<set $rivalryFS = "Slimness Enthusiasm">> - <<elseif $arcologies[0].FSAssetExpansionist != "unset">> - <<set $rivalryFS = "Asset Expansionism">> - <</if>> - <<if $arcologies[0].FSPastoralist != "unset">> - <<set $rivalryFS = "Pastoralism">> - <<elseif $arcologies[0].FSCummunism != "unset">> - <<set $rivalryFS = "Cummunism">> - <</if>> - <<if $arcologies[0].FSHedonisticDecadence != "unset">> - <<set $rivalryFS = "Hedonistic Decadence">> - <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - <<set $rivalryFS = "Physical Idealism">> - <</if>> - <<if $arcologies[0].FSIntellectualDependency != "unset">> - <<set $rivalryFS = "Intellectual Dependency">> - <<elseif $arcologies[0].FSSlaveProfessionalism != "unset">> - <<set $rivalryFS = "Slave Professionalism">> - <</if>> - <<if $arcologies[0].FSPetiteAdmiration != "unset">> - <<set $rivalryFS = "Petite Admiration">> - <<elseif $arcologies[0].FSStatuesqueGlorification != "unset">> - <<set $rivalryFS = "Statuesque Glorification">> - <</if>> - <<if $arcologies[0].FSChattelReligionist != "unset">> - <<set $rivalryFS = "Chattel Religionism">> - <<elseif $arcologies[0].FSNull != "unset">> - <<set $rivalryFS = "Multiculturalism">> - <</if>> - <<if $arcologies[0].FSRomanRevivalist != "unset">> - <<set $rivalryFS = "Roman Revivalism">> - <<elseif $arcologies[0].FSNeoImperialist != "unset">> - <<set $rivalryFS = "Neo-Imperialism">> - <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - <<set $rivalryFS = "Aztec Revivalism">> - <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - <<set $rivalryFS = "Egyptian Revivalism">> - <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - <<set $rivalryFS = "Edo Revivalism">> - <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - <<set $rivalryFS = "Arabian Revivalism">> - <<elseif $arcologies[0].FSChineseRevivalist != "unset">> - <<set $rivalryFS = "Chinese Revivalism">> - <</if>> -<</if>> - -<<if $cheatMode == 1>> - <p class="detail" style="text-align:center"> - [[Cheat Edit Future Society|MOD_Edit FS Cheat][$cheater = 1]] - </p> -<</if>> - -<<set _FSCredits = FutureSocieties.availCredits()>> -<<if _FSCredits > 0>> - <span class="yellow">$arcologies[0].name's society is ready to begin accepting a new societal direction.</span> -<<elseif $FSGotRepCredits >= 3>> - Your society is so radically changed that it is starting to take on a life of its own. The major decisions about its direction have been made. -<<else>> - You must develop your reputation further for $arcologies[0].name's society to be ready for a new societal direction. -<</if>> - -<<if $arcologies[0].FSSupremacist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly in $arcologies[0].FSSupremacistRace superiority. -<<elseif $arcologies[0].FSSupremacist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with $arcologies[0].FSSupremacistRace superiority. -<<elseif $arcologies[0].FSSupremacist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to $arcologies[0].FSSupremacistRace superiority. -<<elseif $arcologies[0].FSSupremacist != "unset">> - $arcologies[0].name is unconvinced of $arcologies[0].FSSupremacistRace superiority. -<</if>> - -<<if $arcologies[0].FSSubjugationist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly in the inferiority of $arcologies[0].FSSubjugationistRace people. -<<elseif $arcologies[0].FSSubjugationist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with the inferiority of $arcologies[0].FSSubjugationistRace people. -<<elseif $arcologies[0].FSSubjugationist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the inferiority of $arcologies[0].FSSubjugationistRace people. -<<elseif $arcologies[0].FSSubjugationist != "unset">> - $arcologies[0].name is unconvinced of the inferiority of $arcologies[0].FSSubjugationistRace people. -<</if>> -<<if $arcologies[0].FSRepopulationFocus >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that all women should be pregnant. -<<elseif $arcologies[0].FSRepopulationFocus >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly that all women should be pregnant. -<<elseif $arcologies[0].FSRepopulationFocus >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the idea that all women should be pregnant. -<<elseif $arcologies[0].FSRepopulationFocus != "unset">> - $arcologies[0].name is unconvinced that all women should be pregnant. -<</if>> - -<<if $arcologies[0].FSRestart >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that only the elite should reproduce. -<<elseif $arcologies[0].FSRestart >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly that only the elite should reproduce. -<<elseif $arcologies[0].FSRestart >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the idea only the elite should reproduce. -<<elseif $arcologies[0].FSRestart != "unset">> - $arcologies[0].name is unconvinced that only the elite should reproduce. -<</if>> - -<<if $arcologies[0].FSIntellectualDependency >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that all slaves should be mentally dependant on their owner. -<<elseif $arcologies[0].FSIntellectualDependency >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly that all slaves should be bimbos. -<<elseif $arcologies[0].FSIntellectualDependency >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the idea that slaves should be dumb and horny. -<<elseif $arcologies[0].FSIntellectualDependency != "unset">> - $arcologies[0].name is unconvinced that all slaves should be morons. -<</if>> - -<<if $arcologies[0].FSSlaveProfessionalism >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that slaves should be masters of the sexual arts. -<<elseif $arcologies[0].FSSlaveProfessionalism >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with slavery as a profession. -<<elseif $arcologies[0].FSSlaveProfessionalism >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the notion of slavery as a profession. -<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">> - $arcologies[0].name is unconvinced that slaves should be highly intelligent. -<</if>> - -<<if $arcologies[0].FSGenderRadicalist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly in the need to redefine gender around power. -<<elseif $arcologies[0].FSGenderRadicalist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with the need to redefine gender around power. -<<elseif $arcologies[0].FSGenderRadicalist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the need to redefine gender around power. -<<elseif $arcologies[0].FSGenderRadicalist != "unset">> - $arcologies[0].name is unconvinced of the need to redefine gender around power. -<</if>> - -<<if $arcologies[0].FSGenderFundamentalist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly in the need to preserve traditional gender roles. -<<elseif $arcologies[0].FSGenderFundamentalist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with the need to preserve traditional gender roles. -<<elseif $arcologies[0].FSGenderFundamentalist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the need to preserve traditional gender roles. -<<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - $arcologies[0].name is unconvinced of the need to preserve traditional gender roles. -<</if>> - -<<if $arcologies[0].FSPaternalist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly in the vision of a well-bred race of slaves. -<<elseif $arcologies[0].FSPaternalist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with the vision of a well-bred race of slaves. -<<elseif $arcologies[0].FSPaternalist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the vision of a well-bred race of slaves. -<<elseif $arcologies[0].FSPaternalist != "unset">> - $arcologies[0].name is unconvinced of the vision of a well-bred race of slaves. -<</if>> - -<<if $arcologies[0].FSDegradationist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that slaves are not human and should be thoroughly degraded. -<<elseif $arcologies[0].FSDegradationist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with the idea that slaves are not human and should be thoroughly degraded. -<<elseif $arcologies[0].FSDegradationist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the proposition that slaves are not human and should be thoroughly degraded. -<<elseif $arcologies[0].FSDegradationist != "unset">> - $arcologies[0].name is unconvinced that slaves are not human and should be thoroughly degraded. -<</if>> - -<<if $arcologies[0].FSBodyPurist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly in the unattractive nature of implants. -<<elseif $arcologies[0].FSBodyPurist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with the unattractive nature of implants. -<<elseif $arcologies[0].FSBodyPurist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the unattractive nature of implants. -<<elseif $arcologies[0].FSBodyPurist != "unset">> - $arcologies[0].name is unconvinced of the unattractive nature of implants. -<</if>> - -<<if $arcologies[0].FSTransformationFetishist >= $FSLockinLevel>> - $arcologies[0].name passionately fetishizes implants. -<<elseif $arcologies[0].FSTransformationFetishist >= $FSLockinLevel*0.6>> - $arcologies[0].name strongly fetishizes implants. -<<elseif $arcologies[0].FSTransformationFetishist >= $FSLockinLevel*0.3>> - $arcologies[0].name fetishizes implants. -<<elseif $arcologies[0].FSTransformationFetishist != "unset">> - $arcologies[0].name is beginning to fetishize implants. -<</if>> - -<<if $arcologies[0].FSMaturityPreferentialist >= $FSLockinLevel>> - $arcologies[0].name is passionately enthusiastic for older ladies. -<<elseif $arcologies[0].FSMaturityPreferentialist >= $FSLockinLevel*0.6>> - $arcologies[0].name is very enthusiastic for older ladies. -<<elseif $arcologies[0].FSMaturityPreferentialist >= $FSLockinLevel*0.3>> - $arcologies[0].name is enthusiastic for older ladies. -<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> - $arcologies[0].name is beginning to be enthusiastic for older ladies. -<</if>> - -<<if $arcologies[0].FSYouthPreferentialist >= $FSLockinLevel>> - $arcologies[0].name is passionately enthusiastic for young women. -<<elseif $arcologies[0].FSYouthPreferentialist >= $FSLockinLevel*0.6>> - $arcologies[0].name is very enthusiastic for young women. -<<elseif $arcologies[0].FSYouthPreferentialist >= $FSLockinLevel*0.3>> - $arcologies[0].name is enthusiastic for young women. -<<elseif $arcologies[0].FSYouthPreferentialist != "unset">> - $arcologies[0].name is beginning to be enthusiastic for young women. -<</if>> - -<<if $arcologies[0].FSPetiteAdmiration >= $FSLockinLevel>> - $arcologies[0].name is passionately enthusiastic for short slaves. -<<elseif $arcologies[0].FSPetiteAdmiration >= $FSLockinLevel*0.6>> - $arcologies[0].name is very enthusiastic for short slaves. -<<elseif $arcologies[0].FSPetiteAdmiration >= $FSLockinLevel*0.3>> - $arcologies[0].name is enthusiastic for short slaves. -<<elseif $arcologies[0].FSPetiteAdmiration != "unset">> - $arcologies[0].name is beginning to be enthusiastic for short slaves. -<</if>> - -<<if $arcologies[0].FSStatuesqueGlorification >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that the tall are superior. -<<elseif $arcologies[0].FSStatuesqueGlorification >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with the idea that the tall are superior. -<<elseif $arcologies[0].FSStatuesqueGlorification >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the idea that the tall are superior. -<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">> - $arcologies[0].name is unconvinced that the tall are superior. -<</if>> - -<<if $arcologies[0].FSSlimnessEnthusiast >= $FSLockinLevel>> - $arcologies[0].name is passionately enthusiastic about slim slaves with girlish figures. -<<elseif $arcologies[0].FSSlimnessEnthusiast >= $FSLockinLevel*0.6>> - $arcologies[0].name is very enthusiastic about slim slaves with girlish figures. -<<elseif $arcologies[0].FSSlimnessEnthusiast >= $FSLockinLevel*0.3>> - $arcologies[0].name is enthusiastic about slim slaves with girlish figures. -<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> - $arcologies[0].name is beginning to be enthusiastic about slim slaves with girlish figures. -<</if>> - -<<if $arcologies[0].FSAssetExpansionist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that all tits and asses should be bigger. -<<elseif $arcologies[0].FSAssetExpansionist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with the idea that all tits and asses should be bigger. -<<elseif $arcologies[0].FSAssetExpansionist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the idea that all tits and asses should be bigger. -<<elseif $arcologies[0].FSAssetExpansionist != "unset">> - $arcologies[0].name is unconvinced that all tits and asses should be bigger. -<</if>> - -<<if $arcologies[0].FSPastoralist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that slaves should be milked. -<<elseif $arcologies[0].FSPastoralist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with the idea that slaves should be milked. -<<elseif $arcologies[0].FSPastoralist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the idea that slaves should be milked. -<<elseif $arcologies[0].FSPastoralist != "unset">> - $arcologies[0].name is unconvinced that slaves should be milked. -<</if>> - -<<if $arcologies[0].FSPhysicalIdealist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that all slaves should be tall and strong. -<<elseif $arcologies[0].FSPhysicalIdealist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with the idea that all slaves should be tall and strong. -<<elseif $arcologies[0].FSPhysicalIdealist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the idea that all slaves should be tall and strong. -<<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - $arcologies[0].name is unconvinced that all slaves should be tall and strong. -<</if>> - -<<if $arcologies[0].FSHedonisticDecadence >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that all slaves should be soft and laid-back. -<<elseif $arcologies[0].FSHedonisticDecadence >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with the idea that all slaves should be soft and laid-back. -<<elseif $arcologies[0].FSHedonisticDecadence >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the idea that all slaves should be soft and laid-back. -<<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - $arcologies[0].name is unconvinced that all slaves should be soft and laid-back. -<</if>> - -<<if $arcologies[0].FSChattelReligionist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly in a version of religion that emphasizes slaveholding traditions. -<<elseif $arcologies[0].FSChattelReligionist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with a version of religion that emphasizes slaveholding traditions. -<<elseif $arcologies[0].FSChattelReligionist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to a version of religion that emphasizes slaveholding traditions. -<<elseif $arcologies[0].FSChattelReligionist != "unset">> - $arcologies[0].name is unconvinced of a version of religion that emphasizes slaveholding traditions. -<</if>> - -<<if $arcologies[0].FSNull >= $FSLockinLevel>> - $arcologies[0].name is committed to affording its citizens absolute cultural freedom. -<<elseif $arcologies[0].FSNull >= $FSLockinLevel*0.75>> - $arcologies[0].name is committed to affording its citizens great cultural freedom. -<<elseif $arcologies[0].FSNull >= $FSLockinLevel*0.5>> - $arcologies[0].name is committed to affording its citizens considerable cultural freedom. -<<elseif $arcologies[0].FSNull != "unset">> - $arcologies[0].name is committed to affording its citizens basic cultural freedom. -<</if>> - -<<if $arcologies[0].FSRomanRevivalist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that it is the new Rome. -<<elseif $arcologies[0].FSRomanRevivalist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with your project to build the new Rome. -<<elseif $arcologies[0].FSRomanRevivalist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to your project to build the new Rome. -<<elseif $arcologies[0].FSRomanRevivalist != "unset">> - $arcologies[0].name is unconvinced of the wisdom of your project to build the new Rome. -<</if>> - -<<if $arcologies[0].FSNeoImperialist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that your arcology is truly a new Imperial Society. -<<elseif $arcologies[0].FSNeoImperialist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with your project to build a new Imperial Society. -<<elseif $arcologies[0].FSNeoImperialist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to your project to build a new Imperial Society. -<<elseif $arcologies[0].FSNeoImperialist != "unset">> - $arcologies[0].name is unconvinced of the wisdom of your project to build a new Imperial Society. -<</if>> - -<<if $arcologies[0].FSAztecRevivalist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that it is the new Aztec Empire. -<<elseif $arcologies[0].FSAztecRevivalist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with your project to build the new Aztec Empire. -<<elseif $arcologies[0].FSAztecRevivalist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to your project to build the new Aztec Empire. -<<elseif $arcologies[0].FSAztecRevivalist != "unset">> - $arcologies[0].name is unconvinced of the wisdom of your project to build the new Aztec Empire. -<</if>> - -<<if $arcologies[0].FSEgyptianRevivalist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that it is the land of the Pharaohs, reborn. -<<elseif $arcologies[0].FSEgyptianRevivalist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with your project to build a new land of the Pharaohs. -<<elseif $arcologies[0].FSEgyptianRevivalist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to your project to build a new land of the Pharaohs. -<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - $arcologies[0].name is unconvinced of the wisdom of your project to build a new land of the Pharaohs. -<</if>> - -<<if $arcologies[0].FSEdoRevivalist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that it is the land of the Shogun, reborn. -<<elseif $arcologies[0].FSEdoRevivalist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with your project to build a new Edo Japan. -<<elseif $arcologies[0].FSEdoRevivalist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to your project to build a new Edo Japan. -<<elseif $arcologies[0].FSEdoRevivalist != "unset">> - $arcologies[0].name is unconvinced of the wisdom of your project to build a new Edo Japan. -<</if>> - -<<if $arcologies[0].FSArabianRevivalist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that it is ancient Baghdad reborn. -<<elseif $arcologies[0].FSArabianRevivalist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with your project to build a new Sultanate. -<<elseif $arcologies[0].FSArabianRevivalist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to your project to build a new Sultanate. -<<elseif $arcologies[0].FSArabianRevivalist != "unset">> - $arcologies[0].name is unconvinced of the wisdom of your project to build a new Sultanate. -<</if>> - -<<if $arcologies[0].FSChineseRevivalist >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that possesses the Mandate of Heaven. -<<elseif $arcologies[0].FSChineseRevivalist >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly with your pursuit of the Mandate of Heaven. -<<elseif $arcologies[0].FSChineseRevivalist >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to your pursuit of the Mandate of Heaven. -<<elseif $arcologies[0].FSChineseRevivalist != "unset">> - $arcologies[0].name is unconvinced of the wisdom of your pursuit of the Mandate of Heaven. -<</if>> You have unlocked <span class="note"> - <<= num($FSGotRepCredits, true)>> - of <<= num($FSCreditCount, true)>> + <<= num($FSGotRepCredits, true)>> + of <<= num($FSCreditCount, true)>> </span> possible societal customizations.