MythicMobs 4.7 配置文件示例 - 自定义实体、技能和Boss
创建自定义实体的语法示例
- name: MyCustomMob
type: zombie
health: 1000
damage: 50
experience: 100
drops:
- itemstack: diamond_sword 1 chance: 50
- itemstack: diamond 3 chance: 25
创建自定义技能的语法示例
- name: Fireball
type: Skill
icon: fireball
cooldown: 10
damage: 50
range: 10
effects:
- burn message: '你的火球对目标造成了$damage点伤害!'
创建自定义Boss的语法示例
- name: MyCustomBoss
type: zombie
health: 10000
damage: 100
experience: 1000
bossbar:
enabled: true
color: RED
style: SEGMENTED_20
skills:
- Fireball drops:
- itemstack: diamond_sword 1 chance: 100
- itemstack: diamond 5 chance: 50
请注意,这只是示例,您需要根据您的需求进行适当的更改。您可以将此代码复制并粘贴到您的MythicMobs配置文件中。如果您有任何疑问,请告诉我。

原文地址: http://www.cveoy.top/t/topic/m4XP 著作权归作者所有。请勿转载和采集!