docker-veloren/veloren/assets/common/entity/spot/wizard/adept.ron
Glauber Ferreira e11bf493a1
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m5s
primeiro commit
2024-04-29 21:38:53 -03:00

20 lines
640 B
Plaintext

#![enable(implicit_some)]
(
name: Name("Adept"),
body: RandomWith("humanoid"),
alignment: Alignment(Npc),
loot: LootTable("common.loot_tables.dungeon.cultist.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"),
],
)