This commit is contained in:
Vick Scarlet
2021-09-08 11:59:35 +08:00
parent a36ef5953b
commit 31034b064d
5 changed files with 16 additions and 9 deletions

View File

@@ -9,12 +9,13 @@ async function debug() {
await life.initial();
life.restart({
CHR: 5, // 颜值 charm CHR
INT: 5, // 智力 intelligence INT
STR: 5, // 体质 strength STR
MNY: 5, // 家境 money MNY
SPR: 5, // 快乐 spirit SPR
TLT: [1004, 1005, 1009], // 天赋 talent TLT
CHR: 2000, // 颜值 charm CHR
INT: 2000, // 智力 intelligence INT
STR: 2000, // 体质 strength STR
MNY: 2000, // 家境 money MNY
SPR: 2000, // 快乐 spirit SPR
AGE: 100,
TLT: [1134, 1048, 1009], // 天赋 talent TLT
});
const lifeTrajectory = [];
let trajectory;
@@ -42,6 +43,7 @@ async function debug() {
}
).join('\n ')
);
if(age == 99) debugger
} while(!trajectory.isEnd)
// debugger;
}