feat:mod管理器

This commit is contained in:
Evilom
2026-05-13 21:17:58 +08:00
parent 93961c10bb
commit 86ceec98b3
41 changed files with 4533 additions and 400 deletions
+54
View File
@@ -0,0 +1,54 @@
{
"manifest": {
"id": "example-armor",
"name": "示例护甲包",
"version": "1.0.0",
"author": "OES-WEB",
"description": "添加 3 套新护甲到游戏中,用于测试 Mod 系统",
"priority": 150,
"dependencies": []
},
"data": {
"armor": {
"flame_plate": {
"id": "flame_plate",
"name": "烈焰板甲",
"type": "armor",
"subtype": "heavy",
"material": "daedric",
"tier": 5,
"armor": 40,
"weight": 35,
"value": 800,
"keywords": ["heavy", "fire", "daedric"],
"description": "由魔族锻造的烈焰板甲,散发着灼热的气息"
},
"frost_cloak": {
"id": "frost_cloak",
"name": "冰霜斗篷",
"type": "armor",
"subtype": "light",
"material": "moonstone",
"tier": 3,
"armor": 20,
"weight": 5,
"value": 400,
"keywords": ["light", "frost", "cloak"],
"description": "散发寒气的精致斗篷"
},
"shadow_mask": {
"id": "shadow_mask",
"name": "暗影面具",
"type": "armor",
"subtype": "head",
"material": "ebony",
"tier": 4,
"armor": 15,
"weight": 2,
"value": 600,
"keywords": ["light", "head", "shadow"],
"description": "增加潜行能力的神秘面具"
}
}
}
}