Merge branch 'juliancoffee/extended_loadout_config' into 'master'

Refactor loadout creation for Npc

See merge request veloren/veloren!3129
This commit is contained in:
Imbris 2022-01-27 23:05:53 +00:00
commit e53d1dde09
199 changed files with 1346 additions and 1461 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
time cargo clippy --all-targets --locked --features="bin_cmd_doc_gen,bin_compression,bin_csv,bin_graphviz,bin_bot,asset_tweak" -- -D warnings && time cargo clippy --all-targets --locked --features="bin_cmd_doc_gen,bin_compression,bin_csv,bin_graphviz,bin_bot,bin_asset_migrate,asset_tweak" -- -D warnings &&
# Ensure that the veloren-voxygen default-publish feature builds as it excludes some default features # Ensure that the veloren-voxygen default-publish feature builds as it excludes some default features
time cargo clippy -p veloren-voxygen --locked --no-default-features --features="default-publish" -- -D warnings && time cargo clippy -p veloren-voxygen --locked --no-default-features --features="default-publish" -- -D warnings &&
time cargo fmt --all -- --check time cargo fmt --all -- --check

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Yeti"), name: Name("Yeti"),
body: RandomWith("yeti"), body: RandomWith("yeti"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.calendar.christmas.yeti"), loot: LootTable("common.loot_tables.calendar.christmas.yeti"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Crazy Sheep"), name: Name("Crazy Sheep"),
body: RandomWith("sheep"), body: RandomWith("sheep"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.fallback"), loot: LootTable("common.loot_tables.fallback"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,19 +1,16 @@
EntityConfig ( (
name: Name("Yan Hus"), name: Name("Yan Hus"),
body: RandomWith("humanoid"), body: RandomWith("humanoid"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Hands(TwoHanded(Choice([
(1, Some(Item("common.items.weapons.tool.broom"))),
(1, Some(Item("common.items.weapons.tool.hoe"))),
(1, Some(Item("common.items.weapons.tool.pickaxe"))),
(1, Some(Item("common.items.weapons.tool.rake"))),
(1, Some(Item("common.items.weapons.tool.shovel-0"))),
(1, Some(Item("common.items.weapons.tool.shovel-1"))),
(1, Some(Item("common.items.weapons.bow.bone-1"))),
]))),
loot: LootTable("common.loot_tables.fallback"), loot: LootTable("common.loot_tables.fallback"),
hands: TwoHanded(Choice([
(1.0, Some(Item("common.items.weapons.tool.broom"))),
(1.0, Some(Item("common.items.weapons.tool.hoe"))),
(1.0, Some(Item("common.items.weapons.tool.pickaxe"))),
(1.0, Some(Item("common.items.weapons.tool.rake"))),
(1.0, Some(Item("common.items.weapons.tool.shovel-0"))),
(1.0, Some(Item("common.items.weapons.tool.shovel-1"))),
(1.0, Some(Item("common.items.weapons.bow.bone-1"))),
])),
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Big Goose"), name: Name("Big Goose"),
body: RandomWith("goose"), body: RandomWith("goose"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.fallback"), loot: LootTable("common.loot_tables.fallback"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Harvester"), name: Name("Harvester"),
body: RandomWith("harvester"), body: RandomWith("harvester"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.dungeon.tier-0.boss"), loot: LootTable("common.loot_tables.dungeon.tier-0.boss"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,13 +1,12 @@
EntityConfig ( (
name: Name("Gnarling Chieftain"), name: Name("Gnarling Chieftain"),
body: RandomWith("gnarling"), body: RandomWith("gnarling"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.gnarling.chieftain_staff")),
base_asset: Loadout("common.loadout.dungeon.tier-0.gnarling_chieftain"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-0.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-0.enemy"),
meta: [],
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.gnarling.chieftain_staff")),
meta: [
LoadoutAsset("common.loadout.dungeon.tier-0.gnarling_chieftain"),
],
) )

View File

@ -1,13 +1,12 @@
EntityConfig ( (
name: Name("Gnarling Logger"), name: Name("Gnarling Logger"),
body: RandomWith("gnarling"), body: RandomWith("gnarling"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.gnarling.axe")),
base_asset: Loadout("common.loadout.dungeon.tier-0.logger"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-0.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-0.enemy"),
meta: [],
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.gnarling.axe")),
meta: [
LoadoutAsset("common.loadout.dungeon.tier-0.logger"),
],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Deadwood"), name: Name("Deadwood"),
body: RandomWith("deadwood"), body: RandomWith("deadwood"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.dungeon.tier-0.miniboss"), loot: LootTable("common.loot_tables.dungeon.tier-0.miniboss"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,13 +1,12 @@
EntityConfig ( (
name: Name("Gnarling Mugger"), name: Name("Gnarling Mugger"),
body: RandomWith("gnarling"), body: RandomWith("gnarling"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.gnarling.dagger")),
base_asset: Loadout("common.loadout.dungeon.tier-0.mugger"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-0.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-0.enemy"),
meta: [],
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.gnarling.dagger")),
meta: [
LoadoutAsset("common.loadout.dungeon.tier-0.mugger"),
],
) )

View File

@ -1,13 +1,12 @@
EntityConfig ( (
name: Name("Gnarling Stalker"), name: Name("Gnarling Stalker"),
body: RandomWith("gnarling"), body: RandomWith("gnarling"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.gnarling.blowgun")),
base_asset: Loadout("common.loadout.dungeon.tier-0.stalker"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-0.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-0.enemy"),
meta: [],
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.gnarling.blowgun")),
meta: [
LoadoutAsset("common.loadout.dungeon.tier-0.stalker"),
],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Yeti"), name: Name("Yeti"),
body: RandomWith("yeti"), body: RandomWith("yeti"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.dungeon.tier-1.boss"), loot: LootTable("common.loot_tables.dungeon.tier-1.boss"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,14 +1,14 @@
EntityConfig ( (
name: Name("Adlet Tracker"), name: Name("Adlet Tracker"),
body: RandomWith("adlet"), body: RandomWith("adlet"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.adlet.adlet_bow")),
base_asset: Loadout("common.loadout.dungeon.tier-1.adlet_bow"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-1.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-1.enemy"),
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.adlet.adlet_bow")),
meta: [ meta: [
LoadoutAsset("common.loadout.dungeon.tier-1.adlet_bow"),
SkillSetAsset("common.skillset.preset.rank1.fullskill"), SkillSetAsset("common.skillset.preset.rank1.fullskill"),
], ],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Rat"), name: Name("Rat"),
body: RandomWith("rat"), body: RandomWith("rat"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_small.generic"), loot: LootTable("common.loot_tables.creature.quad_small.generic"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,13 +1,12 @@
EntityConfig ( (
name: Name("Adlet Hunter"), name: Name("Adlet Hunter"),
body: RandomWith("adlet"), body: RandomWith("adlet"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.adlet.wooden_spear")),
base_asset: Loadout("common.loadout.dungeon.tier-1.adlet_spear"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-1.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-1.enemy"),
meta: [],
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.adlet.wooden_spear")),
meta: [
LoadoutAsset("common.loadout.dungeon.tier-1.adlet_spear"),
],
) )

View File

@ -1,14 +1,14 @@
EntityConfig ( (
name: Name("Adlet Shaman"), name: Name("Adlet Shaman"),
body: RandomWith("adlet"), body: RandomWith("adlet"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.adlet.gnoll_staff")),
base_asset: Loadout("common.loadout.dungeon.tier-1.adlet_spear"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-1.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-1.enemy"),
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.adlet.gnoll_staff")),
meta: [ meta: [
LoadoutAsset("common.loadout.dungeon.tier-1.adlet_spear"),
SkillSetAsset("common.skillset.preset.rank1.fullskill"), SkillSetAsset("common.skillset.preset.rank1.fullskill"),
], ],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Tidal Warrior"), name: Name("Tidal Warrior"),
body: RandomWith("tidalwarrior"), body: RandomWith("tidalwarrior"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.dungeon.tier-2.boss"), loot: LootTable("common.loot_tables.dungeon.tier-2.boss"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,14 +1,14 @@
EntityConfig ( (
name: Name("Sahagin Sniper"), name: Name("Sahagin Sniper"),
body: RandomWith("sahagin"), body: RandomWith("sahagin"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.sahagin.adlet_bow")),
base_asset: Loadout("common.loadout.dungeon.tier-2.sahagin"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-2.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-2.enemy"),
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.sahagin.adlet_bow")),
meta: [ meta: [
LoadoutAsset("common.loadout.dungeon.tier-2.sahagin"),
SkillSetAsset("common.skillset.preset.rank2.fullskill"), SkillSetAsset("common.skillset.preset.rank2.fullskill"),
], ],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Hakulaq"), name: Name("Hakulaq"),
body: RandomWith("hakulaq"), body: RandomWith("hakulaq"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_low.fanged"), loot: LootTable("common.loot_tables.creature.quad_low.fanged"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,13 +1,12 @@
EntityConfig ( (
name: Name("Sahagin Spearman"), name: Name("Sahagin Spearman"),
body: RandomWith("sahagin"), body: RandomWith("sahagin"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.sahagin.wooden_spear")),
base_asset: Loadout("common.loadout.dungeon.tier-2.sahagin"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-2.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-2.enemy"),
meta: [],
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.sahagin.wooden_spear")),
meta: [
LoadoutAsset("common.loadout.dungeon.tier-2.sahagin"),
],
) )

View File

@ -1,14 +1,14 @@
EntityConfig ( (
name: Name("Sahagin Sorcerer"), name: Name("Sahagin Sorcerer"),
body: RandomWith("sahagin"), body: RandomWith("sahagin"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.sahagin.gnoll_staff")),
base_asset: Loadout("common.loadout.dungeon.tier-2.sahagin"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-2.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-2.enemy"),
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.sahagin.gnoll_staff")),
meta: [ meta: [
LoadoutAsset("common.loadout.dungeon.tier-2.sahagin"),
SkillSetAsset("common.skillset.preset.rank2.fullskill"), SkillSetAsset("common.skillset.preset.rank2.fullskill"),
], ],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Bonerattler"), name: Name("Bonerattler"),
body: RandomWith("bonerattler"), body: RandomWith("bonerattler"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.carapace"), loot: LootTable("common.loot_tables.creature.quad_medium.carapace"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Clay Golem"), name: Name("Clay Golem"),
body: RandomWith("claygolem"), body: RandomWith("claygolem"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.dungeon.tier-3.boss"), loot: LootTable("common.loot_tables.dungeon.tier-3.boss"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,14 +1,14 @@
EntityConfig ( (
name: Name("Haniwa Archer"), name: Name("Haniwa Archer"),
body: RandomWith("haniwa"), body: RandomWith("haniwa"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.haniwa.adlet_bow")),
base_asset: Loadout("common.loadout.dungeon.tier-3.haniwa"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-3.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-3.enemy"),
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.haniwa.adlet_bow")),
meta: [ meta: [
LoadoutAsset("common.loadout.dungeon.tier-3.haniwa"),
SkillSetAsset("common.skillset.preset.rank3.fullskill"), SkillSetAsset("common.skillset.preset.rank3.fullskill"),
], ],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Haniwa Sentry"), name: Name("Haniwa Sentry"),
body: Exact(Object(HaniwaSentry)), body: Exact(Object(HaniwaSentry)),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: Item("common.items.crafting_ing.stones"), loot: Item("common.items.crafting_ing.stones"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,13 +1,12 @@
EntityConfig ( (
name: Name("Haniwa Guard"), name: Name("Haniwa Guard"),
body: RandomWith("haniwa"), body: RandomWith("haniwa"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.haniwa.wooden_spear")),
base_asset: Loadout("common.loadout.dungeon.tier-3.haniwa"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-3.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-3.enemy"),
meta: [],
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.haniwa.wooden_spear")),
meta: [
LoadoutAsset("common.loadout.dungeon.tier-3.haniwa"),
],
) )

View File

@ -1,14 +1,14 @@
EntityConfig ( (
name: Name("Haniwa Sorcerer"), name: Name("Haniwa Sorcerer"),
body: RandomWith("haniwa"), body: RandomWith("haniwa"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.haniwa.gnoll_staff")),
base_asset: Loadout("common.loadout.dungeon.tier-3.haniwa"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-3.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-3.enemy"),
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.haniwa.gnoll_staff")),
meta: [ meta: [
LoadoutAsset("common.loadout.dungeon.tier-3.haniwa"),
SkillSetAsset("common.skillset.preset.rank3.fullskill"), SkillSetAsset("common.skillset.preset.rank3.fullskill"),
], ],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Minotaur"), name: Name("Minotaur"),
body: RandomWith("minotaur"), body: RandomWith("minotaur"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.dungeon.tier-4.boss"), loot: LootTable("common.loot_tables.dungeon.tier-4.boss"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,14 +1,14 @@
EntityConfig ( (
name: Name("Myrmidon Marksman"), name: Name("Myrmidon Marksman"),
body: RandomWith("myrmidon"), body: RandomWith("myrmidon"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.myrmidon.adlet_bow")),
base_asset: Loadout("common.loadout.dungeon.tier-4.myrmidon"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-4.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-4.enemy"),
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.myrmidon.adlet_bow")),
meta: [ meta: [
LoadoutAsset("common.loadout.dungeon.tier-4.myrmidon"),
SkillSetAsset("common.skillset.preset.rank4.fullskill"), SkillSetAsset("common.skillset.preset.rank4.fullskill"),
], ],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Dullahan"), name: Name("Dullahan"),
body: RandomWith("dullahan"), body: RandomWith("dullahan"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.dungeon.tier-4.miniboss"), loot: LootTable("common.loot_tables.dungeon.tier-4.miniboss"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,13 +1,12 @@
EntityConfig ( (
name: Name("Myrmidon Hoplite"), name: Name("Myrmidon Hoplite"),
body: RandomWith("myrmidon"), body: RandomWith("myrmidon"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.myrmidon.wooden_spear")),
base_asset: Loadout("common.loadout.dungeon.tier-4.myrmidon"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-4.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-4.enemy"),
meta: [],
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.myrmidon.wooden_spear")),
meta: [
LoadoutAsset("common.loadout.dungeon.tier-4.myrmidon"),
],
) )

View File

@ -1,13 +1,12 @@
EntityConfig ( (
name: Name("Myrmidon Wizard"), name: Name("Myrmidon Wizard"),
body: RandomWith("myrmidon"), body: RandomWith("myrmidon"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.myrmidon.gnoll_staff")),
base_asset: Loadout("common.loadout.dungeon.tier-4.myrmidon"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-4.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-4.enemy"),
meta: [],
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.myrmidon.gnoll_staff")),
meta: [
LoadoutAsset("common.loadout.dungeon.tier-4.myrmidon"),
],
) )

View File

@ -1,18 +1,18 @@
EntityConfig ( (
name: Name("Beastmaster"), name: Name("Beastmaster"),
body: RandomWith("humanoid"), body: RandomWith("humanoid"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Choice([
(1, Some(Item("common.items.weapons.axe.malachite_axe-0"))),
(1, Some(Item("common.items.weapons.sword.bloodsteel-1"))),
(1, Some(Item("common.items.weapons.bow.velorite"))),
])),
base_asset: Loadout("common.loadout.dungeon.tier-5.beastmaster"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-5.miniboss"), loot: LootTable("common.loot_tables.dungeon.tier-5.miniboss"),
hands: TwoHanded(Choice([
(1.0, Some(Item("common.items.weapons.axe.malachite_axe-0"))),
(1.0, Some(Item("common.items.weapons.sword.bloodsteel-1"))),
(1.0, Some(Item("common.items.weapons.bow.velorite"))),
])),
meta: [ meta: [
LoadoutAsset("common.loadout.dungeon.tier-5.beastmaster"),
SkillSetAsset("common.skillset.preset.rank5.fullskill"), SkillSetAsset("common.skillset.preset.rank5.fullskill"),
], ],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Mindflayer"), name: Name("Mindflayer"),
body: RandomWith("mindflayer"), body: RandomWith("mindflayer"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.dungeon.tier-5.boss"), loot: LootTable("common.loot_tables.dungeon.tier-5.boss"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,22 +1,22 @@
EntityConfig ( (
name: Name("Cultist"), name: Name("Cultist"),
body: RandomWith("humanoid"), body: RandomWith("humanoid"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Choice([
(2, Some(Item("common.items.weapons.axe_1h.orichalcum-0"))),
(4, Some(Item("common.items.weapons.sword.cultist"))),
(2, Some(Item("common.items.weapons.staff.cultist_staff"))),
(2, Some(Item("common.items.weapons.hammer.cultist_purp_2h-0"))),
(2, Some(Item("common.items.weapons.hammer_1h.orichalcum-0"))),
(2, Some(Item("common.items.weapons.bow.velorite"))),
(1, Some(Item("common.items.weapons.sceptre.sceptre_velorite_0"))),
])),
base_asset: Loadout("common.loadout.dungeon.tier-5.cultist"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-5.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-5.enemy"),
hands: TwoHanded(Choice([
(2.0, Some(Item("common.items.weapons.axe_1h.orichalcum-0"))),
(4.0, Some(Item("common.items.weapons.sword.cultist"))),
(2.0, Some(Item("common.items.weapons.staff.cultist_staff"))),
(2.0, Some(Item("common.items.weapons.hammer.cultist_purp_2h-0"))),
(2.0, Some(Item("common.items.weapons.hammer_1h.orichalcum-0"))),
(2.0, Some(Item("common.items.weapons.bow.velorite"))),
(1.0, Some(Item("common.items.weapons.sceptre.sceptre_velorite_0"))),
])),
meta: [ meta: [
LoadoutAsset("common.loadout.dungeon.tier-5.cultist"),
SkillSetAsset("common.skillset.preset.rank5.fullskill"), SkillSetAsset("common.skillset.preset.rank5.fullskill"),
], ],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Tamed Darkhound"), name: Name("Tamed Darkhound"),
body: RandomWith("darkhound"), body: RandomWith("darkhound"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.dungeon.tier-5.minion"), loot: LootTable("common.loot_tables.dungeon.tier-5.minion"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,13 +1,8 @@
EntityConfig ( (
name: Name("Cultist Husk"), name: Name("Cultist Husk"),
body: RandomWith("husk"), body: RandomWith("husk"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Asset(Loadout("common.loadout.dungeon.tier-5.husk")),
loot: LootTable("common.loot_tables.dungeon.tier-5.minion"), loot: LootTable("common.loot_tables.dungeon.tier-5.minion"),
meta: [],
hands: Uninit,
meta: [
LoadoutAsset("common.loadout.dungeon.tier-5.husk"),
],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Husk Brute"), name: Name("Husk Brute"),
body: RandomWith("husk_brute"), body: RandomWith("husk_brute"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.dungeon.tier-5.miniboss"), loot: LootTable("common.loot_tables.dungeon.tier-5.miniboss"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Possessed Turret"), name: Name("Possessed Turret"),
body: Exact(Object(Crossbow)), body: Exact(Object(Crossbow)),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: Item("common.items.crafting_ing.twigs"), loot: Item("common.items.crafting_ing.twigs"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,14 +1,15 @@
EntityConfig ( (
name: Name("Cultist Warlock"), name: Name("Cultist Warlock"),
body: RandomWith("cultist_warlock"), body: RandomWith("cultist_warlock"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Choice([
(1.5, Some(Item("common.items.npc_weapons.staff.bipedlarge-cultist"))),
(1, Some(Item("common.items.npc_weapons.bow.bipedlarge-velorite"))),
])),
base_asset: Loadout("common.loadout.dungeon.tier-5.warlock"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-5.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-5.enemy"),
hands: TwoHanded(Choice([
(1.5, Some(Item("common.items.npc_weapons.staff.bipedlarge-cultist"))),
(1.0, Some(Item("common.items.npc_weapons.bow.bipedlarge-velorite"))),
])),
meta: [], meta: [],
) )

View File

@ -1,14 +1,15 @@
EntityConfig ( (
name: Name("Cultist Warlord"), name: Name("Cultist Warlord"),
body: RandomWith("cultist_warlord"), body: RandomWith("cultist_warlord"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Choice([
(1.5, Some(Item("common.items.npc_weapons.sword.bipedlarge-cultist"))),
(1, Some(Item("common.items.npc_weapons.hammer.bipedlarge-cultist"))),
])),
base_asset: Loadout("common.loadout.dungeon.tier-5.warlord"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-5.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-5.enemy"),
hands: TwoHanded(Choice([
(1.5, Some(Item("common.items.npc_weapons.sword.bipedlarge-cultist"))),
(1.0, Some(Item("common.items.npc_weapons.hammer.bipedlarge-cultist"))),
])),
meta: [], meta: [],
) )

View File

@ -1,14 +1,14 @@
EntityConfig ( (
name: Name("Grave Robber"), name: Name("Grave Robber"),
body: RandomWith("dwarf"), body: RandomWith("dwarf"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.weapons.hammer.steel_hammer-3")),
base_asset: Loadout("common.loadout.spots.dwarf_graverobber"),
inventory: [],
),
loot: LootTable("common.loot_tables.spots.bandit"), loot: LootTable("common.loot_tables.spots.bandit"),
hands: TwoHanded(Item("common.items.weapons.hammer.steel_hammer-3")),
meta: [ meta: [
LoadoutAsset("common.loadout.spots.dwarf_graverobber"),
SkillSetAsset("common.skillset.preset.rank3.fullskill"), SkillSetAsset("common.skillset.preset.rank3.fullskill"),
], ],
) )

View File

@ -1,13 +1,12 @@
EntityConfig ( (
name: Name("Gnome"), name: Name("Gnome"),
body: RandomWith("gnome"), body: RandomWith("gnome"),
alignment: Alignment(Wild), alignment: Alignment(Wild),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.myrmidon.wooden_spear")),
base_asset: Loadout("common.loadout.spots.gnome"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-4.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-4.enemy"),
meta: [],
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.myrmidon.wooden_spear")),
meta: [
LoadoutAsset("common.loadout.spots.gnome"),
],
) )

View File

@ -1,14 +1,14 @@
EntityConfig ( (
name: Name("Grim Salvager"), name: Name("Grim Salvager"),
body: RandomWith("humanoid"), body: RandomWith("humanoid"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.weapons.hammer.steel_hammer-0")),
base_asset: Loadout("common.loadout.spots.dwarf_graverobber"),
inventory: [],
),
loot: LootTable("common.loot_tables.spots.bandit"), loot: LootTable("common.loot_tables.spots.bandit"),
hands: TwoHanded(Item("common.items.weapons.hammer.steel_hammer-0")),
meta: [ meta: [
LoadoutAsset("common.loadout.spots.dwarf_graverobber"),
SkillSetAsset("common.skillset.preset.rank1.fullskill"), SkillSetAsset("common.skillset.preset.rank1.fullskill"),
], ],
) )

View File

@ -1,14 +1,12 @@
EntityConfig ( (
name: Name("Myrmidon Hoplite"), name: Name("Myrmidon Hoplite"),
body: RandomWith("myrmidon"), body: RandomWith("myrmidon"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.myrmidon.wooden_spear")),
base_asset: Loadout("common.loadout.dungeon.tier-4.myrmidon"),
inventory: [],
),
loot: LootTable("common.loot_tables.dungeon.tier-4.enemy"), loot: LootTable("common.loot_tables.dungeon.tier-4.enemy"),
meta: [],
hands: TwoHanded(Item("common.items.npc_weapons.biped_small.myrmidon.wooden_spear")),
meta: [
LoadoutAsset("common.loadout.dungeon.tier-4.myrmidon"),
],
) )

View File

@ -1,14 +1,14 @@
EntityConfig ( (
name: Name("Pirate"), name: Name("Pirate"),
body: RandomWith("humanoid"), body: RandomWith("humanoid"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: Paired(Item("common.items.weapons.sword_1h.iron-2")),
base_asset: Loadout("common.loadout.spots.pirate"),
inventory: [],
),
loot: LootTable("common.loot_tables.spots.pirate"), loot: LootTable("common.loot_tables.spots.pirate"),
hands: Paired(Item("common.items.weapons.sword_1h.iron-2")),
meta: [ meta: [
SkillSetAsset("common.skillset.preset.rank2.fullskill"), SkillSetAsset("common.skillset.preset.rank2.fullskill"),
LoadoutAsset("common.loadout.spots.pirate"),
], ],
) )

View File

@ -1,9 +1,8 @@
EntityConfig ( (
name: Name("Saurok Bandit"), name: Name("Saurok Bandit"),
body: RandomWith("saurok_mighty"), body: RandomWith("saurok_mighty"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Hands(TwoHanded(Item("common.items.npc_weapons.bow.saurok_bow"))),
loot: LootTable("common.loot_tables.creature.biped_large.saurok"), loot: LootTable("common.loot_tables.creature.biped_large.saurok"),
meta: [],
hands: TwoHanded(Item("common.items.npc_weapons.bow.saurok_bow")),
) )

View File

@ -1,14 +1,14 @@
EntityConfig ( (
name: Name("Witch"), name: Name("Witch"),
body: RandomWith("humanoid"), body: RandomWith("humanoid"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.weapons.sceptre.belzeshrub")),
base_asset: Loadout("common.loadout.spots.witch"),
inventory: [],
),
loot: LootTable("common.loot_tables.spots.witch"), loot: LootTable("common.loot_tables.spots.witch"),
hands: TwoHanded(Item("common.items.weapons.sceptre.belzeshrub")),
meta: [ meta: [
LoadoutAsset("common.loadout.spots.witch"),
SkillSetAsset("common.skillset.preset.rank3.fullskill"), SkillSetAsset("common.skillset.preset.rank3.fullskill"),
], ],
) )

View File

@ -1,18 +1,16 @@
/// Template file for EntityConfig, check documentation in code for more /// Template file for EntityConfig, check documentation in code for more
/// By the time of writing this comment it lives in common/src/generation.rs /// By the time of writing this comment it lives in common/src/generation.rs
EntityConfig ( (
name: Name("Paddy"), name: Name("Paddy"),
body: RandomWith("humanoid"), body: RandomWith("humanoid"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: Extended(
hands: TwoHanded(Item("common.items.weapons.sword.cultist")),
base_asset: Loadout("common.loadout.village.merchant"),
inventory: [],
),
loot: LootTable("common.loot_tables.creature.humanoid"), loot: LootTable("common.loot_tables.creature.humanoid"),
hands: TwoHanded(Item("common.items.weapons.sword.cultist")),
meta: [ meta: [
LoadoutAsset("common.loadout.village.merchant"),
SkillSetAsset("common.skillset.preset.rank3.fullskill"), SkillSetAsset("common.skillset.preset.rank3.fullskill"),
], ],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Name("Training Dummy"), name: Name("Training Dummy"),
body: Exact(Object(TrainingDummy)), body: Exact(Object(TrainingDummy)),
alignment: Alignment(Passive), alignment: Alignment(Passive),
loadout: FromBody,
loot: Nothing, loot: Nothing,
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,16 +1,21 @@
EntityConfig ( (
name: Name("Guard"), name: Name("Guard"),
body: RandomWith("humanoid"), body: RandomWith("humanoid"),
alignment: Alignment(Npc), alignment: Alignment(Npc),
loadout: Extended(
hands: TwoHanded(Choice([
(1, Some(Item("common.items.weapons.sword.cobalt-0"))),
(2, Some(Item("common.items.weapons.bow.metal-2"))),
(1, Some(Item("common.items.weapons.axe.cobalt_axe-0"))),
])),
base_asset: Loadout("common.loadout.village.guard"),
inventory: [
(25, "common.items.consumable.potion_big"),
],
),
loot: LootTable("common.loot_tables.creature.humanoid"), loot: LootTable("common.loot_tables.creature.humanoid"),
hands: TwoHanded(Choice([
(1.0, Some(Item("common.items.weapons.sword.cobalt-0"))),
(2.0, Some(Item("common.items.weapons.bow.metal-2"))),
(1.0, Some(Item("common.items.weapons.axe.cobalt_axe-0"))),
])),
meta: [ meta: [
SkillSetAsset("common.skillset.preset.rank3.fullskill"), SkillSetAsset("common.skillset.preset.rank3.fullskill"),
], ],

View File

@ -1,18 +1,14 @@
EntityConfig ( (
name: Name("Merchant"), name: Name("Merchant"),
body: RandomWith("humanoid"), body: RandomWith("humanoid"),
alignment: Alignment(Npc), alignment: Alignment(Npc),
loadout: Hands(TwoHanded(Choice([
// TODO: consider giving some gold/gems/materials? (2, Some(Item("common.items.weapons.bow.eldwood-0"))),
(1, Some(Item("common.items.weapons.sword.steel-0"))),
(1, Some(Item("common.items.weapons.sword_1h.bloodsteel-0"))),
(2, Some(Item("common.items.weapons.staff.flamethrower_0"))),
]))),
loot: LootTable("common.loot_tables.creature.humanoid"), loot: LootTable("common.loot_tables.creature.humanoid"),
hands: TwoHanded(Choice([
(2.0, Some(Item("common.items.weapons.bow.eldwood-0"))),
(1.0, Some(Item("common.items.weapons.sword.steel-0"))),
(1.0, Some(Item("common.items.weapons.sword_1h.bloodsteel-0"))),
(2.0, Some(Item("common.items.weapons.staff.flamethrower_0"))),
])),
meta: [ meta: [
SkillSetAsset("common.skillset.preset.rank3.fullskill"), SkillSetAsset("common.skillset.preset.rank3.fullskill"),
], ],

View File

@ -1,18 +1,23 @@
EntityConfig ( (
name: Name("Villager"), name: Name("Villager"),
body: RandomWith("humanoid"), body: RandomWith("humanoid"),
alignment: Alignment(Npc), alignment: Alignment(Npc),
loadout: Extended(
hands: TwoHanded(Choice([
(1, Some(Item("common.items.weapons.tool.broom"))),
(1, Some(Item("common.items.weapons.tool.hoe"))),
(1, Some(Item("common.items.weapons.tool.pickaxe"))),
(1, Some(Item("common.items.weapons.tool.rake"))),
(1, Some(Item("common.items.weapons.tool.shovel-0"))),
(1, Some(Item("common.items.weapons.tool.shovel-1"))),
])),
base_asset: Loadout("common.loadout.village.villager"),
inventory: [
(10, "common.items.consumable.potion_big"),
],
),
loot: LootTable("common.loot_tables.creature.humanoid"), loot: LootTable("common.loot_tables.creature.humanoid"),
hands: TwoHanded(Choice([
(1.0, Some(Item("common.items.weapons.tool.broom"))),
(1.0, Some(Item("common.items.weapons.tool.hoe"))),
(1.0, Some(Item("common.items.weapons.tool.pickaxe"))),
(1.0, Some(Item("common.items.weapons.tool.rake"))),
(1.0, Some(Item("common.items.weapons.tool.shovel-0"))),
(1.0, Some(Item("common.items.weapons.tool.shovel-1"))),
])),
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("akhlut"), body: RandomWith("akhlut"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.ice"), loot: LootTable("common.loot_tables.creature.quad_medium.ice"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("alligator"), body: RandomWith("alligator"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_low.generic"), loot: LootTable("common.loot_tables.creature.quad_low.generic"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("antlion"), body: RandomWith("antlion"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.arthropod.carapace"), loot: LootTable("common.loot_tables.creature.arthropod.carapace"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("archaeos"), body: RandomWith("archaeos"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.theropod.horned"), loot: LootTable("common.loot_tables.creature.theropod.horned"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("asp"), body: RandomWith("asp"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_low.venemous"), loot: LootTable("common.loot_tables.creature.quad_low.venemous"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("basilisk"), body: RandomWith("basilisk"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_low.basilisk"), loot: LootTable("common.loot_tables.creature.quad_low.basilisk"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("batfox"), body: RandomWith("batfox"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_small.generic"), loot: LootTable("common.loot_tables.creature.quad_small.generic"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("bear"), body: RandomWith("bear"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.fanged"), loot: LootTable("common.loot_tables.creature.quad_medium.fanged"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("black_widow"), body: RandomWith("black_widow"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.arthropod.venom"), loot: LootTable("common.loot_tables.creature.arthropod.venom"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("oni_blue"), body: RandomWith("oni_blue"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.biped_large.default"), loot: LootTable("common.loot_tables.creature.biped_large.default"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("bonerattler"), body: RandomWith("bonerattler"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.carapace"), loot: LootTable("common.loot_tables.creature.quad_medium.carapace"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("salamander"), body: RandomWith("salamander"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_low.salamander"), loot: LootTable("common.loot_tables.creature.quad_low.salamander"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("cave_spider"), body: RandomWith("cave_spider"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.arthropod.web"), loot: LootTable("common.loot_tables.creature.arthropod.web"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("troll_cave"), body: RandomWith("troll_cave"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.biped_large.troll"), loot: LootTable("common.loot_tables.creature.biped_large.troll"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("cockatrice"), body: RandomWith("cockatrice"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.bird_large.cockatrice"), loot: LootTable("common.loot_tables.creature.bird_large.cockatrice"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("crocodile"), body: RandomWith("crocodile"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_low.generic"), loot: LootTable("common.loot_tables.creature.quad_low.generic"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("cyclops"), body: RandomWith("cyclops"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.biped_large.default"), loot: LootTable("common.loot_tables.creature.biped_large.default"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("deadwood"), body: RandomWith("deadwood"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_low.deadwood"), loot: LootTable("common.loot_tables.creature.quad_low.deadwood"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("dodarock"), body: RandomWith("dodarock"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_small.dodarock"), loot: LootTable("common.loot_tables.creature.quad_small.dodarock"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("dreadhorn"), body: RandomWith("dreadhorn"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.dreadhorn"), loot: LootTable("common.loot_tables.creature.quad_medium.dreadhorn"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("frostfang"), body: RandomWith("frostfang"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.ice"), loot: LootTable("common.loot_tables.creature.quad_medium.ice"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("grolgar"), body: RandomWith("grolgar"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.fanged"), loot: LootTable("common.loot_tables.creature.quad_medium.fanged"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("hakulaq"), body: RandomWith("hakulaq"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_low.fanged"), loot: LootTable("common.loot_tables.creature.quad_low.fanged"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("horn_beetle"), body: RandomWith("horn_beetle"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.arthropod.carapace"), loot: LootTable("common.loot_tables.creature.arthropod.carapace"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("hyena"), body: RandomWith("hyena"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_small.generic"), loot: LootTable("common.loot_tables.creature.quad_small.generic"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("icedrake"), body: RandomWith("icedrake"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.ice"), loot: LootTable("common.loot_tables.creature.quad_medium.ice"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("icepike"), body: RandomWith("icepike"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.fish"), loot: LootTable("common.loot_tables.creature.fish"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("lavadrake"), body: RandomWith("lavadrake"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_low.carapace"), loot: LootTable("common.loot_tables.creature.quad_low.carapace"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("lion"), body: RandomWith("lion"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.clawed"), loot: LootTable("common.loot_tables.creature.quad_medium.clawed"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("mammoth"), body: RandomWith("mammoth"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.mammoth"), loot: LootTable("common.loot_tables.creature.quad_medium.mammoth"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("maneater"), body: RandomWith("maneater"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_low.maneater"), loot: LootTable("common.loot_tables.creature.quad_low.maneater"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("saurok_mighty"), body: RandomWith("saurok_mighty"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.biped_large.saurok"), loot: LootTable("common.loot_tables.creature.biped_large.saurok"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("monitor"), body: RandomWith("monitor"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_low.generic"), loot: LootTable("common.loot_tables.creature.quad_low.generic"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("troll_mountain"), body: RandomWith("troll_mountain"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.biped_large.troll"), loot: LootTable("common.loot_tables.creature.biped_large.troll"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("ngoubou"), body: RandomWith("ngoubou"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.horned"), loot: LootTable("common.loot_tables.creature.quad_medium.horned"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("ntouka"), body: RandomWith("ntouka"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.theropod.horned"), loot: LootTable("common.loot_tables.creature.theropod.horned"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("saurok_occult"), body: RandomWith("saurok_occult"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.biped_large.saurok"), loot: LootTable("common.loot_tables.creature.biped_large.saurok"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("odonto"), body: RandomWith("odonto"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.theropod.generic"), loot: LootTable("common.loot_tables.creature.theropod.generic"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("ogre"), body: RandomWith("ogre"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.biped_large.default"), loot: LootTable("common.loot_tables.creature.biped_large.default"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("oni_red"), body: RandomWith("oni_red"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.biped_large.default"), loot: LootTable("common.loot_tables.creature.biped_large.default"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("roc"), body: RandomWith("roc"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.bird_large.roc"), loot: LootTable("common.loot_tables.creature.bird_large.roc"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("rocksnapper"), body: RandomWith("rocksnapper"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_low.carapace"), loot: LootTable("common.loot_tables.creature.quad_low.carapace"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,14 +1,11 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: Exact(QuadrupedMedium(Body( body: Exact(QuadrupedMedium((
species: Roshwalr, species: Roshwalr,
body_type: Male, body_type: Male,
))), ))),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.ice"), loot: LootTable("common.loot_tables.creature.quad_medium.ice"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,11 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: Exact(QuadrupedMedium(Body(species: Roshwalr, body_type: Female))), body: Exact(QuadrupedMedium((
species: Roshwalr,
body_type: Female,
))),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.ice"), loot: LootTable("common.loot_tables.creature.quad_medium.ice"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("sabertooth"), body: RandomWith("sabertooth"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_medium.fanged"), loot: LootTable("common.loot_tables.creature.quad_medium.fanged"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("raptor_sand"), body: RandomWith("raptor_sand"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.theropod.raptor"), loot: LootTable("common.loot_tables.creature.theropod.raptor"),
hands: Uninit,
meta: [], meta: [],
) )

View File

@ -1,11 +1,8 @@
EntityConfig ( (
name: Automatic, name: Automatic,
body: RandomWith("sandshark"), body: RandomWith("sandshark"),
alignment: Alignment(Enemy), alignment: Alignment(Enemy),
loadout: FromBody,
loot: LootTable("common.loot_tables.creature.quad_low.carapace"), loot: LootTable("common.loot_tables.creature.quad_low.carapace"),
hands: Uninit,
meta: [], meta: [],
) )

Some files were not shown because too many files have changed in this diff Show More