refactor(religions): expand religions

This commit is contained in:
Azgaar 2022-08-27 00:51:29 +03:00
parent 0a77845ebc
commit 707cdd77ac
11 changed files with 136 additions and 42 deletions

View file

@ -6,7 +6,7 @@ import {specifyReligions} from "./specifyReligions";
type TCellsData = Pick<
IPack["cells"],
"i" | "c" | "p" | "g" | "h" | "t" | "biome" | "pop" | "culture" | "burg" | "state"
"i" | "c" | "p" | "g" | "h" | "t" | "biome" | "pop" | "culture" | "burg" | "state" | "route"
>;
export function generateReligions({
@ -29,7 +29,7 @@ export function generateReligions({
cultures,
states,
burgs,
pick(cells, "i", "c", "culture", "burg", "state")
pick(cells, "i", "c", "biome", "culture", "burg", "state", "route")
);
console.log(religions);