From b74dd21d3bb8b394d0e4d13539843face0f418f2 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Sat, 10 Jul 2021 21:44:53 +0300 Subject: [PATCH] Merge None-loot in EntityConfig to LootKind --- .../common/entity/dungeon/fallback/boss.ron | 2 +- .../common/entity/dungeon/fallback/enemy.ron | 2 +- .../entity/dungeon/fallback/miniboss.ron | 2 +- assets/common/entity/dungeon/tier-0/boss.ron | 2 +- assets/common/entity/dungeon/tier-0/bow.ron | 2 +- .../common/entity/dungeon/tier-0/miniboss.ron | 2 +- assets/common/entity/dungeon/tier-0/spear.ron | 2 +- assets/common/entity/dungeon/tier-0/staff.ron | 2 +- assets/common/entity/dungeon/tier-1/boss.ron | 2 +- assets/common/entity/dungeon/tier-1/bow.ron | 2 +- assets/common/entity/dungeon/tier-1/rat.ron | 2 +- assets/common/entity/dungeon/tier-1/spear.ron | 2 +- assets/common/entity/dungeon/tier-1/staff.ron | 2 +- assets/common/entity/dungeon/tier-2/boss.ron | 2 +- assets/common/entity/dungeon/tier-2/bow.ron | 2 +- .../common/entity/dungeon/tier-2/hakulaq.ron | 2 +- assets/common/entity/dungeon/tier-2/spear.ron | 2 +- assets/common/entity/dungeon/tier-2/staff.ron | 2 +- .../entity/dungeon/tier-3/bonerattler.ron | 2 +- assets/common/entity/dungeon/tier-3/boss.ron | 2 +- assets/common/entity/dungeon/tier-3/bow.ron | 2 +- .../common/entity/dungeon/tier-3/sentry.ron | 2 +- assets/common/entity/dungeon/tier-3/spear.ron | 2 +- assets/common/entity/dungeon/tier-3/staff.ron | 2 +- assets/common/entity/dungeon/tier-4/boss.ron | 2 +- assets/common/entity/dungeon/tier-4/bow.ron | 2 +- .../common/entity/dungeon/tier-4/miniboss.ron | 2 +- assets/common/entity/dungeon/tier-4/spear.ron | 2 +- assets/common/entity/dungeon/tier-4/staff.ron | 2 +- .../entity/dungeon/tier-5/beastmaster.ron | 2 +- assets/common/entity/dungeon/tier-5/boss.ron | 2 +- .../common/entity/dungeon/tier-5/cultist.ron | 2 +- assets/common/entity/dungeon/tier-5/hound.ron | 2 +- assets/common/entity/dungeon/tier-5/husk.ron | 2 +- .../entity/dungeon/tier-5/husk_brute.ron | 2 +- .../common/entity/dungeon/tier-5/turret.ron | 2 +- .../common/entity/dungeon/tier-5/warlock.ron | 2 +- .../common/entity/dungeon/tier-5/warlord.ron | 2 +- assets/common/entity/test.ron | 3 +- assets/common/entity/village/dummy.ron | 2 +- assets/common/entity/village/guard.ron | 2 +- assets/common/entity/village/merchant.ron | 2 +- assets/common/entity/village/villager.ron | 2 +- .../entity/wild/aggressive/dreadhorn.ron | 2 +- .../entity/wild/aggressive/frostfang.ron | 2 +- .../common/entity/wild/aggressive/grolgar.ron | 2 +- .../common/entity/wild/aggressive/mammoth.ron | 2 +- .../entity/wild/aggressive/mountain_troll.ron | 2 +- .../entity/wild/aggressive/rocksnapper.ron | 2 +- .../entity/wild/aggressive/roshwalr.ron | 2 +- .../entity/wild/aggressive/snow_leopard.ron | 2 +- .../entity/wild/aggressive/snow_raptor.ron | 2 +- .../common/entity/wild/aggressive/wendigo.ron | 2 +- assets/common/entity/wild/aggressive/wolf.ron | 2 +- assets/common/entity/wild/aggressive/yale.ron | 2 +- assets/common/entity/wild/peaceful/alpaca.ron | 2 +- .../entity/wild/peaceful/arctic_fox.ron | 2 +- .../entity/wild/peaceful/arctic_hare.ron | 2 +- assets/common/entity/wild/peaceful/eagle.ron | 2 +- .../common/entity/wild/peaceful/highland.ron | 2 +- assets/common/entity/wild/peaceful/llama.ron | 2 +- assets/common/entity/wild/peaceful/moose.ron | 2 +- .../common/entity/wild/peaceful/mouflon.ron | 2 +- assets/common/entity/wild/peaceful/owl.ron | 2 +- .../common/entity/wild/peaceful/tuskram.ron | 2 +- assets/common/entity/wild/peaceful/yak.ron | 2 +- common/src/generation.rs | 47 ++++++++++--------- world/src/layer/wildlife.rs | 32 +++++-------- 68 files changed, 104 insertions(+), 108 deletions(-) diff --git a/assets/common/entity/dungeon/fallback/boss.ron b/assets/common/entity/dungeon/fallback/boss.ron index 002479e311..4429bb7012 100644 --- a/assets/common/entity/dungeon/fallback/boss.ron +++ b/assets/common/entity/dungeon/fallback/boss.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("sheep"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.fallback")), + loot: LootTable("common.loot_tables.fallback"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/fallback/enemy.ron b/assets/common/entity/dungeon/fallback/enemy.ron index 71d2483b36..4580f95f60 100644 --- a/assets/common/entity/dungeon/fallback/enemy.ron +++ b/assets/common/entity/dungeon/fallback/enemy.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("humanoid"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.fallback")), + loot: LootTable("common.loot_tables.fallback"), main_tool: Some(Choice([ (1.0, Some(Item("common.items.weapons.tool.broom"))), diff --git a/assets/common/entity/dungeon/fallback/miniboss.ron b/assets/common/entity/dungeon/fallback/miniboss.ron index dfeb34cb24..f770fd6386 100644 --- a/assets/common/entity/dungeon/fallback/miniboss.ron +++ b/assets/common/entity/dungeon/fallback/miniboss.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("goose"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.fallback")), + loot: LootTable("common.loot_tables.fallback"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-0/boss.ron b/assets/common/entity/dungeon/tier-0/boss.ron index 04f32f3935..b1335d2505 100644 --- a/assets/common/entity/dungeon/tier-0/boss.ron +++ b/assets/common/entity/dungeon/tier-0/boss.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("harvester"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-0.boss")), + loot: LootTable("common.loot_tables.dungeon.tier-0.boss"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-0/bow.ron b/assets/common/entity/dungeon/tier-0/bow.ron index a26c225b74..1efc251451 100644 --- a/assets/common/entity/dungeon/tier-0/bow.ron +++ b/assets/common/entity/dungeon/tier-0/bow.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("gnarling"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-0.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-0.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.gnarling.adlet_bow")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-0/miniboss.ron b/assets/common/entity/dungeon/tier-0/miniboss.ron index 8f091f4065..56025c4a17 100644 --- a/assets/common/entity/dungeon/tier-0/miniboss.ron +++ b/assets/common/entity/dungeon/tier-0/miniboss.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("deadwood"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-0.miniboss")), + loot: LootTable("common.loot_tables.dungeon.tier-0.miniboss"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-0/spear.ron b/assets/common/entity/dungeon/tier-0/spear.ron index df95fc9982..dfd50cb6b7 100644 --- a/assets/common/entity/dungeon/tier-0/spear.ron +++ b/assets/common/entity/dungeon/tier-0/spear.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("gnarling"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-0.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-0.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.gnarling.wooden_spear")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-0/staff.ron b/assets/common/entity/dungeon/tier-0/staff.ron index 593e7a38f6..37de7ce3e3 100644 --- a/assets/common/entity/dungeon/tier-0/staff.ron +++ b/assets/common/entity/dungeon/tier-0/staff.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("gnarling"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-0.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-0.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.gnarling.gnoll_staff")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-1/boss.ron b/assets/common/entity/dungeon/tier-1/boss.ron index 3dfcbfca13..f6ba0c0c60 100644 --- a/assets/common/entity/dungeon/tier-1/boss.ron +++ b/assets/common/entity/dungeon/tier-1/boss.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("yeti"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-1.boss")), + loot: LootTable("common.loot_tables.dungeon.tier-1.boss"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-1/bow.ron b/assets/common/entity/dungeon/tier-1/bow.ron index cf8a1e7d82..5c00765f1b 100644 --- a/assets/common/entity/dungeon/tier-1/bow.ron +++ b/assets/common/entity/dungeon/tier-1/bow.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("adlet"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-1.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-1.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.adlet.adlet_bow")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-1/rat.ron b/assets/common/entity/dungeon/tier-1/rat.ron index 0cfae2fa49..f198855733 100644 --- a/assets/common/entity/dungeon/tier-1/rat.ron +++ b/assets/common/entity/dungeon/tier-1/rat.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("rat"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.creature.quad_small.generic")), + loot: LootTable("common.loot_tables.creature.quad_small.generic"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-1/spear.ron b/assets/common/entity/dungeon/tier-1/spear.ron index 7bfd55d539..27a708fe5f 100644 --- a/assets/common/entity/dungeon/tier-1/spear.ron +++ b/assets/common/entity/dungeon/tier-1/spear.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("adlet"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-1.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-1.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.adlet.wooden_spear")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-1/staff.ron b/assets/common/entity/dungeon/tier-1/staff.ron index c0bcc443a2..234165085c 100644 --- a/assets/common/entity/dungeon/tier-1/staff.ron +++ b/assets/common/entity/dungeon/tier-1/staff.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("adlet"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-1.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-1.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.adlet.gnoll_staff")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-2/boss.ron b/assets/common/entity/dungeon/tier-2/boss.ron index 661c35dbd2..17b3759a13 100644 --- a/assets/common/entity/dungeon/tier-2/boss.ron +++ b/assets/common/entity/dungeon/tier-2/boss.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("tidalwarrior"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-2.boss")), + loot: LootTable("common.loot_tables.dungeon.tier-2.boss"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-2/bow.ron b/assets/common/entity/dungeon/tier-2/bow.ron index 5a2803862e..0679c25e90 100644 --- a/assets/common/entity/dungeon/tier-2/bow.ron +++ b/assets/common/entity/dungeon/tier-2/bow.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("sahagin"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-2.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-2.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.sahagin.adlet_bow")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-2/hakulaq.ron b/assets/common/entity/dungeon/tier-2/hakulaq.ron index 0b42e2968b..605a9d8abe 100644 --- a/assets/common/entity/dungeon/tier-2/hakulaq.ron +++ b/assets/common/entity/dungeon/tier-2/hakulaq.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("hakulaq"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.creature.quad_low.fanged")), + loot: LootTable("common.loot_tables.creature.quad_low.fanged"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-2/spear.ron b/assets/common/entity/dungeon/tier-2/spear.ron index 43c4d19381..5391c5b491 100644 --- a/assets/common/entity/dungeon/tier-2/spear.ron +++ b/assets/common/entity/dungeon/tier-2/spear.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("sahagin"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-2.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-2.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.sahagin.wooden_spear")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-2/staff.ron b/assets/common/entity/dungeon/tier-2/staff.ron index 889d656483..5f5d5282ea 100644 --- a/assets/common/entity/dungeon/tier-2/staff.ron +++ b/assets/common/entity/dungeon/tier-2/staff.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("sahagin"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-2.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-2.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.sahagin.gnoll_staff")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-3/bonerattler.ron b/assets/common/entity/dungeon/tier-3/bonerattler.ron index 6d53d539fb..9fad589960 100644 --- a/assets/common/entity/dungeon/tier-3/bonerattler.ron +++ b/assets/common/entity/dungeon/tier-3/bonerattler.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("bonerattler"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.creature.quad_medium.carapace")), + loot: LootTable("common.loot_tables.creature.quad_medium.carapace"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-3/boss.ron b/assets/common/entity/dungeon/tier-3/boss.ron index 6b86a0ff60..47b854163e 100644 --- a/assets/common/entity/dungeon/tier-3/boss.ron +++ b/assets/common/entity/dungeon/tier-3/boss.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("claygolem"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-3.boss")), + loot: LootTable("common.loot_tables.dungeon.tier-3.boss"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-3/bow.ron b/assets/common/entity/dungeon/tier-3/bow.ron index b5550656ac..1ccb4539de 100644 --- a/assets/common/entity/dungeon/tier-3/bow.ron +++ b/assets/common/entity/dungeon/tier-3/bow.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("haniwa"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-3.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-3.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.haniwa.adlet_bow")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-3/sentry.ron b/assets/common/entity/dungeon/tier-3/sentry.ron index 90dd422e20..3dd3a9abd2 100644 --- a/assets/common/entity/dungeon/tier-3/sentry.ron +++ b/assets/common/entity/dungeon/tier-3/sentry.ron @@ -3,7 +3,7 @@ EntityConfig ( body: Exact(Object(HaniwaSentry)), alignment: Alignment(Enemy), - loot: Some(Item("common.items.crafting_ing.stones")), + loot: Item("common.items.crafting_ing.stones"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-3/spear.ron b/assets/common/entity/dungeon/tier-3/spear.ron index 0fa6541dc0..b4ccb3cde7 100644 --- a/assets/common/entity/dungeon/tier-3/spear.ron +++ b/assets/common/entity/dungeon/tier-3/spear.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("haniwa"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-3.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-3.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.haniwa.wooden_spear")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-3/staff.ron b/assets/common/entity/dungeon/tier-3/staff.ron index c2450d26d6..cc9ce0d9de 100644 --- a/assets/common/entity/dungeon/tier-3/staff.ron +++ b/assets/common/entity/dungeon/tier-3/staff.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("haniwa"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-3.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-3.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.haniwa.gnoll_staff")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-4/boss.ron b/assets/common/entity/dungeon/tier-4/boss.ron index 756eb9c71e..31fc9f38cf 100644 --- a/assets/common/entity/dungeon/tier-4/boss.ron +++ b/assets/common/entity/dungeon/tier-4/boss.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("minotaur"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-4.boss")), + loot: LootTable("common.loot_tables.dungeon.tier-4.boss"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-4/bow.ron b/assets/common/entity/dungeon/tier-4/bow.ron index 14b7719c2b..4804cccdf1 100644 --- a/assets/common/entity/dungeon/tier-4/bow.ron +++ b/assets/common/entity/dungeon/tier-4/bow.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("myrmidon"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-4.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-4.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.myrmidon.adlet_bow")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-4/miniboss.ron b/assets/common/entity/dungeon/tier-4/miniboss.ron index 30446ac213..c095ccd698 100644 --- a/assets/common/entity/dungeon/tier-4/miniboss.ron +++ b/assets/common/entity/dungeon/tier-4/miniboss.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("dullahan"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-4.miniboss")), + loot: LootTable("common.loot_tables.dungeon.tier-4.miniboss"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-4/spear.ron b/assets/common/entity/dungeon/tier-4/spear.ron index 5cb98458c3..a53fdcaa4c 100644 --- a/assets/common/entity/dungeon/tier-4/spear.ron +++ b/assets/common/entity/dungeon/tier-4/spear.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("myrmidon"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-4.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-4.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.myrmidon.wooden_spear")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-4/staff.ron b/assets/common/entity/dungeon/tier-4/staff.ron index 1f26828f6b..45d18e6528 100644 --- a/assets/common/entity/dungeon/tier-4/staff.ron +++ b/assets/common/entity/dungeon/tier-4/staff.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("myrmidon"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-4.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-4.enemy"), main_tool: Some(Item("common.items.npc_weapons.biped_small.myrmidon.gnoll_staff")), second_tool: None, diff --git a/assets/common/entity/dungeon/tier-5/beastmaster.ron b/assets/common/entity/dungeon/tier-5/beastmaster.ron index 4c1abf5318..48eebf85ac 100644 --- a/assets/common/entity/dungeon/tier-5/beastmaster.ron +++ b/assets/common/entity/dungeon/tier-5/beastmaster.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("humanoid"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-5.miniboss")), + loot: LootTable("common.loot_tables.dungeon.tier-5.miniboss"), main_tool: Some(Choice([ (1.0, Some(Item("common.items.weapons.axe.malachite_axe-0"))), diff --git a/assets/common/entity/dungeon/tier-5/boss.ron b/assets/common/entity/dungeon/tier-5/boss.ron index 18557c26a3..63380f61fe 100644 --- a/assets/common/entity/dungeon/tier-5/boss.ron +++ b/assets/common/entity/dungeon/tier-5/boss.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("mindflayer"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-5.boss")), + loot: LootTable("common.loot_tables.dungeon.tier-5.boss"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-5/cultist.ron b/assets/common/entity/dungeon/tier-5/cultist.ron index 3b8097244e..052a994552 100644 --- a/assets/common/entity/dungeon/tier-5/cultist.ron +++ b/assets/common/entity/dungeon/tier-5/cultist.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("humanoid"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-5.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-5.enemy"), main_tool: Some(Choice([ (1.0, Some(Item("common.items.weapons.axe_1h.orichalcum-0"))), diff --git a/assets/common/entity/dungeon/tier-5/hound.ron b/assets/common/entity/dungeon/tier-5/hound.ron index f8116062fe..22f78ce8b6 100644 --- a/assets/common/entity/dungeon/tier-5/hound.ron +++ b/assets/common/entity/dungeon/tier-5/hound.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("darkhound"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-5.minion")), + loot: LootTable("common.loot_tables.dungeon.tier-5.minion"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-5/husk.ron b/assets/common/entity/dungeon/tier-5/husk.ron index 54aba3f90c..4beae402bb 100644 --- a/assets/common/entity/dungeon/tier-5/husk.ron +++ b/assets/common/entity/dungeon/tier-5/husk.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("husk"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-5.minion")), + loot: LootTable("common.loot_tables.dungeon.tier-5.minion"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-5/husk_brute.ron b/assets/common/entity/dungeon/tier-5/husk_brute.ron index ec39247f96..ebae08f07c 100644 --- a/assets/common/entity/dungeon/tier-5/husk_brute.ron +++ b/assets/common/entity/dungeon/tier-5/husk_brute.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("husk_brute"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-5.miniboss")), + loot: LootTable("common.loot_tables.dungeon.tier-5.miniboss"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-5/turret.ron b/assets/common/entity/dungeon/tier-5/turret.ron index 7834953f58..e02dbc097d 100644 --- a/assets/common/entity/dungeon/tier-5/turret.ron +++ b/assets/common/entity/dungeon/tier-5/turret.ron @@ -3,7 +3,7 @@ EntityConfig ( body: Exact(Object(Crossbow)), alignment: Alignment(Enemy), - loot: Some(Item("common.items.crafting_ing.twigs")), + loot: Item("common.items.crafting_ing.twigs"), main_tool: None, second_tool: None, diff --git a/assets/common/entity/dungeon/tier-5/warlock.ron b/assets/common/entity/dungeon/tier-5/warlock.ron index 53f2ef16bd..527fb4c4f3 100644 --- a/assets/common/entity/dungeon/tier-5/warlock.ron +++ b/assets/common/entity/dungeon/tier-5/warlock.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("cultist_warlock"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-5.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-5.enemy"), main_tool: Some(Choice([ (1.5, Some(Item("common.items.npc_weapons.staff.bipedlarge-cultist"))), diff --git a/assets/common/entity/dungeon/tier-5/warlord.ron b/assets/common/entity/dungeon/tier-5/warlord.ron index be50ee1aa8..9b6d616c85 100644 --- a/assets/common/entity/dungeon/tier-5/warlord.ron +++ b/assets/common/entity/dungeon/tier-5/warlord.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("cultist_warlord"), alignment: Alignment(Enemy), - loot: Some(LootTable("common.loot_tables.dungeon.tier-5.enemy")), + loot: LootTable("common.loot_tables.dungeon.tier-5.enemy"), main_tool: Some(Choice([ (1.5, Some(Item("common.items.npc_weapons.sword.bipedlarge-cultist"))), diff --git a/assets/common/entity/test.ron b/assets/common/entity/test.ron index b24d5e713d..235a009e7d 100644 --- a/assets/common/entity/test.ron +++ b/assets/common/entity/test.ron @@ -27,7 +27,8 @@ EntityConfig ( /// Loot /// Can be Item (with asset_specifier for item) /// or LootTable (with asset_specifier for loot table) - loot: Some(LootTable("common.loot_tables.humanoids")), + /// or Uninit (means it should be specified something in the code) + loot: LootTable("common.loot_tables.humanoids"), /// Meta Info (level, alignment, agency, etc) // meta: {}, diff --git a/assets/common/entity/village/dummy.ron b/assets/common/entity/village/dummy.ron index ca958ede04..8d23eb244b 100644 --- a/assets/common/entity/village/dummy.ron +++ b/assets/common/entity/village/dummy.ron @@ -3,7 +3,7 @@ EntityConfig ( body: Exact(Object(TrainingDummy)), alignment: Alignment(Passive), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/village/guard.ron b/assets/common/entity/village/guard.ron index dc642b2a81..462137ae0d 100644 --- a/assets/common/entity/village/guard.ron +++ b/assets/common/entity/village/guard.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("humanoid"), alignment: Alignment(Npc), - loot: None, + loot: Uninit, main_tool: Some(Item("common.items.weapons.sword.iron-4")), second_tool: None, diff --git a/assets/common/entity/village/merchant.ron b/assets/common/entity/village/merchant.ron index 74491b729e..ec1c8cdd18 100644 --- a/assets/common/entity/village/merchant.ron +++ b/assets/common/entity/village/merchant.ron @@ -4,7 +4,7 @@ EntityConfig ( alignment: Alignment(Npc), // considering giving some gold/gems/materials? - loot: None, + loot: Uninit, main_tool: Some(Item("common.items.weapons.bow.eldwood-0")), second_tool: None, diff --git a/assets/common/entity/village/villager.ron b/assets/common/entity/village/villager.ron index b1bac72a82..a95985694a 100644 --- a/assets/common/entity/village/villager.ron +++ b/assets/common/entity/village/villager.ron @@ -4,7 +4,7 @@ EntityConfig ( body: RandomWith("humanoid"), alignment: Alignment(Npc), - loot: None, + loot: Uninit, main_tool: Some(Choice([ (1.0, Some(Item("common.items.weapons.tool.broom"))), diff --git a/assets/common/entity/wild/aggressive/dreadhorn.ron b/assets/common/entity/wild/aggressive/dreadhorn.ron index bf65e87d08..76f7d1ce23 100644 --- a/assets/common/entity/wild/aggressive/dreadhorn.ron +++ b/assets/common/entity/wild/aggressive/dreadhorn.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("dreadhorn"), alignment: Alignment(Enemy), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/aggressive/frostfang.ron b/assets/common/entity/wild/aggressive/frostfang.ron index 3335604852..6436fed49e 100644 --- a/assets/common/entity/wild/aggressive/frostfang.ron +++ b/assets/common/entity/wild/aggressive/frostfang.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("frostfang"), alignment: Alignment(Enemy), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/aggressive/grolgar.ron b/assets/common/entity/wild/aggressive/grolgar.ron index 07912bb204..4fd0e2be04 100644 --- a/assets/common/entity/wild/aggressive/grolgar.ron +++ b/assets/common/entity/wild/aggressive/grolgar.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("grolgar"), alignment: Alignment(Enemy), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/aggressive/mammoth.ron b/assets/common/entity/wild/aggressive/mammoth.ron index 24a8321cc9..9fb0e20309 100644 --- a/assets/common/entity/wild/aggressive/mammoth.ron +++ b/assets/common/entity/wild/aggressive/mammoth.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("mammoth"), alignment: Alignment(Enemy), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/aggressive/mountain_troll.ron b/assets/common/entity/wild/aggressive/mountain_troll.ron index ca127f45e9..5014b134be 100644 --- a/assets/common/entity/wild/aggressive/mountain_troll.ron +++ b/assets/common/entity/wild/aggressive/mountain_troll.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("troll_mountain"), alignment: Alignment(Enemy), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/aggressive/rocksnapper.ron b/assets/common/entity/wild/aggressive/rocksnapper.ron index 43f6fbfcfa..da2e112efe 100644 --- a/assets/common/entity/wild/aggressive/rocksnapper.ron +++ b/assets/common/entity/wild/aggressive/rocksnapper.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("rocksnapper"), alignment: Alignment(Enemy), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/aggressive/roshwalr.ron b/assets/common/entity/wild/aggressive/roshwalr.ron index de322d8653..c237f9a82b 100644 --- a/assets/common/entity/wild/aggressive/roshwalr.ron +++ b/assets/common/entity/wild/aggressive/roshwalr.ron @@ -6,7 +6,7 @@ EntityConfig ( ))), alignment: Alignment(Enemy), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/aggressive/snow_leopard.ron b/assets/common/entity/wild/aggressive/snow_leopard.ron index 2d6e376a12..75678d667d 100644 --- a/assets/common/entity/wild/aggressive/snow_leopard.ron +++ b/assets/common/entity/wild/aggressive/snow_leopard.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("snowleopard"), alignment: Alignment(Enemy), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/aggressive/snow_raptor.ron b/assets/common/entity/wild/aggressive/snow_raptor.ron index 8c07519312..5849d9852e 100644 --- a/assets/common/entity/wild/aggressive/snow_raptor.ron +++ b/assets/common/entity/wild/aggressive/snow_raptor.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("raptor_snow"), alignment: Alignment(Enemy), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/aggressive/wendigo.ron b/assets/common/entity/wild/aggressive/wendigo.ron index a655f63a9e..9a49ed4731 100644 --- a/assets/common/entity/wild/aggressive/wendigo.ron +++ b/assets/common/entity/wild/aggressive/wendigo.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("wendigo"), alignment: Alignment(Enemy), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/aggressive/wolf.ron b/assets/common/entity/wild/aggressive/wolf.ron index 4d0d3de3dd..4624d2bc42 100644 --- a/assets/common/entity/wild/aggressive/wolf.ron +++ b/assets/common/entity/wild/aggressive/wolf.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("wolf"), alignment: Alignment(Enemy), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/aggressive/yale.ron b/assets/common/entity/wild/aggressive/yale.ron index f0e64cb936..441492c463 100644 --- a/assets/common/entity/wild/aggressive/yale.ron +++ b/assets/common/entity/wild/aggressive/yale.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("yale"), alignment: Alignment(Enemy), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/peaceful/alpaca.ron b/assets/common/entity/wild/peaceful/alpaca.ron index aca63d07d7..0a6567c036 100644 --- a/assets/common/entity/wild/peaceful/alpaca.ron +++ b/assets/common/entity/wild/peaceful/alpaca.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("alpaca"), alignment: Alignment(Wild), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/peaceful/arctic_fox.ron b/assets/common/entity/wild/peaceful/arctic_fox.ron index 986c771aea..4380e983ea 100644 --- a/assets/common/entity/wild/peaceful/arctic_fox.ron +++ b/assets/common/entity/wild/peaceful/arctic_fox.ron @@ -3,7 +3,7 @@ EntityConfig ( body: Exact(QuadrupedSmall(Body(species: Fox, body_type: Female))), alignment: Alignment(Wild), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/peaceful/arctic_hare.ron b/assets/common/entity/wild/peaceful/arctic_hare.ron index b839a7c4de..ca398541b3 100644 --- a/assets/common/entity/wild/peaceful/arctic_hare.ron +++ b/assets/common/entity/wild/peaceful/arctic_hare.ron @@ -3,7 +3,7 @@ EntityConfig ( body: Exact(QuadrupedSmall(Body(species: Hare, body_type: Female))), alignment: Alignment(Wild), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/peaceful/eagle.ron b/assets/common/entity/wild/peaceful/eagle.ron index debf5ce6f5..a010819196 100644 --- a/assets/common/entity/wild/peaceful/eagle.ron +++ b/assets/common/entity/wild/peaceful/eagle.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("eagle"), alignment: Alignment(Wild), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/peaceful/highland.ron b/assets/common/entity/wild/peaceful/highland.ron index 36baa5539a..a7e26a8b8d 100644 --- a/assets/common/entity/wild/peaceful/highland.ron +++ b/assets/common/entity/wild/peaceful/highland.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("highland"), alignment: Alignment(Wild), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/peaceful/llama.ron b/assets/common/entity/wild/peaceful/llama.ron index 1a92cced90..697dabef77 100644 --- a/assets/common/entity/wild/peaceful/llama.ron +++ b/assets/common/entity/wild/peaceful/llama.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("llama"), alignment: Alignment(Wild), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/peaceful/moose.ron b/assets/common/entity/wild/peaceful/moose.ron index 1475c586aa..be44787e2d 100644 --- a/assets/common/entity/wild/peaceful/moose.ron +++ b/assets/common/entity/wild/peaceful/moose.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("moose"), alignment: Alignment(Wild), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/peaceful/mouflon.ron b/assets/common/entity/wild/peaceful/mouflon.ron index 1788f8f9de..f72e24bfab 100644 --- a/assets/common/entity/wild/peaceful/mouflon.ron +++ b/assets/common/entity/wild/peaceful/mouflon.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("mouflon"), alignment: Alignment(Wild), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/peaceful/owl.ron b/assets/common/entity/wild/peaceful/owl.ron index bcc12c8e64..a8df3ba91c 100644 --- a/assets/common/entity/wild/peaceful/owl.ron +++ b/assets/common/entity/wild/peaceful/owl.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("owl"), alignment: Alignment(Wild), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/peaceful/tuskram.ron b/assets/common/entity/wild/peaceful/tuskram.ron index ffcadff2a3..41cd8a0a0d 100644 --- a/assets/common/entity/wild/peaceful/tuskram.ron +++ b/assets/common/entity/wild/peaceful/tuskram.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("tuskram"), alignment: Alignment(Wild), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/assets/common/entity/wild/peaceful/yak.ron b/assets/common/entity/wild/peaceful/yak.ron index 58988f2ae8..788209ae65 100644 --- a/assets/common/entity/wild/peaceful/yak.ron +++ b/assets/common/entity/wild/peaceful/yak.ron @@ -3,7 +3,7 @@ EntityConfig ( body: RandomWith("yak"), alignment: Alignment(Wild), - loot: None, + loot: Uninit, main_tool: None, second_tool: None, diff --git a/common/src/generation.rs b/common/src/generation.rs index 8f856553d4..fcbd0f2ecd 100644 --- a/common/src/generation.rs +++ b/common/src/generation.rs @@ -24,6 +24,7 @@ enum BodyBuilder { enum LootKind { Item(String), LootTable(String), + Uninit, } #[derive(Debug, Deserialize, Clone)] @@ -37,9 +38,11 @@ struct EntityConfig { name: Option, body: BodyBuilder, alignment: AlignmentMark, - loot: Option, + loot: LootKind, + // TODO: replace with `hands` field to support one 2h weapon/ pair 1h weapons main_tool: Option, second_tool: Option, + // Meta fields loadout_asset: Option, skillset_asset: Option, } @@ -141,17 +144,16 @@ impl EntityInfo { self = self.with_alignment(alignment); } - if let Some(loot) = loot { - match loot { - LootKind::Item(asset) => { - self = self.with_loot_drop(Item::new_from_asset_expect(&asset)); - }, - LootKind::LootTable(asset) => { - let table = Lottery::>::load_expect(&asset); - let drop = table.read().choose().to_item(); - self = self.with_loot_drop(drop); - }, - } + match loot { + LootKind::Item(asset) => { + self = self.with_loot_drop(Item::new_from_asset_expect(&asset)); + }, + LootKind::LootTable(asset) => { + let table = Lottery::>::load_expect(&asset); + let drop = table.read().choose().to_item(); + self = self.with_loot_drop(drop); + }, + LootKind::Uninit => {}, } let rng = &mut rand::thread_rng(); @@ -360,17 +362,16 @@ mod tests { BodyBuilder::Exact { .. } | BodyBuilder::Uninit => {}, } - if let Some(loot) = loot { - match loot { - LootKind::Item(asset) => { - std::mem::drop(Item::new_from_asset_expect(&asset)); - }, - LootKind::LootTable(asset) => { - // we need to just load it check if it exists, - // because all loot tables are tested in Lottery module - let _ = Lottery::>::load_expect(&asset); - }, - } + match loot { + LootKind::Item(asset) => { + std::mem::drop(Item::new_from_asset_expect(&asset)); + }, + LootKind::LootTable(asset) => { + // we need to just load it check if it exists, + // because all loot tables are tested in Lottery module + let _ = Lottery::>::load_expect(&asset); + }, + LootKind::Uninit => {}, } if let Some(loadout_asset) = loadout_asset { diff --git a/world/src/layer/wildlife.rs b/world/src/layer/wildlife.rs index e94b43f091..ad81f61fa4 100644 --- a/world/src/layer/wildlife.rs +++ b/world/src/layer/wildlife.rs @@ -1,19 +1,15 @@ use crate::{column::ColumnSample, sim::SimChunk, IndexRef, CONFIG}; use common::{ assets::{self, AssetExt}, - comp::{ - fish_medium, fish_small, quadruped_low, quadruped_medium, quadruped_small, theropod, - Alignment, - }, generation::{ChunkSupplement, EntityInfo}, resources::TimeOfDay, terrain::Block, - time::DayPeriod::{self, Evening, Morning, Night, Noon}, + time::DayPeriod, vol::{BaseVol, ReadVol, RectSizedVol, WriteVol}, }; use rand::prelude::*; use serde::Deserialize; -use std::{f32, ops::Range}; +use std::f32; use vek::*; fn close(x: f32, tgt: f32, falloff: f32) -> f32 { @@ -172,7 +168,7 @@ pub fn wildlife_spawn_manifest() -> Vec<(&'static str, DensityFn)> { } }), // River animals - ("world.wildlife.spawn.tropical.river", |c_, col| { + ("world.wildlife.spawn.tropical.river", |_c, col| { close(col.temp, CONFIG.tropical_temp, 0.5) * if col.water_dist.map(|d| d < 10.0).unwrap_or(false) { 0.001 @@ -181,15 +177,12 @@ pub fn wildlife_spawn_manifest() -> Vec<(&'static str, DensityFn)> { } }), // Rainforest area animals - ( - "world.wildlife.spawn.tropical.rainforest_area", - |c, _col| { - close(c.temp, CONFIG.tropical_temp + 0.1, 0.4) - * close(c.humidity, CONFIG.desert_hum, 0.4) - * BASE_DENSITY - * 2.0 - }, - ), + ("world.wildlife.spawn.tropical.rainforest", |c, _col| { + close(c.temp, CONFIG.tropical_temp + 0.1, 0.4) + * close(c.humidity, CONFIG.desert_hum, 0.4) + * BASE_DENSITY + * 2.0 + }), // Rock animals ("world.wildlife.spawn.tropical.rock", |c, col| { close(c.temp, CONFIG.tropical_temp + 0.1, 0.5) * col.rock * BASE_DENSITY * 5.0 @@ -202,7 +195,7 @@ pub fn wildlife_spawn_manifest() -> Vec<(&'static str, DensityFn)> { * BASE_DENSITY * 0.8 }), - // Hot area animals + // Wasteland animals ("world.wildlife.spawn.desert.wasteland", |c, _col| { close(c.temp, CONFIG.desert_temp + 0.2, 0.3) * close(c.humidity, CONFIG.desert_hum, 0.5) @@ -210,7 +203,7 @@ pub fn wildlife_spawn_manifest() -> Vec<(&'static str, DensityFn)> { * 1.3 }), // River animals - ("world.wildlife.spawn.desert.river", |_c, _col| { + ("world.wildlife.spawn.desert.river", |_c, col| { close(col.temp, CONFIG.desert_temp + 0.2, 0.3) * if col.water_dist.map(|d| d < 10.0).unwrap_or(false) { 0.0001 @@ -218,6 +211,7 @@ pub fn wildlife_spawn_manifest() -> Vec<(&'static str, DensityFn)> { 0.0 } }), + // Hot area desert ("world.wildlife.spawn.desert.hot", |c, _col| { close(c.temp, CONFIG.desert_temp + 0.2, 0.3) * BASE_DENSITY * 3.8 }), @@ -264,7 +258,7 @@ pub fn apply_wildlife_supplement<'a, R: Rng>( if let Some(time) = time { current_day_period = DayPeriod::from(time.0) } else { - current_day_period = Noon + current_day_period = DayPeriod::Noon } let entity_group = scatter