diff --git a/src/uncategorized/neighborsDevelopment.tw b/src/uncategorized/neighborsDevelopment.tw index b7efa53e72d63e8cb73dd861dd5de7a7906c26e3..d98fec636a29a29e988256a46fede98b94da5b79 100644 --- a/src/uncategorized/neighborsDevelopment.tw +++ b/src/uncategorized/neighborsDevelopment.tw @@ -891,7 +891,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh <<if $corpSpecBalls == -1>> It's an @@.lightgreen;excellent market@@ for your corporation's neutered slavegirls, improving sales and helping social progress. <<set $arcologies[$i].FSRestart += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <<elseif $corpSpecSexEd == 2>> It's a @@.lightgreen;good market@@ for your corporation's well trained toys, improving sales and helping social progress. <<set $arcologies[$i].FSRestart += 1>> @@ -1138,7 +1138,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh <<if $corpSpecIntelligence == 1>> It's an @@.lightgreen;excellent market@@ for your corporation's idiotic sluts, improving sales and helping social progress. <<set $arcologies[$i].FSIntellectualDependency += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <<elseif $corpSpecEducation == 0>> It's a @@.lightgreen;good market@@ for your corporation's uneducated slaves, improving sales and helping social progress. <<set $arcologies[$i].FSIntellectualDependency += 1>> @@ -1183,12 +1183,12 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh <<if $corpSpecIntelligence == 3>> It's an @@.lightgreen;excellent market@@ for your corporation's smarter captures, improving sales and helping social progress. <<set $arcologies[$i].FSSlaveProfessionalism += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <</if>> <<if $corpSpecEducation > 1>> It's a @@.lightgreen;good market@@ for your corporation's well educated ladies, improving sales and helping social progress. <<set $arcologies[$i].FSSlaveProfessionalism += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus, 'foreign')>> <<elseif $corpSpecEducation > 0>> It's a @@.lightgreen;good market@@ for your corporation's educated ladies, improving sales and helping social progress. <<set $arcologies[$i].FSSlaveProfessionalism += 1>> @@ -1290,7 +1290,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh <<elseif $corpSpecImplants == 2>> It's an @@.lightgreen;excellent market@@ for your corporation's absurdly implanted slaves, improving sales and helping social progress. <<set $arcologies[$i].FSTransformationFetishist += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <</if>> <</if>> <</if>> @@ -1421,7 +1421,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh <<if $corpSpecHeight == 1>> It's an @@.lightgreen;excellent market@@ for your corporation's minuscule slaves, improving sales and helping social progress. <<set $arcologies[$i].FSPetiteAdmiration += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <<elseif $corpSpecHeight == 2>> It's a @@.lightgreen;good market@@ for your corporation's shorter captures, improving sales and helping social progress. <<set $arcologies[$i].FSPetiteAdmiration += 1>> @@ -1465,7 +1465,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh <<if $corpSpecHeight == 5>> It's an @@.lightgreen;excellent market@@ for your corporation's gigantic slaves, improving sales and helping social progress. <<set $arcologies[$i].FSStatuesqueGlorification += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <<elseif $corpSpecHeight == 4>> It's a @@.lightgreen;good market@@ for your corporation's taller captures, improving sales and helping social progress. <<set $arcologies[$i].FSStatuesqueGlorification += 1>> @@ -1555,7 +1555,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh <<if $corpSPecInjection == 4>> It's an @@.lightgreen;excellent market@@ for your corporation's world-class tits and ass, improving sales and helping social progress. <<set $arcologies[$i].FSAssetExpansionist += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <<elseif $corpSpecInjection == 5>> It's a @@.lightgreen;good market@@ for your corporation's hugely endowed cows, improving sales and helping social progress. <<set $arcologies[$i].FSAssetExpansionist += 1>> @@ -1602,11 +1602,11 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh <<if $corpSpecInjection == 5>> It's an @@.lightgreen;excellent market@@ for your corporation's world-class milk producers, improving sales and helping social progress. <<set $arcologies[$i].FSPastoralist += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <<elseif $corpSpecMilk > 0>> It's an @@.lightgreen;excellent market@@ for your corporation's world-class milk producers, improving sales and helping social progress. <<set $arcologies[$i].FSPastoralist += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <</if>> <</if>> <</if>> @@ -1646,7 +1646,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh <<if $corpSpecInjection == 5>> It's an @@.lightgreen;excellent market@@ for your corporation's world-class cum producers, improving sales and helping social progress. <<set $arcologies[$i].FSCummunism += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <<elseif $corpSpecHormones == 2>> It's a @@.lightgreen;good market@@ for your corporation's masculinized slaves, improving sales and helping social progress. <<set $arcologies[$i].FSCummunism += 1>> @@ -1696,7 +1696,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh <<if $corpSpecMuscle == 5 >> It's an @@.lightgreen;excellent market@@ for your corporation's ripped chicks, improving sales and helping social progress. <<set $arcologies[$i].FSPhysicalIdealist += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <<elseif $corpSpecMuscle == 4>> It's a @@.lightgreen;good market@@ for your corporation's toned ladies, improving sales and helping social progress. <<set $arcologies[$i].FSPhysicalIdealist += 1>> @@ -1745,7 +1745,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh <<if $corpSpecTrust > 3>> It's an @@.lightgreen;excellent market@@ for your corporation's well kept, happy slaves, improving sales and helping social progress. <<set $arcologies[$i].FSHedonisticDecadence += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <<elseif $corpSpecSexEd == 2>> It's a @@.lightgreen;good market@@ for your corporation's skilled slaves, improving sales and helping social progress. <<set $arcologies[$i].FSHedonisticDecadence += 1>> @@ -1827,7 +1827,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh <<if $corpSpecSexEd == 2>> It's an @@.lightgreen;excellent market@@ for your corporation's holy sex slaves, improving sales and helping social progress. <<set $arcologies[$i].FSChattelReligionist += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <<elseif $corpSpecSexEd == 1>> It's a @@.lightgreen;good market@@ for your corporation's aspiring sexual acolytes, improving sales and helping social progress. <<set $arcologies[$i].FSChattelReligionist += 1>> @@ -2093,7 +2093,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh <<if $corpSpecDevotion == 5>> It's an @@.lightgreen;excellent market@@ for your corporation's harem-ready devotees, improving sales and helping social progress. <<set $arcologies[$i].FSArabianRevivalist += 2>> - <<set $corpNeighborBonus += _corpBonus*2>> + <<run App.Corporate.earnRevenue(_corpBonus*2, 'foreign')>> <<elseif $corpSpecDevotion == 4>> It's a @@.lightgreen;good market@@ for your corporation's properly broken girls, improving sales and helping social progress. <<set $arcologies[$i].FSArabianRevivalist += 1>>