Skip to content
Snippets Groups Projects
managePassages.js 529 B
Newer Older
Arkerthan's avatar
Arkerthan committed
new App.DomPassage("Main",
	() => {
		V.nextButton = "END WEEK";
		V.nextLink = "End Week";
		V.encyclopedia = "How to Play";

		return App.MainView.full();
	}, ["jump-to-safe", "jump-from-safe"]
);

new App.DomPassage("Future Society", () => { return App.UI.fsPassage(); }, ["jump-to-safe", "jump-from-safe"]);
lowercasedonkey's avatar
lowercasedonkey committed

new App.DomPassage("Manage Penthouse",
	() => {
		V.nextButton = "Back";
lowercasedonkey's avatar
lowercasedonkey committed
		V.nextLink = "Main";
lowercasedonkey's avatar
lowercasedonkey committed
		V.encyclopedia = "What the Upgrades Do";
		return App.UI.managePenthouse();
	}, ["jump-to-safe", "jump-from-safe"]
);