Skip to content
Snippets Groups Projects
Commit cce3d32b authored by Arkerthan's avatar Arkerthan
Browse files

Add comments to subdivide passage holder files

parent f27f950b
No related branches found
No related tags found
No related merge requests found
/* ### Scheduled Events ### */
new App.DomPassage("SE Burst", new App.DomPassage("SE Burst",
() => { () => {
V.nextButton = "Continue"; V.nextButton = "Continue";
...@@ -25,6 +26,12 @@ new App.DomPassage("SE Birth", ...@@ -25,6 +26,12 @@ new App.DomPassage("SE Birth",
} }
); );
new App.DomPassage("SE pit fight", () => App.Facilities.Pit.fight(V.pit.lethal));
new App.DomPassage("SE pc birthday", () => App.Events.pcBirthday.runEvent());
/* ### Non Random Events ### */
new App.DomPassage("Murder Attempt", () => { new App.DomPassage("Murder Attempt", () => {
if (V.event === "slave trade") { if (V.event === "slave trade") {
return App.Events.murderAttemptFollowup("slave", V.illegalDeals.slave.company, V.illegalDeals.slave.type); return App.Events.murderAttemptFollowup("slave", V.illegalDeals.slave.company, V.illegalDeals.slave.type);
...@@ -36,8 +43,4 @@ new App.DomPassage("Murder Attempt", () => { ...@@ -36,8 +43,4 @@ new App.DomPassage("Murder Attempt", () => {
return App.Events.murderAttempt(); return App.Events.murderAttempt();
} }
} }
); );
\ No newline at end of file
new App.DomPassage("SE pit fight", () => App.Facilities.Pit.fight(V.pit.lethal));
new App.DomPassage("SE pc birthday", () => App.Events.pcBirthday.runEvent());
/* ### Standard Facilities ### */
new App.DomPassage("Pit", () => { return App.Facilities.Pit.pit(); }, ["jump-to-safe", "jump-from-safe"]);
new App.DomPassage("Incubator", () => { return App.UI.incubator(); }, ["jump-to-safe", "jump-from-safe"]);
/* ### Slave Interact Facilities ### */
new App.DomPassage("Wardrobe", new App.DomPassage("Wardrobe",
() => { () => {
V.nextButton = "Back"; V.nextButton = "Back";
...@@ -7,8 +13,6 @@ new App.DomPassage("Wardrobe", ...@@ -7,8 +13,6 @@ new App.DomPassage("Wardrobe",
}, ["jump-to-safe", "jump-from-safe"] }, ["jump-to-safe", "jump-from-safe"]
); );
new App.DomPassage("Pit", () => { return App.Facilities.Pit.pit(); }, ["jump-to-safe", "jump-from-safe"]);
new App.DomPassage("Salon", new App.DomPassage("Salon",
() => { () => {
V.nextButton = "Confirm changes"; V.nextButton = "Confirm changes";
...@@ -29,8 +33,7 @@ new App.DomPassage("Body Modification", ...@@ -29,8 +33,7 @@ new App.DomPassage("Body Modification",
}, ["jump-to-safe", "jump-from-safe"] }, ["jump-to-safe", "jump-from-safe"]
); );
new App.DomPassage("Incubator", () => { return App.UI.incubator(); }, ["jump-to-safe", "jump-from-safe"]); /* ### Special Facilities ### */
new App.DomPassage("Agent Select", new App.DomPassage("Agent Select",
() => { () => {
V.nextButton = "Back"; V.nextButton = "Back";
......
/* ### Central Slave Interact ### */
new App.DomPassage("Slave Interact", new App.DomPassage("Slave Interact",
() => { () => {
V.nextButton = "Confirm changes"; V.nextButton = "Confirm changes";
...@@ -7,6 +8,7 @@ new App.DomPassage("Slave Interact", ...@@ -7,6 +8,7 @@ new App.DomPassage("Slave Interact",
} }
); );
/* ### Single Interaction ### */
new App.DomPassage("BeastFucked", () => App.Interact.fAnimal(getSlave(V.AS), V.animalType)); new App.DomPassage("BeastFucked", () => App.Interact.fAnimal(getSlave(V.AS), V.animalType));
new App.DomPassage("SlaveOnSlaveFeeding", new App.DomPassage("SlaveOnSlaveFeeding",
......
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