veloren/assets/common/entity/village/guard.ron

23 lines
700 B
Rust
Raw Normal View History

2022-04-08 15:37:50 +00:00
#![enable(implicit_some)]
(
name: Name("Guard"),
body: RandomWith("humanoid"),
alignment: Alignment(Npc),
2022-04-08 15:37:50 +00:00
loot: LootTable("common.loot_tables.creature.humanoid"),
inventory: (
loadout: Inline((
inherit: Asset("common.loadout.village.guard"),
active_hands: ([
(1, "common.items.weapons.sword.cobalt-0"),
(2, "common.items.weapons.bow.metal-2"),
(1, "common.items.weapons.axe.cobalt_axe-0"),
], None),
)),
items: [
(25, "common.items.consumable.potion_big"),
],
),
meta: [
2021-12-15 06:51:25 +00:00
SkillSetAsset("common.skillset.preset.rank3.fullskill"),
],
2022-04-08 15:37:50 +00:00
)