interface BaseTown {
    area: number;
    bounds: TownBounds;
    colours: {
        fill: `#${string}`;
        outline: `#${string}`;
    };
    mayor: string;
    name: string;
    nation: string;
    opacities?: {
        fill: Opacity;
        outline: Opacity;
    };
    residents: string[];
    x: number;
    z: number;
}

Properties

area: number
bounds: TownBounds
colours: {
    fill: `#${string}`;
    outline: `#${string}`;
}
mayor: string
name: string
nation: string
opacities?: {
    fill: Opacity;
    outline: Opacity;
}
residents: string[]
x: number
z: number