veloren/assets/common/entity/dungeon/adlet/hunter.ron

16 lines
502 B
Rust
Raw Normal View History

2022-04-08 15:37:50 +00:00
#![enable(implicit_some)]
(
2022-01-28 07:32:59 +00:00
name: Name("Adlet Hunter"),
body: RandomWith("adlet"),
alignment: Alignment(Enemy),
2023-07-19 14:16:20 +00:00
loot: LootTable("common.loot_tables.dungeon.adlet.hunter"),
2022-04-08 15:37:50 +00:00
inventory: (
loadout: Inline((
2022-07-30 10:28:08 +00:00
inherit: Asset("common.loadout.dungeon.adlet.hunter"),
2022-05-06 19:58:52 +00:00
active_hands: InHands((Item("common.items.npc_weapons.biped_small.adlet.hunter"), None)),
2022-04-08 15:37:50 +00:00
)),
),
meta: [
2023-03-22 02:11:48 +00:00
SkillSetAsset("common.skillset.preset.rank1.general"),
],
)