veloren/assets/common/entity/dungeon/tier-5/beastmaster.ron

20 lines
622 B
Plaintext
Raw Normal View History

2021-06-06 22:54:15 +00:00
EntityConfig (
name: Name("Beastmaster"),
body: RandomWith("humanoid"),
alignment: Alignment(Enemy),
2021-06-06 22:54:15 +00:00
loot: LootTable("common.loot_tables.dungeon.tier-5.miniboss"),
hands: TwoHanded(Choice([
2021-06-06 22:54:15 +00:00
(1.0, Some(Item("common.items.weapons.axe.malachite_axe-0"))),
(1.0, Some(Item("common.items.weapons.sword.bloodsteel-1"))),
(1.0, Some(Item("common.items.weapons.bow.velorite"))),
])),
meta: [
LoadoutAsset("common.loadout.dungeon.tier-5.beastmaster"),
// TODO: make own skillset for him?
SkillSetAsset("common.skillset.dungeon.tier-5.enemy"),
],
2021-06-06 22:54:15 +00:00
)