diff --git a/src/markets/specialSlave.js b/src/markets/specialSlave.js
index f3bc54bda6b4ad1a6357c2fbe8e4cdd23c8a6f7c..c211ea84cf36417d8c6e964858d10f101b0b62c6 100644
--- a/src/markets/specialSlave.js
+++ b/src/markets/specialSlave.js
@@ -75,6 +75,39 @@ App.Markets.specialSlave = function() {
 		}
 		App.UI.DOM.appendNewElement("p", el, App.UI.DOM.generateLinksStrip(linkArray));
 
+		if (V.cheatMode) {
+			let oneSlaveCost = (s) => { let cost = slaveCost(s); return cost + (10 * Math.trunc((cost / 10) * 2)); };
+			let allHeroSlaves = App.Utils.buildHeroArray().map((s) => { return {slave: App.Utils.getHeroSlave(s), cost: oneSlaveCost(s)}; });
+			let totalCost = allHeroSlaves.reduce((acc, s) => acc += s.cost, 0);
+
+			if (V.cash > totalCost) {
+				App.UI.DOM.appendNewElement(
+					"div",
+					el,
+					App.UI.DOM.link(
+						`Buy all of them for ${App.UI.DOM.cashFormat(totalCost)}`,
+						() => {
+							for (const hero of allHeroSlaves) {
+								cashX(forceNeg(hero.cost), "slaveTransfer", hero.slave);
+								newSlave(hero.slave);
+								V.heroSlavesPurchased.push(hero.slave.ID);
+								refresh();
+							}
+						}
+					)
+				);
+			} else {
+				App.UI.DOM.appendNewElement(
+					"div",
+					el,
+					App.UI.DOM.disabledLink(
+						`Buy all of them for ${App.UI.DOM.cashFormat(totalCost)}`,
+						[`Cannot afford`]
+					)
+				);
+			}
+		}
+
 		return el;
 
 		function refresh() {