Improve detector equipment, various cleanup

This commit is contained in:
2022-05-27 18:49:54 +01:00
parent 60fc2d44e8
commit 79b3a86520
15 changed files with 180 additions and 138 deletions
+11 -2
View File
@@ -1,6 +1,8 @@
module Dodge.Combine.Data
(CombineType (..)
,Detector (..)
) where
import Dodge.Equipment.Data
-- TODO make this an enum somehow...?
data CombineType
= NOTDEFINED
@@ -74,12 +76,13 @@ data CombineType
| FORCEFIELDGUN
| SHRINKER
-- Equipment
| RADAR
| ITEMFINDER
| CLICKDETECTOR Detector
| AUTODETECTOR Detector
| MAGSHIELD
| FLAMESHIELD
| FRONTARMOUR
| WRISTARMOUR
| INVISIBILITYEQUIPMENT EquipSite
| BRAINHAT
| HEADLAMP
| POWERLEGS
@@ -139,3 +142,9 @@ data CombineType
--
| NoCombineType
deriving (Eq,Ord,Show)
data Detector
= ITEMDETECTOR
| CREATUREDETECTOR
| WALLDETECTOR
deriving (Eq,Ord,Show)