Skip to content

Commit 4334929

Browse files
committed
Create assets for Oshur facility types
1 parent 1fff89a commit 4334929

14 files changed

+839
-750
lines changed

assets/facility-icons.ai

+815-740
Large diffs are not rendered by default.

img/icons/amp-station.svg

+1-1
Loading

img/icons/bio-lab.svg

+1-1
Loading

img/icons/construction-outpost.svg

+1-1
Loading

img/icons/containment-site.svg

+1-1
Loading

img/icons/interlink.svg

+1
Loading

img/icons/large-outpost.svg

+1-1
Loading

img/icons/small-outpost.svg

+1-1
Loading

img/icons/tech-plant.svg

+1-1
Loading

img/icons/trident.svg

+1
Loading

img/icons/warpgate.svg

+1-1
Loading

index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,9 @@ var BaseNamesLayer = (function (_super) {
617617
var name_1 = baseInfo.name;
618618
if (baseInfo.type_code == "amp-station" ||
619619
baseInfo.type_code == "bio-lab" ||
620-
baseInfo.type_code == "tech-plant") {
620+
baseInfo.type_code == "interlink" ||
621+
baseInfo.type_code == "tech-plant" ||
622+
baseInfo.type_code == "trident") {
621623
name_1 += " " + baseInfo.type_name;
622624
}
623625
element.innerText = "" + name_1;

ps2-map.css

+8
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@
7575
content: url(img/icons/containment-site.svg);
7676
}
7777

78+
.ps2map__base-names__icon__interlink::before {
79+
content: url(img/icons/interlink.svg);
80+
}
81+
7882
.ps2map__base-names__icon__large-outpost::before {
7983
--ps2map__base-icon-size: 1.2em;
8084
content: url(img/icons/large-outpost.svg);
@@ -89,6 +93,10 @@
8993
content: url(img/icons/tech-plant.svg);
9094
}
9195

96+
.ps2map__base-names__icon__trident::before {
97+
content: url(img/icons/trident.svg);
98+
}
99+
92100
.ps2map__base-names__icon__warpgate::before {
93101
content: url(img/icons/warpgate.svg);
94102
}

src/layers/names-layer.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ class BaseNamesLayer extends PointLayer {
1919
// Append the facility type for primary bases
2020
if (baseInfo.type_code == "amp-station" ||
2121
baseInfo.type_code == "bio-lab" ||
22-
baseInfo.type_code == "tech-plant") {
22+
baseInfo.type_code == "interlink" ||
23+
baseInfo.type_code == "tech-plant" ||
24+
baseInfo.type_code == "trident") {
2325
name += ` ${baseInfo.type_name}`;
2426
}
2527
element.innerText = `${name}`;

0 commit comments

Comments
 (0)