diff options
| author | Xe Iaso <me@christine.website> | 2023-01-23 09:54:22 -0500 |
|---|---|---|
| committer | Xe Iaso <me@christine.website> | 2023-01-23 09:54:53 -0500 |
| commit | 295a2f993db8b1f7bb45d5d1d9c621ffe6400e58 (patch) | |
| tree | b2a05e83fd8ddbe0442cc887b2653b3d6d8dbba9 /dhall/types/Character.dhall | |
| parent | 36e516527d76954aa5434e66102f12c2c87a8637 (diff) | |
| download | xesite-295a2f993db8b1f7bb45d5d1d9c621ffe6400e58.tar.xz xesite-295a2f993db8b1f7bb45d5d1d9c621ffe6400e58.zip | |
Add page that explains the characters in the blog
Signed-off-by: Xe <me@christine.website>
Diffstat (limited to 'dhall/types/Character.dhall')
| -rw-r--r-- | dhall/types/Character.dhall | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/dhall/types/Character.dhall b/dhall/types/Character.dhall new file mode 100644 index 0000000..c592790 --- /dev/null +++ b/dhall/types/Character.dhall @@ -0,0 +1,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 + } + } |
