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

@ -18267,7 +18267,7 @@
"age": "100",
"event": [
10323,
"20410*99999999999",
"20408*99999999999",
"10380*0.01",
"10381*0.01",
"10382*0.01",

Binary file not shown.

View File

@ -3833,7 +3833,7 @@
"id": 10448,
"event": "国家公布中产阶级标准家庭年收入100万。",
"include": "EVT?[10009,10010]",
"exclude": "EVT?[10448]",
"exclude": "EVT?[10448,11297]",
"branch": [
"MNY<4:20448"
]
@ -9560,7 +9560,7 @@
"id": 11297,
"event": "我国进入共产主义社会。",
"include": "EVT?[11263]",
"exclude": "EVT?[11297,11287]"
"exclude": "EVT?[11297,11287,10448]"
},
"11298": {
"id": 11298,
@ -11177,6 +11177,11 @@
"include": "(EVT?[10365])&(INT>100)&(TLT?[1048])",
"exclude": "EVT?[20384]"
},
"20408": {
"id": 20408,
"event": "你觉醒前世记忆,重新踏上修行路。",
"include": "(TLT?[1134])&(EVT?[10391])"
},
"20409": {
"id": 20409,
"event": "你没有扛过这一劫。灵魂碎片侥幸逃出,你转世重生了。",

Binary file not shown.

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;
}