2021-07-28 16:19:10 +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
|
2021-06-06 15:55:04 +00:00
|
|
|
EntityConfig (
|
2021-07-11 18:24:44 +00:00
|
|
|
name: Name("Paddy"),
|
2021-06-04 23:10:15 +00:00
|
|
|
|
2021-07-04 14:55:52 +00:00
|
|
|
body: RandomWith("humanoid"),
|
|
|
|
|
|
|
|
alignment: Alignment(Enemy),
|
2021-06-04 23:10:15 +00:00
|
|
|
|
2021-09-02 03:50:17 +00:00
|
|
|
loot: LootTable("common.loot_tables.creature.humanoid"),
|
2021-07-10 20:51:29 +00:00
|
|
|
|
2021-07-11 11:28:56 +00:00
|
|
|
hands: TwoHanded(Item("common.items.weapons.sword.cultist")),
|
2021-06-04 23:10:15 +00:00
|
|
|
|
2021-07-10 20:51:29 +00:00
|
|
|
meta: [
|
|
|
|
LoadoutAsset("common.loadout.village.merchant"),
|
|
|
|
SkillSetAsset("common.skillset.village.merchant"),
|
|
|
|
],
|
2021-06-06 15:55:04 +00:00
|
|
|
)
|