aboutsummaryrefslogtreecommitdiff
path: root/dhall/types/Character.dhall
blob: c592790166d471976f659d233df7344b24df2abf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
let PronounSet = ./PronounSet.dhall

in  { Type =
        { name : Text
        , stickerName : Text
        , defaultPose : Text
        , description : Text
        , pronouns : PronounSet.Type
        , stickers : List Text
        }
    , default =
      { name = ""
      , stickerName = ""
      , defaultPose = ""
      , description = ""
      , pronouns = ../pronouns/she.dhall
      , stickers = [] : List Text
      }
    }