mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
d04364b1f1
+ Check equip_slot can hold item in LoadoutBuilder
22 lines
790 B
Plaintext
22 lines
790 B
Plaintext
EntityConfig (
|
|
name: Some("Cultist"),
|
|
body: RandomWith("humanoid"),
|
|
alignment: Alignment(Enemy),
|
|
|
|
loot: LootTable("common.loot_tables.dungeon.tier-5.enemy"),
|
|
|
|
hands: TwoHanded(Choice([
|
|
(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"))),
|
|
])),
|
|
|
|
meta: [
|
|
LoadoutAsset("common.loadout.dungeon.tier-5.cultist"),
|
|
SkillSetAsset("common.skillset.dungeon.tier-5.enemy"),
|
|
],
|
|
)
|