Skip to content
Snippets Groups Projects
Commit 5f0408e1 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

more marketName to JS

parent 6384b317
No related branches found
No related tags found
1 merge request!8083Move <<marketName>> and co to JS
...@@ -170,3 +170,60 @@ App.Markets.GlobalVariable = function() { ...@@ -170,3 +170,60 @@ App.Markets.GlobalVariable = function() {
this.numArcology = 0; this.numArcology = 0;
return this; return this;
}; };
/**
* User facing names for the markets
* @param {*} market
* @param {*} arcIndex
*/
App.Markets.marketName = function(market = "kidnappers", arcIndex = 1) {
switch (market) {
case "corporate":
return `your corporation`;
case "neighbor":
return `${V.arcologies[arcIndex].name}`;
case "kidnappers":
return `the Kidnappers' Market`;
case "indentures":
return `the Indentures Market`;
case "hunters":
return `the Runaway Hunters' Market`;
case "raiders":
return `the Raiders' Market`;
case "underage raiders":
return `the Raiders' Black Market`;
case "heap":
return `the Flesh Heap as alive as when you purchased them.`;
case "wetware":
return `the Wetware CPU market`;
case "trainers":
return `the Trainers' Market`;
case "TSS":
return `The Slavegirl School`;
case "TUO":
return `The Utopian Orphanage`;
case "GRI":
return `Growth Research Institute`;
case "SCP":
return `St. Claver Preparatory`;
case "LDE":
return `L'école des Enculées`;
case "TGA":
return `The Gymnasium-Academy`;
case "TCR":
return `The Cattle Ranch`;
case "TFS":
return `The Futanari Sisters`;
case "HA":
return `The Hippolyta Academy`;
case "NUL":
return `Nueva Universidad de Libertad`;
case "low tier criminals":
case "gangs and smugglers":
case "white collar":
case "military prison":
return `the prisoner sale`;
default:
return `Someone messed up.${market} is not known.`;
}
};
...@@ -12,13 +12,13 @@ ...@@ -12,13 +12,13 @@
/* No message to give */ /* No message to give */
<<case "multi">> <<case "multi">>
<<if $market.newSlaves.length > 1>> <<if $market.newSlaves.length > 1>>
Your selection of $market.newSlaves.length slaves arrives from <<MarketNamePeriod $market.slaveMarket $market.numArcology>> Your selection of $market.newSlaves.length slaves arrives from <<= App.Markets.marketName($market.slaveMarket, $market.numArcology)>>.
<<else>> <<else>>
Your new slave from <<MarketName $market.slaveMarket $market.numArcology>> has arrived. Your new slave from <<= App.Markets.marketName($market.slaveMarket, $market.numArcology)>> has arrived.
<</if>> <</if>>
<<case "bulk">> <<case "bulk">>
Your delivery of $market.newSlaves.length slaves arrives from <<MarketNamePeriod $market.slaveMarket $market.numArcology>> Your delivery of $market.newSlaves.length slaves arrives from <<= App.Markets.marketName($market.slaveMarket, $market.numArcology)>>.
<<if $market.newSlaves.length != $market.numSlaves>> <<if $market.newSlaves.length != $market.numSlaves>>
You were going to order $market.numSlaves, but $assistant.name lowered it on financial grounds. You were going to order $market.numSlaves, but $assistant.name lowered it on financial grounds.
<</if>> <</if>>
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
You spent @@.yellowgreen;<<print cashFormat($spent)>>@@ on your new slaves.<br><br> You spent @@.yellowgreen;<<print cashFormat($spent)>>@@ on your new slaves.<br><br>
<<case "inStock">> <<case "inStock">>
You clear out <<MarketName $market.slaveMarket $market.numArcology>> of its stock of $market.newSlaves.length slaves. You clear out <<= App.Markets.marketName($market.slaveMarket, $market.numArcology)>> of its stock of $market.newSlaves.length slaves.
<<if $market.slaveMarket == "TFS">> <<if $market.slaveMarket == "TFS">>
/* Put line about The Futanari Sisters discount & pricing */ /* Put line about The Futanari Sisters discount & pricing */
<<elseif $discount == 475>> <<elseif $discount == 475>>
......
/%
Call as <<MarketName 'market' ['arcology']>>
If $args[0] is undefined, will generate a kidnapper's market slave.
If $args[0] is "corporate" and $args[1] is undefined, will use neighboring arcology 1.
%/
<<widget MarketName>>
<<if $args[0]>>
<<set _market = $args[0]>>
<<else>>
<<set _market = "kidnappers">>
<</if>>
<<switch _market>>
<<case "corporate">>
your corporation
<<case "neighbor">>
<<if $args[1]>>
<<print $arcologies[$args[1]].name>>
<<else>>
<<print $arcologies[1].name>>
<</if>>
<<case "kidnappers">>
the Kidnappers' Market
<<case "indentures">>
the Indentures Market
<<case "hunters">>
the Runaway Hunters' Market
<<case "raiders">>
the Raiders' Market
<<case "underage raiders">>
the Raiders' Black Market
<<case "heap">>
the Flesh Heap as alive as when you purchased them.
<<case "wetware">>
the Wetware CPU market
<<case "trainers">>
the Trainers' Market
<<case "TSS">>
The Slavegirl School
<<case "TUO">>
The Utopian Orphanage
<<case "GRI">>
Growth Research Institute
<<case "SCP">>
St. Claver Preparatory
<<case "LDE">>
L'école des Enculées
<<case "TGA">>
The Gymnasium-Academy
<<case "TCR">>
The Cattle Ranch
<<case "TFS">>
The Futanari Sisters
<<case HA>>
The Hippolyta Academy
<<case NUL>>
Nueva Universidad de Libertad
<<case "low tier criminals" "gangs and smugglers" "white collar" "military prison">>
the prisoner sale
<<default>>
Someone messed up. _market is not known.
<</switch>>
<</widget>>
/%
Call as <<MarketNamePeriod 'market' ['arcology']>>
If $args[0] is undefined, will generate a kidnapper's market slave.
If $args[0] is "corporate" and $args[1] is undefined, will use neighboring arcology 1.
%/
<<widget MarketNamePeriod>>
<<if $args[0]>>
<<set _market = $args[0]>>
<<else>>
<<set _market = "kidnappers">>
<</if>>
<<switch _market>>
<<case "corporate">>
your corporation.
<<case "neighbor">>
<<if $args[1]>>
<<print $arcologies[$args[1]].name>>.
<<else>>
<<print $arcologies[1].name>>.
<</if>>
<<case "kidnappers">>
the Kidnappers' Market.
<<case "indentures">>
the Indentures Market.
<<case "hunters">>
the Runaway Hunters' Market.
<<case "raiders">>
the Raiders' Market.
<<case "underage raiders">>
the Raiders' Black Market.
<<case "heap">>
the Flesh Heap, alive and not dead.
<<case "wetware">>
the Wetware CPU market.
<<case "trainers">>
the Trainers' Market.
<<case "TSS">>
The Slavegirl School.
<<case "TUO">>
The Utopian Orphanage.
<<case "GRI">>
Growth Research Institute.
<<case "SCP">>
St. Claver Preparatory.
<<case "LDE">>
L'école des Enculées.
<<case "TGA">>
The Gymnasium-Academy.
<<case "TCR">>
The Cattle Ranch.
<<case "TFS">>
The Futanari Sisters.
<<case HA>>
The Hippolyta Academy.
<<case NUL>>
Nueva Universidad de Libertad.
<<case "low tier criminals" "gangs and smugglers" "white collar" "military prison">>
the prisoner sale.
<<default>>
Someone messed up. _market is not known.
<</switch>>
<</widget>>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment