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

17 lines
574 B
Rust
Raw Normal View History

2022-04-08 15:37:50 +00:00
#![enable(implicit_some)]
(
name: Name("Cultist Warlock"),
body: RandomWith("cultist_warlock"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.dungeon.tier-5.enemy"),
2022-04-08 15:37:50 +00:00
inventory: (
loadout: Inline((
inherit: Asset("common.loadout.dungeon.tier-5.warlock"),
2022-05-06 19:58:52 +00:00
active_hands: InHands((Choice([
(1, Item("common.items.npc_weapons.staff.bipedlarge-cultist")),
(1, Item("common.items.npc_weapons.bow.bipedlarge-velorite")),
]), None)),
2022-04-08 15:37:50 +00:00
)),
),
meta: [],
)