Files
rebirthlife/src/config/careers.json
T

112 lines
2.1 KiB
JSON
Raw Normal View History

{
"careers": [
{
"id": "student",
"name": "学童",
"type": "scholar",
"unlockConditions": {
"type": "age",
"op": ">=",
"value": 6
},
"dailyIncome": 1,
"expCurve": {
"base": 10,
"factor": 1.15
}
},
{
"id": "book_boy",
"name": "书童",
"type": "scholar",
"unlockConditions": {
"type": "careerLevel",
"op": ">=",
"careerId": "student",
"value": 100
},
"dailyIncome": 2,
"expCurve": {
"base": 50,
"factor": 1.2
}
},
{
"id": "scholar",
"name": "书生",
"type": "scholar",
"unlockConditions": {
"type": "and",
"conditions": [
{
"type": "careerLevel",
"op": ">=",
"careerId": "student",
"value": 250
},
{
"type": "age",
"op": ">=",
"value": 14
}
]
},
"dailyIncome": -3,
"expCurve": {
"base": 100,
"factor": 1.25
}
},
{
"id": "soldier",
"name": "士兵",
"type": "military",
"unlockConditions": {
"type": "and",
"conditions": [
{
"type": "age",
"op": ">=",
"value": 14
},
{
"type": "stat",
"op": ">=",
"stat": "body",
"value": 10
}
]
},
"dailyIncome": 2,
"expCurve": {
"base": 20,
"factor": 1.18
}
},
{
"id": "taoist_priest",
"name": "道士",
"type": "immortal",
"unlockConditions": {
"type": "and",
"conditions": [
{
"type": "age",
"op": ">=",
"value": 10
},
{
"type": "hasItem",
"itemId": "taoist_license"
}
]
},
"dailyIncome": 1,
"expCurve": {
"base": 30,
"factor": 1.22
}
}
]
}