veloren/assets/common/entity/spot/saurok.ron

13 lines
373 B
Rust
Raw Normal View History

2022-04-08 15:37:50 +00:00
#![enable(implicit_some)]
(
2021-07-29 09:22:14 +00:00
name: Name("Saurok Bandit"),
body: RandomWith("saurok_mighty"),
2021-08-31 09:15:52 +00:00
alignment: Alignment(Enemy),
2021-07-29 09:22:14 +00:00
loot: LootTable("common.loot_tables.creature.biped_large.saurok"),
2022-04-08 15:37:50 +00:00
inventory: (
loadout: Inline((
2022-05-06 19:58:52 +00:00
active_hands: InHands((Item("common.items.npc_weapons.bow.saurok_bow"), None)),
2022-04-08 15:37:50 +00:00
)),
),
meta: [],
)