Files
oes-web/public/data/mods/example-weapons-mod.json
2026-05-11 17:39:31 +08:00

116 lines
3.0 KiB
JSON

{
"manifest": {
"id": "example-weapons",
"name": "示例武器包",
"version": "1.0.0",
"author": "OES-WEB",
"description": "添加 5 把新武器到游戏中",
"priority": 100,
"dependencies": []
},
"data": {
"items": {
"flame_sword": {
"id": "flame_sword",
"name": "烈焰之剑",
"type": "weapon",
"subtype": "one_handed_sword",
"material": "steel",
"tier": 2,
"damage": 12,
"speed": 1.0,
"weight": 12,
"value": 150,
"enchantmentSlots": 1,
"enchantment": {
"type": "fire_damage",
"magnitude": 10,
"duration": 0
},
"keywords": ["metal", "slashing", "fire"],
"description": "一把燃烧着永恒火焰的魔法剑"
},
"frost_staff": {
"id": "frost_staff",
"name": "冰霜法杖",
"type": "weapon",
"subtype": "staff",
"material": "crystal",
"tier": 3,
"damage": 8,
"speed": 0.8,
"weight": 8,
"value": 300,
"enchantmentSlots": 1,
"enchantment": {
"type": "frost_damage",
"magnitude": 15,
"duration": 0
},
"keywords": ["magic", "frost", "staff"],
"description": "散发寒气的水晶法杖"
},
"shadow_dagger": {
"id": "shadow_dagger",
"name": "暗影匕首",
"type": "weapon",
"subtype": "dagger",
"material": "ebony",
"tier": 5,
"damage": 15,
"speed": 1.5,
"weight": 3,
"value": 500,
"enchantmentSlots": 1,
"enchantment": {
"type": "silent_damage",
"magnitude": 20,
"duration": 0
},
"keywords": ["metal", "piercing", "shadow"],
"description": "来自暗影界的匕首,攻击无声"
},
"thunder_hammer": {
"id": "thunder_hammer",
"name": "雷霆战锤",
"type": "weapon",
"subtype": "warhammer",
"material": "daedric",
"tier": 6,
"damage": 30,
"speed": 0.6,
"weight": 25,
"value": 1000,
"enchantmentSlots": 1,
"enchantment": {
"type": "shock_damage",
"magnitude": 25,
"duration": 0
},
"keywords": ["metal", "blunt", "lightning"],
"description": "蕴含雷电之力的魔族战锤"
},
"dragon_bow": {
"id": "dragon_bow",
"name": "龙骨弓",
"type": "weapon",
"subtype": "bow",
"material": "dragon",
"tier": 7,
"damage": 22,
"speed": 0.7,
"weight": 14,
"value": 1500,
"enchantmentSlots": 1,
"enchantment": {
"type": "absorb_health",
"magnitude": 5,
"duration": 0
},
"keywords": ["ranged", "dragon", "piercing"],
"description": "用龙骨打造的强大弓"
}
}
}
}