veloren/assets/common/entity/village/merchant.ron
2022-05-16 15:11:36 -04:00

20 lines
721 B
Rust

#![enable(implicit_some)]
(
name: Name("Merchant"),
body: RandomWith("humanoid"),
alignment: Alignment(Npc),
loot: LootTable("common.loot_tables.creature.humanoid"),
inventory: (
loadout: Inline((
active_hands: InHands((Choice([
(2, ModularWeapon(tool: Bow, material: Eldwood, hands: None)),
(1, ModularWeapon(tool: Sword, material: Steel, hands: None)),
(1, ModularWeapon(tool: Sword, material: Bloodsteel, hands: None)),
(2, ModularWeapon(tool: Staff, material: Ironwood, hands: None)),
]), None)),
)),
),
meta: [
SkillSetAsset("common.skillset.preset.rank3.fullskill"),
],
)