曲包(本地化对象)
包(Aア)。
示例
json
{
"id": "finale_append_1",
"lang": "zh-Hans",
"name": "这里一般是空的",
"description": "反正是一堆高级词汇再加几条谜语"
}JSON Schema
json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://arcaeaoffline.sevive.xyz/schemas/data-interchange-schemas/v5/pack-localization.json",
"title": "PackLocalization",
"description": "Arcaea Offline Data Interchange Schemas Version 5 - PackLocalization",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The parent pack's id"
},
"lang": {
"type": "string",
"description": "The language code",
"examples": ["ja", "zh-Hans"]
},
"name": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": ["id", "lang"]
}