Skip to content

Commit

Permalink
Merge pull request #1044 from ZeLonewolf/clay-shields-us-morecounties
Browse files Browse the repository at this point in the history
add shields for Sierra County, CA and Washington County, UT
  • Loading branch information
claysmalley authored Apr 21, 2024
2 parents 2e9ca98 + 5163ebf commit 325fa95
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions src/js/shield_defs.js
Original file line number Diff line number Diff line change
Expand Up @@ -775,11 +775,14 @@ export function loadShields() {
["BUS"],
Color.shields.green
);
shields["US:CA:CR"] = pentagonUpShield(
3,
15,
Color.shields.blue,
Color.shields.yellow
["CR", "Sierra"].forEach(
(county) =>
(shields[`US:CA:${county}`] = pentagonUpShield(
3,
15,
Color.shields.blue,
Color.shields.yellow
))
);
shields["US:CA:Mendocino"] = roundedRectShield(
Color.shields.green,
Expand Down Expand Up @@ -1141,8 +1144,8 @@ export function loadShields() {
"Webster",
"Winn",
].forEach(
(county) =>
(shields[`US:LA:${county}`] = pentagonUpShield(
(parish) =>
(shields[`US:LA:${parish}`] = pentagonUpShield(
3,
15,
Color.shields.blue,
Expand Down Expand Up @@ -2484,11 +2487,14 @@ export function loadShields() {
bottom: 5,
},
};
shields["US:UT:Wayne"] = pentagonUpShield(
3,
15,
Color.shields.blue,
Color.shields.yellow
["Wayne", "Washington"].forEach(
(county) =>
(shields[`US:UT:${county}`] = pentagonUpShield(
3,
15,
Color.shields.blue,
Color.shields.yellow
))
);

// Virginia
Expand Down

0 comments on commit 325fa95

Please sign in to comment.