mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-26 09:19:31 +02:00
Add shop luck tracking to log
This commit is contained in:
parent
310a497627
commit
465af8d7a4
@ -356,7 +356,7 @@ export default class Battle {
|
||||
return null;
|
||||
}
|
||||
|
||||
multiInt(scene: BattleScene, out: integer[], count: integer, range: integer, min: integer = 0): integer {
|
||||
multiInt(scene: BattleScene, out: integer[], count: integer, range: integer, min: integer = 0, offset?: integer): integer {
|
||||
if (range <= 1) {
|
||||
return min;
|
||||
}
|
||||
@ -369,6 +369,10 @@ export default class Battle {
|
||||
Phaser.Math.RND.sow([ Utils.shiftCharCodes(this.battleSeed, this.turn << 6) ]);
|
||||
console.log("Battle Seed:", this.battleSeed);
|
||||
}
|
||||
for (var i = 0; i < offset; i++) {
|
||||
// Perform useless rolls to offset RNG counter
|
||||
Utils.randSeedInt(5)
|
||||
}
|
||||
for (var i = 0; i < count; i++) {
|
||||
out.push(Utils.randSeedInt(range, min))
|
||||
}
|
||||
|
@ -45,7 +45,7 @@ SECTIONS
|
||||
/** The number of enemy actions to log. */
|
||||
export const EnemyEventLogCount = 3
|
||||
/** The current DRPD version. */
|
||||
export const DRPD_Version = "1.1.0"
|
||||
export const DRPD_Version = "1.1.0a"
|
||||
/** (Unused / reference only) All the log versions that this mod can keep updated.
|
||||
* @see updateLog
|
||||
*/
|
||||
@ -53,6 +53,7 @@ export const acceptedVersions = [
|
||||
"1.0.0",
|
||||
"1.0.0a",
|
||||
"1.1.0",
|
||||
"1.1.0a",
|
||||
]
|
||||
|
||||
// Value holders
|
||||
@ -457,7 +458,10 @@ export interface DRPD {
|
||||
*/
|
||||
waves: Wave[],
|
||||
/** The Pokemon that the player started with. Daily runs will have 3. @see PokeData */
|
||||
starters?: PokeData[]
|
||||
starters?: PokeData[],
|
||||
/** The maximum luck value you can have. If your luck value is higher than this, some floors may break. */
|
||||
maxluck?: integer;
|
||||
minSafeLuckFloor?: integer[];
|
||||
}
|
||||
/**
|
||||
* Imports a string as a DRPD.
|
||||
@ -478,12 +482,14 @@ export function newDocument(name: string = "Untitled Run", authorName: string |
|
||||
version: DRPD_Version,
|
||||
seed: "",
|
||||
title: name,
|
||||
label: "",
|
||||
label: "unnamedRoute",
|
||||
uuid: undefined,
|
||||
authors: (Array.isArray(authorName) ? authorName : [authorName]),
|
||||
date: new Date().getUTCFullYear() + "-" + (new Date().getUTCMonth() + 1 < 10 ? "0" : "") + (new Date().getUTCMonth() + 1) + "-" + (new Date().getUTCDate() < 10 ? "0" : "") + new Date().getUTCDate(),
|
||||
waves: new Array(50),
|
||||
starters: new Array(3),
|
||||
maxluck: 14,
|
||||
minSafeLuckFloor: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
|
||||
}
|
||||
var RState = Phaser.Math.RND.state()
|
||||
ret.uuid = Phaser.Math.RND.uuid()
|
||||
@ -587,6 +593,11 @@ function updateLog(drpd: DRPD): DRPD {
|
||||
Phaser.Math.RND.state(RState)
|
||||
drpd.label = "route"
|
||||
} // 1.0.0a → 1.1.0
|
||||
if (drpd.version == "1.1.0") {
|
||||
drpd.version = "1.1.0a"
|
||||
drpd.maxluck = 14
|
||||
drpd.minSafeLuckFloor = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
|
||||
} // 1.1.0 → 1.1.0a
|
||||
return drpd;
|
||||
}
|
||||
// #endregion
|
||||
@ -1664,6 +1675,22 @@ export function logPlayerTeam(scene: BattleScene) {
|
||||
console.log("--> ", drpd)
|
||||
localStorage.setItem(getLogID(scene), JSON.stringify(drpd))
|
||||
}
|
||||
/**
|
||||
* TODO
|
||||
*
|
||||
* Checks the minimum luck that will break this floor's shop.
|
||||
* @param scene The BattleScene.
|
||||
*/
|
||||
export function logLuck(scene: BattleScene) {
|
||||
var drpd = getDRPD(scene)
|
||||
console.log(`Logging player starters: ${scene.getParty().map(p => p.name).join(", ")}`)
|
||||
var P = scene.getParty()
|
||||
for (var i = 0; i < P.length; i++) {
|
||||
drpd.starters[i] = exportPokemon(P[i])
|
||||
}
|
||||
console.log("--> ", drpd)
|
||||
localStorage.setItem(getLogID(scene), JSON.stringify(drpd))
|
||||
}
|
||||
/**
|
||||
* Logs a wild Pokémon to a wave's data.
|
||||
* @param scene The BattleScene. Used to retrieve the log ID.
|
||||
|
Loading…
Reference in New Issue
Block a user