veloren/assets/common/entity/template.ron

18 lines
628 B
Rust
Raw Normal View History

2022-01-27 12:47:46 +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
2022-04-08 15:37:50 +00:00
#![enable(implicit_some)]
(
name: Name("Paddy"),
body: RandomWith("humanoid"),
alignment: Alignment(Enemy),
2021-09-02 03:50:17 +00:00
loot: LootTable("common.loot_tables.creature.humanoid"),
2022-04-08 15:37:50 +00:00
inventory: (
loadout: Inline((
inherit: Asset("common.loadout.village.merchant"),
2022-05-06 19:58:52 +00:00
active_hands: InHands((Item("common.items.weapons.sword.cultist"), None)),
2022-04-08 15:37:50 +00:00
)),
),
meta: [
2021-12-15 06:51:25 +00:00
SkillSetAsset("common.skillset.preset.rank3.fullskill"),
],
2022-04-08 15:37:50 +00:00
)