diff --git a/src/SecExp/riotControlCenter.tw b/src/SecExp/riotControlCenter.tw
index 77c4d39aac530da445045d8bbc2ee0d233c5cfc7..36caeff0ea4c9bfb1852c8a38502a02dc247aa10 100644
--- a/src/SecExp/riotControlCenter.tw
+++ b/src/SecExp/riotControlCenter.tw
@@ -169,9 +169,9 @@ The riot control center opens its guarded doors to you. The great chamber inside
 <<if $advancedRiotEquip == 0>>
 	<<link "Develop advanced anti-riot equipment" "riotControlCenter">>
 		<<set $advancedRiotEquip = 1>>
-		<<run cashX(-30000, "capEx")>>
+		<<run cashX(forceNeg(30000 * $upgradeMultiplierTrade), "capEx")>>
 	<</link>>
-	<br>//Costs <<print cashFormat(30000)>>. Will allow the selection of advanced riot equipment in case of a rebellion, which will let your troops fight at full effectiveness while doing reduced collateral damage.//
+	<br>//Costs <<print cashFormat(30000 * $upgradeMultiplierTrade)>>. Will allow the selection of advanced riot equipment in case of a rebellion, which will let your troops fight at full effectiveness while doing reduced collateral damage.//
 <<else>>
 	You developed advanced riot equipment, which allows your troops to fight within the confines of your arcology without the fear of doing major collateral damage.
 <</if>>
diff --git a/src/SecExp/secBarracks.tw b/src/SecExp/secBarracks.tw
index e6d51d05669f06bd5b899032be3f1725f8f44d4f..fb4d325c9ed1c1110be82b1d82ae2acc16f4b92b 100644
--- a/src/SecExp/secBarracks.tw
+++ b/src/SecExp/secBarracks.tw
@@ -49,12 +49,12 @@ While this a sore sight for many citizens of $arcologies[0].name, the barracks s
 <br>
 <<if $secBarracksUpgrades.size < 5>>
 	<<link "Increase the size of the barracks" "secBarracks">>
-		<<run cashX(forceNeg(5000 * ($secBarracksUpgrades.size + 1)), "capEx")>>
+		<<run cashX(forceNeg(Math.trunc((5000 * ($secBarracksUpgrades.size + 1))*$upgradeMultiplierArcology)), "capEx")>>
 		<<set $secBarracksUpgrades.size += 1>>
 		<<set $maxUnits += 2>>
 		<<set $secBarracksUpkeep += $upgradeUpkeep>>
 	<</link>>
-	<br>//Costs <<print cashFormat(5000 * ($secBarracksUpgrades.size + 1))>> and will increase the maximum number of units by 2.//
+	<br>//Costs <<print cashFormat((5000 * ($secBarracksUpgrades.size + 1))*$upgradeMultiplierArcology)>> and will increase the maximum number of units by 2.//
 <<else>>
 	You've expanded the barracks to their maximum.
 <</if>>
@@ -62,31 +62,31 @@ While this a sore sight for many citizens of $arcologies[0].name, the barracks s
 <<if $secBarracksUpgrades.luxury == 0>>
 	<<link "Increase the quality of life of your soldiers by installing high tech furniture and appliances." "secBarracks">>
 		<<set $secBarracksUpgrades.luxury += 1>>
-		<<run cashX(-5000, "capEx")>>
+		<<run cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierTrade)), "capEx")>>
 		<<set $secBarracksUpkeep += $upgradeUpkeep>>
 	<</link>>
-	<br>//Costs <<print cashFormat(5000)>> and will provide a 5% bonus to morale.//
+	<br>//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierTrade))>> and will provide a 5% bonus to morale.//
 <<elseif $secBarracksUpgrades.luxury == 1>>
 	<<link "Further increase the quality of life of your soldiers by installing advanced kitchen equipment and hiring skilled chefs." "secBarracks">>
 		<<set $secBarracksUpgrades.luxury += 1>>
