TSDoc comment block

This commit is contained in:
Greenlamp 2024-05-10 01:06:30 +02:00
parent a3cfcf2bd1
commit 8550a3f751

View File

@ -101,11 +101,18 @@ export default class BattleScene extends SceneBase {
public experimentalSprites: boolean = false; public experimentalSprites: boolean = false;
public moveAnimations: boolean = true; public moveAnimations: boolean = true;
public expGainsSpeed: integer = 0; public expGainsSpeed: integer = 0;
//expParty can be: /**
// 0 - default - the normal exp gain display, nothing changed * Defines the experience gain display mode.
// 1 - Only level up - we display the level up in the small frame instead of a message *
// 2 - Skip - no level up frame nor message * @remarks
// 1 & 2 still are compatible with stats display, level up, new move, ... * The `expParty` can have several modes:
* - `0` - Default: The normal experience gain display, nothing changed.
* - `1` - Only level up: Displays the level up in the small frame instead of a message.
* - `2` - Skip: No level up frame nor message.
*
* Modes `1` and `2` are still compatible with stats display, level up, new move, etc.
* @default 0 - Uses the default normal experience gain display.
*/
public expParty: integer = 0; public expParty: integer = 0;
public hpBarSpeed: integer = 0; public hpBarSpeed: integer = 0;
public fusionPaletteSwaps: boolean = true; public fusionPaletteSwaps: boolean = true;