veloren/assets/common/entity/world/traveler0.ron
2022-05-16 15:11:15 -04:00

54 lines
1.6 KiB
Rust

#![enable(implicit_some)]
(
name: Name("Greenhorn Traveler"),
body: RandomWith("humanoid"),
alignment: Alignment(Npc),
loot: LootTable("common.loot_tables.world.traveler0"),
inventory: (
loadout: Inline((
inherit: Choice([
(1, Asset("common.loadout.world.traveler0.bronze")),
(1, Asset("common.loadout.world.traveler0.linen")),
(1, Asset("common.loadout.world.traveler0.rawhide")),
]),
active_hands: ([
(1, (
tool: Sword,
material: Bronze,
hands: None,
)),
(1, (
tool: Axe,
material: Bronze,
hands: None,
)),
(1, (
tool: Hammer,
material: Bronze,
hands: None,
)),
(1, (
tool: Bow,
material: Wood,
hands: None,
)),
(1, (
tool: Staff,
material: Wood,
hands: None,
)),
(1, (
tool: Sceptre,
material: Wood,
hands: None,
)),
], None),
)),
items: [
(5, "common.items.consumable.potion_minor"),
],
),
meta: [
SkillSetAsset("common.skillset.preset.rank1.fullskill"),
],
)