feat: add identity and talent config frameworks
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"identities": [
|
||||
{
|
||||
"id": "taoist_orphan",
|
||||
"name": "道观弃婴",
|
||||
"description": "被遗弃在道观门口的婴儿,由道士抚养长大。开局自带道碟。",
|
||||
"startingStats": { "body": 3, "wisdom": 5, "charm": 2, "destiny": 4, "business": 0, "intelligence": 3 },
|
||||
"startingItems": ["taoist_license"],
|
||||
"unlockConditions": []
|
||||
},
|
||||
{
|
||||
"id": "peasant",
|
||||
"name": "农家子",
|
||||
"description": "普通农户家的孩子。",
|
||||
"startingStats": { "body": 4, "wisdom": 3, "charm": 3, "destiny": 3, "business": 1, "intelligence": 2 },
|
||||
"startingItems": [],
|
||||
"unlockConditions": []
|
||||
},
|
||||
{
|
||||
"id": "merchant_son",
|
||||
"name": "商贾之子",
|
||||
"description": "商人家庭出身,从小耳濡目染经商之道。",
|
||||
"startingStats": { "body": 2, "wisdom": 4, "charm": 4, "destiny": 3, "business": 5, "intelligence": 4 },
|
||||
"startingItems": [],
|
||||
"unlockConditions": [
|
||||
{ "type": "reincarnation", "op": ">=", "value": 1 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "noble",
|
||||
"name": "世家子弟",
|
||||
"description": "出身名门望族,从小接受良好教育。",
|
||||
"startingStats": { "body": 3, "wisdom": 5, "charm": 5, "destiny": 5, "business": 3, "intelligence": 5 },
|
||||
"startingItems": [],
|
||||
"unlockConditions": [
|
||||
{ "type": "reincarnation", "op": ">=", "value": 2 }
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user