trade_bot/assets/common/entity/template.ron

18 lines
629 B
Plaintext
Raw Permalink Normal View History

2024-07-03 23:04:49 +00:00
/// Template file for EntityConfig, check documentation in code for more
/// By the time of writing this comment it lives in common/src/generation.rs
#![enable(implicit_some)]
(
name: Name("Paddy"),
body: RandomWith("humanoid"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.humanoids.humanoid"),
inventory: (
loadout: Inline((
inherit: Asset("common.loadout.village.merchant"),
active_hands: InHands((Item("common.items.weapons.sword.cultist"), None)),
)),
),
meta: [
SkillSetAsset("common.skillset.preset.rank3.fullskill"),
],
)