Skip to content
Snippets Groups Projects
Commit fe236ccf authored by lowercasedonkey's avatar lowercasedonkey
Browse files

jsdoc

parent 2723c373
No related branches found
No related tags found
No related merge requests found
/** /**
* @typedef {object} PolicySelector * @typedef {object} BrandStyle
* @property {string} title The title of the policy as displayed in the UI, "Health Inspection SMR" * @property {string} displayName The way the brand is dispayed as a choice in the UI
* @property {string} [titleClass] The class to apply to the title: "lime" * @property {function(void):boolean} [requirements] Function to determine if a brand symbol can be used.
* @property {string} [activatedTitle] The title of the policy if the policy is active. Param "title" is used as a fallback.
* @property {string} text Text that describes the policy in detail. No initial cap, ends with punctuation.
* @property {string} [activatedText] Text that describes an active policy in detail. Uses param "text" as a fallback.
* @property {function(void):boolean} [requirements] Function to determine if a policy can be enabled.
* @property {function(void):void} [onImplementation] Beyond applying the policy itself and billing the player, are there other values to change? This allows a shortstack FS policy to revoke some generic tall policies, for example.
* @property {function(void):void} [onRepeal] same as onImplementation, but fires when a policy is repealed.
* @property {number|string} [enable] Value to enable a policy. Defaults to 1 if not defined.
* @property {object} [hide] Object controlling special hide settings that can hide parts of the policy if needed.
* @property {number} [hide.button] Hides the appeal/repeal button if 1
* @property {number} [hide.ifActivated] Hides the entire policy if the policy is applied. 1 to enable.
* @property {string} [note] Note that appears at the end of the policy display in italics to present further information. Starts with cap, no punctuation at end.
* @property {string} [activatedNote] Note that appears if policy is activated. Please note that unlike the other "activated" categories, "note" is only displayed on deactivated policies. There is no fallback.
*/ */
/** /**
* @typedef {object<string, PolicySelector[]>} PolicySelectorGroup * @typedef {object<string, BrandStyle[]>} BrandStyleList
* Key names represent a piece of the variable. "policies.SMR.basicSMR" will be checked against "V.policies.SMR.basicSMR". "arcologies[0].FSEgyptianRevivalistIncestPolicy" will be checked against "V.arcologies[0].FSEgyptianRevivalistIncestPolicy". * How the brand is saved in the variable.
*/ */
/** @type {object<string, PolicySelectorGroup>} */ /** @type {object<string, BrandStyleList>} */
App.Medicine.Modification.Brands = { App.Medicine.Modification.Brands = {
personal: { personal: {
"your personal symbol": {displayName: "Your slaving emblem"}, "your personal symbol": {displayName: "Your slaving emblem"},
......
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