15 lines
319 B
Haskell
15 lines
319 B
Haskell
{-# LANGUAGE LambdaCase #-}
|
|
module Dodge.Creature.Mass (crMass) where
|
|
import Dodge.Data.Creature.Misc
|
|
|
|
crMass :: CreatureType -> Float
|
|
crMass = \case
|
|
Avatar {} -> 10
|
|
ChaseCrit {} -> 10
|
|
CrabCrit {} -> 10
|
|
HoverCrit {} -> 5
|
|
SwarmCrit -> 2
|
|
AutoCrit -> 10
|
|
BarrelCrit{} -> 10
|
|
LampCrit {} -> 3
|