spawns & hitboxes

This commit is contained in:
flo666 2023-01-29 15:57:33 +01:00
parent 9c09000256
commit d219cdd97c
8 changed files with 11 additions and 3 deletions

View File

@ -12,6 +12,8 @@ SpawnEntry (
Pack(
groups: [
(2, (4, 12, "common.entity.wild.peaceful.penguin")),
(2, (4, 8, "common.entity.wild.peaceful.seal")),
(1, (1, 1, "common.entity.wild.aggressive.tursus")),
],
spawn_mode: Ice,
day_period: [Night, Morning, Noon, Evening],

View File

@ -9,6 +9,7 @@ SpawnEntry (
(2, (1, 1, "common.entity.wild.peaceful.sand_hare")),
(2, (1, 1, "common.entity.wild.peaceful.salamander")),
(2, (1, 1, "common.entity.wild.peaceful.gecko")),
(2, (1, 1, "common.entity.wild.aggressive.axebeak")),
// Rare
(1, (1, 1, "common.entity.wild.peaceful.crawler_sand")),
],

View File

@ -14,6 +14,7 @@ SpawnEntry (
(1, (1, 1, "common.entity.wild.aggressive.stag_beetle")),
(1, (1, 1, "common.entity.wild.peaceful.crawler_moss")),
(1, (1, 1, "common.entity.wild.aggressive.rootsnapper")),
(1, (1, 1, "common.entity.wild.aggressive.axebeak")),
],
spawn_mode: Land,
day_period: [Morning, Noon, Evening],

View File

@ -42,6 +42,7 @@ SpawnEntry (
(1, (1, 1, "common.entity.wild.aggressive.batfox")),
(5, (1, 1, "common.entity.wild.peaceful.forest_fox")),
(5, (1, 1, "common.entity.wild.peaceful.raccoon")),
(3, (1, 1, "common.entity.wild.aggressive.bristleback")),
// Pack
(5, (1, 3, "common.entity.wild.peaceful.rat")),
(5, (1, 3, "common.entity.wild.peaceful.squirrel")),

View File

@ -8,6 +8,7 @@ SpawnEntry (
(1, (1, 1, "common.entity.wild.aggressive.wendigo")),
(1, (2, 6, "common.entity.wild.peaceful.mammoth")),
(1, (1, 1, "common.entity.wild.aggressive.mountain_troll")),
(1, (1, 1, "common.entity.wild.aggressive.tursus")),
],
spawn_mode: Land,
day_period: [Night, Morning, Noon, Evening],

View File

@ -6,6 +6,7 @@ SpawnEntry (
groups: [
(1, (1, 1, "common.entity.wild.peaceful.jackalope")),
(1, (1, 1, "common.entity.wild.peaceful.arctic_hare")),
(1, (1, 1, "common.entity.wild.aggressive.tursus")),
],
spawn_mode: Land,
day_period: [Night, Morning, Noon, Evening],

View File

@ -10,6 +10,7 @@ SpawnEntry (
(1, (1, 3, "common.entity.wild.aggressive.snow_raptor")),
(1, (1, 1, "common.entity.wild.aggressive.roshwalr")),
(5, (5, 20, "common.entity.wild.peaceful.penguin")),
(5, (5, 10, "common.entity.wild.peaceful.seal")),
],
spawn_mode: Land,
day_period: [Night, Morning, Noon, Evening],

View File

@ -410,7 +410,7 @@ impl Body {
biped_large::Species::Cultistwarlord => Vec3::new(3.0, 3.0, 4.5),
biped_large::Species::Cultistwarlock => Vec3::new(3.0, 3.0, 3.5),
biped_large::Species::Huskbrute => Vec3::new(4.6, 3.0, 5.0),
biped_large::Species::Tursus => Vec3::new(4.0, 3.0, 3.5),
biped_large::Species::Tursus => Vec3::new(4.0, 3.0, 4.0),
_ => Vec3::new(4.6, 3.0, 6.0),
},
Body::BipedSmall(body) => match body.species {
@ -465,7 +465,7 @@ impl Body {
quadruped_medium::Species::Horse => Vec3::new(2.0, 3.0, 2.4),
quadruped_medium::Species::Lion => Vec3::new(2.0, 3.3, 2.0),
quadruped_medium::Species::Moose => Vec3::new(2.0, 4.0, 2.5),
quadruped_medium::Species::Bristleback => Vec3::new(2.0, 4.0, 2.5),
quadruped_medium::Species::Bristleback => Vec3::new(2.0, 3.0, 2.0),
quadruped_medium::Species::Roshwalr => Vec3::new(2.0, 3.5, 2.2),
quadruped_medium::Species::Saber => Vec3::new(2.0, 3.0, 2.0),
quadruped_medium::Species::Tarasque => Vec3::new(2.0, 4.0, 2.6),
@ -520,7 +520,7 @@ impl Body {
theropod::Species::Sunlizard => Vec3::new(2.0, 3.6, 2.5),
theropod::Species::Woodraptor => Vec3::new(2.0, 3.0, 2.6),
theropod::Species::Yale => Vec3::new(2.0, 3.2, 4.0),
theropod::Species::Axebeak => Vec3::new(2.0, 3.2, 4.0),
theropod::Species::Axebeak => Vec3::new(2.0, 3.6, 3.0),
},
Body::Arthropod(body) => match body.species {
arthropod::Species::Tarantula => Vec3::new(4.0, 4.0, 1.8),