mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
20 lines
683 B
Rust
20 lines
683 B
Rust
|
#![enable(implicit_some)]
|
||
|
(
|
||
|
name: Name("Adept"),
|
||
|
body: RandomWith("humanoid"),
|
||
|
alignment: Alignment(Npc),
|
||
|
loot: LootTable("common.loot_tables.dungeon.tier-5.enemy"),
|
||
|
inventory: (
|
||
|
loadout: Inline((
|
||
|
inherit: Asset("common.loadout.spots.wizard_tower.wizard_low"),
|
||
|
active_hands: InHands((Choice([
|
||
|
(2, ModularWeapon(tool: Axe, material: Orichalcum, hands: One)),
|
||
|
(2, ModularWeapon(tool: Hammer, material: Orichalcum, hands: One)),
|
||
|
|
||
|
]), None)),
|
||
|
)),
|
||
|
),
|
||
|
meta: [
|
||
|
SkillSetAsset("common.skillset.preset.rank5.fullskill"),
|
||
|
],
|
||
|
)
|