kolmafia 5.29107.0 → 5.29109.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +4 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
// v5.
|
|
2
|
-
// Generated by KoLmafia
|
|
1
|
+
// v5.29109.0
|
|
2
|
+
// Generated by KoLmafia r29109 with type generator v5
|
|
3
3
|
type Environment = "indoor" | "none" | "outdoor" | "underground" | "underwater" | "unknown";
|
|
4
4
|
type ModifierValueType = "boolean" | "multinumeric" | "multistring" | "none" | "numeric" | "string";
|
|
5
5
|
export function abort(string?: string): never;
|
|
@@ -506,7 +506,9 @@ export function pathIdToName(value: number): string;
|
|
|
506
506
|
/** @deprecated Changing 'path_name_to_id(xxx)' to 'to_path(xxx).id' will remove this warning */
|
|
507
507
|
export function pathNameToId(value: string): number;
|
|
508
508
|
export function phpMtRand(rng: Rng): number;
|
|
509
|
+
export function phpMtRand(rng: Rng, min: number, max: number): number;
|
|
509
510
|
export function phpRand(rng: Rng): number;
|
|
511
|
+
export function phpRand(rng: Rng, min: number, max: number): number;
|
|
510
512
|
export function phpSeed(seed: number): Rng;
|
|
511
513
|
export function pickPocket(monster: Monster): boolean;
|
|
512
514
|
export function pickPocket(effect: Effect): { [effect: string]: number };
|