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

possible slave interact to pure dom

parent a80de30c
No related branches found
No related tags found
1 merge request!8522Convert all possible passages to pure JS
new App.DomPassage("Slave Interact",
() => {
V.nextButton = "Confirm changes";
V.nextLink = "Main";
return App.UI.SlaveInteract.mainPage(getSlave(V.AS));
}
);
new App.DomPassage("BeastFucked", () => App.Interact.fAnimal(getSlave(V.AS), V.animalType));
new App.DomPassage("SlaveOnSlaveFeeding",
() => {
V.nextButton = "Back";
V.nextLink = "Slave Interact";
return App.UI.SlaveInteract.slaveOnSlaveFeedingSelection(getSlave(V.AS));
}
);
new App.DomPassage("KillSlave", () => App.UI.SlaveInteract.killSlave(getSlave(V.AS)));
:: KillSlave [nobr]
<<includeDOM App.UI.SlaveInteract.killSlave(getSlave($AS))>>
:: SlaveOnSlaveFeeding [nobr]
<<set $nextButton = "Back", $nextLink = "Slave Interact">>
<<includeDOM App.UI.SlaveInteract.slaveOnSlaveFeedingSelection(getSlave($AS))>>
:: BeastFucked [nobr]
<<includeDOM App.Interact.fAnimal(getSlave($AS), $animalType)>>
:: Slave Interact [nobr jump-from-safe]
<<set $nextButton = "Confirm changes", $nextLink = "Main">>
<<includeDOM App.UI.SlaveInteract.mainPage(getSlave(V.AS))>>
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