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

23 lines
776 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"),
2022-05-06 19:58:52 +00:00
active_hands: InHands((Choice([
(1, ModularWeapon(tool: Sword, material: Cobalt, hands: None)),
(2, ModularWeapon(tool: Bow, material: Ironwood, hands: None)),
(1, ModularWeapon(tool: Axe, material: Cobalt, hands: None)),
]), None)),
2022-04-08 15:37:50 +00:00
)),
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
)