mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
89 lines
2.6 KiB
Rust
89 lines
2.6 KiB
Rust
// T3
|
|
// T4
|
|
#![enable(implicit_some)]
|
|
(
|
|
name: Name("Well-versed Traveler"),
|
|
body: RandomWith("humanoid"),
|
|
alignment: Alignment(Npc),
|
|
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: ([
|
|
(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,
|
|
)),
|
|
], None),
|
|
)),
|
|
items: [
|
|
(50, "common.items.consumable.potion_med"),
|
|
],
|
|
),
|
|
meta: [
|
|
SkillSetAsset("common.skillset.preset.rank3.fullskill"),
|
|
],
|
|
) |