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

89 lines
2.6 KiB
Rust
Raw Normal View History

2022-04-08 15:37:50 +00:00
// T3
// T4
#![enable(implicit_some)]
2022-02-05 16:45:31 +00:00
(
name: Name("Well-versed Traveler"),
body: RandomWith("humanoid"),
alignment: Alignment(Npc),
2022-04-08 15:37:50 +00:00
loot: LootTable("common.loot_tables.world.traveler2"),
inventory: (
loadout: Inline((
inherit: Choice([
(1, Asset("common.loadout.world.traveler2.steel")),
(1, Asset("common.loadout.world.traveler2.silk")),
(1, Asset("common.loadout.world.traveler2.scale")),
(1, Asset("common.loadout.world.traveler2.cobalt")),
(1, Asset("common.loadout.world.traveler2.druid")),
(1, Asset("common.loadout.world.traveler2.carapace")),
]),
active_hands: ([
2021-11-23 00:47:24 +00:00
(1, (
tool: Sword,
material: Steel,
hands: None,
)),
(1, (
tool: Axe,
material: Steel,
hands: None,
)),
(1, (
tool: Hammer,
material: Steel,
hands: None,
)),
(1, (
tool: Bow,
material: Hardwood,
hands: None,
)),
(1, (
tool: Staff,
material: Hardwood,
hands: None,
)),
(1, (
tool: Sceptre,
material: Hardwood,
hands: None,
)),
(1, (
tool: Sword,
material: Cobalt,
hands: None,
)),
(1, (
tool: Axe,
material: Cobalt,
hands: None,
)),
(1, (
tool: Hammer,
material: Cobalt,
hands: None,
)),
(1, (
tool: Bow,
material: Ironwood,
hands: None,
)),
(1, (
tool: Staff,
material: Ironwood,
hands: None,
)),
(1, (
tool: Sceptre,
material: Ironwood,
hands: None,
)),
2022-04-08 15:37:50 +00:00
], None),
)),
items: [
2022-02-05 16:45:31 +00:00
(50, "common.items.consumable.potion_med"),
],
),
meta: [
SkillSetAsset("common.skillset.preset.rank3.fullskill"),
],
2022-04-08 15:37:50 +00:00
)