veloren/assets/common/entity/village/guard.ron
2021-12-15 02:55:28 -05:00

18 lines
491 B
Rust

EntityConfig (
name: Name("Guard"),
body: RandomWith("humanoid"),
alignment: Alignment(Npc),
loot: LootTable("common.loot_tables.creature.humanoid"),
hands: TwoHanded(Choice([
(1.0, Some(Item("common.items.weapons.sword.cobalt-0"))),
(2.0, Some(Item("common.items.weapons.bow.metal-2"))),
(1.0, Some(Item("common.items.weapons.axe.cobalt_axe-0"))),
])),
meta: [
SkillSetAsset("common.skillset.preset.rank3.fullskill"),
],
)