veloren/assets/common/entity/world/traveler0.ron

30 lines
1.2 KiB
Rust
Raw Normal View History

2022-04-08 15:37:50 +00:00
#![enable(implicit_some)]
2022-02-04 17:05:46 +00:00
(
name: Name("Greenhorn Traveler"),
body: RandomWith("humanoid"),
alignment: Alignment(Npc),
2022-04-08 15:37:50 +00:00
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")),
]),
2022-05-06 19:58:52 +00:00
active_hands: InHands((Choice([
(1, ModularWeapon(tool: Sword, material: Bronze, hands: None)),
(1, ModularWeapon(tool: Axe, material: Bronze, hands: None)),
(1, ModularWeapon(tool: Hammer, material: Bronze, hands: None)),
(1, ModularWeapon(tool: Bow, material: Wood, hands: None)),
(1, ModularWeapon(tool: Staff, material: Wood, hands: None)),
(1, ModularWeapon(tool: Sceptre, material: Wood, hands: None)),
]), None)),
2022-04-08 15:37:50 +00:00
)),
items: [
2022-02-05 16:45:31 +00:00
(5, "common.items.consumable.potion_minor"),
2022-02-04 17:05:46 +00:00
],
),
meta: [
SkillSetAsset("common.skillset.preset.rank1.fullskill"),
],
2022-04-08 15:37:50 +00:00
)