veloren/assets/common/entity/dungeon/gnarling/chieftain.ron

17 lines
556 B
Rust
Raw Normal View History

2022-04-08 15:37:50 +00:00
// Done for health reasons
#![enable(implicit_some)]
(
name: Name("Gnarling Chieftain"),
body: RandomWith("gnarling"),
alignment: Alignment(Enemy),
2022-04-23 14:54:01 +00:00
loot: LootTable("common.loot_tables.dungeon.tier-0.chieftain"),
2022-04-08 15:37:50 +00:00
inventory: (
loadout: Inline((
inherit: Asset("common.loadout.dungeon.gnarling.chieftain"),
2022-05-06 19:58:52 +00:00
active_hands: InHands((Item("common.items.npc_weapons.biped_small.gnarling.chieftain"), None)),
2022-04-08 15:37:50 +00:00
)),
),
2022-02-09 01:23:23 +00:00
meta: [
SkillSetAsset("common.skillset.preset.rank5.fullskill"),
],
2022-04-08 15:37:50 +00:00
)