Skip to content
Snippets Groups Projects
Commit 28cddb6b authored by lowercasedonkey's avatar lowercasedonkey
Browse files

fix classes

parent a9fd7575
No related branches found
No related tags found
No related merge requests found
...@@ -69,20 +69,23 @@ globalThis.brothelReport = function() { ...@@ -69,20 +69,23 @@ globalThis.brothelReport = function() {
r.push(`As your loving ${wife}, ${he} does ${his} best to attract attention to your brothel.`); r.push(`As your loving ${wife}, ${he} does ${his} best to attract attention to your brothel.`);
} }
if (FLsFetish === 1) { if (FLsFetish === 1) {
r.push(`${He} isn't above sampling the merchandise ${himself}; before long it's obvious to ${his} girls that ${he} <span class="fetish-gain">really likes fucking them.</span>`); r.push(`${He} isn't above sampling the merchandise ${himself}; before long it's obvious to ${his} girls that ${he}`);
r.push(App.UI.DOM.makeElement("span", `really likes fucking them.`, "fetish-gain"));
} else if ((FLsFetish === 2)) { } else if ((FLsFetish === 2)) {
r.push(`${He}'s careful that all of the whores under ${his} supervision are all warmed up and ready to get fucked every morning, and ${he} <span class="fetish inc">becomes more dominant.</span>`); r.push(`${He}'s careful that all of the whores under ${his} supervision are all warmed up and ready to get fucked every morning, and ${he}`);
r.push(App.UI.DOM.makeElement("span", `really likes fucking them.`, ["fetish", "inc"]));
} }
const improve = App.UI.DOM.makeElement("span", "improve", ["cash", "inc"]);
if (S.Madam.skill.whoring <= 10) { if (S.Madam.skill.whoring <= 10) {
r.push(`Though ${S.Madam.slaveName} does ${his} best to manage the brothel, with ${his} lack of skill ${he} can do little.`); r.push(`Though ${S.Madam.slaveName} does ${his} best to manage the brothel, with ${his} lack of skill ${he} can do little.`);
} else if ((S.Madam.skill.whoring <= 30)) { } else if ((S.Madam.skill.whoring <= 30)) {
r.push(`${S.Madam.slaveName}'s basic skills marginally <span class="cash inc">improve</span> business at ${V.brothelName}.`); r.push(`${S.Madam.slaveName}'s basic skills marginally`, improve, `business at ${V.brothelName}.`);
} else if ((S.Madam.skill.whoring <= 60)) { } else if ((S.Madam.skill.whoring <= 60)) {
r.push(`${S.Madam.slaveName}'s skills <span class="cash inc">improve</span> business at ${V.brothelName}.`); r.push(`${S.Madam.slaveName}'s skills`, improve, `business at ${V.brothelName}.`);
} else if ((S.Madam.skill.whoring < 100)) { } else if ((S.Madam.skill.whoring < 100)) {
r.push(`${S.Madam.slaveName}'s skills greatly <span class="cash inc">improve</span> business at ${V.brothelName}.`); r.push(`${S.Madam.slaveName}'s skills greatly`, improve, `business at ${V.brothelName}.`);
} else { } else {
r.push(`${S.Madam.slaveName}'s mastery immensely <span class="cash inc">improves</span> business at ${V.brothelName}.`); r.push(`${S.Madam.slaveName}'s mastery immensely`, improve, `business at ${V.brothelName}.`);
} }
if (S.Madam.actualAge > 35) { if (S.Madam.actualAge > 35) {
r.push(`${His} age and experience also contribute.`); r.push(`${His} age and experience also contribute.`);
...@@ -378,10 +381,24 @@ globalThis.brothelReport = function() { ...@@ -378,10 +381,24 @@ globalThis.brothelReport = function() {
b.totalExpenses = b.whoreCosts + b.adsCosts + b.maintenance; b.totalExpenses = b.whoreCosts + b.adsCosts + b.maintenance;
b.profit = b.totalIncome - b.totalExpenses; b.profit = b.totalIncome - b.totalExpenses;
el.append(`${brothelNameCaps} makes you <span class="cash inc"> ${cashFormat(profits)}</span> this week.`); App.Events.addNode(
el,
[
`${brothelNameCaps} makes you`,
App.UI.DOM.makeElement("span", cashFormat(profits), ["cash", "inc"]),
`this week.`
]
);
el.append();
if (V.brothelDecoration !== "standard") { if (V.brothelDecoration !== "standard") {
App.UI.DOM.appendNewElement("p", el, `${brothelNameCaps}'s customers enjoyed <span class="reputation inc">fucking whores in ${V.brothelDecoration} surroundings.</span>`); App.Events.addParagraph(
el,
[
`${brothelNameCaps}'s customers enjoyed`,
App.UI.DOM.makeElement("span", `fucking whores in ${V.brothelDecoration} surroundings.`, ["reputation", "inc"])
]
);
} }
// Brothel stats // Brothel stats
......
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