-		<<run cashX(-10000, "capEx")>>
+		<<run cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierTrade)), "capEx")>>
 		<<set $secBarracksUpkeep += $upgradeUpkeep>>
 	<</link>>
-	<br>//Costs <<print cashFormat(10000)>> and will provide a 5% bonus to morale, for a total of +10%.//
+	<br>//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierTrade))>> and will provide a 5% bonus to morale, for a total of +10%.//
 <<elseif $secBarracksUpgrades.luxury == 2>>
 	<<link "Further increase the quality of life of your soldiers by providing high speed, free access to digital media" "secBarracks">>
 		<<set $secBarracksUpgrades.luxury += 1>>
-		<<run cashX(-10000, "capEx")>>
+		<<run cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierTrade)), "capEx")>>
 		<<set $secBarracksUpkeep += $upgradeUpkeep>>
 	<</link>>
-	<br>//Costs <<print cashFormat(10000)>> and will provide a 5% bonus to morale, for a total of +15%.//
+	<br>//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierTrade))>> and will provide a 5% bonus to morale, for a total of +15%.//
 <<elseif $secBarracksUpgrades.luxury == 3>>
 	<<link "Further increase the quality of life of your soldiers by adding and staffing an exclusive brothel to the structure" "secBarracks">>
 		<<set $secBarracksUpgrades.luxury += 1>>
-		<<run cashX(-15000, "capEx")>>
+		<<run cashX(forceNeg(Math.trunc(15000*$upgradeMultiplierArcology)), "capEx")>>
 		<<set $secBarracksUpkeep += $upgradeUpkeep>>
 	<</link>>
-	<br>//Costs <<print cashFormat(15000)>> and will provide a 5% bonus to morale, for a total of +20%.//
+	<br>//Costs <<print cashFormat(Math.trunc(15000*$upgradeMultiplierArcology))>> and will provide a 5% bonus to morale, for a total of +20%.//
 <<else>>
 	You've made life in your barracks as good as it can get.
 <</if>>
@@ -94,17 +94,17 @@ While this a sore sight for many citizens of $arcologies[0].name, the barracks s
 <<if $secBarracksUpgrades.training == 0>>
 	<<link "Add a training facility to the barracks" "secBarracks">>
 		<<set $secBarracksUpgrades.training += 1>>
-		<<run cashX(-10000, "capEx")>>
+		<<run cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierArcology)), "capEx")>>
 		<<set $secBarracksUpkeep += $upgradeUpkeep>>
 	<</link>>
-	<br>//Costs <<print cashFormat(10000)>> and will allow units to accumulate some experience each week.//
+	<br>//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>> and will allow units to accumulate some experience each week.//
 <<elseif $secBarracksUpgrades.training == 1>>
 	<<link "Improve the training facility with modern equipment and skilled personnel" "secBarracks">>
 		<<set $secBarracksUpgrades.training += 1>>
-		<<run cashX(-20000, "capEx")>>
+		<<run cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierTrade)), "capEx")>>
 		<<set $secBarracksUpkeep += $upgradeUpkeep>>
 	<</link>>
-	<br>//Costs <<print cashFormat(20000)>> and will allow units to accumulate experience each week.//
+	<br>//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierTrade))>> and will allow units to accumulate experience each week.//
 <<else>>
 	You have improved the training facility to the limit.
 <</if>>
@@ -112,17 +112,17 @@ While this a sore sight for many citizens of $arcologies[0].name, the barracks s
 <<if $secBarracksUpgrades.loyaltyMod == 0>>
 	<<link "Add an indoctrination facility to the barracks" "secBarracks">>
 		<<set $secBarracksUpgrades.loyaltyMod += 1>>
-		<<run cashX(-10000, "capEx")>>
+		<<run cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierArcology)), "capEx")>>
 		<<set $secBarracksUpkeep += $upgradeUpkeep>>
 	<</link>>
-	<br>//Costs <<print cashFormat(10000)>> and will slowly raise loyalty of all units//
+	<br>//Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>> and will slowly raise loyalty of all units//
 <<elseif $secBarracksUpgrades.loyaltyMod == 1>>
 	<<link "Improve the indoctrination facility with advanced equipment and skilled personnel" "secBarracks">>
 		<<set $secBarracksUpgrades.loyaltyMod += 1>>
-		<<run cashX(-20000, "capEx")>>
+		<<run cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierTrade)), "capEx")>>
 		<<set $secBarracksUpkeep += $upgradeUpkeep>>
 	<</link>>
-	<br>//Costs <<print cashFormat(20000)>> and will raise loyalty of all units faster.//
+	<br>//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierTrade))>> and will raise loyalty of all units faster.//
 <<else>>
 	You have improved the indoctrination facility to the limit.
 <</if>>
diff --git a/src/events/intro/initNationalities.tw b/src/events/intro/initNationalities.tw
index d5f0393c48ba6c0d6906816628f628d3de3cd20e..bab13f41a239af306a8cac36d1d8ffc3845a80ea 100644
--- a/src/events/intro/initNationalities.tw
+++ b/src/events/intro/initNationalities.tw
@@ -9,11 +9,6 @@
 
 <<run generatePlayerPronouns($PC)>>
 
-<<set $HackingSkillMultiplier = HackingSkillMultiplier()>>
-<<set $upgradeMultiplierArcology = 1>>
-<<set $upgradeMultiplierMedicine = upgradeMultiplierMedicine()>>
-<<set $upgradeMultiplierTrade = upgradeMultiplierTrade()>>
-
 <<if $PC.career == "wealth">>
 	<<set $trinkets.push("a collection of diplomas from expensive schools")>>
 	<<run cashX(10000, "personalBusiness")>>
@@ -249,6 +244,11 @@
 
 <<set $arcologies[0].childhoodFertilityInducedNCSResearch = 0>>
 
+<<set $HackingSkillMultiplier = HackingSkillMultiplier()>>
+<<set $upgradeMultiplierArcology = upgradeMultiplierArcology()>>
+<<set $upgradeMultiplierMedicine = upgradeMultiplierMedicine()>>
+<<set $upgradeMultiplierTrade = upgradeMultiplierTrade()>>
+
 /*Nationalities Setup*/
 
 <<unset $nationalitiescheck>> /* Removes unique nationalities array to avoid var bloat */
diff --git a/src/uncategorized/neighborInteract.tw b/src/uncategorized/neighborInteract.tw
index 6794342b509060946e2d44b6874807c2da75428f..f0ae674b296be48211d4b61e90275a40f71704c3 100644
--- a/src/uncategorized/neighborInteract.tw
+++ b/src/uncategorized/neighborInteract.tw
@@ -364,8 +364,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of togas" "Neighbor Interact">>
 				<<set $clothesBoughtToga = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough togas.
@@ -384,8 +384,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of kimonos" "Neighbor Interact">>
 				<<set $clothesBoughtKimono = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough kimonos.
@@ -404,8 +404,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of silken harem garb" "Neighbor Interact">>
 				<<set $clothesBoughtHarem = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough silk.
@@ -424,8 +424,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of huipils" "Neighbor Interact">>
 				<<set $clothesBoughtHuipil = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough huipils.
@@ -444,8 +444,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of qipaos" "Neighbor Interact">>
 				<<set $clothesBoughtQipao = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough skimpy qipaos.
@@ -464,8 +464,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of Egyptian necklace replicas" "Neighbor Interact">>
 				<<set $clothesBoughtEgypt = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough replicas of Egyptian necklaces.
@@ -485,8 +485,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of conservative clothing" "Neighbor Interact">>
 				<<set $clothesBoughtConservative = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough modest clothing.
@@ -505,8 +505,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of binding chains" "Neighbor Interact">>
 				<<set $clothesBoughtChains = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough chains.
