1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use initiative_macros::WordList;
use serde::{Deserialize, Serialize};

#[derive(Clone, Copy, Debug, Deserialize, Eq, PartialEq, Serialize, WordList)]
#[serde(into = "&'static str", try_from = "&str")]
pub enum SettlementType {
    #[alias = "campsite"]
    Camp,
    Capital,
    #[alias = "metropolis"]
    City,
    #[alias = "ward"]
    #[alias = "quarter"]
    #[alias = "neighborhood"]
    District,
    Outpost,
    #[alias = "hamlet"]
    #[alias = "village"]
    #[alias = "parish"]
    Town,
}

impl SettlementType {
    pub const fn get_emoji(&self) -> Option<&'static str> {
        match self {
            Self::Camp => Some("🏕"),
            Self::Capital | Self::City => Some("🏙"),
            Self::Outpost => Some("🚩"),
            Self::District | Self::Town => Some("🏘"),
        }
    }
}