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

26 lines
792 B
Rust
Raw Normal View History

2023-03-03 23:21:37 +00:00
#![enable(implicit_some)]
(
name: Name("Bowman"),
body: RandomWith("humanoid"),
alignment: Alignment(Npc),
2023-06-19 01:16:42 +00:00
loot: LootTable("common.loot_tables.nothing"),
2023-03-03 23:21:37 +00:00
inventory: (
loadout: Inline((
2023-07-09 20:03:09 +00:00
inherit: Choice([
(1, Asset("common.loadout.world.traveler1.leather")),
(1, Asset("common.loadout.world.traveler2.carapace")),
(1, Asset("common.loadout.world.traveler2.scale")),
2023-03-03 23:21:37 +00:00
]),
active_hands: InHands((Choice([
2023-07-09 20:03:09 +00:00
(1, ModularWeapon(tool: Bow, material: Ironwood, hands: None)),
2023-03-03 23:21:37 +00:00
]), None)),
)),
items: [
(10, "common.items.consumable.potion_big"),
(10, "common.items.food.sunflower_icetea"),
],
),
meta: [],
)