@@ -526,8 +526,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of bunny suits" "Neighbor Interact">>
 				<<set $clothesBoughtBunny = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough bunny suits and bowties.
@@ -547,8 +547,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of body oil" "Neighbor Interact">>
 				<<set $clothesBoughtOil = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough body oil.
@@ -567,8 +567,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of stretch pants and crop-tops" "Neighbor Interact">>
 				<<set $clothesBoughtLazyClothes = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough elastic waistbands and tight tops.
@@ -588,8 +588,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of chattel religionist habits" "Neighbor Interact">>
 				<<set $clothesBoughtHabit = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough chattel religionist habits.
@@ -609,8 +609,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of western clothing" "Neighbor Interact">>
 				<<set $clothesBoughtWestern = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough rancher outfits.
@@ -630,8 +630,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of maternity clothing" "Neighbor Interact">>
 				<<set $clothesBoughtMaternityDress = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough maternity dresses.
@@ -648,8 +648,8 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of maternity lingerie" "Neighbor Interact">>
 				<<set $clothesBoughtMaternityLingerie = 1>>
-				<<run cashX(forceNeg(Math.trunc(7500-_prices)), "capEx")>>
-			<</link>> //Will cost <<print cashFormat(Math.trunc(7500-_prices))>>//
+				<<run cashX(forceNeg(Math.trunc((7500-_prices)*$upgradeMultiplierTrade)), "capEx")>>
+			<</link>> //Will cost <<print cashFormat(Math.trunc((7500-_prices)*$upgradeMultiplierTrade))>>//
 		<</if>>
 	<<else>>
 		<br>You already have enough lingerie suited for pregnant women.
@@ -666,7 +666,7 @@ If $activeArcology.name has developed enough to begin exporting worthwhile goods
 		<<elseif $activeArcology.direction != $arcologies[0].embargoTarget>>
 			<br><<link "Purchase a shipment of empathy bellies" "Neighbor Interact">>
 				<<set $clothesBoughtBelly = 1>>
-				<<run cashX(forceNeg(Math.trunc(15000-(_prices*2))), "capEx")>>
+				<<run cashX(forceNeg(Math.trunc((15000-(_prices*2))*$upgradeMultiplierTrade)), "capEx")>>
 			<</link>> //Will cost <<print cashFormat(Math.trunc(15000-(_prices*2)))>>//
 		<</if>>
 	<<else>>
diff --git a/src/uncategorized/seIndependenceDay.tw b/src/uncategorized/seIndependenceDay.tw
index 141048e25368b8bbed9c8635205f5e68745b1398..b314e00284199f90d50240a7b11713f11cc92148 100644
--- a/src/uncategorized/seIndependenceDay.tw
+++ b/src/uncategorized/seIndependenceDay.tw
@@ -327,9 +327,9 @@ In the Free Cities, Independence Day falls on the day when the Free City achieve
 	<<replace "#result2">>
 	<br><br>Once darkness falls outside the arcology, a traditional fireworks display erupts from mortars mounted on your penthouse balconies. The noise and light @@.green;delights@@ your citizens, terrifies the arcology's stupider slaves, and serves a useful ancillary purpose in defense preparedness. The arcology's radar and laser sensors track the display, using it as an opportunity to calibrate the point defense systems on real targets. There is general agreement that this sort of thing should be a yearly tradition here, just like it was in some parts of the old world: old ideas aren't all bad.
 	<<run repX(5000, "event")>>
-	<<run cashX(-10000, "event")>>
+	<<run cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierTrade)), "event")>>
 	<</replace>>
-<</link>> //Costs @@.yellowgreen;<<print cashFormat(10000)>>@@// </span>
+<</link>> //Costs @@.yellowgreen;<<print cashFormat(Math.trunc(10000*$upgradeMultiplierTrade))>>@@// </span>
 
 <<if $SF.Toggle && $SF.Active >= 1>> <span id="result3">
 <br><<link "Host a parade">>