1pub mod arthropod;
2pub mod biped_large;
3pub mod biped_small;
4pub mod bird_large;
5pub mod bird_medium;
6pub mod crustacean;
7pub mod dragon;
8pub mod fish_medium;
9pub mod fish_small;
10pub mod golem;
11pub mod humanoid;
12pub mod item;
13pub mod object;
14pub mod parts;
15pub mod plugin;
16pub mod quadruped_low;
17pub mod quadruped_medium;
18pub mod quadruped_small;
19pub mod ship;
20pub mod theropod;
21
22use crate::{
23 assets::{self, Asset},
24 consts::{HUMAN_DENSITY, WATER_DENSITY},
25 npc::NpcKind,
26};
27use common_base::enum_iter;
28use common_i18n::Content;
29use serde::{Deserialize, Serialize};
30use specs::{Component, DerefFlaggedStorage};
31use strum::{Display, IntoEnumIterator};
32use vek::*;
33
34use super::{BuffKind, Collider, Density, Mass, Scale};
35
36enum_iter! {
37 #[derive(
38 Copy, Clone, Debug, Display, PartialEq, PartialOrd, Ord, Eq, Hash, Serialize, Deserialize,
39 )]
40 #[repr(u32)]
41 pub enum Body {
42 Humanoid(humanoid::Body) = 0,
43 QuadrupedSmall(quadruped_small::Body) = 1,
44 QuadrupedMedium(quadruped_medium::Body) = 2,
45 BirdMedium(bird_medium::Body) = 3,
46 FishMedium(fish_medium::Body) = 4,
47 Dragon(dragon::Body) = 5,
48 BirdLarge(bird_large::Body) = 6,
49 FishSmall(fish_small::Body) = 7,
50 BipedLarge(biped_large::Body) = 8,
51 BipedSmall(biped_small::Body) = 9,
52 Object(object::Body) = 10,
53 Golem(golem::Body) = 11,
54 Theropod(theropod::Body) = 12,
55 QuadrupedLow(quadruped_low::Body) = 13,
56 Ship(ship::Body) = 14,
57 Arthropod(arthropod::Body) = 15,
58 Item(item::Body) = 16,
59 Crustacean(crustacean::Body) = 17,
60 Plugin(plugin::Body) = 18,
61 }
62}
63
64impl Default for Body {
66 fn default() -> Self {
67 Body::QuadrupedSmall(quadruped_small::Body {
68 species: quadruped_small::Species::Frog,
69 body_type: quadruped_small::BodyType::Female,
70 })
71 }
72}
73
74#[derive(Clone, Debug, Deserialize, Serialize)]
76pub struct BodyData<BodyMeta, SpeciesData> {
77 pub body: BodyMeta,
79 pub species: SpeciesData,
81}
82
83#[derive(Clone, Debug, Deserialize, Serialize)]
89pub struct AllBodies<BodyMeta, SpeciesMeta> {
90 pub humanoid: BodyData<BodyMeta, humanoid::AllSpecies<SpeciesMeta>>,
91 pub quadruped_small: BodyData<BodyMeta, quadruped_small::AllSpecies<SpeciesMeta>>,
92 pub quadruped_medium: BodyData<BodyMeta, quadruped_medium::AllSpecies<SpeciesMeta>>,
93 pub bird_medium: BodyData<BodyMeta, bird_medium::AllSpecies<SpeciesMeta>>,
94 pub fish_medium: BodyData<BodyMeta, fish_medium::AllSpecies<SpeciesMeta>>,
95 pub dragon: BodyData<BodyMeta, dragon::AllSpecies<SpeciesMeta>>,
96 pub bird_large: BodyData<BodyMeta, bird_large::AllSpecies<SpeciesMeta>>,
97 pub fish_small: BodyData<BodyMeta, fish_small::AllSpecies<SpeciesMeta>>,
98 pub biped_large: BodyData<BodyMeta, biped_large::AllSpecies<SpeciesMeta>>,
99 pub biped_small: BodyData<BodyMeta, biped_small::AllSpecies<SpeciesMeta>>,
100 pub object: BodyData<BodyMeta, ()>,
101 pub item: BodyData<BodyMeta, ()>,
102 pub golem: BodyData<BodyMeta, golem::AllSpecies<SpeciesMeta>>,
103 pub theropod: BodyData<BodyMeta, theropod::AllSpecies<SpeciesMeta>>,
104 pub quadruped_low: BodyData<BodyMeta, quadruped_low::AllSpecies<SpeciesMeta>>,
105 pub ship: BodyData<BodyMeta, ()>,
106 pub arthropod: BodyData<BodyMeta, arthropod::AllSpecies<SpeciesMeta>>,
107 pub crustacean: BodyData<BodyMeta, crustacean::AllSpecies<SpeciesMeta>>,
108 pub plugin: BodyData<BodyMeta, plugin::AllSpecies<SpeciesMeta>>,
109}
110
111impl<BodyMeta, SpeciesMeta> AllBodies<BodyMeta, SpeciesMeta> {
112 pub fn get_species_meta<'a>(&'a self, body: &Body) -> Option<&'a SpeciesMeta> {
117 Some(match body {
118 Body::Humanoid(b) => &self.humanoid.species[&b.species],
119 Body::QuadrupedSmall(b) => &self.quadruped_small.species[&b.species],
120 Body::QuadrupedMedium(b) => &self.quadruped_medium.species[&b.species],
121 Body::BirdMedium(b) => &self.bird_medium.species[&b.species],
122 Body::BirdLarge(b) => &self.bird_large.species[&b.species],
123 Body::FishMedium(b) => &self.fish_medium.species[&b.species],
124 Body::Dragon(b) => &self.dragon.species[&b.species],
125 Body::FishSmall(b) => &self.fish_small.species[&b.species],
126 Body::BipedLarge(b) => &self.biped_large.species[&b.species],
127 Body::BipedSmall(b) => &self.biped_small.species[&b.species],
128 Body::Golem(b) => &self.golem.species[&b.species],
129 Body::Theropod(b) => &self.theropod.species[&b.species],
130 Body::QuadrupedLow(b) => &self.quadruped_low.species[&b.species],
131 Body::Arthropod(b) => &self.arthropod.species[&b.species],
132 Body::Crustacean(b) => &self.crustacean.species[&b.species],
133 Body::Plugin(b) => &self.plugin.species[&b.species],
134 Body::Item(_) | Body::Ship(_) | Body::Object(_) => return None,
135 })
136 }
137}
138
139impl<BodyMeta, SpeciesMeta> core::ops::Index<NpcKind> for AllBodies<BodyMeta, SpeciesMeta> {
141 type Output = BodyMeta;
142
143 #[inline]
144 fn index(&self, index: NpcKind) -> &Self::Output {
145 match index {
146 NpcKind::Humanoid => &self.humanoid.body,
147 NpcKind::Pig => &self.quadruped_small.body,
148 NpcKind::Wolf => &self.quadruped_medium.body,
149 NpcKind::Duck => &self.bird_medium.body,
150 NpcKind::Phoenix => &self.bird_large.body,
151 NpcKind::Marlin => &self.fish_medium.body,
152 NpcKind::Clownfish => &self.fish_small.body,
153 NpcKind::Ogre => &self.biped_large.body,
154 NpcKind::Gnome => &self.biped_small.body,
155 NpcKind::StoneGolem => &self.golem.body,
156 NpcKind::Archaeos => &self.theropod.body,
157 NpcKind::Reddragon => &self.dragon.body,
158 NpcKind::Crocodile => &self.quadruped_low.body,
159 NpcKind::Tarantula => &self.arthropod.body,
160 NpcKind::Crab => &self.crustacean.body,
161 NpcKind::Plugin => &self.plugin.body,
162 }
163 }
164}
165
166impl<BodyMeta, SpeciesMeta> core::ops::Index<&Body> for AllBodies<BodyMeta, SpeciesMeta> {
168 type Output = BodyMeta;
169
170 #[inline]
171 fn index(&self, index: &Body) -> &Self::Output {
172 match index {
173 Body::Humanoid(_) => &self.humanoid.body,
174 Body::QuadrupedSmall(_) => &self.quadruped_small.body,
175 Body::QuadrupedMedium(_) => &self.quadruped_medium.body,
176 Body::BirdMedium(_) => &self.bird_medium.body,
177 Body::BirdLarge(_) => &self.bird_large.body,
178 Body::FishMedium(_) => &self.fish_medium.body,
179 Body::Dragon(_) => &self.dragon.body,
180 Body::FishSmall(_) => &self.fish_small.body,
181 Body::BipedLarge(_) => &self.biped_large.body,
182 Body::BipedSmall(_) => &self.biped_small.body,
183 Body::Object(_) => &self.object.body,
184 Body::Item(_) => &self.item.body,
185 Body::Golem(_) => &self.golem.body,
186 Body::Theropod(_) => &self.theropod.body,
187 Body::QuadrupedLow(_) => &self.quadruped_low.body,
188 Body::Arthropod(_) => &self.arthropod.body,
189 Body::Ship(_) => &self.ship.body,
190 Body::Crustacean(_) => &self.crustacean.body,
191 Body::Plugin(_) => &self.plugin.body,
192 }
193 }
194}
195
196impl<
197 BodyMeta: Send + Sync + for<'de> serde::Deserialize<'de> + 'static,
198 SpeciesMeta: Send + Sync + for<'de> serde::Deserialize<'de> + 'static,
199> Asset for AllBodies<BodyMeta, SpeciesMeta>
200{
201 type Loader = assets::RonLoader;
202
203 const EXTENSION: &'static str = "ron";
204}
205
206#[derive(Copy, Clone, Debug, Deserialize, Serialize)]
217pub enum Gender {
218 Masculine,
219 Feminine,
220 Neuter,
221}
222
223impl Body {
224 pub fn is_same_species_as(&self, other: &Body) -> bool {
225 match self {
226 Body::Humanoid(b1) => match other {
227 Body::Humanoid(b2) => b1.species == b2.species,
228 _ => false,
229 },
230 Body::QuadrupedSmall(b1) => match other {
231 Body::QuadrupedSmall(b2) => b1.species == b2.species,
232 _ => false,
233 },
234 Body::QuadrupedMedium(b1) => match other {
235 Body::QuadrupedMedium(b2) => b1.species == b2.species,
236 _ => false,
237 },
238 Body::BirdMedium(b1) => match other {
239 Body::BirdMedium(b2) => b1.species == b2.species,
240 _ => false,
241 },
242 Body::BirdLarge(b1) => match other {
243 Body::BirdLarge(b2) => b1.species == b2.species,
244 _ => false,
245 },
246 Body::FishMedium(b1) => match other {
247 Body::FishMedium(b2) => b1.species == b2.species,
248 _ => false,
249 },
250 Body::Dragon(b1) => match other {
251 Body::Dragon(b2) => b1.species == b2.species,
252 _ => false,
253 },
254 Body::FishSmall(b1) => match other {
255 Body::FishSmall(b2) => b1.species == b2.species,
256 _ => false,
257 },
258 Body::BipedLarge(b1) => match other {
259 Body::BipedLarge(b2) => b1.species == b2.species,
260 _ => false,
261 },
262 Body::BipedSmall(b1) => match other {
263 Body::BipedSmall(b2) => b1.species == b2.species,
264 _ => false,
265 },
266 Body::Object(_) => false,
267 Body::Item(_) => false,
268 Body::Golem(b1) => match other {
269 Body::Golem(b2) => b1.species == b2.species,
270 _ => false,
271 },
272 Body::Theropod(b1) => match other {
273 Body::Theropod(b2) => b1.species == b2.species,
274 _ => false,
275 },
276 Body::QuadrupedLow(b1) => match other {
277 Body::QuadrupedLow(b2) => b1.species == b2.species,
278 _ => false,
279 },
280 Body::Arthropod(b1) => match other {
281 Body::Arthropod(b2) => b1.species == b2.species,
282 _ => false,
283 },
284 Body::Ship(_) => false,
285 Body::Crustacean(b1) => match other {
286 Body::Crustacean(b2) => b1.species == b2.species,
287 _ => false,
288 },
289 Body::Plugin(b1) => match other {
290 Body::Plugin(b2) => b1.species == b2.species,
291 _ => false,
292 },
293 }
294 }
295
296 pub fn heads(&self) -> Option<usize> {
298 match self {
299 Body::QuadrupedLow(body) => match body.species {
300 quadruped_low::Species::Hydra => Some(3),
301 _ => None,
302 },
303 _ => None,
304 }
305 }
306
307 pub fn has_free_will(&self) -> bool {
309 match self {
310 Body::Humanoid(_) | Body::BipedLarge(_) | Body::BipedSmall(_) => true,
311 Body::Crustacean(body) => match body.species {
312 crustacean::Species::Crab => false,
313 crustacean::Species::SoldierCrab => false,
314 crustacean::Species::Karkatha => true,
315 },
316 Body::QuadrupedSmall(_)
317 | Body::QuadrupedMedium(_)
318 | Body::BirdMedium(_)
319 | Body::FishMedium(_)
320 | Body::Dragon(_)
321 | Body::BirdLarge(_)
322 | Body::FishSmall(_)
323 | Body::Object(_)
324 | Body::Golem(_)
325 | Body::Theropod(_)
326 | Body::QuadrupedLow(_)
327 | Body::Ship(_)
328 | Body::Arthropod(_)
329 | Body::Item(_)
330 | Body::Plugin(_) => false,
331 }
332 }
333
334 pub fn is_humanoid(&self) -> bool { matches!(self, Body::Humanoid(_)) }
335
336 pub fn is_campfire(&self) -> bool { matches!(self, Body::Object(object::Body::CampfireLit)) }
337
338 pub fn is_portal(&self) -> bool {
339 matches!(
340 self,
341 Body::Object(object::Body::Portal | object::Body::PortalActive)
342 )
343 }
344
345 pub fn bleeds(&self) -> bool {
346 !matches!(
347 self,
348 Body::Object(_) | Body::Ship(_) | Body::Item(_) | Body::Golem(_)
349 )
350 }
351
352 pub fn stride_length(&self) -> f32 {
355 if let Body::Humanoid(body) = self {
356 body.scaler() * 3.75
357 } else {
358 let dims = self.dimensions();
360 0.65 + (dims.y + dims.z) * 0.6
361 }
362 }
363
364 pub fn scale(&self) -> Scale {
365 let s = match self {
366 Body::BirdMedium(bird_medium) => match bird_medium.species {
367 bird_medium::Species::Bat | bird_medium::Species::VampireBat => 0.5,
368 _ => 1.0,
369 },
370 _ => 1.0,
371 };
372 Scale(s)
373 }
374
375 pub fn density(&self) -> Density {
378 let d = match self {
379 Body::BirdMedium(_) => 700.0,
381 Body::BirdLarge(_) => 2_200.0,
382
383 Body::Dragon(_) => 5_000.0,
384
385 Body::Golem(_) => WATER_DENSITY * 2.5,
386 Body::Humanoid(_) => HUMAN_DENSITY,
387 Body::Ship(ship) => ship.density().0,
388 Body::Object(object) => object.density().0,
389 Body::Item(item) => item.density().0,
390 _ => HUMAN_DENSITY,
391 };
392 Density(d)
393 }
394
395 pub fn mass(&self) -> Mass {
399 let m = match self {
400 Body::BipedLarge(body) => match body.species {
401 biped_large::Species::Slysaurok => 400.0,
402 biped_large::Species::Occultsaurok => 400.0,
403 biped_large::Species::Mightysaurok => 400.0,
404 biped_large::Species::Mindflayer => 420.0,
405 biped_large::Species::Minotaur => 500.0,
406 biped_large::Species::Cavetroll => 600.0,
407 biped_large::Species::Mountaintroll => 600.0,
408 biped_large::Species::Swamptroll => 600.0,
409 biped_large::Species::Gigasfrost => 400.0,
410 biped_large::Species::AdletElder => 350.0,
411 biped_large::Species::HaniwaGeneral => 360.0,
412 biped_large::Species::TerracottaBesieger
413 | biped_large::Species::TerracottaDemolisher
414 | biped_large::Species::TerracottaPunisher
415 | biped_large::Species::TerracottaPursuer
416 | biped_large::Species::Cursekeeper => 380.0,
417 biped_large::Species::Forgemaster => 1600.0,
418 _ => 400.0,
419 },
420 Body::BipedSmall(body) => match body.species {
421 biped_small::Species::IronDwarf => 1000.0,
422 biped_small::Species::Flamekeeper => 1000.0,
423 biped_small::Species::Boreal => 270.0,
424 _ => 50.0,
425 },
426 Body::BirdMedium(body) => match body.species {
428 bird_medium::Species::SnowyOwl => 3.0,
429 bird_medium::Species::HornedOwl => 3.0,
430 bird_medium::Species::Duck => 3.5,
431 bird_medium::Species::Cockatiel => 2.0,
432 bird_medium::Species::Chicken => 2.5, bird_medium::Species::Bat => 1.5,
434 bird_medium::Species::Penguin => 10.0,
435 bird_medium::Species::Eagle => 7.0, bird_medium::Species::Goose => 3.5, bird_medium::Species::Parrot => 1.0,
438 bird_medium::Species::Peacock => 6.0,
439 bird_medium::Species::Crow => 3.0,
440 bird_medium::Species::Dodo => 4.0,
441 bird_medium::Species::Parakeet => 1.0,
442 bird_medium::Species::Puffin => 2.0,
443 bird_medium::Species::Toucan => 4.5,
444 bird_medium::Species::BloodmoonBat => 1.5,
445 bird_medium::Species::VampireBat => 1.5,
446 },
447 Body::BirdLarge(_) => 250.0,
448 Body::Dragon(_) => 20_000.0,
449 Body::FishMedium(_) => 5.0,
450 Body::FishSmall(_) => 1.0,
451 Body::Golem(_) => 10_000.0,
452 Body::Humanoid(humanoid) => {
453 65.0 * humanoid.height() / 1.75f32
462 },
463 Body::Object(obj) => obj.mass().0,
464 Body::Item(item) => item.mass().0,
465 Body::QuadrupedLow(body) => match body.species {
466 quadruped_low::Species::Alligator => 360.0, quadruped_low::Species::Snaretongue => 280.0,
468 quadruped_low::Species::Asp => 300.0,
469 quadruped_low::Species::Crocodile => 360.0,
472 quadruped_low::Species::SeaCrocodile => 410.0,
473 quadruped_low::Species::Deadwood => 200.0,
474 quadruped_low::Species::Monitor => 200.0,
475 quadruped_low::Species::Pangolin => 300.0,
476 quadruped_low::Species::Salamander => 350.0,
477 quadruped_low::Species::Elbst => 350.0,
478 quadruped_low::Species::Tortoise => 300.0,
479 quadruped_low::Species::Lavadrake => 700.0,
480 quadruped_low::Species::Icedrake => 700.0,
481 quadruped_low::Species::Mossdrake => 700.0,
482 quadruped_low::Species::Rocksnapper => 450.0,
483 quadruped_low::Species::Rootsnapper => 450.0,
484 quadruped_low::Species::Reefsnapper => 450.0,
485 quadruped_low::Species::Maneater => 80.0,
486 quadruped_low::Species::Sandshark => 450.0,
487 quadruped_low::Species::Hakulaq => 400.0,
488 quadruped_low::Species::Dagon => 600.0,
489 quadruped_low::Species::Basilisk => 800.0,
490 quadruped_low::Species::Driggle => 55.0,
491 quadruped_low::Species::Hydra => 800.0,
492 },
493 Body::QuadrupedMedium(body) => match body.species {
494 quadruped_medium::Species::Bear => 500.0, quadruped_medium::Species::Cattle => 575.0, quadruped_medium::Species::Deer => 80.0,
497 quadruped_medium::Species::Donkey => 200.0,
498 quadruped_medium::Species::Highland => 200.0,
499 quadruped_medium::Species::Horse => 300.0, quadruped_medium::Species::Kelpie => 250.0,
501 quadruped_medium::Species::Lion => 170.0, quadruped_medium::Species::Panda => 200.0,
503 quadruped_medium::Species::Saber => 130.0,
504 quadruped_medium::Species::Yak => 200.0,
505 quadruped_medium::Species::Dreadhorn => 500.0,
506 quadruped_medium::Species::Mammoth => 1500.0,
507 quadruped_medium::Species::Catoblepas => 300.0,
508 _ => 200.0,
509 },
510 Body::QuadrupedSmall(body) => match body.species {
511 quadruped_small::Species::Axolotl => 1.0,
512 quadruped_small::Species::Batfox => 10.0,
513 quadruped_small::Species::Beaver => 10.0,
514 quadruped_small::Species::Boar => 80.0, quadruped_small::Species::Cat => 4.0, quadruped_small::Species::Dog => 30.0, quadruped_small::Species::Fox => 10.0,
518 quadruped_small::Species::Frog => 1.0,
519 quadruped_small::Species::Fungome => 10.0,
520 quadruped_small::Species::Gecko => 1.0,
521 quadruped_small::Species::Goat => 50.0,
522 quadruped_small::Species::Hare => 10.0,
523 quadruped_small::Species::Holladon => 70.0,
524 quadruped_small::Species::Hyena => 70.0, quadruped_small::Species::Jackalope => 10.0,
526 quadruped_small::Species::Pig => 20.0,
527 quadruped_small::Species::Porcupine => 5.0,
528 quadruped_small::Species::Quokka => 10.0,
529 quadruped_small::Species::Rabbit => 2.0,
530 quadruped_small::Species::Raccoon => 30.0,
531 quadruped_small::Species::Rat => 1.0,
532 quadruped_small::Species::Sheep => 50.0,
533 quadruped_small::Species::Skunk => 5.0,
534 quadruped_small::Species::Squirrel => 1.0,
535 quadruped_small::Species::Truffler => 70.0,
536 quadruped_small::Species::Turtle => 40.0,
537 quadruped_small::Species::Seal => 15.0,
538 quadruped_small::Species::TreantSapling => 80.0,
539 quadruped_small::Species::MossySnail => 5.0,
540 },
541 Body::Theropod(body) => match body.species {
542 theropod::Species::Archaeos => 8_000.0,
545 theropod::Species::Ntouka => 8_000.0,
546 theropod::Species::Odonto => 8_000.0,
547 theropod::Species::Dodarock => 700.0,
548 theropod::Species::Sandraptor => 500.0,
549 theropod::Species::Snowraptor => 500.0,
550 theropod::Species::Sunlizard => 500.0,
551 theropod::Species::Woodraptor => 500.0,
552 theropod::Species::Yale => 1_000.0,
553 theropod::Species::Axebeak => 300.0,
554 },
555 Body::Ship(ship) => ship.mass().0,
556 Body::Arthropod(_) => 200.0,
557 Body::Crustacean(body) => match body.species {
559 crustacean::Species::Crab | crustacean::Species::SoldierCrab => 50.0,
560 crustacean::Species::Karkatha => 1200.0,
561 },
562 Body::Plugin(body) => body.mass().0,
563 };
564 Mass(m)
565 }
566
567 pub fn dimensions(&self) -> Vec3<f32> {
571 match self {
572 Body::BipedLarge(body) => match body.species {
573 biped_large::Species::Cyclops => Vec3::new(5.6, 3.0, 8.0),
574 biped_large::Species::Dullahan => Vec3::new(4.6, 3.0, 5.5),
575 biped_large::Species::Mightysaurok => Vec3::new(4.0, 3.0, 3.4),
576 biped_large::Species::Mindflayer => Vec3::new(4.4, 3.0, 8.0),
577 biped_large::Species::Minotaur => Vec3::new(6.0, 3.0, 8.0),
578 biped_large::Species::Occultsaurok => Vec3::new(4.0, 3.0, 3.4),
579 biped_large::Species::Slysaurok => Vec3::new(4.0, 3.0, 3.4),
580 biped_large::Species::Werewolf => Vec3::new(4.0, 3.0, 3.5),
581 biped_large::Species::Harvester => Vec3::new(4.6, 3.0, 5.4),
582 biped_large::Species::Cultistwarlord => Vec3::new(3.0, 3.0, 4.5),
583 biped_large::Species::Cultistwarlock => Vec3::new(3.0, 3.0, 3.5),
584 biped_large::Species::Huskbrute => Vec3::new(4.6, 3.0, 5.0),
585 biped_large::Species::Tursus => Vec3::new(4.0, 3.0, 4.0),
586 biped_large::Species::Gigasfrost => Vec3::new(6.0, 3.0, 8.0),
587 biped_large::Species::AdletElder => Vec3::new(3.5, 3.0, 5.0),
588 biped_large::Species::SeaBishop => Vec3::new(3.7, 2.5, 4.2),
589 biped_large::Species::HaniwaGeneral => Vec3::new(3.3, 2.3, 3.8),
590 biped_large::Species::TerracottaBesieger => Vec3::new(3.8, 3.0, 5.0),
591 biped_large::Species::TerracottaDemolisher => Vec3::new(3.3, 2.5, 3.8),
592 biped_large::Species::TerracottaPunisher => Vec3::new(3.3, 2.5, 3.8),
593 biped_large::Species::TerracottaPursuer => Vec3::new(3.3, 2.5, 3.8),
594 biped_large::Species::Cursekeeper => Vec3::new(3.8, 3.0, 5.0),
595 biped_large::Species::Forgemaster => Vec3::new(6.5, 5.0, 8.0),
596 biped_large::Species::Strigoi => Vec3::new(3.8, 3.0, 5.0),
597 biped_large::Species::Executioner => Vec3::new(2.8, 2.8, 4.7),
598 _ => Vec3::new(4.6, 3.0, 6.0),
599 },
600 Body::BipedSmall(body) => match body.species {
601 biped_small::Species::Gnarling => Vec3::new(1.0, 0.75, 1.4),
602 biped_small::Species::Haniwa => Vec3::new(1.3, 1.0, 2.2),
603 biped_small::Species::Adlet => Vec3::new(1.3, 1.0, 2.0),
604 biped_small::Species::Sahagin => Vec3::new(1.3, 2.0, 1.7),
605 biped_small::Species::Myrmidon => Vec3::new(1.3, 1.0, 2.2),
606 biped_small::Species::Husk => Vec3::new(1.7, 0.7, 2.7),
607 biped_small::Species::Boreal => Vec3::new(2.6, 2.0, 4.6),
608 biped_small::Species::Bushly => Vec3::new(1.2, 1.3, 1.6),
609 biped_small::Species::Cactid => Vec3::new(1.0, 0.75, 1.4),
610 biped_small::Species::Irrwurz => Vec3::new(1.5, 1.5, 2.0),
611 biped_small::Species::IronDwarf => Vec3::new(1.3, 2.0, 2.5),
612 biped_small::Species::ShamanicSpirit => Vec3::new(1.3, 2.0, 2.3),
613 biped_small::Species::Jiangshi => Vec3::new(1.3, 1.8, 2.5),
614 biped_small::Species::Flamekeeper => Vec3::new(1.5, 1.5, 2.5),
615 biped_small::Species::TreasureEgg => Vec3::new(1.1, 1.1, 1.4),
616 biped_small::Species::GnarlingChieftain => Vec3::new(1.0, 0.75, 1.4),
617 biped_small::Species::BloodmoonHeiress => Vec3::new(3.5, 3.5, 5.5),
618 biped_small::Species::Bloodservant => Vec3::new(1.3, 1.8, 2.5),
619 biped_small::Species::Harlequin => Vec3::new(1.3, 2.0, 2.5),
620 biped_small::Species::GoblinThug => Vec3::new(1.3, 1.0, 1.6),
621 biped_small::Species::GoblinChucker => Vec3::new(1.3, 1.0, 1.6),
622 biped_small::Species::GoblinRuffian => Vec3::new(1.3, 1.0, 1.6),
623 biped_small::Species::GreenLegoom => Vec3::new(1.4, 1.2, 1.8),
624 biped_small::Species::OchreLegoom => Vec3::new(1.4, 1.2, 1.8),
625 biped_small::Species::PurpleLegoom => Vec3::new(1.4, 1.2, 1.8),
626 biped_small::Species::RedLegoom => Vec3::new(1.4, 1.2, 1.8),
627 _ => Vec3::new(1.0, 0.75, 1.4),
628 },
629 Body::BirdLarge(body) => match body.species {
630 bird_large::Species::Cockatrice => Vec3::new(2.5, 5.5, 3.5),
631 bird_large::Species::Roc => Vec3::new(2.2, 7.5, 4.0),
632 bird_large::Species::FlameWyvern
633 | bird_large::Species::FrostWyvern
634 | bird_large::Species::CloudWyvern
635 | bird_large::Species::SeaWyvern
636 | bird_large::Species::WealdWyvern => Vec3::new(2.5, 9.0, 4.5),
637 _ => Vec3::new(2.0, 6.0, 4.4),
638 },
639 Body::Dragon(_) => Vec3::new(16.0, 10.0, 16.0),
640 Body::FishMedium(_) => Vec3::new(0.5, 2.0, 0.8),
641 Body::FishSmall(_) => Vec3::new(0.3, 1.2, 0.6),
642 Body::Golem(body) => match body.species {
643 golem::Species::CoralGolem => Vec3::new(3.0, 5.0, 4.0),
644 golem::Species::ClayGolem => Vec3::new(6.8, 3.5, 7.5),
645 golem::Species::AncientEffigy => Vec3::new(2.5, 2.5, 3.8),
646 golem::Species::Mogwai => Vec3::new(2.5, 2.5, 3.8),
647 _ => Vec3::new(5.0, 4.5, 7.5),
648 },
649 Body::Humanoid(humanoid) => {
650 let height = humanoid.height();
651 Vec3::new(height / 1.3, 1.75 / 2.0, height)
652 },
653 Body::Object(object) => object.dimensions(),
654 Body::Item(item) => item.dimensions(),
655 Body::QuadrupedMedium(body) => match body.species {
656 quadruped_medium::Species::Akhlut => Vec3::new(2.5, 7.0, 3.0),
657 quadruped_medium::Species::Barghest => Vec3::new(2.0, 4.4, 2.7),
658 quadruped_medium::Species::Bear => Vec3::new(2.0, 3.8, 3.0),
659 quadruped_medium::Species::Catoblepas => Vec3::new(2.0, 4.0, 2.3),
660 quadruped_medium::Species::Cattle => Vec3::new(2.0, 3.6, 2.4),
661 quadruped_medium::Species::Deer => Vec3::new(2.0, 3.0, 2.2),
662 quadruped_medium::Species::Dreadhorn => Vec3::new(3.5, 7.0, 4.0),
663 quadruped_medium::Species::Frostfang => Vec3::new(1.5, 3.0, 1.5),
664 quadruped_medium::Species::Grolgar => Vec3::new(2.0, 4.0, 2.0),
665 quadruped_medium::Species::Highland => Vec3::new(2.0, 3.6, 2.4),
666 quadruped_medium::Species::Horse => Vec3::new(1.6, 3.0, 2.4),
667 quadruped_medium::Species::Lion => Vec3::new(2.0, 3.3, 2.0),
668 quadruped_medium::Species::Moose => Vec3::new(2.0, 4.0, 2.5),
669 quadruped_medium::Species::Bristleback => Vec3::new(2.0, 3.0, 2.0),
670 quadruped_medium::Species::Roshwalr => Vec3::new(3.4, 5.2, 3.7),
671 quadruped_medium::Species::Saber => Vec3::new(2.0, 3.0, 2.0),
672 quadruped_medium::Species::Tarasque => Vec3::new(2.0, 4.0, 2.6),
673 quadruped_medium::Species::Yak => Vec3::new(2.0, 3.6, 3.0),
674 quadruped_medium::Species::Mammoth => Vec3::new(7.5, 11.5, 8.0),
675 quadruped_medium::Species::Ngoubou => Vec3::new(2.0, 3.2, 2.4),
676 quadruped_medium::Species::Llama => Vec3::new(2.0, 2.5, 2.6),
677 quadruped_medium::Species::ClaySteed => Vec3::new(2.2, 4.8, 4.0),
678 quadruped_medium::Species::Alpaca => Vec3::new(2.0, 2.0, 2.0),
679 quadruped_medium::Species::Camel => Vec3::new(2.0, 4.0, 3.5),
680 quadruped_medium::Species::Wolf => Vec3::new(1.25, 3.0, 1.8),
681 _ => Vec3::new(2.0, 3.0, 2.0),
683 },
684 Body::QuadrupedSmall(body) => match body.species {
685 quadruped_small::Species::Batfox => Vec3::new(1.4, 1.7, 1.3),
686 quadruped_small::Species::Holladon => Vec3::new(1.3, 1.9, 1.5),
687 quadruped_small::Species::Hyena => Vec3::new(1.2, 1.4, 1.3),
688 quadruped_small::Species::Truffler => Vec3::new(1.2, 1.8, 2.2),
689 quadruped_small::Species::MossySnail => Vec3::new(1.4, 1.4, 1.2),
690 _ => Vec3::new(1.2, 1.2, 1.0),
691 },
692 Body::QuadrupedLow(body) => match body.species {
693 quadruped_low::Species::Asp => Vec3::new(2.0, 3.0, 1.7),
694 quadruped_low::Species::Crocodile => Vec3::new(1.0, 2.8, 1.3),
695 quadruped_low::Species::SeaCrocodile => Vec3::new(1.2, 4.5, 1.3),
696 quadruped_low::Species::Deadwood => Vec3::new(1.3, 1.3, 1.4),
697 quadruped_low::Species::Hakulaq => Vec3::new(1.8, 3.0, 2.0),
698 quadruped_low::Species::Dagon => Vec3::new(3.0, 6.0, 2.0),
699 quadruped_low::Species::Icedrake => Vec3::new(2.0, 5.5, 2.5),
700 quadruped_low::Species::Lavadrake => Vec3::new(2.0, 5.5, 2.5),
701 quadruped_low::Species::Mossdrake => Vec3::new(2.0, 5.5, 2.5),
702 quadruped_low::Species::Maneater => Vec3::new(2.0, 3.7, 4.0),
703 quadruped_low::Species::Monitor => Vec3::new(1.4, 3.2, 1.3),
704 quadruped_low::Species::Pangolin => Vec3::new(1.0, 2.6, 1.1),
705 quadruped_low::Species::Rocksnapper => Vec3::new(2.5, 3.5, 2.9),
706 quadruped_low::Species::Rootsnapper => Vec3::new(2.5, 3.5, 2.9),
707 quadruped_low::Species::Reefsnapper => Vec3::new(2.5, 3.5, 2.9),
708 quadruped_low::Species::Sandshark => Vec3::new(2.1, 4.3, 1.7),
709 quadruped_low::Species::Basilisk => Vec3::new(2.7, 6.0, 2.9),
710 quadruped_low::Species::Salamander => Vec3::new(1.7, 4.0, 1.3),
711 quadruped_low::Species::Elbst => Vec3::new(1.7, 4.0, 1.3),
712 quadruped_low::Species::Tortoise => Vec3::new(1.7, 2.7, 1.5),
713 quadruped_low::Species::Driggle => Vec3::new(1.6, 2.7, 1.0),
714 quadruped_low::Species::Snaretongue => Vec3::new(2.0, 2.8, 1.6),
715 quadruped_low::Species::Hydra => Vec3::new(3.0, 5.0, 2.8),
716 _ => Vec3::new(1.0, 1.6, 1.3),
717 },
718 Body::Ship(ship) => ship.dimensions(),
719 Body::Theropod(body) => match body.species {
720 theropod::Species::Archaeos => Vec3::new(4.5, 8.5, 8.0),
721 theropod::Species::Ntouka => Vec3::new(4.5, 9.0, 6.6),
722 theropod::Species::Odonto => Vec3::new(4.5, 8.0, 6.6),
723 theropod::Species::Dodarock => Vec3::new(2.0, 3.0, 2.6),
724 theropod::Species::Sandraptor => Vec3::new(2.0, 3.0, 2.6),
725 theropod::Species::Snowraptor => Vec3::new(2.0, 3.0, 2.6),
726 theropod::Species::Sunlizard => Vec3::new(2.0, 3.6, 2.5),
727 theropod::Species::Woodraptor => Vec3::new(2.0, 3.0, 2.6),
728 theropod::Species::Yale => Vec3::new(2.0, 3.2, 4.0),
729 theropod::Species::Axebeak => Vec3::new(2.0, 3.6, 3.0),
730 },
731 Body::Arthropod(body) => match body.species {
732 arthropod::Species::Tarantula => Vec3::new(4.0, 4.0, 1.8),
733 arthropod::Species::Blackwidow => Vec3::new(4.0, 4.0, 2.0),
734 arthropod::Species::Antlion => Vec3::new(4.0, 4.0, 2.2),
735 arthropod::Species::Hornbeetle => Vec3::new(3.2, 3.2, 1.3),
736 arthropod::Species::Leafbeetle => Vec3::new(2.4, 2.8, 1.2),
737 arthropod::Species::Stagbeetle => Vec3::new(3.2, 3.2, 1.3),
738 arthropod::Species::Weevil => Vec3::new(2.2, 2.4, 1.1),
739 arthropod::Species::Cavespider => Vec3::new(4.0, 4.0, 1.4),
740 arthropod::Species::Moltencrawler => Vec3::new(3.2, 4.0, 1.5),
741 arthropod::Species::Mosscrawler => Vec3::new(3.2, 4.0, 1.4),
742 arthropod::Species::Sandcrawler => Vec3::new(3.2, 4.0, 1.4),
743 arthropod::Species::Dagonite => Vec3::new(3.2, 4.7, 1.4),
744 arthropod::Species::Emberfly => Vec3::new(1.3, 1.5, 0.9),
745 },
746 Body::BirdMedium(body) => match body.species {
747 bird_medium::Species::SnowyOwl => Vec3::new(1.2, 1.2, 0.9),
748 bird_medium::Species::HornedOwl => Vec3::new(1.2, 1.2, 0.9),
749 bird_medium::Species::Duck => Vec3::new(0.8, 1.3, 0.8),
750 bird_medium::Species::Cockatiel => Vec3::new(0.8, 1.0, 0.7),
751 bird_medium::Species::Chicken => Vec3::new(1.2, 1.5, 0.9),
752 bird_medium::Species::Bat => Vec3::new(2.0, 1.8, 1.3),
753 bird_medium::Species::Penguin => Vec3::new(1.0, 1.0, 1.2),
754 bird_medium::Species::Goose => Vec3::new(1.5, 1.5, 1.1),
755 bird_medium::Species::Peacock => Vec3::new(1.6, 1.8, 1.4),
756 bird_medium::Species::Eagle => Vec3::new(1.5, 2.2, 1.0),
757 bird_medium::Species::Parrot => Vec3::new(1.2, 1.5, 1.1),
758 bird_medium::Species::Crow => Vec3::new(1.0, 1.2, 0.8),
759 bird_medium::Species::Dodo => Vec3::new(1.2, 1.8, 1.1),
760 bird_medium::Species::Parakeet => Vec3::new(0.8, 0.9, 0.7),
761 bird_medium::Species::Puffin => Vec3::new(1.0, 1.0, 1.0),
762 bird_medium::Species::Toucan => Vec3::new(2.1, 1.1, 1.2),
763 bird_medium::Species::BloodmoonBat => Vec3::new(3.5, 3.5, 2.5),
764 bird_medium::Species::VampireBat => Vec3::new(2.0, 1.8, 1.3),
765 },
766 Body::Crustacean(body) => match body.species {
767 crustacean::Species::Crab => Vec3::new(1.2, 1.2, 0.7),
768 crustacean::Species::SoldierCrab => Vec3::new(1.2, 1.2, 1.0),
769 crustacean::Species::Karkatha => Vec3::new(10.0, 10.0, 7.5),
770 },
771 Body::Plugin(body) => body.dimensions(),
772 }
773 }
774
775 pub fn max_radius(&self) -> f32 {
779 let dim = self.dimensions();
780 let (x, y) = (dim.x, dim.y);
781
782 x.max(y) / 2.0
783 }
784
785 pub fn front_radius(&self) -> f32 { self.dimensions().y / 2.0 }
786
787 pub fn min_radius(&self) -> f32 {
788 let (_p0, _p1, radius) = self.sausage();
789
790 radius
791 }
792
793 pub fn sausage(&self) -> (Vec2<f32>, Vec2<f32>, f32) {
798 let dim = self.dimensions();
810 let (width, length) = (dim.x, dim.y);
812
813 if length > width {
814 let radius = width / 2.0;
816
817 let a = length - 2.0 * radius;
818
819 let p0 = Vec2::new(0.0, -a / 2.0);
820 let p1 = Vec2::new(0.0, a / 2.0);
821
822 (p0, p1, radius)
823 } else {
824 let radius = length / 2.0;
826
827 let a = width - 2.0 * radius;
828
829 let p0 = Vec2::new(-a / 2.0, 0.0);
830 let p1 = Vec2::new(a / 2.0, 0.0);
831
832 (p0, p1, radius)
833 }
834 }
835
836 pub fn collider(&self) -> Collider {
838 if let Body::Ship(ship) = self {
839 ship.make_collider()
840 } else {
841 let (p0, p1, radius) = self.sausage();
842
843 Collider::CapsulePrism {
844 p0,
845 p1,
846 radius,
847 z_min: 0.0,
848 z_max: self.height(),
849 }
850 }
851 }
852
853 pub fn spacing_radius(&self) -> f32 {
858 self.max_radius()
859 + match self {
860 Body::QuadrupedSmall(body) => match body.species {
861 quadruped_small::Species::Rat => 0.0,
862 _ => 2.0,
863 },
864 Body::QuadrupedLow(body) => match body.species {
865 quadruped_low::Species::Hakulaq => 0.0,
866 _ => 2.0,
867 },
868 Body::BipedSmall(body) => match body.species {
869 biped_small::Species::Husk => 3.0,
870 _ => 2.0,
871 },
872 _ => 2.0,
873 }
874 }
875
876 pub fn height(&self) -> f32 { self.dimensions().z }
878
879 pub fn base_energy(&self) -> u16 {
880 match self {
881 Body::BipedLarge(biped_large) => match biped_large.species {
882 biped_large::Species::Dullahan => 400,
883 biped_large::Species::Cultistwarlord | biped_large::Species::Cultistwarlock => 240,
884 _ => 300,
885 },
886 Body::BirdLarge(body) => match body.species {
887 bird_large::Species::Cockatrice => 400,
888 bird_large::Species::Phoenix => 600,
889 bird_large::Species::Roc => 500,
890 bird_large::Species::FlameWyvern => 600,
891 bird_large::Species::CloudWyvern => 600,
892 bird_large::Species::FrostWyvern => 600,
893 bird_large::Species::SeaWyvern => 600,
894 bird_large::Species::WealdWyvern => 600,
895 },
896 Body::Humanoid(_) => 100,
897 _ => 100,
898 }
899 }
900
901 pub fn has_death_protection(&self) -> bool { matches!(self, Body::Humanoid(_)) }
904
905 pub fn base_health(&self) -> u16 {
906 match self {
907 Body::Humanoid(_) => 100,
908 Body::QuadrupedSmall(quadruped_small) => match quadruped_small.species {
909 quadruped_small::Species::Batfox => 40,
911 quadruped_small::Species::Boar => 55,
912 quadruped_small::Species::Fox => 25,
913 quadruped_small::Species::Goat => 30,
914 quadruped_small::Species::Hare => 20,
915 quadruped_small::Species::Holladon => 25,
916 quadruped_small::Species::Jackalope => 30,
917 quadruped_small::Species::MossySnail => 15,
918 quadruped_small::Species::Porcupine => 25,
919 quadruped_small::Species::Sheep => 30,
920 quadruped_small::Species::TreantSapling => 20,
921 quadruped_small::Species::Truffler => 70,
922 quadruped_small::Species::Hyena => 85,
924 quadruped_small::Species::Beaver => 20,
926 quadruped_small::Species::Cat => 25,
927 quadruped_small::Species::Dog => 30,
928 quadruped_small::Species::Fungome => 15,
929 quadruped_small::Species::Pig => 25,
930 quadruped_small::Species::Quokka => 15,
931 quadruped_small::Species::Rabbit => 15,
932 quadruped_small::Species::Raccoon => 20,
933 quadruped_small::Species::Rat => 10,
934 quadruped_small::Species::Seal => 20,
935 quadruped_small::Species::Skunk => 20,
936 quadruped_small::Species::Turtle => 10,
937 _ => 5,
938 },
939 Body::QuadrupedMedium(quadruped_medium) => match quadruped_medium.species {
940 quadruped_medium::Species::Alpaca => 55,
942 quadruped_medium::Species::Antelope => 70,
943 quadruped_medium::Species::Darkhound => 80,
944 quadruped_medium::Species::Camel => 100,
945 quadruped_medium::Species::Cattle => 90,
946 quadruped_medium::Species::Deer => 55,
947 quadruped_medium::Species::Donkey => 65,
948 quadruped_medium::Species::Horse => 75,
949 quadruped_medium::Species::Llama => 65,
950 quadruped_medium::Species::Mouflon => 75,
951 quadruped_medium::Species::Zebra => 90,
952 quadruped_medium::Species::Barghest => 120,
954 quadruped_medium::Species::Bear => 240,
955 quadruped_medium::Species::Bristleback => 175,
956 quadruped_medium::Species::Bonerattler => 100,
957 quadruped_medium::Species::Frostfang => 185,
958 quadruped_medium::Species::Highland => 205,
959 quadruped_medium::Species::Kelpie => 150,
960 quadruped_medium::Species::Lion => 175,
961 quadruped_medium::Species::Moose => 265,
962 quadruped_medium::Species::Panda => 215,
963 quadruped_medium::Species::Saber => 210,
964 quadruped_medium::Species::Snowleopard => 175,
965 quadruped_medium::Species::Tiger => 205,
966 quadruped_medium::Species::Tuskram => 175,
967 quadruped_medium::Species::Wolf => 110,
968 quadruped_medium::Species::Yak => 215,
969 quadruped_medium::Species::Akhlut => 720,
971 quadruped_medium::Species::Catoblepas => 720,
972 quadruped_medium::Species::ClaySteed => 400,
973 quadruped_medium::Species::Dreadhorn => 690,
974 quadruped_medium::Species::Grolgar => 450,
975 quadruped_medium::Species::Hirdrasil => 480,
976 quadruped_medium::Species::Mammoth => 880,
977 quadruped_medium::Species::Ngoubou => 590,
978 quadruped_medium::Species::Roshwalr => 640,
979 quadruped_medium::Species::Tarasque => 370,
980 },
981 Body::FishMedium(fish_medium) => match fish_medium.species {
982 fish_medium::Species::Marlin => 50,
984 fish_medium::Species::Icepike => 90,
985 },
986 Body::Dragon(_) => 500,
987 Body::BirdLarge(bird_large) => match bird_large.species {
988 bird_large::Species::Cockatrice => 540,
990 bird_large::Species::Roc => 450,
991 bird_large::Species::FlameWyvern
993 | bird_large::Species::CloudWyvern
994 | bird_large::Species::FrostWyvern
995 | bird_large::Species::SeaWyvern
996 | bird_large::Species::WealdWyvern => 1000,
997 bird_large::Species::Phoenix => 2000,
998 },
999 Body::BirdMedium(bird_medium) => match bird_medium.species {
1000 bird_medium::Species::Bat => 10,
1002 bird_medium::Species::Chicken => 10,
1003 bird_medium::Species::Cockatiel => 10,
1004 bird_medium::Species::Dodo => 20,
1005 bird_medium::Species::Duck => 10,
1006 bird_medium::Species::Parakeet => 10,
1007 bird_medium::Species::Peacock => 20,
1008 bird_medium::Species::Penguin => 10,
1009 bird_medium::Species::Puffin => 20,
1010 bird_medium::Species::Crow => 15,
1012 bird_medium::Species::Eagle => 35,
1013 bird_medium::Species::Goose => 25,
1014 bird_medium::Species::HornedOwl => 35,
1015 bird_medium::Species::Parrot => 15,
1016 bird_medium::Species::SnowyOwl => 35,
1017 bird_medium::Species::Toucan => 15,
1018 bird_medium::Species::VampireBat => 100,
1020 bird_medium::Species::BloodmoonBat => 1200,
1021 },
1022 Body::FishSmall(fish_small) => match fish_small.species {
1023 fish_small::Species::Clownfish => 5,
1025 fish_small::Species::Piranha => 10,
1027 },
1028 Body::BipedLarge(biped_large) => match biped_large.species {
1029 biped_large::Species::Ogre => 320,
1030 biped_large::Species::Cyclops => 1000,
1031 biped_large::Species::Wendigo => 280,
1032 biped_large::Species::Cavetroll => 240,
1033 biped_large::Species::Mountaintroll => 240,
1034 biped_large::Species::Swamptroll => 240,
1035 biped_large::Species::Dullahan => 600,
1036 biped_large::Species::Mindflayer => 2000,
1037 biped_large::Species::Tidalwarrior => 1600,
1038 biped_large::Species::Yeti => 1800,
1039 biped_large::Species::Minotaur => 3000,
1040 biped_large::Species::Harvester => 1300,
1041 biped_large::Species::Blueoni => 240,
1042 biped_large::Species::Redoni => 240,
1043 biped_large::Species::Huskbrute => 800,
1044 biped_large::Species::Cultistwarlord => 200,
1045 biped_large::Species::Cultistwarlock => 200,
1046 biped_large::Species::Gigasfrost => 30000,
1047 biped_large::Species::AdletElder => 1500,
1048 biped_large::Species::Tursus => 300,
1049 biped_large::Species::SeaBishop => 550,
1050 biped_large::Species::HaniwaGeneral => 600,
1051 biped_large::Species::TerracottaBesieger
1052 | biped_large::Species::TerracottaDemolisher
1053 | biped_large::Species::TerracottaPunisher
1054 | biped_large::Species::TerracottaPursuer => 300,
1055 biped_large::Species::Cursekeeper => 3000,
1056 biped_large::Species::Forgemaster => 10000,
1057 biped_large::Species::Strigoi => 800,
1058 biped_large::Species::Executioner => 800,
1059 _ => 120,
1060 },
1061 Body::BipedSmall(biped_small) => match biped_small.species {
1062 biped_small::Species::GoblinThug
1063 | biped_small::Species::GoblinChucker
1064 | biped_small::Species::GoblinRuffian => 30,
1065 biped_small::Species::GreenLegoom
1066 | biped_small::Species::OchreLegoom
1067 | biped_small::Species::PurpleLegoom
1068 | biped_small::Species::RedLegoom => 40,
1069 biped_small::Species::Cactid => 50,
1070 biped_small::Species::Gnarling => 50,
1071 biped_small::Species::GnarlingChieftain => 150,
1072 biped_small::Species::Mandragora => 65,
1073 biped_small::Species::Adlet => 65,
1074 biped_small::Species::Sahagin => 85,
1075 biped_small::Species::Haniwa => 100,
1076 biped_small::Species::Myrmidon => 100,
1077 biped_small::Species::Husk => 50,
1078 biped_small::Species::Boreal => 800,
1079 biped_small::Species::IronDwarf => 250,
1080 biped_small::Species::Irrwurz => 100,
1081 biped_small::Species::ShamanicSpirit => 240,
1082 biped_small::Species::Jiangshi => 250,
1083 biped_small::Species::Flamekeeper => 2000,
1084 biped_small::Species::BloodmoonHeiress => 2000,
1085 biped_small::Species::Bloodservant => 300,
1086 biped_small::Species::Harlequin => 500,
1087 _ => 60,
1088 },
1089 Body::Object(object) => match object {
1090 object::Body::TrainingDummy => 60000,
1091 object::Body::Crossbow => 80,
1092 object::Body::Flamethrower => 80,
1093 object::Body::Lavathrower => 80,
1094 object::Body::BarrelOrgan => 500,
1095 object::Body::HaniwaSentry => 60,
1096 object::Body::SeaLantern => 100,
1097 object::Body::TerracottaStatue => 600,
1098 object::Body::GnarlingTotemGreen => 15,
1099 object::Body::GnarlingTotemRed | object::Body::GnarlingTotemWhite => 15,
1100 _ => 1000,
1101 },
1102 Body::Item(_) => 1000,
1103 Body::Golem(golem) => match golem.species {
1104 golem::Species::WoodGolem => 120,
1105 golem::Species::ClayGolem => 350,
1106 golem::Species::Gravewarden => 1000,
1107 golem::Species::CoralGolem => 550,
1108 golem::Species::AncientEffigy => 250,
1109 golem::Species::Mogwai => 500,
1110 golem::Species::IronGolem => 2500,
1111 _ => 1000,
1112 },
1113 Body::Theropod(theropod) => match theropod.species {
1114 theropod::Species::Dodarock => 20,
1116 theropod::Species::Axebeak => 275,
1118 theropod::Species::Sandraptor => 110,
1119 theropod::Species::Snowraptor => 110,
1120 theropod::Species::Sunlizard => 110,
1121 theropod::Species::Woodraptor => 110,
1122 theropod::Species::Yale => 610,
1124 theropod::Species::Archaeos => 880,
1126 theropod::Species::Ntouka => 880,
1127 theropod::Species::Odonto => 1320,
1128 },
1129 Body::QuadrupedLow(quadruped_low) => match quadruped_low.species {
1130 quadruped_low::Species::Driggle => 50,
1132 quadruped_low::Species::Pangolin => 20,
1133 quadruped_low::Species::Tortoise => 45,
1134 quadruped_low::Species::Alligator => 130,
1136 quadruped_low::Species::Asp => 175,
1137 quadruped_low::Species::Crocodile => 145,
1138 quadruped_low::Species::Deadwood => 85,
1139 quadruped_low::Species::Elbst => 145,
1140 quadruped_low::Species::Hakulaq => 155,
1141 quadruped_low::Species::Monitor => 95,
1142 quadruped_low::Species::Salamander => 210,
1143 quadruped_low::Species::SeaCrocodile => 180,
1144 quadruped_low::Species::Dagon => 1200,
1146 quadruped_low::Species::Icedrake => 340,
1147 quadruped_low::Species::Lavadrake => 340,
1148 quadruped_low::Species::Maneater => 510,
1149 quadruped_low::Species::Mossdrake => 340,
1150 quadruped_low::Species::Rocksnapper => 400,
1151 quadruped_low::Species::Reefsnapper => 400,
1152 quadruped_low::Species::Rootsnapper => 400,
1153 quadruped_low::Species::Sandshark => 540,
1154 quadruped_low::Species::Hydra => 1000,
1155 quadruped_low::Species::Basilisk => 660,
1157 quadruped_low::Species::Snaretongue => 1500,
1158 },
1159 Body::Arthropod(arthropod) => match arthropod.species {
1160 arthropod::Species::Dagonite => 70,
1162 arthropod::Species::Emberfly => 20,
1163 arthropod::Species::Leafbeetle => 40,
1164 arthropod::Species::Weevil => 40,
1165 arthropod::Species::Cavespider => 170,
1167 arthropod::Species::Hornbeetle => 170,
1168 arthropod::Species::Moltencrawler => 145,
1169 arthropod::Species::Mosscrawler => 145,
1170 arthropod::Species::Sandcrawler => 145,
1171 arthropod::Species::Stagbeetle => 170,
1172 arthropod::Species::Tarantula => 155,
1173 arthropod::Species::Antlion => 480,
1175 arthropod::Species::Blackwidow => 370,
1176 },
1177 Body::Ship(_) => 1000,
1178 Body::Crustacean(crustacean) => match crustacean.species {
1179 crustacean::Species::Crab => 40,
1181 crustacean::Species::SoldierCrab => 50,
1183 crustacean::Species::Karkatha => 2000,
1184 },
1185 Body::Plugin(body) => body.base_health(),
1186 }
1187 }
1188
1189 pub fn flying_height(&self) -> f32 {
1190 match self {
1191 Body::BirdLarge(_) => 50.0,
1192 Body::BirdMedium(_) => 40.0,
1193 Body::Dragon(_) => 60.0,
1194 Body::Ship(ship) => ship.flying_height(),
1195 _ => 0.0,
1196 }
1197 }
1198
1199 pub fn immune_to(&self, buff: BuffKind) -> bool {
1200 match buff {
1201 BuffKind::Bleeding => match self {
1202 Body::Golem(_) | Body::Ship(_) => true,
1203 Body::Object(object) => !matches!(object, object::Body::TrainingDummy),
1204 Body::BipedSmall(b) => matches!(
1205 b.species,
1206 biped_small::Species::Husk
1207 | biped_small::Species::Boreal
1208 | biped_small::Species::IronDwarf
1209 | biped_small::Species::Haniwa
1210 | biped_small::Species::ShamanicSpirit
1211 | biped_small::Species::Jiangshi
1212 ),
1213 Body::BipedLarge(b) => matches!(
1214 b.species,
1215 biped_large::Species::Huskbrute
1216 | biped_large::Species::Gigasfrost
1217 | biped_large::Species::Dullahan
1218 | biped_large::Species::HaniwaGeneral
1219 | biped_large::Species::TerracottaBesieger
1220 | biped_large::Species::TerracottaDemolisher
1221 | biped_large::Species::TerracottaPunisher
1222 | biped_large::Species::TerracottaPursuer
1223 | biped_large::Species::Cursekeeper
1224 ),
1225 Body::QuadrupedMedium(b) => {
1226 matches!(b.species, quadruped_medium::Species::ClaySteed)
1227 },
1228 _ => false,
1229 },
1230 BuffKind::Crippled => match self {
1231 Body::Golem(_) | Body::Ship(_) => true,
1232 Body::Object(object) => !matches!(object, object::Body::TrainingDummy),
1233 Body::BipedLarge(b) => matches!(
1234 b.species,
1235 biped_large::Species::Dullahan | biped_large::Species::HaniwaGeneral
1236 ),
1237 Body::BipedSmall(b) => matches!(b.species, biped_small::Species::Haniwa),
1238 Body::QuadrupedMedium(b) => {
1239 matches!(b.species, quadruped_medium::Species::ClaySteed)
1240 },
1241 _ => false,
1242 },
1243 BuffKind::Burning => match self {
1244 Body::Golem(g) => matches!(
1245 g.species,
1246 golem::Species::Gravewarden
1247 | golem::Species::AncientEffigy
1248 | golem::Species::IronGolem
1249 ),
1250 Body::BipedSmall(b) => matches!(
1251 b.species,
1252 biped_small::Species::Haniwa
1253 | biped_small::Species::Flamekeeper
1254 | biped_small::Species::IronDwarf
1255 ),
1256 Body::Object(object) => matches!(
1257 object,
1258 object::Body::HaniwaSentry
1259 | object::Body::Lavathrower
1260 | object::Body::Flamethrower
1261 | object::Body::TerracottaStatue
1262 ),
1263 Body::QuadrupedLow(q) => matches!(
1264 q.species,
1265 quadruped_low::Species::Lavadrake | quadruped_low::Species::Salamander
1266 ),
1267 Body::BirdLarge(b) => matches!(
1268 b.species,
1269 bird_large::Species::Phoenix
1270 | bird_large::Species::Cockatrice
1271 | bird_large::Species::FlameWyvern
1272 | bird_large::Species::CloudWyvern
1273 | bird_large::Species::FrostWyvern
1274 | bird_large::Species::SeaWyvern
1275 | bird_large::Species::WealdWyvern
1276 ),
1277 Body::Arthropod(b) => matches!(b.species, arthropod::Species::Moltencrawler),
1278 Body::BipedLarge(b) => matches!(
1279 b.species,
1280 biped_large::Species::Cyclops
1281 | biped_large::Species::Minotaur
1282 | biped_large::Species::Forgemaster
1283 ),
1284 _ => false,
1285 },
1286 BuffKind::Ensnared => match self {
1287 Body::BipedLarge(b) => matches!(b.species, biped_large::Species::Harvester),
1288 Body::Arthropod(_) => true,
1289 _ => false,
1290 },
1291 BuffKind::Regeneration => {
1292 matches!(
1293 self,
1294 Body::Object(
1295 object::Body::GnarlingTotemRed
1296 | object::Body::GnarlingTotemGreen
1297 | object::Body::GnarlingTotemWhite
1298 )
1299 )
1300 },
1301 BuffKind::Frozen => match self {
1302 Body::BipedLarge(b) => matches!(
1303 b.species,
1304 biped_large::Species::Yeti
1305 | biped_large::Species::Gigasfrost
1306 | biped_large::Species::Tursus
1307 ),
1308 Body::QuadrupedLow(q) => matches!(q.species, quadruped_low::Species::Icedrake),
1309 Body::BirdLarge(b) => matches!(b.species, bird_large::Species::FrostWyvern),
1310 Body::BipedSmall(b) => matches!(b.species, biped_small::Species::Boreal),
1311 Body::QuadrupedMedium(b) => matches!(
1312 b.species,
1313 quadruped_medium::Species::Roshwalr | quadruped_medium::Species::Frostfang
1314 ),
1315 _ => false,
1316 },
1317 BuffKind::ProtectingWard => matches!(self, Body::Object(object::Body::BarrelOrgan)),
1318 _ => false,
1319 }
1320 }
1321
1322 pub fn combat_multiplier(&self) -> f32 {
1326 match self {
1327 Body::Object(object) => match object {
1328 object::Body::BarrelOrgan | object::Body::ArrowTurret => 0.05,
1329 object::Body::TerracottaStatue => 1.5,
1330 _ => 0.0,
1331 },
1332 Body::Ship(_) => 0.0,
1333 Body::BipedLarge(b) => match b.species {
1334 biped_large::Species::Mindflayer => 4.35,
1335 biped_large::Species::Minotaur => 4.05,
1336 biped_large::Species::Tidalwarrior => 2.75,
1337 biped_large::Species::Yeti => 2.25,
1338 _ => 1.0,
1339 },
1340 Body::BipedSmall(b) => match b.species {
1341 biped_small::Species::IronDwarf => 2.0,
1342 biped_small::Species::Flamekeeper => 4.0,
1343 _ => 1.0,
1344 },
1345 Body::Golem(g) => match g.species {
1346 golem::Species::Gravewarden => 2.45,
1347 _ => 1.0,
1348 },
1349 Body::QuadrupedLow(b) => match b.species {
1350 quadruped_low::Species::Snaretongue => 2.0,
1351 _ => 1.0,
1352 },
1353 Body::QuadrupedSmall(b) => match b.species {
1354 quadruped_small::Species::Axolotl | quadruped_small::Species::Gecko => 0.6,
1355 _ => 1.0,
1356 },
1357 #[expect(unreachable_patterns)] Body::FishMedium(b) => match b.species {
1359 fish_medium::Species::Marlin | fish_medium::Species::Icepike => 0.6,
1360 _ => 1.0,
1361 },
1362 #[expect(unreachable_patterns)] Body::FishSmall(b) => match b.species {
1364 fish_small::Species::Clownfish | fish_small::Species::Piranha => 0.6,
1365 _ => 1.0,
1366 },
1367 Body::Crustacean(b) => match b.species {
1368 crustacean::Species::Crab | crustacean::Species::SoldierCrab => 0.6,
1369 _ => 1.0,
1370 },
1371 _ => 1.0,
1372 }
1373 }
1374
1375 pub fn base_poise(&self) -> u16 {
1376 match self {
1377 Body::Humanoid(_) => 100,
1378 Body::BipedLarge(biped_large) => match biped_large.species {
1379 biped_large::Species::Mindflayer => 777,
1380 biped_large::Species::Minotaur => 340,
1381 biped_large::Species::Forgemaster => 300,
1382 biped_large::Species::Gigasfrost => 990,
1383 _ => 300,
1384 },
1385 Body::BipedSmall(b) => match b.species {
1386 biped_small::Species::GnarlingChieftain => 130,
1387 biped_small::Species::IronDwarf | biped_small::Species::Flamekeeper => 300,
1388 biped_small::Species::Boreal => 470,
1389 _ => 100,
1390 },
1391 Body::BirdLarge(b) => match b.species {
1392 bird_large::Species::FlameWyvern
1393 | bird_large::Species::FrostWyvern
1394 | bird_large::Species::CloudWyvern
1395 | bird_large::Species::SeaWyvern
1396 | bird_large::Species::WealdWyvern => 220,
1397 _ => 165,
1398 },
1399 Body::Golem(_) => 365,
1400 Body::QuadrupedMedium(b) => match b.species {
1401 quadruped_medium::Species::Bear | quadruped_medium::Species::Grolgar => 195,
1402 quadruped_medium::Species::Cattle
1403 | quadruped_medium::Species::Llama
1404 | quadruped_medium::Species::Alpaca
1405 | quadruped_medium::Species::Camel
1406 | quadruped_medium::Species::ClaySteed
1407 | quadruped_medium::Species::Zebra
1408 | quadruped_medium::Species::Donkey
1409 | quadruped_medium::Species::Highland
1410 | quadruped_medium::Species::Horse
1411 | quadruped_medium::Species::Kelpie
1412 | quadruped_medium::Species::Hirdrasil
1413 | quadruped_medium::Species::Antelope => 165,
1414 quadruped_medium::Species::Deer => 140,
1415 quadruped_medium::Species::Wolf
1416 | quadruped_medium::Species::Tiger
1417 | quadruped_medium::Species::Barghest
1418 | quadruped_medium::Species::Bonerattler
1419 | quadruped_medium::Species::Darkhound
1420 | quadruped_medium::Species::Moose
1421 | quadruped_medium::Species::Snowleopard
1422 | quadruped_medium::Species::Akhlut
1423 | quadruped_medium::Species::Bristleback
1424 | quadruped_medium::Species::Catoblepas
1425 | quadruped_medium::Species::Lion => 190,
1426 quadruped_medium::Species::Panda => 150,
1427 quadruped_medium::Species::Saber
1428 | quadruped_medium::Species::Yak
1429 | quadruped_medium::Species::Frostfang
1430 | quadruped_medium::Species::Tarasque
1431 | quadruped_medium::Species::Tuskram
1432 | quadruped_medium::Species::Mouflon
1433 | quadruped_medium::Species::Roshwalr
1434 | quadruped_medium::Species::Dreadhorn => 205,
1435 quadruped_medium::Species::Mammoth | quadruped_medium::Species::Ngoubou => 230,
1436 },
1437 Body::QuadrupedLow(b) => match b.species {
1438 quadruped_low::Species::Dagon => 270,
1439 quadruped_low::Species::Crocodile
1440 | quadruped_low::Species::Deadwood
1441 | quadruped_low::Species::SeaCrocodile
1442 | quadruped_low::Species::Alligator
1443 | quadruped_low::Species::Sandshark
1444 | quadruped_low::Species::Snaretongue
1445 | quadruped_low::Species::Asp => 190,
1446 quadruped_low::Species::Tortoise
1447 | quadruped_low::Species::Rocksnapper
1448 | quadruped_low::Species::Rootsnapper
1449 | quadruped_low::Species::Reefsnapper
1450 | quadruped_low::Species::Maneater
1451 | quadruped_low::Species::Hakulaq
1452 | quadruped_low::Species::Lavadrake
1453 | quadruped_low::Species::Icedrake
1454 | quadruped_low::Species::Basilisk
1455 | quadruped_low::Species::Hydra
1456 | quadruped_low::Species::Mossdrake => 205,
1457 quadruped_low::Species::Elbst
1458 | quadruped_low::Species::Salamander
1459 | quadruped_low::Species::Monitor
1460 | quadruped_low::Species::Pangolin
1461 | quadruped_low::Species::Driggle => 130,
1462 },
1463 Body::Theropod(b) => match b.species {
1464 theropod::Species::Archaeos
1465 | theropod::Species::Ntouka
1466 | theropod::Species::Odonto => 240,
1467 theropod::Species::Yale => 220,
1468 _ => 195,
1469 },
1470 _ => 100,
1471 }
1472 }
1473
1474 pub fn eye_height(&self, scale: f32) -> f32 { self.height() * 0.9 * scale }
1476
1477 pub fn default_light_offset(&self) -> Vec3<f32> {
1478 match self {
1480 Body::Object(_) => Vec3::unit_z() * 0.5,
1481 _ => Vec3::unit_z(),
1482 }
1483 }
1484
1485 pub fn can_strafe(&self) -> bool {
1486 matches!(
1487 self,
1488 Body::Humanoid(_)
1489 | Body::BipedSmall(_)
1490 | Body::BipedLarge(_)
1491 | Body::Crustacean(crustacean::Body {
1492 species: crustacean::Species::Crab,
1493 ..
1494 })
1495 )
1496 }
1497
1498 pub fn mount_offset(&self) -> Vec3<f32> {
1501 match self {
1502 Body::Humanoid(_) => (self.dimensions() * Vec3::new(0.5, 0.0, 0.6)).into_tuple(),
1503 Body::QuadrupedSmall(b) => match (b.species, b.body_type) {
1504 (quadruped_small::Species::Pig, _) => (0.0, 0.1, 0.6),
1505 (quadruped_small::Species::Fox, _) => (0.0, 0.1, 0.6),
1506 (quadruped_small::Species::Sheep, _) => (0.0, 0.1, 0.7),
1507 (quadruped_small::Species::Boar, _) => (0.0, -0.2, 1.0),
1508 (quadruped_small::Species::Jackalope, _) => (0.0, -0.1, 0.5),
1509 (quadruped_small::Species::Skunk, _) => (0.0, 0.0, 0.55),
1510 (quadruped_small::Species::Cat, _) => (0.0, 0.0, 0.45),
1511 (quadruped_small::Species::Batfox, _) => (0.0, -0.1, 0.7),
1512 (quadruped_small::Species::Raccoon, _) => (0.0, 0.0, 0.65),
1513 (quadruped_small::Species::Quokka, _) => (0.0, 0.1, 0.7),
1514 (quadruped_small::Species::Goat, _) => (0.0, 0.2, 0.7),
1515 (quadruped_small::Species::Holladon, _) => (0.0, -0.3, 1.05),
1516 (quadruped_small::Species::Hyena, _) => (0.0, -0.4, 0.95),
1517 (quadruped_small::Species::Rabbit, _) => (0.0, -0.05, 0.4),
1518 (quadruped_small::Species::Truffler, _) => (0.0, -0.5, 1.84),
1519 (quadruped_small::Species::Frog, _) => (0.0, -0.07, 0.35),
1520 (quadruped_small::Species::Rat, _) => (0.0, 0.35, 0.35),
1521 (quadruped_small::Species::Axolotl, _) => (0.0, 0.095, 0.295),
1522 (quadruped_small::Species::Gecko, _) => (0.0, 0.35, 0.25),
1523 (quadruped_small::Species::Turtle, _) => (0.0, -0.16, 0.5),
1524 (quadruped_small::Species::Squirrel, _) => (0.0, 0.16, 0.24),
1525 (quadruped_small::Species::Fungome, _) => (0.0, 0.03, 0.43),
1526 (quadruped_small::Species::Porcupine, _) => (0.0, 0.56, 0.74),
1527 (quadruped_small::Species::Beaver, _) => (0.0, 0.18, 0.7),
1528 (quadruped_small::Species::Hare, quadruped_small::BodyType::Female) => {
1529 (0.0, -0.21, 0.44)
1530 },
1531 (quadruped_small::Species::Hare, quadruped_small::BodyType::Male) => {
1532 (0.0, -0.21, 0.54)
1533 },
1534 (quadruped_small::Species::Dog, _) => (0.0, -0.27, 0.76),
1535 (quadruped_small::Species::Seal, _) => (0.0, -0.14, 0.54),
1536 (quadruped_small::Species::TreantSapling, _) => (0.0, -0.2, 1.03),
1537 (quadruped_small::Species::MossySnail, _) => (0.0, -0.34, 0.96),
1538 },
1539 Body::QuadrupedMedium(b) => match (b.species, b.body_type) {
1540 (quadruped_medium::Species::Grolgar, _) => (0.0, 0.4, 1.98),
1541 (quadruped_medium::Species::Saber, _) => (0.0, -0.1, 1.3),
1542 (quadruped_medium::Species::Tiger, _) => (0.0, 0.2, 1.63),
1543 (quadruped_medium::Species::Tuskram, _) => (0.0, -0.5, 1.5),
1544 (quadruped_medium::Species::Lion, _) => (0.0, 0.3, 1.5),
1545 (quadruped_medium::Species::Tarasque, _) => (0.0, 0.6, 2.0),
1546 (quadruped_medium::Species::Wolf, _) => (0.0, 0.5, 1.3),
1547 (quadruped_medium::Species::Frostfang, _) => (0.0, 0.05, 1.2),
1548 (quadruped_medium::Species::Mouflon, _) => (0.0, 0.3, 1.2),
1549 (quadruped_medium::Species::Catoblepas, _) => (0.0, 0.0, 2.0),
1550 (quadruped_medium::Species::Bonerattler, _) => (0.0, 0.5, 1.2),
1551 (quadruped_medium::Species::Deer, _) => (0.0, 0.2, 1.3),
1552 (quadruped_medium::Species::Hirdrasil, _) => (0.0, 0.0, 1.4),
1553 (quadruped_medium::Species::Roshwalr, _) => (0.0, 0.9, 3.2),
1554 (quadruped_medium::Species::Donkey, _) => (0.0, 0.5, 1.6),
1555 (quadruped_medium::Species::Camel, _) => (0.0, -0.1, 2.7),
1556 (quadruped_medium::Species::Zebra, _) => (0.0, 0.5, 1.8),
1557 (quadruped_medium::Species::Antelope, _) => (0.0, 0.3, 1.4),
1558 (quadruped_medium::Species::Kelpie, _) => (0.0, 0.5, 1.9),
1559 (quadruped_medium::Species::Horse, _) => (0.0, 0.0, 2.0),
1560 (quadruped_medium::Species::Barghest, _) => (0.0, 0.5, 2.3),
1561 (quadruped_medium::Species::Cattle, quadruped_medium::BodyType::Male) => {
1562 (0.0, 0.5, 2.5)
1563 },
1564 (quadruped_medium::Species::Cattle, quadruped_medium::BodyType::Female) => {
1565 (0.0, 0.7, 2.3)
1566 },
1567 (quadruped_medium::Species::Darkhound, _) => (0.0, 0.5, 1.4),
1568 (quadruped_medium::Species::Highland, _) => (0.0, 0.5, 2.3),
1569 (quadruped_medium::Species::Yak, _) => (0.0, 0.0, 3.0),
1570 (quadruped_medium::Species::Panda, _) => (0.0, -0.2, 1.4),
1571 (quadruped_medium::Species::Bear, _) => (0.0, -0.4, 2.35),
1572 (quadruped_medium::Species::Dreadhorn, _) => (0.0, 0.2, 3.8),
1573 (quadruped_medium::Species::Moose, _) => (0.0, -0.6, 2.1),
1574 (quadruped_medium::Species::Snowleopard, _) => (0.0, -0.5, 1.4),
1575 (quadruped_medium::Species::Mammoth, _) => (0.0, 4.9, 7.2),
1576 (quadruped_medium::Species::Ngoubou, _) => (0.0, 0.3, 2.4),
1577 (quadruped_medium::Species::Llama, _) => (0.0, 0.1, 1.5),
1578 (quadruped_medium::Species::Alpaca, _) => (0.0, -0.1, 1.0),
1579 (quadruped_medium::Species::Akhlut, _) => (0.0, 1.9, 2.6),
1580 (quadruped_medium::Species::Bristleback, _) => (0.0, -0.4, 1.3),
1581 (quadruped_medium::Species::ClaySteed, _) => (0.0, -0.3, 2.8),
1582 },
1583 Body::BirdMedium(b) => match (b.species, b.body_type) {
1584 (bird_medium::Species::SnowyOwl, _) => (0.0, -0.25, 0.52),
1585 (bird_medium::Species::HornedOwl, _) => (0.0, -0.25, 0.45),
1586 (bird_medium::Species::Duck, _) => (0.0, -0.18, 0.47),
1587 (bird_medium::Species::Cockatiel, _) => (0.0, -0.05, 0.44),
1588 (bird_medium::Species::Chicken, bird_medium::BodyType::Female) => {
1589 (0.0, -0.13, 0.62)
1590 },
1591 (bird_medium::Species::Chicken, bird_medium::BodyType::Male) => (0.0, -0.1, 0.62),
1592 (bird_medium::Species::Bat, _) => (0.0, 0.02, 0.47),
1593 (bird_medium::Species::Penguin, _) => (0.0, -0.15, 0.88),
1594 (bird_medium::Species::Goose, _) => (0.0, -0.04, 0.74),
1595 (bird_medium::Species::Peacock, _) => (0.0, -0.18, 0.77),
1596 (bird_medium::Species::Eagle, _) => (0.0, -0.26, 0.64),
1597 (bird_medium::Species::Parrot, _) => (0.0, -0.18, 0.52),
1598 (bird_medium::Species::Crow, _) => (0.0, -0.08, 0.5),
1599 (bird_medium::Species::Dodo, _) => (0.0, -0.25, 0.7),
1600 (bird_medium::Species::Parakeet, _) => (0.0, -0.08, 0.42),
1601 (bird_medium::Species::Puffin, _) => (0.0, -0.21, 0.56),
1602 (bird_medium::Species::Toucan, _) => (0.0, -0.12, 0.52),
1603 (bird_medium::Species::BloodmoonBat, _) => (0.0, 0.1, 1.6),
1604 (bird_medium::Species::VampireBat, _) => (0.0, 0.02, 0.5),
1605 },
1606 Body::FishMedium(b) => match (b.species, b.body_type) {
1607 (fish_medium::Species::Marlin, _) => (0.0, 0.26, 0.6),
1608 (fish_medium::Species::Icepike, _) => (0.0, 0.34, 0.65),
1609 },
1610 Body::Dragon(b) => match (b.species, b.body_type) {
1611 (dragon::Species::Reddragon, _) => (0.0, 0.5, 20.5),
1612 },
1613 Body::BirdLarge(b) => match (b.species, b.body_type) {
1614 (bird_large::Species::Phoenix, _) => (0.0, 0.4, 3.1),
1615 (bird_large::Species::Cockatrice, _) => (0.0, 0.94, 2.98),
1616 (bird_large::Species::Roc, _) => (0.0, 2.18, 4.23),
1617 (bird_large::Species::FlameWyvern, _) => (0.0, 1.58, 3.28),
1618 (bird_large::Species::CloudWyvern, _) => (0.0, 1.7, 3.15),
1619 (bird_large::Species::FrostWyvern, _) => (0.0, 1.8, 3.09),
1620 (bird_large::Species::SeaWyvern, _) => (0.0, 1.41, 3.31),
1621 (bird_large::Species::WealdWyvern, _) => (0.0, 1.8, 3.46),
1622 },
1623 Body::FishSmall(b) => match (b.species, b.body_type) {
1624 (fish_small::Species::Clownfish, _) => (0.0, 0.05, 0.6),
1625 (fish_small::Species::Piranha, _) => (0.0, -0.065, 0.715),
1626 },
1627 Body::BipedLarge(b) => match (b.species, b.body_type) {
1628 (biped_large::Species::Ogre, biped_large::BodyType::Female) => (1.2, 0.2, 4.2),
1629 (biped_large::Species::Ogre, biped_large::BodyType::Male) => (1.5, -0.25, 4.5),
1630 (biped_large::Species::Cyclops, _) => (3.0, 1.1, 6.6),
1631 (biped_large::Species::Wendigo, _) => (1.25, -0.2, 4.3),
1632 (biped_large::Species::Cavetroll, _) => (1.8, 0.1, 4.1),
1633 (biped_large::Species::Mountaintroll, _) => (1.9, 0.5, 4.2),
1634 (biped_large::Species::Swamptroll, _) => (1.9, 0.0, 4.3),
1635 (biped_large::Species::Dullahan, _) => (0.0, -0.2, 4.5),
1636 (biped_large::Species::Werewolf, _) => (1.0, 1.0, 2.8),
1637 (biped_large::Species::Occultsaurok, _) => (0.0, 0.4, 3.4),
1638 (biped_large::Species::Mightysaurok, _) => (0.0, 0.4, 3.4),
1639 (biped_large::Species::Slysaurok, _) => (0.0, 0.4, 3.4),
1640 (biped_large::Species::Mindflayer, _) => (1.8, 0.6, 6.6),
1641 (biped_large::Species::Minotaur, _) => (2.1, 0.4, 6.6),
1642 (biped_large::Species::Tidalwarrior, _) => (0.0, -0.5, 7.4),
1643 (biped_large::Species::Yeti, _) => (1.6, 0.5, 3.7),
1644 (biped_large::Species::Harvester, _) => (1.3, 0.4, 2.6),
1645 (biped_large::Species::Blueoni, _) => (1.7, 0.4, 3.6),
1646 (biped_large::Species::Redoni, _) => (1.7, 0.4, 3.6),
1647 (biped_large::Species::Cultistwarlord, _) => (1.1, 0.3, 2.7),
1648 (biped_large::Species::Cultistwarlock, _) => (1.0, 0.3, 2.7),
1649 (biped_large::Species::Huskbrute, _) => (1.6, 0.2, 3.8),
1650 (biped_large::Species::Tursus, _) => (1.6, 0.5, 3.4),
1651 (biped_large::Species::Gigasfrost, _) => (2.5, 0.5, 7.3),
1652 (biped_large::Species::AdletElder, _) => (1.2, 0.6, 2.4),
1653 (biped_large::Species::SeaBishop, _) => (0.9, 0.2, 2.0),
1654 (biped_large::Species::HaniwaGeneral, _) => (1.2, 0.4, 2.4),
1655 (biped_large::Species::TerracottaBesieger, _) => (1.5, -0.2, 3.3),
1656 (biped_large::Species::TerracottaDemolisher, _) => (1.1, -0.1, 2.2),
1657 (biped_large::Species::TerracottaPunisher, _) => (1.1, -0.1, 2.1),
1658 (biped_large::Species::TerracottaPursuer, _) => (1.1, -0.1, 2.2),
1659 (biped_large::Species::Cursekeeper, _) => (1.3, -0.4, 3.0),
1660 (biped_large::Species::Forgemaster, _) => (2.6, 0.8, 6.1),
1661 (biped_large::Species::Strigoi, _) => (1.7, -0.1, 3.6),
1662 (biped_large::Species::Executioner, _) => (1.1, 0.1, 3.3),
1663 },
1664 Body::BipedSmall(b) => match (b.species, b.body_type) {
1665 (biped_small::Species::Gnome, _) => (0.0, -0.33, 1.22),
1666 (biped_small::Species::Sahagin, _) => (0.0, 0.0, 1.9),
1667 (biped_small::Species::Adlet, _) => (0.0, -0.35, 1.7),
1668 (biped_small::Species::Gnarling, _) => (0.0, -0.3, 1.07),
1669 (biped_small::Species::Mandragora, _) => (0.0, -0.25, 0.72),
1670 (biped_small::Species::Kappa, _) => (0.0, -0.34, 1.1),
1671 (biped_small::Species::Cactid, _) => (0.0, -0.25, 1.13),
1672 (biped_small::Species::Gnoll, _) => (0.0, -0.28, 1.25),
1673 (biped_small::Species::Haniwa, _) => (0.0, -0.6, 1.91),
1674 (biped_small::Species::Myrmidon, _) => (0.0, -0.89, 0.96),
1675 (biped_small::Species::Husk, _) => (0.0, -0.5, 2.32),
1676 (biped_small::Species::Boreal, _) => (0.0, -0.81, 4.4),
1677 (biped_small::Species::Bushly, _) => (0.0, -0.26, 1.81),
1678 (biped_small::Species::Irrwurz, _) => (0.0, -0.35, 1.42),
1679 (biped_small::Species::IronDwarf, _) => (0.0, -0.12, 2.98),
1680 (biped_small::Species::Flamekeeper, _) => (0.0, -0.31, 2.2),
1681 (biped_small::Species::ShamanicSpirit, _) => (0.0, -0.03, 2.29),
1682 (biped_small::Species::Jiangshi, _) => (0.0, -0.21, 2.53),
1683 (biped_small::Species::TreasureEgg, _) => (0.0, -0.31, 1.0),
1684 (biped_small::Species::GnarlingChieftain, _) => (0.0, -0.27, 1.28),
1685 (biped_small::Species::BloodmoonHeiress, _) => (0.0, -0.12, 5.22),
1686 (biped_small::Species::Bloodservant, _) => (0.0, -0.21, 2.26),
1687 (biped_small::Species::Harlequin, _) => (0.0, -0.26, 2.17),
1688 (biped_small::Species::GoblinThug, _) => (0.0, -0.37, 0.49),
1689 (biped_small::Species::GoblinChucker, _) => (0.0, -0.83, 0.49),
1690 (biped_small::Species::GoblinRuffian, _) => (0.0, -0.37, 0.49),
1691 (biped_small::Species::GreenLegoom, _) => (0.0, -0.4, 1.48),
1692 (biped_small::Species::OchreLegoom, _) => (0.0, -0.4, 1.2),
1693 (biped_small::Species::PurpleLegoom, _) => (0.0, -0.36, 1.66),
1694 (biped_small::Species::RedLegoom, _) => (0.0, -0.3, 1.4),
1695 },
1696 Body::Golem(b) => match (b.species, b.body_type) {
1697 (golem::Species::StoneGolem, _) => (0.0, 0.2, 8.8),
1698 (golem::Species::Treant, _) => (0.0, 3.6, 6.4),
1699 (golem::Species::ClayGolem, _) => (0.0, 0.0, 7.8),
1700 (golem::Species::WoodGolem, _) => (0.0, 0.5, 7.2),
1701 (golem::Species::CoralGolem, _) => (0.0, 0.0, 4.0),
1702 (golem::Species::Gravewarden, _) => (0.0, -0.5, 7.5),
1703 (golem::Species::AncientEffigy, _) => (0.0, -0.2, 3.5),
1704 (golem::Species::Mogwai, _) => (0.0, 0.4, 3.7),
1705 (golem::Species::IronGolem, _) => (0.0, 0.2, 10.2),
1706 },
1707 Body::Theropod(b) => match (b.species, b.body_type) {
1708 (theropod::Species::Archaeos, _) => (0.0, 2.2, 6.1),
1709 (theropod::Species::Odonto, _) => (0.0, 4.1, 4.0),
1710 (theropod::Species::Sandraptor, _) => (0.0, -0.15, 1.63),
1711 (theropod::Species::Snowraptor, _) => (0.0, -0.15, 1.58),
1712 (theropod::Species::Woodraptor, _) => (0.0, -0.14, 1.66),
1713 (theropod::Species::Sunlizard, _) => (0.0, -0.2, 1.75),
1714 (theropod::Species::Yale, _) => (0.0, -0.615, 2.75),
1715 (theropod::Species::Ntouka, _) => (0.0, -1.1, 5.5),
1716 (theropod::Species::Dodarock, _) => (0.0, -0.09, 1.49),
1717 (theropod::Species::Axebeak, _) => (0.0, -0.34, 1.85),
1718 },
1719 Body::QuadrupedLow(b) => match (b.species, b.body_type) {
1720 (quadruped_low::Species::Crocodile, _) => (0.0, 0.35, 0.8),
1721 (quadruped_low::Species::Alligator, _) => (0.0, 0.27, 0.8),
1722 (quadruped_low::Species::Salamander, _) => (0.0, 0.21, 0.9),
1723 (quadruped_low::Species::Monitor, _) => (0.0, 0.01, 0.64),
1724 (quadruped_low::Species::Asp, _) => (0.0, 0.21, 1.2),
1725 (quadruped_low::Species::Tortoise, _) => (0.0, 0.01, 1.37),
1726 (quadruped_low::Species::Pangolin, _) => (0.0, -0.08, 1.08),
1727 (quadruped_low::Species::Maneater, _) => (0.0, 1.3, 2.0),
1728 (quadruped_low::Species::Sandshark, _) => (0.0, -0.48, 1.62),
1729 (quadruped_low::Species::Hakulaq, _) => (0.0, 0.49, 1.51),
1730 (quadruped_low::Species::Lavadrake, _) => (0.0, 0.22, 1.61),
1731 (quadruped_low::Species::Basilisk, _) => (0.0, -0.17, 2.71),
1732 (quadruped_low::Species::Deadwood, _) => (0.0, -0.15, 1.21),
1733 (quadruped_low::Species::Icedrake, _) => (0.0, -0.7, 2.28),
1734 (quadruped_low::Species::SeaCrocodile, _) => (0.1, 0.35, 1.03),
1735 (quadruped_low::Species::Dagon, _) => (0.1, 0.92, 1.32),
1736 (quadruped_low::Species::Rocksnapper, _) => (0.0, 0.72, 2.73),
1737 (quadruped_low::Species::Rootsnapper, _) => (0.0, -0.18, 3.13),
1738 (quadruped_low::Species::Reefsnapper, _) => (0.0, 0.22, 2.32),
1739 (quadruped_low::Species::Elbst, _) => (0.0, 0.22, 0.8),
1740 (quadruped_low::Species::Mossdrake, _) => (0.0, 0.22, 2.02),
1741 (quadruped_low::Species::Driggle, _) => (0.0, 0.5, 0.8),
1742 (quadruped_low::Species::Snaretongue, _) => (0.0, -0.54, 1.35),
1743 (quadruped_low::Species::Hydra, _) => (0.0, 0.28, 2.71),
1744 },
1745 Body::Arthropod(b) => match (b.species, b.body_type) {
1746 (arthropod::Species::Tarantula, _) => (0.0, -0.65, 1.66),
1747 (arthropod::Species::Blackwidow, _) => (0.0, -0.82, 2.48),
1748 (arthropod::Species::Antlion, _) => (0.0, -0.49, 1.98),
1749 (arthropod::Species::Hornbeetle, _) => (0.0, 0.27, 1.98),
1750 (arthropod::Species::Leafbeetle, _) => (0.0, -0.06, 1.1),
1751 (arthropod::Species::Stagbeetle, _) => (0.0, 0.6, 1.48),
1752 (arthropod::Species::Weevil, _) => (0.0, -0.1, 1.02),
1753 (arthropod::Species::Cavespider, _) => (0.0, -0.65, 1.82),
1754 (arthropod::Species::Moltencrawler, _) => (0.0, 0.43, 1.82),
1755 (arthropod::Species::Mosscrawler, _) => (0.0, 0.6, 1.82),
1756 (arthropod::Species::Sandcrawler, _) => (0.0, 0.6, 1.82),
1757 (arthropod::Species::Dagonite, _) => (0.0, 1.1, 2.15),
1758 (arthropod::Species::Emberfly, _) => (0.0, -0.28, 0.36),
1759 },
1760 Body::Crustacean(b) => match (b.species, b.body_type) {
1761 (crustacean::Species::Crab, _) => (0.0, -0.22, 0.36),
1762 (crustacean::Species::SoldierCrab, _) => (0.0, -0.14, 0.5),
1763 (crustacean::Species::Karkatha, _) => (0.0, -0.23, 7.66),
1764 },
1765 Body::Ship(ship) => match ship {
1766 ship::Body::DefaultAirship => (0.0, 0.0, 10.0),
1767 ship::Body::AirBalloon => (0.0, 0.0, 5.0),
1768 ship::Body::SailBoat => (-2.0, -5.0, 4.0),
1769 ship::Body::Galleon => (-2.0, -5.0, 4.0),
1770 ship::Body::Skiff => (1.0, -2.0, 2.0),
1771 ship::Body::Submarine => (1.0, -2.0, 2.0),
1772 ship::Body::Carriage => (1.0, -2.0, 2.0),
1773 ship::Body::Cart => (1.0, -2.0, 2.0),
1774 ship::Body::Volume => (0.0, 0.0, 0.0),
1775 },
1776 _ => (0.0, 0.0, 0.0),
1777 }
1778 .into()
1779 }
1780
1781 pub fn rider_offset(&self) -> Vec3<f32> {
1783 match self {
1784 Body::Humanoid(_) => [0.0, 0.0, 0.0],
1785 _ => [0.0, 0.0, 0.0],
1786 }
1787 .into()
1788 }
1789
1790 pub fn tether_offset_leader(&self) -> Vec3<f32> {
1791 Vec3::new(0.0, self.dimensions().y * -0.4, self.dimensions().z * 0.7)
1792 }
1793
1794 pub fn tether_offset_follower(&self) -> Vec3<f32> {
1795 Vec3::new(0.0, self.dimensions().y * 0.6, self.dimensions().z * 0.7)
1796 }
1797
1798 pub fn localize_npc(&self) -> Content {
1803 fn try_localize(body: &Body) -> Option<Content> {
1804 match body {
1805 Body::BipedLarge(biped_large) => biped_large.localize_npc(),
1806 _ => None,
1807 }
1808 }
1809
1810 try_localize(self).unwrap_or_else(|| Content::localized("body-npc-speech-generic"))
1811 }
1812
1813 pub fn humanoid_gender(&self) -> Option<Gender> {
1815 match self {
1816 Body::Humanoid(b) => match b.body_type {
1817 humanoid::BodyType::Male => Some(Gender::Masculine),
1818 humanoid::BodyType::Female => Some(Gender::Feminine),
1819 },
1820 _ => None,
1821 }
1822 }
1823
1824 pub fn default_gender(&self) -> Gender {
1836 match self {
1837 Body::Humanoid(b) => match b.body_type {
1838 humanoid::BodyType::Male => Gender::Masculine,
1839 humanoid::BodyType::Female => Gender::Feminine,
1840 },
1841 Body::QuadrupedSmall(b) => match b.body_type {
1842 quadruped_small::BodyType::Male => Gender::Masculine,
1843 quadruped_small::BodyType::Female => Gender::Feminine,
1844 },
1845 Body::QuadrupedMedium(b) => match b.body_type {
1846 quadruped_medium::BodyType::Male => Gender::Masculine,
1847 quadruped_medium::BodyType::Female => Gender::Feminine,
1848 },
1849 Body::QuadrupedLow(b) => match b.body_type {
1850 quadruped_low::BodyType::Male => Gender::Masculine,
1851 quadruped_low::BodyType::Female => Gender::Feminine,
1852 },
1853 Body::BirdMedium(b) => match b.body_type {
1854 bird_medium::BodyType::Male => Gender::Masculine,
1855 bird_medium::BodyType::Female => Gender::Feminine,
1856 },
1857 Body::BirdLarge(b) => match b.body_type {
1858 bird_large::BodyType::Male => Gender::Masculine,
1859 bird_large::BodyType::Female => Gender::Feminine,
1860 },
1861 Body::FishMedium(b) => match b.body_type {
1862 fish_medium::BodyType::Male => Gender::Masculine,
1863 fish_medium::BodyType::Female => Gender::Feminine,
1864 },
1865 Body::FishSmall(b) => match b.body_type {
1866 fish_small::BodyType::Male => Gender::Masculine,
1867 fish_small::BodyType::Female => Gender::Feminine,
1868 },
1869 Body::Dragon(b) => match b.body_type {
1870 dragon::BodyType::Male => Gender::Masculine,
1871 dragon::BodyType::Female => Gender::Feminine,
1872 },
1873 Body::BipedLarge(b) => match b.body_type {
1874 biped_large::BodyType::Male => Gender::Masculine,
1875 biped_large::BodyType::Female => Gender::Feminine,
1876 },
1877 Body::BipedSmall(b) => match b.body_type {
1878 biped_small::BodyType::Male => Gender::Masculine,
1879 biped_small::BodyType::Female => Gender::Feminine,
1880 },
1881 Body::Golem(b) => match b.body_type {
1882 golem::BodyType::Male => Gender::Masculine,
1883 golem::BodyType::Female => Gender::Feminine,
1884 },
1885 Body::Theropod(b) => match b.body_type {
1886 theropod::BodyType::Male => Gender::Masculine,
1887 theropod::BodyType::Female => Gender::Feminine,
1888 },
1889 Body::Arthropod(b) => match b.body_type {
1890 arthropod::BodyType::Male => Gender::Masculine,
1891 arthropod::BodyType::Female => Gender::Feminine,
1892 },
1893 Body::Crustacean(b) => match b.body_type {
1894 crustacean::BodyType::Male => Gender::Masculine,
1895 crustacean::BodyType::Female => Gender::Feminine,
1896 },
1897 Body::Plugin(_) => Gender::Neuter,
1899 Body::Object(_) | Body::Ship(_) | Body::Item(_) => Gender::Neuter,
1900 }
1901 }
1902
1903 pub fn gender_attr(&self) -> &'static str {
1907 match self.default_gender() {
1908 Gender::Feminine => "fem",
1909 Gender::Masculine => "masc",
1910 Gender::Neuter => "neut",
1911 }
1912 }
1913}
1914
1915impl Component for Body {
1916 type Storage = DerefFlaggedStorage<Self, specs::VecStorage<Self>>;
1917}