Files
oes-web/public/data/mods/example-spell-mod.json
2026-05-13 21:17:58 +08:00

55 lines
1.5 KiB
JSON

{
"manifest": {
"id": "example-spells",
"name": "自定义法术包",
"version": "1.0.0",
"author": "OES-WEB",
"description": "添加 3 个自定义法术到游戏中,用于测试 Mod 系统",
"priority": 300,
"dependencies": []
},
"data": {
"spells": {
"chain_lightning": {
"id": "chain_lightning",
"name": "连锁闪电",
"school": "destruction",
"type": "target",
"magickaCost": 35,
"magnitude": 20,
"duration": 0,
"cooldown": 1200,
"level": 5,
"description": "发射闪电,造成电击伤害",
"effects": [{ "type": "damage", "magnitude": 20 }]
},
"blood_heal": {
"id": "blood_heal",
"name": "血疗术",
"school": "restoration",
"type": "self",
"magickaCost": 25,
"magnitude": 40,
"duration": 0,
"cooldown": 2000,
"level": 3,
"description": "消耗少量生命值来治疗自身",
"effects": [{ "type": "heal", "magnitude": 40 }]
},
"shadow_cloak": {
"id": "shadow_cloak",
"name": "暗影斗篷",
"school": "illusion",
"type": "self",
"magickaCost": 30,
"magnitude": 0,
"duration": 30,
"cooldown": 10000,
"level": 4,
"description": "隐入暗影,提高潜行能力",
"effects": [{ "type": "sneak_bonus", "magnitude": 30, "duration": 30000 }]
}
}
}
}