Scripts/status-quo.js |
this.author = "Ramen, based off of cim's work, book credit goes to Drew Wagar.";
this.copyright = "� 2011-2014 cim, 2015 Ramen and Drew Wagar ";
this.licence = "CC-BY-NC-SA 3.0";
this.version = "0.2.1";
this.name = "Library book: status-quo";
this.description = "Status Quo";
"use strict";
this.startUp = function() {
if (!worldScripts["Ships Library"]) {
log(this.name,"Ships Library OXP is not installed and this OXP requires it.");
return;
}
if (worldScripts["Ships Library"].startUp) {
// force initialisation
worldScripts["Ships Library"].startUp();
}
// first param: unique key for this book
// second param: title
// third param: contents list
worldScripts["Ships Library"]._registerBook("statusquo",expandMissionText("statusquo-title"),this._statusQuo());
}
this._statusQuo = function() {
return [
{level: 0, key: "statusquo-frontpage"},
{level: 0, key: "statusquo-license"},
{level: 0, key: "statusquo-contents-table"},
{level: 0, key: "statusquo-thanks"},
{level: 0, key: "statusquo-canyouread"},
{level: 0, key: "statusquo-prologue"},
{level: 0, key: "statusquo-ch1"},
{level: 0, key: "statusquo-ch2"},
{level: 0, key: "statusquo-ch3"},
{level: 0, key: "statusquo-ch4"},
{level: 0, key: "statusquo-ch5"},
{level: 0, key: "statusquo-ch6"},
{level: 0, key: "statusquo-ch7"},
{level: 0, key: "statusquo-ch8"},
{level: 0, key: "statusquo-ch9"},
{level: 0, key: "statusquo-epilogue"},
{level: 0, key: "statusquo-authornotes"},
{level: 0, key: "statusquo-authorabout"}
];
}
|