Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add shield for Inner Loop, Rochester, NY #1068

Merged
merged 11 commits into from
Jun 3, 2024
Merged
16 changes: 16 additions & 0 deletions src/js/shield_defs.js
Original file line number Diff line number Diff line change
Expand Up @@ -1839,6 +1839,22 @@ export function loadShields() {
},
};
shields["US:NY:Truck"] = banneredShield(shields["US:NY"], ["TRK"]);
shields["US:NY:Inner_Loop"] = {
...trapezoidDownShield(
10,
Color.shields.white,
Color.shields.black,
Color.shields.black,
4
),
padding: {
left: 4,
right: 4,
top: 3,
bottom: 3,
},
};
shields["US:NY:Inner_Loop"].ref = "LOOP";
shields["US:NY:Thruway"] = {
noref: {
spriteBlank: "shield_us_ny_thruway",
Expand Down
4 changes: 4 additions & 0 deletions src/shieldtest.js
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,10 @@ const iterShields = function* () {
network: "US:NH:Turnpike",
names: ["Blue Star Turnpike", "Everett Turnpike", "Spaulding Turnpike"],
};
yield {
network: "US:NY:Inner_Loop",
names: ["Inner Loop"],
};
};

const renderAllShields = async () => {
Expand Down
Loading