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

66 lines
2.2 KiB
Rust
Raw Normal View History

2022-04-08 15:37:50 +00:00
// T5
// legendary
#![enable(implicit_some)]
2022-02-05 16:45:31 +00:00
(
name: Name("Experienced Traveler"),
body: RandomWith("humanoid"),
alignment: Alignment(Npc),
2022-04-08 15:37:50 +00:00
loot: LootTable("common.loot_tables.world.traveler3"),
inventory: (
loadout: Inline((
inherit: Choice([
(1, Asset("common.loadout.world.traveler3.bloodsteel")),
(1, Asset("common.loadout.world.traveler3.moonweave")),
(1, Asset("common.loadout.world.traveler3.primal")),
(1, Asset("common.loadout.world.traveler3.orichalcum")),
(1, Asset("common.loadout.world.traveler3.sunsilk")),
(1, Asset("common.loadout.world.traveler3.dragonscale")),
]),
active_hands: ([
2021-11-23 00:47:24 +00:00
(2, (
tool: Sword,
material: Orichalcum,
hands: None,
)),
(2, (
tool: Axe,
material: Orichalcum,
hands: None,
)),
(2, (
tool: Hammer,
material: Orichalcum,
hands: None,
)),
(2, (
tool: Bow,
material: Eldwood,
hands: None,
)),
(2, (
tool: Staff,
material: Eldwood,
hands: None,
)),
(2, (
tool: Sceptre,
material: Eldwood,
hands: None,
)),
2022-04-08 15:37:50 +00:00
(2, "common.items.weapons.sword.caladbolg"),
(2, "common.items.weapons.hammer.mjolnir"),
(2, "common.items.weapons.axe.parashu"),
(2, "common.items.weapons.bow.sagitta"),
2021-11-23 00:47:24 +00:00
(2, "common.items.weapons.staff.laevateinn"),
2022-04-08 15:37:50 +00:00
(1, "common.items.weapons.sceptre.root_evil"),
(1, "common.items.weapons.sceptre.caduceus"),
], None),
)),
items: [
2022-02-05 16:45:31 +00:00
(50, "common.items.consumable.potion_big"),
],
),
meta: [
SkillSetAsset("common.skillset.preset.rank5.fullskill"),
],
2022-04-08 15:37:50 +00:00
)