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

22 lines
790 B
Plaintext
Raw Normal View History

2021-06-16 19:27:31 +00:00
EntityConfig (
name: Name("Cultist"),
body: RandomWith("humanoid"),
alignment: Alignment(Enemy),
2021-06-16 19:27:31 +00:00
loot: LootTable("common.loot_tables.dungeon.tier-5.enemy"),
2021-06-16 19:27:31 +00:00
hands: TwoHanded(Choice([
2021-07-08 00:56:47 +00:00
(1.0, Some(Item("common.items.weapons.axe_1h.orichalcum-0"))),
(2.0, Some(Item("common.items.weapons.sword.cultist"))),
(1.0, Some(Item("common.items.weapons.hammer.cultist_purp_2h-0"))),
(1.0, Some(Item("common.items.weapons.hammer_1h.orichalcum-0"))),
(1.0, Some(Item("common.items.weapons.bow.velorite"))),
(1.0, Some(Item("common.items.weapons.sceptre.sceptre_velorite_0"))),
2021-06-16 19:27:31 +00:00
])),
meta: [
LoadoutAsset("common.loadout.dungeon.tier-5.cultist"),
SkillSetAsset("common.skillset.dungeon.tier-5.enemy"),
],
2021-06-16 19:27:31 +00:00
)