mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 12:46:10 +00:00
141 lines
3.7 KiB
TypeScript
141 lines
3.7 KiB
TypeScript
import * as Utils from "../utils";
|
|
|
|
export enum StatusEffect {
|
|
NONE,
|
|
POISON,
|
|
TOXIC,
|
|
PARALYSIS,
|
|
SLEEP,
|
|
FREEZE,
|
|
BURN,
|
|
FAINT
|
|
}
|
|
|
|
export class Status {
|
|
public effect: StatusEffect;
|
|
public turnCount: integer;
|
|
public cureTurn: integer;
|
|
|
|
constructor(effect: StatusEffect, turnCount?: integer, cureTurn?: integer) {
|
|
this.effect = effect;
|
|
this.turnCount = turnCount === undefined ? 0 : turnCount;
|
|
if (cureTurn === undefined) {
|
|
if (effect === StatusEffect.SLEEP)
|
|
this.cureTurn = Utils.randInt(3, 2);
|
|
} else
|
|
this.cureTurn = cureTurn;
|
|
}
|
|
|
|
incrementTurn(): void {
|
|
this.turnCount++;
|
|
}
|
|
|
|
isPostTurn(): boolean {
|
|
return this.effect === StatusEffect.POISON || this.effect === StatusEffect.TOXIC || this.effect === StatusEffect.BURN;
|
|
}
|
|
}
|
|
|
|
export function getStatusEffectObtainText(statusEffect: StatusEffect, sourceText?: string): string {
|
|
const sourceClause = sourceText ? ` ${statusEffect !== StatusEffect.SLEEP ? 'by' : 'from'} ${sourceText}` : '';
|
|
switch (statusEffect) {
|
|
case StatusEffect.POISON:
|
|
return `\nwas poisoned${sourceClause}!`;
|
|
case StatusEffect.TOXIC:
|
|
return `\nwas badly poisoned${sourceClause}!`;
|
|
case StatusEffect.PARALYSIS:
|
|
return ` was paralyzed${sourceClause}!\nIt may be unable to move!`;
|
|
case StatusEffect.SLEEP:
|
|
return `\nfell asleep${sourceClause}!`;
|
|
case StatusEffect.FREEZE:
|
|
return `\nwas frozen solid${sourceClause}!`;
|
|
case StatusEffect.BURN:
|
|
return `\nwas burned${sourceClause}!`;
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
export function getStatusEffectActivationText(statusEffect: StatusEffect): string {
|
|
switch (statusEffect) {
|
|
case StatusEffect.POISON:
|
|
case StatusEffect.TOXIC:
|
|
return ' is hurt\nby poison!';
|
|
case StatusEffect.PARALYSIS:
|
|
return ' is paralyzed!\nIt can\'t move!';
|
|
case StatusEffect.SLEEP:
|
|
return ' is fast asleep.';
|
|
case StatusEffect.FREEZE:
|
|
return ' is\nfrozen solid!';
|
|
case StatusEffect.BURN:
|
|
return ' is hurt\nby its burn!';
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
export function getStatusEffectOverlapText(statusEffect: StatusEffect): string {
|
|
switch (statusEffect) {
|
|
case StatusEffect.POISON:
|
|
case StatusEffect.TOXIC:
|
|
return ' is\nalready poisoned!';
|
|
case StatusEffect.PARALYSIS:
|
|
return ' is\nalready paralyzed!';
|
|
case StatusEffect.SLEEP:
|
|
return ' is\nalready asleep!';
|
|
case StatusEffect.FREEZE:
|
|
return ' is\nalready frozen!';
|
|
case StatusEffect.BURN:
|
|
return ' is\nalready burned!';
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
export function getStatusEffectHealText(statusEffect: StatusEffect): string {
|
|
switch (statusEffect) {
|
|
case StatusEffect.POISON:
|
|
case StatusEffect.TOXIC:
|
|
return ' was\ncured of its poison!';
|
|
case StatusEffect.PARALYSIS:
|
|
return ' was\nhealed of paralysis!';
|
|
case StatusEffect.SLEEP:
|
|
return ' woke up!';
|
|
case StatusEffect.FREEZE:
|
|
return ' was\ndefrosted!';
|
|
case StatusEffect.BURN:
|
|
return ' was\nhealed of its burn!';
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
export function getStatusEffectDescriptor(statusEffect: StatusEffect): string {
|
|
switch (statusEffect) {
|
|
case StatusEffect.POISON:
|
|
case StatusEffect.TOXIC:
|
|
return 'poisoning';
|
|
case StatusEffect.PARALYSIS:
|
|
return 'paralysis';
|
|
case StatusEffect.SLEEP:
|
|
return 'sleep';
|
|
case StatusEffect.FREEZE:
|
|
return 'freezing';
|
|
case StatusEffect.BURN:
|
|
return 'burn';
|
|
}
|
|
}
|
|
|
|
export function getStatusEffectCatchRateMultiplier(statusEffect: StatusEffect): number {
|
|
switch (statusEffect) {
|
|
case StatusEffect.POISON:
|
|
case StatusEffect.TOXIC:
|
|
case StatusEffect.PARALYSIS:
|
|
case StatusEffect.BURN:
|
|
return 1.5;
|
|
case StatusEffect.SLEEP:
|
|
case StatusEffect.FREEZE:
|
|
return 2.5;
|
|
}
|
|
|
|
return 1;
|
|
} |