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

54 lines
1.5 KiB
Rust

#![enable(implicit_some)]
(
name: Name("Traveler"),
body: RandomWith("humanoid"),
alignment: Alignment(Npc),
loot: LootTable("common.loot_tables.world.traveler1"),
inventory: (
loadout: Inline((
inherit: Choice([
(1, Asset("common.loadout.world.traveler1.iron")),
(1, Asset("common.loadout.world.traveler1.leather")),
(1, Asset("common.loadout.world.traveler1.wool")),
]),
active_hands: ([
(1, (
tool: Sword,
material: Iron,
hands: None,
)),
(1, (
tool: Axe,
material: Iron,
hands: None,
)),
(1, (
tool: Hammer,
material: Iron,
hands: None,
)),
(1, (
tool: Bow,
material: Bamboo,
hands: None,
)),
(1, (
tool: Staff,
material: Bamboo,
hands: None,
)),
(1, (
tool: Sceptre,
material: Bamboo,
hands: None,
)),
], None),
)),
items: [
(25, "common.items.consumable.potion_minor"),
],
),
meta: [
SkillSetAsset("common.skillset.preset.rank2.fullskill"),
],
)