0
0
Fork 0
mirror of https://gitlab.com/Oreolek/salet-module.git synced 2024-07-02 23:05:02 +03:00
salet-module/test/tests/transitions.js

25 lines
590 B
JavaScript

salet.game_id = "3adc1bc5-2914-431a-8cd1-246a4b89ad7a";
salet.game_version = "1.0";
salet.autosave = false;
salet.autoload = false;
$(document).ready(function() {
salet.beginGame();
});
room("start", {
dsc: "This is a regular block.\n\n<div class='transient'>This is a transient block.</div>",
choices: "#tag",
tags: ["tag"],
clear: false,
optionText: "Next"
});
room("other", {
tags: ["tag"],
choices: "#tag",
clear: false,
optionText: "Next",
dsc: "You enter another room. This is a regular block.\n\n<div class='transient'>This is a transient block.</div>",
});