├── .gitignore ├── build.bat ├── changelog.md ├── data ├── download.bat ├── invGroups.csv ├── invTypes.csv └── readme.md ├── license.md ├── motd ├── motd.html └── readme.md ├── parts ├── filter All All.yaml ├── filter Brackets Combat (+drones).yaml ├── filter Brackets Combat (-wrecks).yaml ├── filter Brackets Combat.yaml ├── filter DSCAN Basic.yaml ├── filter DSCAN Extra.yaml ├── filter DSCAN Ships.yaml ├── filter Drones Drones and Fighters (all).yaml ├── filter Drones Drones and Fighters (red+neutral).yaml ├── filter Drones Fighters (red+neutral).yaml ├── filter Loot Loot and salvage.yaml ├── filter Main PVX (+extra).yaml ├── filter Main PVX (+friendly +extra).yaml ├── filter Main PVX (+mining).yaml ├── filter Main PVX (-npc).yaml ├── filter Main PVX.yaml ├── filter Main System & PVX (+extra).yaml ├── filter Main System & PVX (-npc).yaml ├── filter Ships Enemy All (hisec criminals).yaml ├── filter Ships Enemy All (red -capsules).yaml ├── filter Ships Enemy All (red).yaml ├── filter Ships Enemy All (red+neutral -capsules).yaml ├── filter Ships Enemy All (red+neutral).yaml ├── filter Ships Enemy All (war targets).yaml ├── filter Ships Enemy Capitals (red+neutral).yaml ├── filter Ships Enemy Logi (red+neutral).yaml ├── filter Ships Enemy Utility (red+neutral).yaml ├── filter Ships Fleet.yaml ├── filter Ships Friendly.yaml ├── filter Ships NPCs (+turrets).yaml ├── filter System Beacons.yaml ├── filter System Mining.yaml ├── filter System System (+belts).yaml ├── filter System System (-citadels).yaml ├── filter System System.yaml ├── filter Warp Travel (-citadels).yaml ├── filter Warp Travel.yaml ├── filter Warp Warp out!.yaml ├── general.yaml ├── labels.yaml ├── readme.md ├── states.yaml ├── tabs carbon.yaml ├── tabs icons.yaml ├── tabs main.yaml └── user.yaml ├── readme.md ├── releases ├── iridium_overview_20161124-v210_plus.yaml ├── iridium_overview_20170829-v241.yaml ├── iridium_overview_20180529-v260.yaml ├── iridium_overview_20191210-v268.yaml ├── iridium_overview_20221123-v293.yaml ├── iridium_overview_20221126-v300.yaml ├── iridium_overview_20230501-v294.yaml ├── iridium_overview_20230501-v310.yaml ├── iridium_overview_20230501-v310_icons.yaml ├── iridium_overview_20230614-v320.yaml ├── iridium_overview_20230614-v320_carbon.yaml ├── iridium_overview_20230614-v320_icons.yaml ├── iridium_overview_20231114-v330.yaml ├── iridium_overview_20231114-v330_carbon.yaml ├── iridium_overview_20231114-v330_icons.yaml ├── iridium_overview_20240628-v340.yaml ├── iridium_overview_20241110-v341.yaml ├── iridium_overview_20241120-v350_carbon.yaml ├── iridium_overview_20241120-v350_icons.yaml ├── iridium_overview_20241120-v350_main.yaml ├── iridium_overview_20250416-v360_carbon.yaml ├── iridium_overview_20250416-v360_icons.yaml ├── iridium_overview_20250416-v360_main.yaml ├── iridium_overview_20250416-v361_carbon.yaml ├── iridium_overview_20250416-v361_icons.yaml ├── iridium_overview_20250416-v361_main.yaml └── readme.md ├── requirements ├── create.bat ├── environment.yml └── export.bat ├── shell.bat ├── src └── build.py └── workflow.md /.gitignore: -------------------------------------------------------------------------------- 1 | # env folders 2 | .idea/ 3 | .temp/ 4 | .git/ 5 | 6 | # temp files and binaries 7 | bin/ 8 | logs/ 9 | temp/ 10 | output/ 11 | 12 | # libraries and tools 13 | lib/ 14 | tools/ 15 | 16 | # tests 17 | tests/ 18 | 19 | # other 20 | assets/ 21 | 22 | # files 23 | .empty 24 | repo.bat 25 | -------------------------------------------------------------------------------- /build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | chcp 65001 > nul 3 | 4 | :: activate Anaconda ENV 5 | call activate.bat iridium_overview 6 | 7 | :: run python build script 8 | echo Building Iridium Overview 9 | python src/build.py 10 | 11 | if %ERRORLEVEL% EQU 0 ( 12 | echo Success 13 | ) else ( 14 | echo An ERROR occured during build process. 15 | ) 16 | 17 | pause > nul 18 | goto :eof -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog, updates and release notes 2 | 3 | All notable changes to Iridium Overview will be documented in this file. 4 | 5 | ## v3.6.1 (2025/04/16) 6 | 7 | Revenant Expansion - EVE 22.02 8 | 9 | ``` 10 | - Removed Pirate Spawners from some tabs 11 | - Removed Temporary Cloud, Fighter Drone, Zombie Entities, Defense Bunkers, Fighter Bomber, Mercenary Bases, Capsuleer Bases, Invisible Beacon from filters as they don't appear on overview. 12 | ``` 13 | 14 | ## v3.6.0 (2025/04/16) 15 | 16 | Revenant Expansion - EVE 22.02 17 | 18 | ``` 19 | + Added Local Beacon 20 | + Added Pirate Spawners 21 | + Added Tyranite asteroid 22 | ``` 23 | 24 | This is a minor update for "Capsuleer Day XXII: Nexus Reckoning" 25 | 26 | ## v3.5.0 (2024/11/20) 27 | 28 | Revenant Expansion - EVE 22.02 29 | 30 | ``` 31 | + Added new officer NPC frigates and cruisers 32 | + Added Mercenary Den 33 | + Added Rift 34 | * Fixed inconsistencies 35 | * Cleaned some legacy IDs 36 | * Various tiny changes thanks to your feedback 37 | ``` 38 | 39 | Hello space friends, 40 | I am writing this because I have sort of disappeared for a while from EVE, and for that I owe an apology to all users of Iridium Overview. Mainly because, for a long time, I have marketed it as the most complete and up-to-date overview pack. And for years it was... until recently. 41 | 42 | But fear not. The updated version for current expansion is now available. Thank you all for your patience. 43 | 44 | And further thanks to everyone who reached out, reminding me to finally do it :) 45 | 46 | P.S. If I ever disappear again, you are all free to just fork the overview pack, all files are on GitHub now, released as open source. Or just use the EVE University overview pack - it's quite alright. 47 | 48 | ## v3.4.1-beta (2024/11/10) 49 | 50 | Revenant Expansion, pre-expansion update 51 | 52 | ## v3.4.0-beta (2024/06/28) 53 | 54 | Equinox Expansion 55 | 56 | ``` 57 | + Added guidance objectives 58 | + Added guided entities 59 | + Added skyhook reagent silo structure 60 | + Added new skyhook structure 61 | * Structure fighters updated 62 | + Added new homefront ships 63 | + Added upwell moon drill 64 | + Added new asteroids 65 | * Various tiny changes thanks to your feedback 66 | ``` 67 | 68 | Note: This version was NOT released publicly in the ingame channel, but only to small group for testing. 69 | 70 | ## v3.3.0 (2023/11/14) 71 | 72 | Havoc Expansion - EVE 21.0 73 | 74 | ``` 75 | + Added new pirate bases 76 | + Added new pirate NPCs 77 | + Added new insurgency NPCs 78 | + Added retribution timer state 79 | * Various tiny changes thanks to your feedback 80 | ``` 81 | 82 | As always, updated within 24 hours after game update. 83 | 84 | Feel free to check out Iridium Overview on updated IridiumOps website: https://iridiumops.uk.to/#!/wiki/overview.md 85 | 86 | ## v3.2.0 (2023/06/14) 87 | 88 | Viridian Expansion 89 | 90 | ``` 91 | + Added new asteroid type 92 | + Added new homefront NPCs 93 | + Added lancer dreadnought ships 94 | + Added scaleable objects 95 | + Added one more combined System & PVX filter 96 | * Consistent handling of FW militias for those directly enlisted 97 | + Added more-compact, single-window, "carbon" mode as alternative to discontinued legacy v2.9 branch 98 | * Various tiny changes thanks to your feedback 99 | ``` 100 | 101 | Legacy Carbon UI v2.9 branch was not updated for Viridian Expansion; only Photon UI native v3 will be developed going forward. 102 | 103 | As always, updated within 24 hours after game update :) 104 | 105 | ![Common multi-window layouts - part 1](https://i.imgur.com/pRjeJvw.png) 106 | ![Common multi-window layouts - part 2](https://i.imgur.com/T5FNBpw.png) 107 | 108 | ## v2.9.4 (2023/05/02) 109 | 110 | Carbon UI Legacy version updated to be in line with v3.1.0 111 | 112 | Btw if you haven't switched to the v3 and still use the v2.9 let me know why, since I will probably stop updating it. 113 | 114 | ## v3.1.0 (2023/05/02) 115 | 116 | New version takes advantage of the expanded tab limit. 117 | Improved compatibility with recent updates that broke the tab renaming ingame. 118 | Based on popular demand, I am expanding the overview beyond the 32 preset limit with 3rd installation link ingame. 119 | 120 | ``` 121 | + Added new asteroid types 122 | + Added Shipcasters 123 | * Increased compatibility with new UI 124 | + Added 4 new tabs and added 5 new filters: 125 | * Reintroduced fleet and friendly tabs 126 | + Added beacons preset 127 | + Added ships presets without capsules 128 | + Added asteroid and belts only preset and tab 129 | + Added npc ships and npc turrets only preset and tab 130 | * Various tiny changes thanks to your feedback 131 | ``` 132 | 133 | ![Version 3.1 adds new filters, more tabs and features](https://i.imgur.com/aSXYzO9.jpeg) 134 | 135 | ## v3.0.1 (2023/05/01) 136 | 137 | ``` 138 | * Various tiny changes thanks to your feedback 139 | ``` 140 | 141 | ## v2.9.3 (2022/11/26) 142 | 143 | Uprising - EVE 20.10 144 | 145 | Update for legacy v2 Carbon UI branch. 146 | 147 | ``` 148 | * Update to be compatible with Photon UI 149 | + Added new FW BS NPCs 150 | + Added FW objective objects 151 | + Added mission NPC capsules 152 | - Removed more old POS stuff 153 | - Removed POSes from DCSAN presets 154 | ``` 155 | 156 | ## v3.0.0 (2022/11/26) 157 | 158 | Uprising - EVE 20.10 159 | 160 | New Major version. 161 | 162 | Note: Version 3 branch will be maintained alongside v2.9 for a while. 163 | 164 | The biggest change is splitting system navigation (gates, beacons, stations etc.) from main PVE and PVP combat tabs to its own System tab, this allows more granular control, removes clutter for those who prefer cleaner overview and frees up presets for other things. I have unified PVE and PVP presets and bracket presets into a set of PVX presets, but it should feel very familiar to anyone used to the older version while keeping or even increasing easy customization options. I have taken the opportunity to change the naming scheme of presets (now named filters by CCP) to be more verbose, but hopefully clearer to new players and more consistent. Version 3 also uses the new per tab column settings. I am changing NPC corporation members standings to behave as neutral standings do now, due to feedback and to be closer to the new reworked default overview, which is great improvement over the old one, but still far from good custom ones imho. Unfortunately we are still limited to 8 tabs, so System tab replaced dedicated Travel tab, which isn't really needed now and Ships Only tab replaced Friendly/Fleet tab, which now defaults to enemy ships, but can easily be changed back as both presets remain available. Also, due to popular demand new bracket preset without wrecks is included. There are a lot of smaller changes but nothing else really worth singling out. 165 | 166 | For now, I am not making a version with compact tab icons, since I don't know if anyone really uses it and it was confusing some new players. 167 | 168 | Sadly multiple windows and per tab column settings is where improvements on CCP side of things end, at least for now. Asteroid brackets, moon brackets and colour preset names are still not fully supported. Nor anything else community suggested. But I take it. 169 | 170 | ``` 171 | * Update to be compatible with Photon UI 172 | * Major overhaul of the overview and all presets 173 | + Added new FW BS NPCs 174 | + Added FW objective objects 175 | + Added mission NPC capsules 176 | - Removed more old POS stuff 177 | - Removed POSes from DCSAN presets 178 | ``` 179 | 180 | ![Version 3.0 for Photon UI with multi-window support](https://i.imgur.com/tcQ2GNz.png) 181 | 182 | ## v2.9.2 (2022/04/17) 183 | 184 | Depths of the Abyss - EVE 20.04 185 | 186 | ``` 187 | + added crab beacons 188 | + added extra tutorial NPCs 189 | + added new asteroids 190 | * fixed irregular NPCs 191 | * additional tiny changes 192 | ``` 193 | 194 | ![Version 2.9.2](https://i.imgur.com/fZvaQeV.jpeg) 195 | ![Alternative - Tab Icons - example 1](https://i.imgur.com/df14ojV.png) 196 | ![Alternative - Tab Icons - example 2](https://i.imgur.com/IefkPv6.png) 197 | 198 | ## v2.9.1 (2021/06) 199 | 200 | Quadrant 2 - EVE 19.05 201 | 202 | ``` 203 | + Added New Mobile Observatories 204 | * Various tiny changes thanks to your feedback 205 | ``` 206 | 207 | ## v2.9.0 (2021/05/12) 208 | 209 | Quadrant 2 - EVE 19.04 210 | 211 | ``` 212 | + Added enemy-fighters-only preset 213 | + Added PVE preset without citadels 214 | * Empty wrecks hidden from main PVE presets 215 | * Regular sentry guns hidden from main presets 216 | * Cleanup, new preset icons, some presets renamed slightly 217 | * Ship labels changed to use the easy to use UI 218 | * Various tiny changes thanks to your feedback 219 | ``` 220 | 221 | ## v2.8.6 (2021) 222 | 223 | ``` 224 | + added exotic artefact 225 | + added invisible beacon 226 | + added irregular capsule 227 | - removed charges from ship presets 228 | + added moons and planets to pve brackets 229 | * dscan presets renamed to reflect their function better 230 | ``` 231 | 232 | ## v2.8.5 (2021/03/09) 233 | 234 | Quadrant 1 - Reign - February Release - EVE 19.02 235 | 236 | ``` 237 | * Fixed Mobile Cyno Beacon 238 | ``` 239 | 240 | ## v2.8.4 (2021/03/09) 241 | 242 | Quadrant 1 - Reign - February Release - EVE 19.02 243 | 244 | ``` 245 | + Added Scalable Decorative Asteroid 246 | + Added Tournament Champion Monument 247 | ``` 248 | 249 | ## v2.8.3 (2021/02/25) 250 | 251 | Quadrant 1 - Reign - February Release - EVE 19.01 252 | 253 | ``` 254 | * Fixed Encounter Surveillance System 255 | * Fixed Disrupted gates 256 | + Added Interdiction Burst Probe 257 | ``` 258 | 259 | ## v2.8.2 (2020/08) 260 | 261 | Invasion Chapter 3 - July Release 262 | 263 | ``` 264 | + Added destructable effect beacon 265 | + Added Temporary Collidable Structure 266 | ``` 267 | 268 | ## v2.8.1 (2020/07/02) 269 | 270 | Invasion Chapter 3 - June Release - EVE 18.06 271 | 272 | ``` 273 | + Added Temporary Collidable Structures 274 | * Destructable Effect Beacons added also to PVP presets 275 | * Various tiny changes thanks to your feedback 276 | ``` 277 | 278 | ## v2.8.0 (2020/05/27) 279 | 280 | Invasion Chapter 3 - May Release - EVE 18.05 281 | 282 | ``` 283 | + Added exotic artefacts 284 | + Added invisible beacons 285 | + Added irregular capsules 286 | - Charges removed from ship only presets (still visible in space and on all main presets) 287 | + Added moons and planets to PVE brackets 288 | * D-Scan presets renamed to reflect their function better 289 | * Various tiny changes thanks to your feedback 290 | ``` 291 | 292 | ## v2.7.2 (2019/12/13) 293 | 294 | ``` 295 | * Fixes and changes related to player/NPC corp settings split 296 | * Fixed settings order bug 297 | - Various tiny changes thanks to your feedback 298 | ``` 299 | 300 | ## v2.7.1 (2019/12/10) 301 | 302 | ``` 303 | * Verious additional fixes 304 | ``` 305 | 306 | ## v2.7.0 (2019/12/10) 307 | 308 | Invasion Chapter 2 - December Release 309 | 310 | ``` 311 | * Update to be compatible with December release of EVE client 312 | * Fixed: state order, npc corporation pilot visibility, color and icon priority order, color tag on structures 313 | ``` 314 | 315 | ## v2.6.10 (2019/11/26) 316 | 317 | Invasion Chapter 2 - November Release 318 | 319 | ``` 320 | + Added new Retaliating Empire Entities (NPCs) 321 | ``` 322 | 323 | ## v2.6.9 (2019/10/09) 324 | 325 | Invasion Expansion - October Release 326 | 327 | ``` 328 | + Added new Destructible Effect Beacons 329 | * Various tiny changes thanks to your feedback 330 | ``` 331 | 332 | ## v2.6.8 (2019/09/10) 333 | 334 | Invasion Expansion - September Release 335 | 336 | ``` 337 | * Changed default presets 338 | + Added more compact tabs 339 | * Bugs fixed: new triglavian npcs displayed on no-npc preset 340 | * Various tiny changes thanks to your feedback 341 | ``` 342 | 343 | ## v2.6.7 (2019/05/28) 344 | 345 | Invasion Expansion - Invasion 1.0 346 | 347 | ``` 348 | + Added Invading Precursor Entities 349 | + Added new asteorid types: Bezdnacine, Rakovene, Talassonite 350 | * Various tiny changes thanks to your feedback 351 | ``` 352 | 353 | ## v2.6.6 (2019/04/09) 354 | 355 | Onslaught Expansion - April Release 356 | 357 | ``` 358 | + Added Fluorite Asteroids 359 | - Removed probes and bombs from Enemy Ships presets 360 | - Drone backet preset merged with PVP (+drones) brackets preset 361 | - Various tiny changes thanks to your feedback 362 | ``` 363 | 364 | ## v2.6.5 (2019/02/12) 365 | 366 | Onslaught Expansion - February Release 367 | 368 | ``` 369 | + Added Temporal Resources 370 | * Updated Cyno Beacons 371 | * Various tiny changes thanks to your feedback 372 | ``` 373 | 374 | ## v2.6.4 (2018/11/14) 375 | 376 | Onslaught Expansion - December Release 377 | 378 | ``` 379 | + Added Four new Upwell structures: jump gates, jammers, beacons, monuments 380 | + Added deadspace asteorids 381 | + Added deployable advertisement 382 | * Various tiny changes thanks to your feedback 383 | ``` 384 | 385 | ## v2.6.3 (2018/10/09) 386 | 387 | Into The Abyss - October Release 388 | 389 | ``` 390 | * Added preset colors 391 | * Reworked PVP dscan preset 392 | * Various tiny changes thanks to your feedback 393 | ``` 394 | 395 | ## v2.6.2-beta (2018) 396 | 397 | ## v2.6.1-beta (2018) 398 | 399 | ## v2.6.0 (2018/05/29) 400 | 401 | Into The Abyss Expansion 402 | 403 | ``` 404 | + Added Abyssal Caches 405 | + Added Abyssal NPCs 406 | + Added Abyssal Traces 407 | + Added new Triglavian Ships 408 | * Various tiny changes thanks to your feedback 409 | ``` 410 | 411 | ## v2.5.3 (2018/03/31) 412 | Lifeblood Expansion - March Update 413 | 414 | ## v2.5.2 (2018) 415 | 416 | ## v2.5.1 (2018/03/25) 417 | 418 | ``` 419 | * fixed bug with Enemy (red only) preset 420 | ``` 421 | 422 | ## v2.5.0 (2018/03) 423 | 424 | ``` 425 | + added new ship (Monitor) 426 | * various tiny changes thanks to your Feedback 427 | ``` 428 | 429 | ## v2.4.4 (2018/03/10) 430 | 431 | ## v2.4.3 (2018) 432 | 433 | ## v2.4.2 (2017) 434 | 435 | ## v2.4.1.1 (2017/11/21) 436 | 437 | ## v2.4.1 (2017/08/29) 438 | 439 | ## v2.4.0 (2017/08) 440 | 441 | ## v2.3.0 (2017) 442 | 443 | ## v2.2.0 (2017) 444 | 445 | ## v2.2.0 (2017) 446 | 447 | ## v2.1.0 (2016/11/24) 448 | 449 | Any information about versions older than this is lost to history... -------------------------------------------------------------------------------- /data/download.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | :: find curl or use copy from bin folder 4 | set "curl=curl.exe" 5 | where %curl% >nul 2>nul 6 | if NOT ERRORLEVEL 0 ( 7 | set "curl=./../bin/curl.exe" 8 | ) 9 | 10 | del invGroups.csv 11 | del invTypes.csv 12 | %curl% https://www.fuzzwork.co.uk/dump/latest/invGroups.csv --retry 3 --output invGroups.csv 13 | %curl% https://www.fuzzwork.co.uk/dump/latest/invTypes.csv --retry 3 --output invTypes.csv 14 | 15 | pause 16 | goto :eof 17 | -------------------------------------------------------------------------------- /data/readme.md: -------------------------------------------------------------------------------- 1 | # SDE 2 | Run `download.bat` to fetch latest SDE data from [Fuzzwork](https://www.fuzzwork.co.uk/) or do it manually: 3 | - [invTypes](https://www.fuzzwork.co.uk/dump/latest/invTypes.csv) 4 | - [invGroups](https://www.fuzzwork.co.uk/dump/latest/invGroups.csv) 5 | -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- 1 | # Licenses and Copyright 2 | SPDX-License-Identifier: MIT OR BSD-3-Clause 3 | 4 | ## Iridium Overview (v2.1.0 and newer versions) 5 | Unless specified otherwise, this software and all associated files are available under any of the licenses below: 6 | 7 | ### MIT License 8 | Copyright © 2013-2024, IridiumOps 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 15 | 16 | ### BSD 3-Clause License 17 | 18 | Copyright © 2013-2024, IridiumOps 19 | All rights reserved. 20 | 21 | Redistribution and use in source and binary forms, with or without 22 | modification, are permitted provided that the following conditions are met: 23 | 24 | - Redistributions of source code must retain the above copyright 25 | notice, this list of conditions and the following disclaimer. 26 | 27 | - Redistributions in binary form must reproduce the above copyright 28 | notice, this list of conditions and the following disclaimer in the 29 | documentation and/or other materials provided with the distribution. 30 | 31 | - Neither the name of original author nor the 32 | names of its contributors may be used to endorse or promote products 33 | derived from this software without specific prior written permission. 34 | 35 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 36 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 37 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 38 | DISCLAIMED. IN NO EVENT SHALL AUTHOR BE LIABLE FOR ANY 39 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 40 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 41 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 42 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 43 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 44 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 45 | 46 | ## CCP Copyright Notice 47 | EVE Online, the EVE logo, EVE and all associated logos and designs are the intellectual property of CCP hf. All artwork, screenshots, characters, vehicles, storylines, world facts or other recognizable features of the intellectual property relating to these trademarks are likewise the intellectual property of CCP hf. EVE Online and the EVE logo are the registered trademarks of CCP hf. All rights are reserved worldwide. All other trademarks are the property of their respective owners. 48 | -------------------------------------------------------------------------------- /motd/motd.html: -------------------------------------------------------------------------------- 1 | .
Channel:
Iridium Overview

Iridium Overview
Revenant Expansion (2025/04/16)

Iridium Overview / Part 1 / v3.6.1
Iridium Overview / Part 2 / v3.6.1
Iridium Overview / Part 3 / v3.6.1


Optional:
Iridium Overview / Carbon Mode / v3.6.1
Iridium Overview / Tab Icons / v3.6.1
Iridium Fleet Broadcast Settings v2.0

Links, preview:
iridiumops.github.io/website
github.com/iridiumops/overview
imgur.com/a/ssoduNu

About
Overview pack designed for every player, newbie or veteran. Useful in both fleet and solo PVP, ratting, mining, looting and exploration in all types of space.

12 tabs, 38 overview presets, 3 bracket presets and 3 dscan presets is the perfect balance between large complicated and too simplistic overviews. Alternative filters provide easy yet powerful customization for your play-style.

Designed for Photon UI and with multiple window layouts in mind.

Standardized colors make it compatible with any nullsec bloc.

Just try it!

How to install?
➊ Reset your overview settings then close the settings window imgur.com/a/2EtPh0J
❷ Install overview by clicking on Iridium Overview / Part 1, 2 and 3 (greenish links up in here)
❸ Install any optional mode (optional)
❹ Log out and log back in (recommended)

Like it?
Then share it in your alliance or corporation, tell all your friends about it or donate small amount of ISK to the maintainers: Thomas Iridium, Feer Truelight

Feel free to send any feedback, so we can make it even better.

Don't like it?
No problem, try other EVE Overviews

Latest Changes
v3.6.1 - Revenant Expansion
- Maintenance cleanup
- Various tiny changes thanks to your feedback
v3.6.0 - Capsuleer Day XXII
- Added new Tyranite asteroids
- Added Pirate Spawners
- Added Local Beacon

Please reset your overview before updating from very old versions.
-------------------------------------------------------------------------------- /motd/readme.md: -------------------------------------------------------------------------------- 1 | # MOTD 2 | 3 | Message Of The Day for `Iridium Overview` ingame chat channel. 4 | 5 | MOTD is unfortunately limited to maximum of 4000 characters including formatting (non-standard HTML). 6 | 7 | Individual shared install links are limited to 16 filters, thus the overview pack is split to 3 parts and additional tab settings variations: 8 | 9 | - Part 1: main tab settings, all filters used by the default tabs 10 | - Part 2: ships only filters 11 | - Part 3: remaining filters except ships only filters 12 | - Tab icons: alternative tab settings (tab titles are replaced by 'icons') 13 | - Carbon mode: alternative tab settings (more compact, meant for users who prefer only single overview window, multiboxers and smaller screen resolutions) 14 | -------------------------------------------------------------------------------- /parts/filter DSCAN Basic.yaml: -------------------------------------------------------------------------------- 1 | - - '? DSCAN: Basic' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 21 11 | - 45 12 | - - groups 13 | - - 6 # Sun 14 | - 10 # Stargate 15 | - 15 # Station 16 | - 25 # Frigate 17 | - 26 # Cruiser 18 | - 27 # Battleship 19 | - 28 # Hauler 20 | - 29 # Capsule 21 | - 30 # Titan 22 | - 31 # Shuttle 23 | - 90 # Bomb 24 | - 237 # Corvette 25 | - 310 # Beacon 26 | - 318 # Landmark 27 | - 324 # Assault Frigate 28 | - 358 # Heavy Assault Cruiser 29 | - 361 # Mobile Warp Disruptor 30 | - 366 # Warp Gate 31 | - 380 # Deep Space Transport 32 | - 381 # Elite Battleship 33 | - 419 # Combat Battlecruiser 34 | - 420 # Destroyer 35 | - 463 # Mining Barge 36 | - 479 # Scanner Probe 37 | - 485 # Dreadnought 38 | - 513 # Freighter 39 | - 540 # Command Ship 40 | - 541 # Interdictor 41 | - 543 # Exhumer 42 | - 547 # Carrier 43 | - 548 # Interdiction Probe 44 | - 659 # Supercarrier 45 | - 830 # Covert Ops 46 | - 831 # Interceptor 47 | - 832 # Logistics 48 | - 833 # Force Recon Ship 49 | - 834 # Stealth Bomber 50 | - 863 # Bomb ECM 51 | - 864 # Bomb Energy 52 | - 883 # Capital Industrial Ship 53 | - 893 # Electronic Attack Ship 54 | - 894 # Heavy Interdiction Cruiser 55 | - 897 # Covert Cynosural Field 56 | - 898 # Black Ops 57 | - 900 # Marauder 58 | - 902 # Jump Freighter 59 | - 906 # Combat Recon Ship 60 | - 941 # Industrial Command Ship 61 | - 963 # Strategic Cruiser 62 | - 988 # Wormhole 63 | - 1003 # Territorial Claim Unit 64 | - 1012 # Sovereignty Hub 65 | - 1022 # Prototype Exploration Ship 66 | - 1201 # Attack Battlecruiser 67 | - 1202 # Blockade Runner 68 | - 1246 # Mobile Depot 69 | - 1249 # Mobile Cyno Inhibitor 70 | - 1250 # Mobile Tractor Unit 71 | - 1273 # Encounter Surveillance System 72 | - 1275 # Mobile Scan Inhibitor 73 | - 1276 # Mobile Micro Jump Unit 74 | - 1283 # Expedition Frigate 75 | - 1305 # Tactical Destroyer 76 | - 1316 # Entosis Command Node 77 | - 1404 # Engineering Complex 78 | - 1406 # Refinery 79 | - 1408 # Upwell Jump Gate 80 | - 1527 # Logistics Frigate 81 | - 1534 # Command Destroyer 82 | - 1538 # Force Auxiliary 83 | - 1548 # Guided Bomb 84 | - 1657 # Citadel 85 | - 1876 # ♦ Engineering Complex 86 | - 1915 # Moon Mining Beacon 87 | - 1924 # ♦ Stronghold 88 | - 1972 # Flag Cruiser 89 | - 1991 # Filament Trace 90 | - 2001 # Citizen Ships 91 | - 2016 # Upwell Cyno Jammer 92 | - 2017 # Upwell Cyno Beacon 93 | - 2020 # Cynosural Fields 94 | - 4053 # Irregular Capsule 95 | - 4079 # Encounter Surveillance System 96 | - 4081 # Disrupted Gate 97 | - 4088 # Interdiction Burst Probes 98 | - 4093 # Mobile Cynosural Beacon 99 | - 4107 # Mobile Observatory 100 | - 4137 # Mobile Analysis Beacon 101 | - 4477 # FW Propaganda Broadcast Structure 102 | - 4499 # FW Listening Outpost 103 | - 4501 # Mission Generic Capsules 104 | - 4594 # Lancer Dreadnought 105 | -------------------------------------------------------------------------------- /parts/filter DSCAN Extra.yaml: -------------------------------------------------------------------------------- 1 | - - '? DSCAN: Extra' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 21 11 | - 45 12 | - - groups 13 | - - 6 # Sun 14 | - 7 # Planet 15 | - 8 # Moon 16 | - 9 # Asteroid Belt 17 | - 10 # Stargate 18 | - 12 # Cargo Container 19 | - 15 # Station 20 | - 25 # Frigate 21 | - 26 # Cruiser 22 | - 27 # Battleship 23 | - 28 # Hauler 24 | - 29 # Capsule 25 | - 30 # Titan 26 | - 31 # Shuttle 27 | - 90 # Bomb 28 | - 100 # Combat Drone 29 | - 101 # Mining Drone 30 | - 186 # Wreck 31 | - 237 # Corvette 32 | - 310 # Beacon 33 | - 318 # Landmark 34 | - 324 # Assault Frigate 35 | - 340 # Secure Cargo Container 36 | - 358 # Heavy Assault Cruiser 37 | - 361 # Mobile Warp Disruptor 38 | - 365 # Control Tower 39 | - 366 # Warp Gate 40 | - 380 # Deep Space Transport 41 | - 381 # Elite Battleship 42 | - 411 # Force Field 43 | - 419 # Combat Battlecruiser 44 | - 420 # Destroyer 45 | - 448 # Audit Log Secure Container 46 | - 463 # Mining Barge 47 | - 479 # Scanner Probe 48 | - 485 # Dreadnought 49 | - 513 # Freighter 50 | - 540 # Command Ship 51 | - 541 # Interdictor 52 | - 543 # Exhumer 53 | - 544 # Energy Neutralizer Drone 54 | - 547 # Carrier 55 | - 548 # Interdiction Probe 56 | - 639 # Electronic Warfare Drone 57 | - 640 # Logistic Drone 58 | - 641 # Stasis Webifying Drone 59 | - 649 # Freight Container 60 | - 659 # Supercarrier 61 | - 830 # Covert Ops 62 | - 831 # Interceptor 63 | - 832 # Logistics 64 | - 833 # Force Recon Ship 65 | - 834 # Stealth Bomber 66 | - 863 # Bomb ECM 67 | - 864 # Bomb Energy 68 | - 883 # Capital Industrial Ship 69 | - 893 # Electronic Attack Ship 70 | - 894 # Heavy Interdiction Cruiser 71 | - 897 # Covert Cynosural Field 72 | - 898 # Black Ops 73 | - 900 # Marauder 74 | - 902 # Jump Freighter 75 | - 906 # Combat Recon Ship 76 | - 941 # Industrial Command Ship 77 | - 963 # Strategic Cruiser 78 | - 988 # Wormhole 79 | - 1003 # Territorial Claim Unit 80 | - 1012 # Sovereignty Hub 81 | - 1022 # Prototype Exploration Ship 82 | - 1159 # Salvage Drone 83 | - 1201 # Attack Battlecruiser 84 | - 1202 # Blockade Runner 85 | - 1246 # Mobile Depot 86 | - 1249 # Mobile Cyno Inhibitor 87 | - 1250 # Mobile Tractor Unit 88 | - 1273 # Encounter Surveillance System 89 | - 1275 # Mobile Scan Inhibitor 90 | - 1276 # Mobile Micro Jump Unit 91 | - 1283 # Expedition Frigate 92 | - 1305 # Tactical Destroyer 93 | - 1316 # Entosis Command Node 94 | - 1404 # Engineering Complex 95 | - 1406 # Refinery 96 | - 1408 # Upwell Jump Gate 97 | - 1527 # Logistics Frigate 98 | - 1534 # Command Destroyer 99 | - 1537 # Support Fighter 100 | - 1538 # Force Auxiliary 101 | - 1548 # Guided Bomb 102 | - 1652 # Light Fighter 103 | - 1653 # Heavy Fighter 104 | - 1657 # Citadel 105 | - 1876 # ♦ Engineering Complex 106 | - 1915 # Moon Mining Beacon 107 | - 1924 # ♦ Stronghold 108 | - 1972 # Flag Cruiser 109 | - 1991 # Filament Trace 110 | - 2001 # Citizen Ships 111 | - 2015 # Upwell Monument 112 | - 2016 # Upwell Cyno Jammer 113 | - 2017 # Upwell Cyno Beacon 114 | - 2020 # Cynosural Fields 115 | - 4053 # Irregular Capsule 116 | - 4079 # Encounter Surveillance System 117 | - 4081 # Disrupted Gate 118 | - 4088 # Interdiction Burst Probes 119 | - 4093 # Mobile Cynosural Beacon 120 | - 4100 # Logo Display Monument 121 | - 4107 # Mobile Observatory 122 | - 4137 # Mobile Analysis Beacon 123 | - 4477 # FW Propaganda Broadcast Structure 124 | - 4499 # FW Listening Outpost 125 | - 4501 # Mission Generic Capsules 126 | - 4594 # Lancer Dreadnought 127 | - 4810 # Mercenary Den 128 | -------------------------------------------------------------------------------- /parts/filter DSCAN Ships.yaml: -------------------------------------------------------------------------------- 1 | - - '? DSCAN: Ships' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 21 11 | - 45 12 | - - groups 13 | - - 25 # Frigate 14 | - 26 # Cruiser 15 | - 27 # Battleship 16 | - 28 # Hauler 17 | - 29 # Capsule 18 | - 30 # Titan 19 | - 31 # Shuttle 20 | - 237 # Corvette 21 | - 324 # Assault Frigate 22 | - 358 # Heavy Assault Cruiser 23 | - 380 # Deep Space Transport 24 | - 381 # Elite Battleship 25 | - 419 # Combat Battlecruiser 26 | - 420 # Destroyer 27 | - 463 # Mining Barge 28 | - 485 # Dreadnought 29 | - 513 # Freighter 30 | - 540 # Command Ship 31 | - 541 # Interdictor 32 | - 543 # Exhumer 33 | - 547 # Carrier 34 | - 659 # Supercarrier 35 | - 830 # Covert Ops 36 | - 831 # Interceptor 37 | - 832 # Logistics 38 | - 833 # Force Recon Ship 39 | - 834 # Stealth Bomber 40 | - 883 # Capital Industrial Ship 41 | - 893 # Electronic Attack Ship 42 | - 894 # Heavy Interdiction Cruiser 43 | - 898 # Black Ops 44 | - 900 # Marauder 45 | - 902 # Jump Freighter 46 | - 906 # Combat Recon Ship 47 | - 941 # Industrial Command Ship 48 | - 963 # Strategic Cruiser 49 | - 1022 # Prototype Exploration Ship 50 | - 1201 # Attack Battlecruiser 51 | - 1202 # Blockade Runner 52 | - 1283 # Expedition Frigate 53 | - 1305 # Tactical Destroyer 54 | - 1527 # Logistics Frigate 55 | - 1534 # Command Destroyer 56 | - 1538 # Force Auxiliary 57 | - 1972 # Flag Cruiser 58 | - 2001 # Citizen Ships 59 | - 4594 # Lancer Dreadnought 60 | -------------------------------------------------------------------------------- /parts/filter Drones Drones and Fighters (all).yaml: -------------------------------------------------------------------------------- 1 | - - '✜ Drones: Drones and Fighters (all)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - [] 6 | - - groups 7 | - - 100 # Combat Drone 8 | - 101 # Mining Drone 9 | - 544 # Energy Neutralizer Drone 10 | - 639 # Electronic Warfare Drone 11 | - 640 # Logistic Drone 12 | - 641 # Stasis Webifying Drone 13 | - 1159 # Salvage Drone 14 | - 1537 # Support Fighter 15 | - 1652 # Light Fighter 16 | - 1653 # Heavy Fighter 17 | - 1997 # Abyssal Drone Entities 18 | - 4777 # Structure Light Fighter 19 | - 4778 # Structure Support Fighter 20 | - 4779 # Structure Heavy Fighter 21 | -------------------------------------------------------------------------------- /parts/filter Drones Drones and Fighters (red+neutral).yaml: -------------------------------------------------------------------------------- 1 | - - '✜ Drones: Drones and Fighters (red+neutral)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 21 11 | - - groups 12 | - - 100 # Combat Drone 13 | - 101 # Mining Drone 14 | - 544 # Energy Neutralizer Drone 15 | - 639 # Electronic Warfare Drone 16 | - 640 # Logistic Drone 17 | - 641 # Stasis Webifying Drone 18 | - 1159 # Salvage Drone 19 | - 1537 # Support Fighter 20 | - 1652 # Light Fighter 21 | - 1653 # Heavy Fighter 22 | - 1997 # Abyssal Drone Entities 23 | - 4777 # Structure Light Fighter 24 | - 4778 # Structure Support Fighter 25 | - 4779 # Structure Heavy Fighter 26 | -------------------------------------------------------------------------------- /parts/filter Drones Fighters (red+neutral).yaml: -------------------------------------------------------------------------------- 1 | - - '✜ Drones: Fighters (red+neutral)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 21 11 | - - groups 12 | - - 1537 # Support Fighter 13 | - 1652 # Light Fighter 14 | - 1653 # Heavy Fighter 15 | - 4777 # Structure Light Fighter 16 | - 4778 # Structure Support Fighter 17 | - 4779 # Structure Heavy Fighter 18 | -------------------------------------------------------------------------------- /parts/filter Loot Loot and salvage.yaml: -------------------------------------------------------------------------------- 1 | - - '❒ Loot: Loot and salvage' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - [] 6 | - - groups 7 | - - 12 # Cargo Container 8 | - 186 # Wreck 9 | - 306 # Spawn Container 10 | - 340 # Secure Cargo Container 11 | - 361 # Mobile Warp Disruptor 12 | - 448 # Audit Log Secure Container 13 | - 494 # Deadspace Overseer's Structure 14 | - 496 # Deadspace Overseer's Belongings 15 | - 649 # Freight Container 16 | - 952 # Mission Container 17 | - 1207 # Scatter Container 18 | - 1246 # Mobile Depot 19 | - 1249 # Mobile Cyno Inhibitor 20 | - 1250 # Mobile Tractor Unit 21 | - 1273 # Encounter Surveillance System 22 | - 1275 # Mobile Scan Inhibitor 23 | - 1276 # Mobile Micro Jump Unit 24 | - 1928 # Irregular Container 25 | - 2009 # Precursor Cache 26 | - 4137 # Mobile Analysis Beacon 27 | - 4719 # Rift 28 | -------------------------------------------------------------------------------- /parts/filter Main PVX (+extra).yaml: -------------------------------------------------------------------------------- 1 | - - '✱ Main: PVX (+extra)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 37 11 | - - groups 12 | - - 12 # Cargo Container 13 | - 25 # Frigate 14 | - 26 # Cruiser 15 | - 27 # Battleship 16 | - 28 # Hauler 17 | - 29 # Capsule 18 | - 30 # Titan 19 | - 31 # Shuttle 20 | - 90 # Bomb 21 | - 180 # Protective Sentry Gun 22 | - 185 # Pirate Drone 23 | - 186 # Wreck 24 | - 237 # Corvette 25 | - 279 # LCO Drone 26 | - 286 # Minor Threat 27 | - 287 # Rogue Drone 28 | - 297 # Convoy 29 | - 298 # Convoy Drone 30 | - 306 # Spawn Container 31 | - 318 # Landmark 32 | - 324 # Assault Frigate 33 | - 336 # Mobile Sentry Gun 34 | - 337 # Mission Drone 35 | - 340 # Secure Cargo Container 36 | - 358 # Heavy Assault Cruiser 37 | - 361 # Mobile Warp Disruptor 38 | - 365 # Control Tower 39 | - 366 # Warp Gate 40 | - 380 # Deep Space Transport 41 | - 381 # Elite Battleship 42 | - 383 # Destructible Sentry Gun 43 | - 419 # Combat Battlecruiser 44 | - 420 # Destroyer 45 | - 435 # Deadspace Overseer 46 | - 448 # Audit Log Secure Container 47 | - 463 # Mining Barge 48 | - 479 # Scanner Probe 49 | - 485 # Dreadnought 50 | - 494 # Deadspace Overseer's Structure 51 | - 495 # Deadspace Overseer's Sentry 52 | - 496 # Deadspace Overseer's Belongings 53 | - 513 # Freighter 54 | - 517 # Agents in Space 55 | - 520 # Storyline Frigate 56 | - 522 # Storyline Cruiser 57 | - 523 # Storyline Battleship 58 | - 527 # Storyline Mission Frigate 59 | - 533 # Storyline Mission Cruiser 60 | - 534 # Storyline Mission Battleship 61 | - 540 # Command Ship 62 | - 541 # Interdictor 63 | - 543 # Exhumer 64 | - 547 # Carrier 65 | - 548 # Interdiction Probe 66 | - 550 # Asteroid Angel Cartel Frigate 67 | - 551 # Asteroid Angel Cartel Cruiser 68 | - 552 # Asteroid Angel Cartel Battleship 69 | - 553 # Asteroid Angel Cartel Officer 70 | - 554 # Asteroid Angel Cartel Hauler 71 | - 555 # Asteroid Blood Raiders Cruiser 72 | - 556 # Asteroid Blood Raiders Battleship 73 | - 557 # Asteroid Blood Raiders Frigate 74 | - 558 # Asteroid Blood Raiders Hauler 75 | - 559 # Asteroid Blood Raiders Officer 76 | - 560 # Asteroid Guristas Battleship 77 | - 561 # Asteroid Guristas Cruiser 78 | - 562 # Asteroid Guristas Frigate 79 | - 563 # Asteroid Guristas Hauler 80 | - 564 # Asteroid Guristas Officer 81 | - 565 # Asteroid Sansha's Nation Battleship 82 | - 566 # Asteroid Sansha's Nation Cruiser 83 | - 567 # Asteroid Sansha's Nation Frigate 84 | - 568 # Asteroid Sansha's Nation Hauler 85 | - 569 # Asteroid Sansha's Nation Officer 86 | - 570 # Asteroid Serpentis Battleship 87 | - 571 # Asteroid Serpentis Cruiser 88 | - 572 # Asteroid Serpentis Frigate 89 | - 573 # Asteroid Serpentis Hauler 90 | - 574 # Asteroid Serpentis Officer 91 | - 575 # Asteroid Angel Cartel Destroyer 92 | - 576 # Asteroid Angel Cartel BattleCruiser 93 | - 577 # Asteroid Blood Raiders Destroyer 94 | - 578 # Asteroid Blood Raiders BattleCruiser 95 | - 579 # Asteroid Guristas Destroyer 96 | - 580 # Asteroid Guristas BattleCruiser 97 | - 581 # Asteroid Sansha's Nation Destroyer 98 | - 582 # Asteroid Sansha's Nation BattleCruiser 99 | - 583 # Asteroid Serpentis Destroyer 100 | - 584 # Asteroid Serpentis BattleCruiser 101 | - 593 # Deadspace Angel Cartel BattleCruiser 102 | - 594 # Deadspace Angel Cartel Battleship 103 | - 595 # Deadspace Angel Cartel Cruiser 104 | - 596 # Deadspace Angel Cartel Destroyer 105 | - 597 # Deadspace Angel Cartel Frigate 106 | - 602 # Deadspace Blood Raiders BattleCruiser 107 | - 603 # Deadspace Blood Raiders Battleship 108 | - 604 # Deadspace Blood Raiders Cruiser 109 | - 605 # Deadspace Blood Raiders Destroyer 110 | - 606 # Deadspace Blood Raiders Frigate 111 | - 611 # Deadspace Guristas BattleCruiser 112 | - 612 # Deadspace Guristas Battleship 113 | - 613 # Deadspace Guristas Cruiser 114 | - 614 # Deadspace Guristas Destroyer 115 | - 615 # Deadspace Guristas Frigate 116 | - 620 # Deadspace Sansha's Nation BattleCruiser 117 | - 621 # Deadspace Sansha's Nation Battleship 118 | - 622 # Deadspace Sansha's Nation Cruiser 119 | - 623 # Deadspace Sansha's Nation Destroyer 120 | - 624 # Deadspace Sansha's Nation Frigate 121 | - 629 # Deadspace Serpentis BattleCruiser 122 | - 630 # Deadspace Serpentis Battleship 123 | - 631 # Deadspace Serpentis Cruiser 124 | - 632 # Deadspace Serpentis Destroyer 125 | - 633 # Deadspace Serpentis Frigate 126 | - 649 # Freight Container 127 | - 659 # Supercarrier 128 | - 665 # Mission Amarr Empire Frigate 129 | - 666 # Mission Amarr Empire Battlecruiser 130 | - 667 # Mission Amarr Empire Battleship 131 | - 668 # Mission Amarr Empire Cruiser 132 | - 669 # Mission Amarr Empire Destroyer 133 | - 670 # Mission Amarr Empire Other 134 | - 671 # Mission Caldari State Frigate 135 | - 672 # Mission Caldari State Battlecruiser 136 | - 673 # Mission Caldari State Cruiser 137 | - 674 # Mission Caldari State Battleship 138 | - 675 # Mission Caldari State Other 139 | - 676 # Mission Caldari State Destroyer 140 | - 677 # Mission Gallente Federation Frigate 141 | - 678 # Mission Gallente Federation Cruiser 142 | - 679 # Mission Gallente Federation Destroyer 143 | - 680 # Mission Gallente Federation Battleship 144 | - 681 # Mission Gallente Federation Battlecruiser 145 | - 682 # Mission Gallente Federation Other 146 | - 683 # Mission Minmatar Republic Frigate 147 | - 684 # Mission Minmatar Republic Destroyer 148 | - 685 # Mission Minmatar Republic Battlecruiser 149 | - 686 # Mission Minmatar Republic Other 150 | - 687 # Mission Khanid Frigate 151 | - 688 # Mission Khanid Destroyer 152 | - 689 # Mission Khanid Cruiser 153 | - 690 # Mission Khanid Battlecruiser 154 | - 691 # Mission Khanid Battleship 155 | - 692 # Mission Khanid Other 156 | - 693 # Mission CONCORD Frigate 157 | - 694 # Mission CONCORD Destroyer 158 | - 695 # Mission CONCORD Cruiser 159 | - 696 # Mission CONCORD Battlecruiser 160 | - 697 # Mission CONCORD Battleship 161 | - 698 # Mission CONCORD Other 162 | - 699 # Mission Mordu Frigate 163 | - 700 # Mission Mordu Destroyer 164 | - 701 # Mission Mordu Cruiser 165 | - 702 # Mission Mordu Battlecruiser 166 | - 703 # Mission Mordu Battleship 167 | - 704 # Mission Mordu Other 168 | - 705 # Mission Minmatar Republic Cruiser 169 | - 706 # Mission Minmatar Republic Battleship 170 | - 715 # Destructible Agents In Space 171 | - 755 # Asteroid Rogue Drone BattleCruiser 172 | - 756 # Asteroid Rogue Drone Battleship 173 | - 757 # Asteroid Rogue Drone Cruiser 174 | - 758 # Asteroid Rogue Drone Destroyer 175 | - 759 # Asteroid Rogue Drone Frigate 176 | - 760 # Asteroid Rogue Drone Hauler 177 | - 761 # Asteroid Rogue Drone Swarm 178 | - 789 # Asteroid Angel Cartel Commander Frigate 179 | - 790 # Asteroid Angel Cartel Commander Cruiser 180 | - 791 # Asteroid Blood Raiders Commander Cruiser 181 | - 792 # Asteroid Blood Raiders Commander Frigate 182 | - 793 # Asteroid Angel Cartel Commander BattleCruiser 183 | - 794 # Asteroid Angel Cartel Commander Destroyer 184 | - 795 # Asteroid Blood Raiders Commander BattleCruiser 185 | - 796 # Asteroid Blood Raiders Commander Destroyer 186 | - 797 # Asteroid Guristas Commander BattleCruiser 187 | - 798 # Asteroid Guristas Commander Cruiser 188 | - 799 # Asteroid Guristas Commander Destroyer 189 | - 800 # Asteroid Guristas Commander Frigate 190 | - 801 # Deadspace Rogue Drone BattleCruiser 191 | - 802 # Deadspace Rogue Drone Battleship 192 | - 803 # Deadspace Rogue Drone Cruiser 193 | - 804 # Deadspace Rogue Drone Destroyer 194 | - 805 # Deadspace Rogue Drone Frigate 195 | - 806 # Deadspace Rogue Drone Swarm 196 | - 807 # Asteroid Sansha's Nation Commander BattleCruiser 197 | - 808 # Asteroid Sansha's Nation Commander Cruiser 198 | - 809 # Asteroid Sansha's Nation Commander Destroyer 199 | - 810 # Asteroid Sansha's Nation Commander Frigate 200 | - 811 # Asteroid Serpentis Commander BattleCruiser 201 | - 812 # Asteroid Serpentis Commander Cruiser 202 | - 813 # Asteroid Serpentis Commander Destroyer 203 | - 814 # Asteroid Serpentis Commander Frigate 204 | - 816 # Mission Generic Battleships 205 | - 817 # Mission Generic Cruisers 206 | - 818 # Mission Generic Frigates 207 | - 819 # Deadspace Overseer Frigate 208 | - 820 # Deadspace Overseer Cruiser 209 | - 821 # Deadspace Overseer Battleship 210 | - 822 # Mission Thukker Battlecruiser 211 | - 823 # Mission Thukker Battleship 212 | - 824 # Mission Thukker Cruiser 213 | - 825 # Mission Thukker Destroyer 214 | - 826 # Mission Thukker Frigate 215 | - 827 # Mission Thukker Other 216 | - 828 # Mission Generic Battle Cruisers 217 | - 829 # Mission Generic Destroyers 218 | - 830 # Covert Ops 219 | - 831 # Interceptor 220 | - 832 # Logistics 221 | - 833 # Force Recon Ship 222 | - 834 # Stealth Bomber 223 | - 843 # Asteroid Rogue Drone Commander BattleCruiser 224 | - 844 # Asteroid Rogue Drone Commander Battleship 225 | - 845 # Asteroid Rogue Drone Commander Cruiser 226 | - 846 # Asteroid Rogue Drone Commander Destroyer 227 | - 847 # Asteroid Rogue Drone Commander Frigate 228 | - 848 # Asteroid Angel Cartel Commander Battleship 229 | - 849 # Asteroid Blood Raiders Commander Battleship 230 | - 850 # Asteroid Guristas Commander Battleship 231 | - 851 # Asteroid Sansha's Nation Commander Battleship 232 | - 852 # Asteroid Serpentis Commander Battleship 233 | - 861 # Mission Fighter Drone 234 | - 863 # Bomb ECM 235 | - 864 # Bomb Energy 236 | - 865 # Mission Amarr Empire Carrier 237 | - 866 # Mission Caldari State Carrier 238 | - 867 # Mission Gallente Federation Carrier 239 | - 868 # Mission Minmatar Republic Carrier 240 | - 875 # Mission Faction Transports 241 | - 883 # Capital Industrial Ship 242 | - 893 # Electronic Attack Ship 243 | - 894 # Heavy Interdiction Cruiser 244 | - 898 # Black Ops 245 | - 900 # Marauder 246 | - 902 # Jump Freighter 247 | - 906 # Combat Recon Ship 248 | - 920 # Effect Beacon 249 | - 922 # Capture Point 250 | - 924 # Mission Faction Battleship 251 | - 927 # Mission Faction Haulers 252 | - 941 # Industrial Command Ship 253 | - 952 # Mission Container 254 | - 959 # Deadspace Sleeper Sleepless Sentinel 255 | - 960 # Deadspace Sleeper Awakened Sentinel 256 | - 961 # Deadspace Sleeper Emergent Sentinel 257 | - 963 # Strategic Cruiser 258 | - 982 # Deadspace Sleeper Sleepless Defender 259 | - 983 # Deadspace Sleeper Sleepless Patroller 260 | - 984 # Deadspace Sleeper Awakened Defender 261 | - 985 # Deadspace Sleeper Awakened Patroller 262 | - 986 # Deadspace Sleeper Emergent Defender 263 | - 987 # Deadspace Sleeper Emergent Patroller 264 | - 988 # Wormhole 265 | - 1006 # Mission Faction Cruiser 266 | - 1007 # Mission Faction Frigate 267 | - 1022 # Prototype Exploration Ship 268 | - 1051 # Incursion Sansha's Nation Industrial 269 | - 1052 # Incursion Sansha's Nation Capital 270 | - 1053 # Incursion Sansha's Nation Frigate 271 | - 1054 # Incursion Sansha's Nation Cruiser 272 | - 1056 # Incursion Sansha's Nation Battleship 273 | - 1166 # FW Minmatar Republic Frigate 274 | - 1167 # FW Caldari State Frigate 275 | - 1168 # FW Gallente Federation Frigate 276 | - 1169 # FW Amarr Empire Frigate 277 | - 1174 # Asteroid Rogue Drone Officer 278 | - 1175 # FW Amarr Empire Destroyer 279 | - 1176 # FW Caldari State Destroyer 280 | - 1177 # FW Gallente Federation Destroyer 281 | - 1178 # FW Minmatar Republic Destroyer 282 | - 1179 # FW Amarr Empire Cruiser 283 | - 1180 # FW Caldari State Cruiser 284 | - 1181 # FW Gallente Federation Cruiser 285 | - 1182 # FW Minmatar Republic Cruiser 286 | - 1183 # FW Amarr Empire Battlecruiser 287 | - 1184 # FW Caldari State Battlecruiser 288 | - 1185 # FW Gallente Federation Battlecruiser 289 | - 1186 # FW Minmatar Republic Battlecruiser 290 | - 1201 # Attack Battlecruiser 291 | - 1202 # Blockade Runner 292 | - 1207 # Scatter Container 293 | - 1246 # Mobile Depot 294 | - 1249 # Mobile Cyno Inhibitor 295 | - 1250 # Mobile Tractor Unit 296 | - 1252 # Ghost Sites Angel Cartel Cruiser 297 | - 1255 # Ghost Sites Blood Raiders Cruiser 298 | - 1259 # Ghost Sites Guristas Cruiser 299 | - 1262 # Ghost Sites Serpentis Cruiser 300 | - 1265 # Ghost Sites Sanshas Cruiser 301 | - 1273 # Encounter Surveillance System 302 | - 1275 # Mobile Scan Inhibitor 303 | - 1276 # Mobile Micro Jump Unit 304 | - 1283 # Expedition Frigate 305 | - 1285 # Asteroid Mordus Legion Commander Frigate 306 | - 1286 # Asteroid Mordus Legion Commander Cruiser 307 | - 1287 # Asteroid Mordus Legion Commander Battleship 308 | - 1288 # Ghost Sites Mordu's Legion 309 | - 1305 # Tactical Destroyer 310 | - 1307 # Roaming Sleepers Cruiser 311 | - 1310 # Drifter Battleship 312 | - 1316 # Entosis Command Node 313 | - 1402 # Amarr Navy Roaming Battleship 314 | - 1411 # Amarr Navy Roaming Cruiser 315 | - 1412 # Amarr Navy Roaming Capital 316 | - 1413 # Amarr Navy Roaming Logistics 317 | - 1414 # Amarr Navy Roaming Frigate 318 | - 1452 # Irregular Drone 319 | - 1453 # Irregular EW Drone 320 | - 1454 # Irregular Fighter 321 | - 1455 # Irregular Fighter Squadron 322 | - 1465 # Mission Generic Supercarrier 323 | - 1527 # Logistics Frigate 324 | - 1529 # Deadspace Sleeper Upgraded Avenger 325 | - 1530 # Drifter Response Battleship 326 | - 1534 # Command Destroyer 327 | - 1538 # Force Auxiliary 328 | - 1548 # Guided Bomb 329 | - 1566 # Irregular Shuttle 330 | - 1567 # Irregular Corvette 331 | - 1568 # Irregular Frigate 332 | - 1664 # Irregular Destroyer 333 | - 1665 # Irregular Cruiser 334 | - 1666 # Irregular Battlecruiser 335 | - 1667 # Irregular Battleship 336 | - 1681 # Asteroid Angel Cartel Dreadnought 337 | - 1682 # Asteroid Angel Cartel Titan 338 | - 1683 # Asteroid Blood Raider Dreadnought 339 | - 1684 # Asteroid Blood Raider Titan 340 | - 1685 # Asteroid Guristas Dreadnought 341 | - 1686 # Asteroid Guristas Titan 342 | - 1687 # Asteroid Sansha's Nation Dreadnought 343 | - 1688 # Asteroid Sansha's Nation Supercarrier 344 | - 1689 # Asteroid Serpentis Dreadnought 345 | - 1690 # Asteroid Serpentis Titan 346 | - 1691 # Asteroid Rogue Drone Carrier 347 | - 1692 # Asteroid Rogue Drone Supercarrier 348 | - 1704 # Super Weapon Beacon 349 | - 1720 # Roaming Serpentis Battleship 350 | - 1721 # Roaming Serpentis Cruiser 351 | - 1722 # Roaming Serpentis Frigate 352 | - 1724 # Irregular Dreadnought 353 | - 1725 # Irregular Force Auxiliary 354 | - 1726 # Irregular Carrier 355 | - 1727 # Roaming Angel Cartel Battleship 356 | - 1728 # Roaming Angel Cartel Cruiser 357 | - 1729 # Roaming Angel Cartel Frigate 358 | - 1731 # Irregular Super Carrier 359 | - 1734 # Roaming Blood Raider Frigate 360 | - 1735 # Roaming Blood Raider Cruiser 361 | - 1736 # Roaming Blood Raider Battlecruiser 362 | - 1737 # Roaming Blood Raider Battleship 363 | - 1759 # Irregular Titan 364 | - 1761 # Irregular Mining Frigate 365 | - 1762 # Irregular Mining Barge 366 | - 1764 # ♦ Mining Frigate 367 | - 1765 # ♦ Mining Barge 368 | - 1766 # ♦ Mining Exhumer 369 | - 1767 # ♦ Mining Hauler 370 | - 1768 # Seeker Scouts 371 | - 1788 # Hidden Zenith Drifters 372 | - 1789 # Hidden Zenith Amarr Battleship 373 | - 1790 # Hidden Zenith Amarr Cruiser 374 | - 1791 # Hidden Zenith Amarr Frigate 375 | - 1792 # Hidden Zenith Caldari Battleship 376 | - 1793 # Hidden Zenith Caldari Cruiser 377 | - 1794 # Hidden Zenith Caldari Frigate 378 | - 1795 # Hidden Zenith Gallente Battleship 379 | - 1796 # Hidden Zenith Gallente Cruiser 380 | - 1797 # Hidden Zenith Gallente Frigate 381 | - 1798 # Hidden Zenith Minmatar Battleship 382 | - 1799 # Hidden Zenith Minmatar Cruiser 383 | - 1800 # Hidden Zenith Minmatar Frigate 384 | - 1803 # ♦ Frigate 385 | - 1804 # Hidden Zenith Amarr Capital 386 | - 1805 # Hidden Zenith Caldari Capital 387 | - 1806 # Hidden Zenith Gallente Capital 388 | - 1807 # Hidden Zenith Minmatar Capital 389 | - 1813 # ♦ Cruiser 390 | - 1814 # ♦ Battleship 391 | - 1872 # Structure Entities 392 | - 1876 # ♦ Engineering Complex 393 | - 1878 # ♦ Titan 394 | - 1879 # ♦ Force Auxiliary 395 | - 1880 # ♦ Dreadnought 396 | - 1895 # Irregular Industrial 397 | - 1896 # ♦ Industrial Command 398 | - 1904 399 | - 1905 400 | - 1906 401 | - 1907 402 | - 1908 403 | - 1909 # ♦ Battlecruiser 404 | - 1910 405 | - 1915 # Moon Mining Beacon 406 | - 1924 # ♦ Stronghold 407 | - 1925 # Irregular Industrial Command Ship 408 | - 1926 # Irregular Freighter 409 | - 1927 # Irregular Structure 410 | - 1928 # Irregular Container 411 | - 1929 # Irregular - Unidentified 412 | - 1956 # Drifter Reinforcements 413 | - 1972 # Flag Cruiser 414 | - 1981 # Triglavian Support Pylons 415 | - 1982 # Abyssal Spaceship Entities 416 | - 1991 # Filament Trace 417 | - 1997 # Abyssal Drone Entities 418 | - 2001 # Citizen Ships 419 | - 2009 # Precursor Cache 420 | - 4028 # Triglavian Entities 421 | - 4034 # EDENCOM Entities 422 | - 4035 # Drifter Entities 423 | - 4036 # Sleeper Entities 424 | - 4037 # Rogue Drone Entities 425 | - 4053 # Irregular Capsule 426 | - 4070 # Exotic Artefact 427 | - 4073 # Temporary Collidable Structure 428 | - 4079 # Encounter Surveillance System 429 | - 4088 # Interdiction Burst Probes 430 | - 4093 # Mobile Cynosural Beacon 431 | - 4105 # Unidentified Entities 432 | - 4106 # AIR Entities I 433 | - 4107 # Mobile Observatory 434 | - 4128 # AIR Entities II 435 | - 4130 # Unidentified Entities II 436 | - 4431 # FW Amarr Empire Battleship 437 | - 4432 # FW Caldari State Battleship 438 | - 4433 # FW Gallente Federation Battleship 439 | - 4434 # FW Minmatar Republic Battleship 440 | - 4477 # FW Propaganda Broadcast Structure 441 | - 4494 # Control Point 442 | - 4499 # FW Listening Outpost 443 | - 4501 # Mission Generic Capsules 444 | - 4569 # Homefront Operations Enemy Frigate 445 | - 4570 # Homefront Operations Enemy Destroyer 446 | - 4571 # Homefront Operations Enemy Cruiser 447 | - 4572 # Homefront Operations Allied Dreadnought 448 | - 4573 # Homefront Operations Enemy Battlecruiser 449 | - 4574 # Homefront Operations Enemy Battleship 450 | - 4576 # Homefront Operations Structure 451 | - 4577 # Homefront Operations Hauler 452 | - 4594 # Lancer Dreadnought 453 | - 4636 # Pirate Entities 454 | - 4637 # Insurgency Roaming Pirates 455 | - 4638 # Insurgency Roaming Enforcers 456 | - 4647 # Insurgency Pirate Frigate 457 | - 4648 # Insurgency Pirate Destroyer 458 | - 4649 # Insurgency Pirate Cruiser 459 | - 4650 # Insurgency Pirate Battlecruiser 460 | - 4651 # Insurgency Pirate Battleship 461 | - 4652 # Insurgency Mordu Frigate 462 | - 4653 # Insurgency Mordu Destroyer 463 | - 4654 # Insurgency Mordu Cruiser 464 | - 4655 # Insurgency Mordu Battlecruiser 465 | - 4656 # Insurgency Mordu Battleship 466 | - 4673 # Insurgency Mining Ship 467 | - 4712 # Guided Entities 468 | - 4713 # Guidance Objectives 469 | - 4719 # Rift 470 | - 4737 # Homefront Operations Shuttle 471 | - 4771 # Homefront Operations Noncombatant 472 | - 4795 # Asteroid Angel Cartel Officer Cruiser 473 | - 4796 # Asteroid Angel Cartel Officer Frigate 474 | - 4797 # Asteroid Blood Raiders Officer Cruiser 475 | - 4798 # Asteroid Blood Raiders Officer Frigate 476 | - 4799 # Asteroid Guristas Officer Cruiser 477 | - 4800 # Asteroid Guristas Officer Frigate 478 | - 4801 # Asteroid Sansha's Nation Officer Cruiser 479 | - 4802 # Asteroid Sansha's Nation Officer Frigate 480 | - 4803 # Asteroid Serpentis Officer Cruiser 481 | - 4804 # Asteroid Serpentis Officer Frigate 482 | - 4810 # Mercenary Den 483 | - 4825 # Local Beacon 484 | - 4828 # Pirate Spawners 485 | -------------------------------------------------------------------------------- /parts/filter Main PVX (+friendly +extra).yaml: -------------------------------------------------------------------------------- 1 | - - '✱ Main: PVX (+friendly +extra)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 37 6 | - - groups 7 | - - 12 # Cargo Container 8 | - 25 # Frigate 9 | - 26 # Cruiser 10 | - 27 # Battleship 11 | - 28 # Hauler 12 | - 29 # Capsule 13 | - 30 # Titan 14 | - 31 # Shuttle 15 | - 90 # Bomb 16 | - 180 # Protective Sentry Gun 17 | - 185 # Pirate Drone 18 | - 186 # Wreck 19 | - 237 # Corvette 20 | - 279 # LCO Drone 21 | - 286 # Minor Threat 22 | - 287 # Rogue Drone 23 | - 297 # Convoy 24 | - 298 # Convoy Drone 25 | - 306 # Spawn Container 26 | - 318 # Landmark 27 | - 324 # Assault Frigate 28 | - 336 # Mobile Sentry Gun 29 | - 337 # Mission Drone 30 | - 340 # Secure Cargo Container 31 | - 358 # Heavy Assault Cruiser 32 | - 361 # Mobile Warp Disruptor 33 | - 365 # Control Tower 34 | - 366 # Warp Gate 35 | - 380 # Deep Space Transport 36 | - 381 # Elite Battleship 37 | - 383 # Destructible Sentry Gun 38 | - 419 # Combat Battlecruiser 39 | - 420 # Destroyer 40 | - 435 # Deadspace Overseer 41 | - 448 # Audit Log Secure Container 42 | - 463 # Mining Barge 43 | - 479 # Scanner Probe 44 | - 485 # Dreadnought 45 | - 494 # Deadspace Overseer's Structure 46 | - 495 # Deadspace Overseer's Sentry 47 | - 496 # Deadspace Overseer's Belongings 48 | - 513 # Freighter 49 | - 517 # Agents in Space 50 | - 520 # Storyline Frigate 51 | - 522 # Storyline Cruiser 52 | - 523 # Storyline Battleship 53 | - 527 # Storyline Mission Frigate 54 | - 533 # Storyline Mission Cruiser 55 | - 534 # Storyline Mission Battleship 56 | - 540 # Command Ship 57 | - 541 # Interdictor 58 | - 543 # Exhumer 59 | - 547 # Carrier 60 | - 548 # Interdiction Probe 61 | - 550 # Asteroid Angel Cartel Frigate 62 | - 551 # Asteroid Angel Cartel Cruiser 63 | - 552 # Asteroid Angel Cartel Battleship 64 | - 553 # Asteroid Angel Cartel Officer 65 | - 554 # Asteroid Angel Cartel Hauler 66 | - 555 # Asteroid Blood Raiders Cruiser 67 | - 556 # Asteroid Blood Raiders Battleship 68 | - 557 # Asteroid Blood Raiders Frigate 69 | - 558 # Asteroid Blood Raiders Hauler 70 | - 559 # Asteroid Blood Raiders Officer 71 | - 560 # Asteroid Guristas Battleship 72 | - 561 # Asteroid Guristas Cruiser 73 | - 562 # Asteroid Guristas Frigate 74 | - 563 # Asteroid Guristas Hauler 75 | - 564 # Asteroid Guristas Officer 76 | - 565 # Asteroid Sansha's Nation Battleship 77 | - 566 # Asteroid Sansha's Nation Cruiser 78 | - 567 # Asteroid Sansha's Nation Frigate 79 | - 568 # Asteroid Sansha's Nation Hauler 80 | - 569 # Asteroid Sansha's Nation Officer 81 | - 570 # Asteroid Serpentis Battleship 82 | - 571 # Asteroid Serpentis Cruiser 83 | - 572 # Asteroid Serpentis Frigate 84 | - 573 # Asteroid Serpentis Hauler 85 | - 574 # Asteroid Serpentis Officer 86 | - 575 # Asteroid Angel Cartel Destroyer 87 | - 576 # Asteroid Angel Cartel BattleCruiser 88 | - 577 # Asteroid Blood Raiders Destroyer 89 | - 578 # Asteroid Blood Raiders BattleCruiser 90 | - 579 # Asteroid Guristas Destroyer 91 | - 580 # Asteroid Guristas BattleCruiser 92 | - 581 # Asteroid Sansha's Nation Destroyer 93 | - 582 # Asteroid Sansha's Nation BattleCruiser 94 | - 583 # Asteroid Serpentis Destroyer 95 | - 584 # Asteroid Serpentis BattleCruiser 96 | - 593 # Deadspace Angel Cartel BattleCruiser 97 | - 594 # Deadspace Angel Cartel Battleship 98 | - 595 # Deadspace Angel Cartel Cruiser 99 | - 596 # Deadspace Angel Cartel Destroyer 100 | - 597 # Deadspace Angel Cartel Frigate 101 | - 602 # Deadspace Blood Raiders BattleCruiser 102 | - 603 # Deadspace Blood Raiders Battleship 103 | - 604 # Deadspace Blood Raiders Cruiser 104 | - 605 # Deadspace Blood Raiders Destroyer 105 | - 606 # Deadspace Blood Raiders Frigate 106 | - 611 # Deadspace Guristas BattleCruiser 107 | - 612 # Deadspace Guristas Battleship 108 | - 613 # Deadspace Guristas Cruiser 109 | - 614 # Deadspace Guristas Destroyer 110 | - 615 # Deadspace Guristas Frigate 111 | - 620 # Deadspace Sansha's Nation BattleCruiser 112 | - 621 # Deadspace Sansha's Nation Battleship 113 | - 622 # Deadspace Sansha's Nation Cruiser 114 | - 623 # Deadspace Sansha's Nation Destroyer 115 | - 624 # Deadspace Sansha's Nation Frigate 116 | - 629 # Deadspace Serpentis BattleCruiser 117 | - 630 # Deadspace Serpentis Battleship 118 | - 631 # Deadspace Serpentis Cruiser 119 | - 632 # Deadspace Serpentis Destroyer 120 | - 633 # Deadspace Serpentis Frigate 121 | - 649 # Freight Container 122 | - 659 # Supercarrier 123 | - 665 # Mission Amarr Empire Frigate 124 | - 666 # Mission Amarr Empire Battlecruiser 125 | - 667 # Mission Amarr Empire Battleship 126 | - 668 # Mission Amarr Empire Cruiser 127 | - 669 # Mission Amarr Empire Destroyer 128 | - 670 # Mission Amarr Empire Other 129 | - 671 # Mission Caldari State Frigate 130 | - 672 # Mission Caldari State Battlecruiser 131 | - 673 # Mission Caldari State Cruiser 132 | - 674 # Mission Caldari State Battleship 133 | - 675 # Mission Caldari State Other 134 | - 676 # Mission Caldari State Destroyer 135 | - 677 # Mission Gallente Federation Frigate 136 | - 678 # Mission Gallente Federation Cruiser 137 | - 679 # Mission Gallente Federation Destroyer 138 | - 680 # Mission Gallente Federation Battleship 139 | - 681 # Mission Gallente Federation Battlecruiser 140 | - 682 # Mission Gallente Federation Other 141 | - 683 # Mission Minmatar Republic Frigate 142 | - 684 # Mission Minmatar Republic Destroyer 143 | - 685 # Mission Minmatar Republic Battlecruiser 144 | - 686 # Mission Minmatar Republic Other 145 | - 687 # Mission Khanid Frigate 146 | - 688 # Mission Khanid Destroyer 147 | - 689 # Mission Khanid Cruiser 148 | - 690 # Mission Khanid Battlecruiser 149 | - 691 # Mission Khanid Battleship 150 | - 692 # Mission Khanid Other 151 | - 693 # Mission CONCORD Frigate 152 | - 694 # Mission CONCORD Destroyer 153 | - 695 # Mission CONCORD Cruiser 154 | - 696 # Mission CONCORD Battlecruiser 155 | - 697 # Mission CONCORD Battleship 156 | - 698 # Mission CONCORD Other 157 | - 699 # Mission Mordu Frigate 158 | - 700 # Mission Mordu Destroyer 159 | - 701 # Mission Mordu Cruiser 160 | - 702 # Mission Mordu Battlecruiser 161 | - 703 # Mission Mordu Battleship 162 | - 704 # Mission Mordu Other 163 | - 705 # Mission Minmatar Republic Cruiser 164 | - 706 # Mission Minmatar Republic Battleship 165 | - 715 # Destructible Agents In Space 166 | - 755 # Asteroid Rogue Drone BattleCruiser 167 | - 756 # Asteroid Rogue Drone Battleship 168 | - 757 # Asteroid Rogue Drone Cruiser 169 | - 758 # Asteroid Rogue Drone Destroyer 170 | - 759 # Asteroid Rogue Drone Frigate 171 | - 760 # Asteroid Rogue Drone Hauler 172 | - 761 # Asteroid Rogue Drone Swarm 173 | - 789 # Asteroid Angel Cartel Commander Frigate 174 | - 790 # Asteroid Angel Cartel Commander Cruiser 175 | - 791 # Asteroid Blood Raiders Commander Cruiser 176 | - 792 # Asteroid Blood Raiders Commander Frigate 177 | - 793 # Asteroid Angel Cartel Commander BattleCruiser 178 | - 794 # Asteroid Angel Cartel Commander Destroyer 179 | - 795 # Asteroid Blood Raiders Commander BattleCruiser 180 | - 796 # Asteroid Blood Raiders Commander Destroyer 181 | - 797 # Asteroid Guristas Commander BattleCruiser 182 | - 798 # Asteroid Guristas Commander Cruiser 183 | - 799 # Asteroid Guristas Commander Destroyer 184 | - 800 # Asteroid Guristas Commander Frigate 185 | - 801 # Deadspace Rogue Drone BattleCruiser 186 | - 802 # Deadspace Rogue Drone Battleship 187 | - 803 # Deadspace Rogue Drone Cruiser 188 | - 804 # Deadspace Rogue Drone Destroyer 189 | - 805 # Deadspace Rogue Drone Frigate 190 | - 806 # Deadspace Rogue Drone Swarm 191 | - 807 # Asteroid Sansha's Nation Commander BattleCruiser 192 | - 808 # Asteroid Sansha's Nation Commander Cruiser 193 | - 809 # Asteroid Sansha's Nation Commander Destroyer 194 | - 810 # Asteroid Sansha's Nation Commander Frigate 195 | - 811 # Asteroid Serpentis Commander BattleCruiser 196 | - 812 # Asteroid Serpentis Commander Cruiser 197 | - 813 # Asteroid Serpentis Commander Destroyer 198 | - 814 # Asteroid Serpentis Commander Frigate 199 | - 816 # Mission Generic Battleships 200 | - 817 # Mission Generic Cruisers 201 | - 818 # Mission Generic Frigates 202 | - 819 # Deadspace Overseer Frigate 203 | - 820 # Deadspace Overseer Cruiser 204 | - 821 # Deadspace Overseer Battleship 205 | - 822 # Mission Thukker Battlecruiser 206 | - 823 # Mission Thukker Battleship 207 | - 824 # Mission Thukker Cruiser 208 | - 825 # Mission Thukker Destroyer 209 | - 826 # Mission Thukker Frigate 210 | - 827 # Mission Thukker Other 211 | - 828 # Mission Generic Battle Cruisers 212 | - 829 # Mission Generic Destroyers 213 | - 830 # Covert Ops 214 | - 831 # Interceptor 215 | - 832 # Logistics 216 | - 833 # Force Recon Ship 217 | - 834 # Stealth Bomber 218 | - 843 # Asteroid Rogue Drone Commander BattleCruiser 219 | - 844 # Asteroid Rogue Drone Commander Battleship 220 | - 845 # Asteroid Rogue Drone Commander Cruiser 221 | - 846 # Asteroid Rogue Drone Commander Destroyer 222 | - 847 # Asteroid Rogue Drone Commander Frigate 223 | - 848 # Asteroid Angel Cartel Commander Battleship 224 | - 849 # Asteroid Blood Raiders Commander Battleship 225 | - 850 # Asteroid Guristas Commander Battleship 226 | - 851 # Asteroid Sansha's Nation Commander Battleship 227 | - 852 # Asteroid Serpentis Commander Battleship 228 | - 861 # Mission Fighter Drone 229 | - 863 # Bomb ECM 230 | - 864 # Bomb Energy 231 | - 865 # Mission Amarr Empire Carrier 232 | - 866 # Mission Caldari State Carrier 233 | - 867 # Mission Gallente Federation Carrier 234 | - 868 # Mission Minmatar Republic Carrier 235 | - 875 # Mission Faction Transports 236 | - 883 # Capital Industrial Ship 237 | - 893 # Electronic Attack Ship 238 | - 894 # Heavy Interdiction Cruiser 239 | - 898 # Black Ops 240 | - 900 # Marauder 241 | - 902 # Jump Freighter 242 | - 906 # Combat Recon Ship 243 | - 920 # Effect Beacon 244 | - 922 # Capture Point 245 | - 924 # Mission Faction Battleship 246 | - 927 # Mission Faction Haulers 247 | - 941 # Industrial Command Ship 248 | - 952 # Mission Container 249 | - 959 # Deadspace Sleeper Sleepless Sentinel 250 | - 960 # Deadspace Sleeper Awakened Sentinel 251 | - 961 # Deadspace Sleeper Emergent Sentinel 252 | - 963 # Strategic Cruiser 253 | - 982 # Deadspace Sleeper Sleepless Defender 254 | - 983 # Deadspace Sleeper Sleepless Patroller 255 | - 984 # Deadspace Sleeper Awakened Defender 256 | - 985 # Deadspace Sleeper Awakened Patroller 257 | - 986 # Deadspace Sleeper Emergent Defender 258 | - 987 # Deadspace Sleeper Emergent Patroller 259 | - 988 # Wormhole 260 | - 1006 # Mission Faction Cruiser 261 | - 1007 # Mission Faction Frigate 262 | - 1022 # Prototype Exploration Ship 263 | - 1051 # Incursion Sansha's Nation Industrial 264 | - 1052 # Incursion Sansha's Nation Capital 265 | - 1053 # Incursion Sansha's Nation Frigate 266 | - 1054 # Incursion Sansha's Nation Cruiser 267 | - 1056 # Incursion Sansha's Nation Battleship 268 | - 1166 # FW Minmatar Republic Frigate 269 | - 1167 # FW Caldari State Frigate 270 | - 1168 # FW Gallente Federation Frigate 271 | - 1169 # FW Amarr Empire Frigate 272 | - 1174 # Asteroid Rogue Drone Officer 273 | - 1175 # FW Amarr Empire Destroyer 274 | - 1176 # FW Caldari State Destroyer 275 | - 1177 # FW Gallente Federation Destroyer 276 | - 1178 # FW Minmatar Republic Destroyer 277 | - 1179 # FW Amarr Empire Cruiser 278 | - 1180 # FW Caldari State Cruiser 279 | - 1181 # FW Gallente Federation Cruiser 280 | - 1182 # FW Minmatar Republic Cruiser 281 | - 1183 # FW Amarr Empire Battlecruiser 282 | - 1184 # FW Caldari State Battlecruiser 283 | - 1185 # FW Gallente Federation Battlecruiser 284 | - 1186 # FW Minmatar Republic Battlecruiser 285 | - 1201 # Attack Battlecruiser 286 | - 1202 # Blockade Runner 287 | - 1207 # Scatter Container 288 | - 1246 # Mobile Depot 289 | - 1249 # Mobile Cyno Inhibitor 290 | - 1250 # Mobile Tractor Unit 291 | - 1252 # Ghost Sites Angel Cartel Cruiser 292 | - 1255 # Ghost Sites Blood Raiders Cruiser 293 | - 1259 # Ghost Sites Guristas Cruiser 294 | - 1262 # Ghost Sites Serpentis Cruiser 295 | - 1265 # Ghost Sites Sanshas Cruiser 296 | - 1273 # Encounter Surveillance System 297 | - 1275 # Mobile Scan Inhibitor 298 | - 1276 # Mobile Micro Jump Unit 299 | - 1283 # Expedition Frigate 300 | - 1285 # Asteroid Mordus Legion Commander Frigate 301 | - 1286 # Asteroid Mordus Legion Commander Cruiser 302 | - 1287 # Asteroid Mordus Legion Commander Battleship 303 | - 1288 # Ghost Sites Mordu's Legion 304 | - 1305 # Tactical Destroyer 305 | - 1307 # Roaming Sleepers Cruiser 306 | - 1310 # Drifter Battleship 307 | - 1316 # Entosis Command Node 308 | - 1402 # Amarr Navy Roaming Battleship 309 | - 1411 # Amarr Navy Roaming Cruiser 310 | - 1412 # Amarr Navy Roaming Capital 311 | - 1413 # Amarr Navy Roaming Logistics 312 | - 1414 # Amarr Navy Roaming Frigate 313 | - 1452 # Irregular Drone 314 | - 1453 # Irregular EW Drone 315 | - 1454 # Irregular Fighter 316 | - 1455 # Irregular Fighter Squadron 317 | - 1465 # Mission Generic Supercarrier 318 | - 1527 # Logistics Frigate 319 | - 1529 # Deadspace Sleeper Upgraded Avenger 320 | - 1530 # Drifter Response Battleship 321 | - 1534 # Command Destroyer 322 | - 1538 # Force Auxiliary 323 | - 1548 # Guided Bomb 324 | - 1566 # Irregular Shuttle 325 | - 1567 # Irregular Corvette 326 | - 1568 # Irregular Frigate 327 | - 1664 # Irregular Destroyer 328 | - 1665 # Irregular Cruiser 329 | - 1666 # Irregular Battlecruiser 330 | - 1667 # Irregular Battleship 331 | - 1681 # Asteroid Angel Cartel Dreadnought 332 | - 1682 # Asteroid Angel Cartel Titan 333 | - 1683 # Asteroid Blood Raider Dreadnought 334 | - 1684 # Asteroid Blood Raider Titan 335 | - 1685 # Asteroid Guristas Dreadnought 336 | - 1686 # Asteroid Guristas Titan 337 | - 1687 # Asteroid Sansha's Nation Dreadnought 338 | - 1688 # Asteroid Sansha's Nation Supercarrier 339 | - 1689 # Asteroid Serpentis Dreadnought 340 | - 1690 # Asteroid Serpentis Titan 341 | - 1691 # Asteroid Rogue Drone Carrier 342 | - 1692 # Asteroid Rogue Drone Supercarrier 343 | - 1704 # Super Weapon Beacon 344 | - 1720 # Roaming Serpentis Battleship 345 | - 1721 # Roaming Serpentis Cruiser 346 | - 1722 # Roaming Serpentis Frigate 347 | - 1724 # Irregular Dreadnought 348 | - 1725 # Irregular Force Auxiliary 349 | - 1726 # Irregular Carrier 350 | - 1727 # Roaming Angel Cartel Battleship 351 | - 1728 # Roaming Angel Cartel Cruiser 352 | - 1729 # Roaming Angel Cartel Frigate 353 | - 1731 # Irregular Super Carrier 354 | - 1734 # Roaming Blood Raider Frigate 355 | - 1735 # Roaming Blood Raider Cruiser 356 | - 1736 # Roaming Blood Raider Battlecruiser 357 | - 1737 # Roaming Blood Raider Battleship 358 | - 1759 # Irregular Titan 359 | - 1761 # Irregular Mining Frigate 360 | - 1762 # Irregular Mining Barge 361 | - 1764 # ♦ Mining Frigate 362 | - 1765 # ♦ Mining Barge 363 | - 1766 # ♦ Mining Exhumer 364 | - 1767 # ♦ Mining Hauler 365 | - 1768 # Seeker Scouts 366 | - 1788 # Hidden Zenith Drifters 367 | - 1789 # Hidden Zenith Amarr Battleship 368 | - 1790 # Hidden Zenith Amarr Cruiser 369 | - 1791 # Hidden Zenith Amarr Frigate 370 | - 1792 # Hidden Zenith Caldari Battleship 371 | - 1793 # Hidden Zenith Caldari Cruiser 372 | - 1794 # Hidden Zenith Caldari Frigate 373 | - 1795 # Hidden Zenith Gallente Battleship 374 | - 1796 # Hidden Zenith Gallente Cruiser 375 | - 1797 # Hidden Zenith Gallente Frigate 376 | - 1798 # Hidden Zenith Minmatar Battleship 377 | - 1799 # Hidden Zenith Minmatar Cruiser 378 | - 1800 # Hidden Zenith Minmatar Frigate 379 | - 1803 # ♦ Frigate 380 | - 1804 # Hidden Zenith Amarr Capital 381 | - 1805 # Hidden Zenith Caldari Capital 382 | - 1806 # Hidden Zenith Gallente Capital 383 | - 1807 # Hidden Zenith Minmatar Capital 384 | - 1813 # ♦ Cruiser 385 | - 1814 # ♦ Battleship 386 | - 1872 # Structure Entities 387 | - 1876 # ♦ Engineering Complex 388 | - 1878 # ♦ Titan 389 | - 1879 # ♦ Force Auxiliary 390 | - 1880 # ♦ Dreadnought 391 | - 1895 # Irregular Industrial 392 | - 1896 # ♦ Industrial Command 393 | - 1904 394 | - 1905 395 | - 1906 396 | - 1907 397 | - 1908 398 | - 1909 # ♦ Battlecruiser 399 | - 1910 400 | - 1915 # Moon Mining Beacon 401 | - 1924 # ♦ Stronghold 402 | - 1925 # Irregular Industrial Command Ship 403 | - 1926 # Irregular Freighter 404 | - 1927 # Irregular Structure 405 | - 1928 # Irregular Container 406 | - 1929 # Irregular - Unidentified 407 | - 1956 # Drifter Reinforcements 408 | - 1972 # Flag Cruiser 409 | - 1981 # Triglavian Support Pylons 410 | - 1982 # Abyssal Spaceship Entities 411 | - 1991 # Filament Trace 412 | - 1997 # Abyssal Drone Entities 413 | - 2001 # Citizen Ships 414 | - 2009 # Precursor Cache 415 | - 4028 # Triglavian Entities 416 | - 4034 # EDENCOM Entities 417 | - 4035 # Drifter Entities 418 | - 4036 # Sleeper Entities 419 | - 4037 # Rogue Drone Entities 420 | - 4053 # Irregular Capsule 421 | - 4070 # Exotic Artefact 422 | - 4073 # Temporary Collidable Structure 423 | - 4079 # Encounter Surveillance System 424 | - 4088 # Interdiction Burst Probes 425 | - 4093 # Mobile Cynosural Beacon 426 | - 4105 # Unidentified Entities 427 | - 4106 # AIR Entities I 428 | - 4107 # Mobile Observatory 429 | - 4128 # AIR Entities II 430 | - 4130 # Unidentified Entities II 431 | - 4431 # FW Amarr Empire Battleship 432 | - 4432 # FW Caldari State Battleship 433 | - 4433 # FW Gallente Federation Battleship 434 | - 4434 # FW Minmatar Republic Battleship 435 | - 4477 # FW Propaganda Broadcast Structure 436 | - 4494 # Control Point 437 | - 4499 # FW Listening Outpost 438 | - 4501 # Mission Generic Capsules 439 | - 4569 # Homefront Operations Enemy Frigate 440 | - 4570 # Homefront Operations Enemy Destroyer 441 | - 4571 # Homefront Operations Enemy Cruiser 442 | - 4572 # Homefront Operations Allied Dreadnought 443 | - 4573 # Homefront Operations Enemy Battlecruiser 444 | - 4574 # Homefront Operations Enemy Battleship 445 | - 4576 # Homefront Operations Structure 446 | - 4577 # Homefront Operations Hauler 447 | - 4594 # Lancer Dreadnought 448 | - 4636 # Pirate Entities 449 | - 4637 # Insurgency Roaming Pirates 450 | - 4638 # Insurgency Roaming Enforcers 451 | - 4647 # Insurgency Pirate Frigate 452 | - 4648 # Insurgency Pirate Destroyer 453 | - 4649 # Insurgency Pirate Cruiser 454 | - 4650 # Insurgency Pirate Battlecruiser 455 | - 4651 # Insurgency Pirate Battleship 456 | - 4652 # Insurgency Mordu Frigate 457 | - 4653 # Insurgency Mordu Destroyer 458 | - 4654 # Insurgency Mordu Cruiser 459 | - 4655 # Insurgency Mordu Battlecruiser 460 | - 4656 # Insurgency Mordu Battleship 461 | - 4673 # Insurgency Mining Ship 462 | - 4712 # Guided Entities 463 | - 4713 # Guidance Objectives 464 | - 4719 # Rift 465 | - 4737 # Homefront Operations Shuttle 466 | - 4771 # Homefront Operations Noncombatant 467 | - 4795 # Asteroid Angel Cartel Officer Cruiser 468 | - 4796 # Asteroid Angel Cartel Officer Frigate 469 | - 4797 # Asteroid Blood Raiders Officer Cruiser 470 | - 4798 # Asteroid Blood Raiders Officer Frigate 471 | - 4799 # Asteroid Guristas Officer Cruiser 472 | - 4800 # Asteroid Guristas Officer Frigate 473 | - 4801 # Asteroid Sansha's Nation Officer Cruiser 474 | - 4802 # Asteroid Sansha's Nation Officer Frigate 475 | - 4803 # Asteroid Serpentis Officer Cruiser 476 | - 4804 # Asteroid Serpentis Officer Frigate 477 | - 4810 # Mercenary Den 478 | - 4825 # Local Beacon 479 | - 4828 # Pirate Spawners 480 | -------------------------------------------------------------------------------- /parts/filter Main PVX (-npc).yaml: -------------------------------------------------------------------------------- 1 | - - '✱ Main: PVX (-npc)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 21 11 | - - groups 12 | - - 25 # Frigate 13 | - 26 # Cruiser 14 | - 27 # Battleship 15 | - 28 # Hauler 16 | - 29 # Capsule 17 | - 30 # Titan 18 | - 31 # Shuttle 19 | - 90 # Bomb 20 | - 237 # Corvette 21 | - 324 # Assault Frigate 22 | - 336 # Mobile Sentry Gun 23 | - 358 # Heavy Assault Cruiser 24 | - 361 # Mobile Warp Disruptor 25 | - 365 # Control Tower 26 | - 366 # Warp Gate 27 | - 380 # Deep Space Transport 28 | - 381 # Elite Battleship 29 | - 383 # Destructible Sentry Gun 30 | - 419 # Combat Battlecruiser 31 | - 420 # Destroyer 32 | - 463 # Mining Barge 33 | - 485 # Dreadnought 34 | - 513 # Freighter 35 | - 540 # Command Ship 36 | - 541 # Interdictor 37 | - 543 # Exhumer 38 | - 547 # Carrier 39 | - 548 # Interdiction Probe 40 | - 659 # Supercarrier 41 | - 830 # Covert Ops 42 | - 831 # Interceptor 43 | - 832 # Logistics 44 | - 833 # Force Recon Ship 45 | - 834 # Stealth Bomber 46 | - 863 # Bomb ECM 47 | - 864 # Bomb Energy 48 | - 883 # Capital Industrial Ship 49 | - 893 # Electronic Attack Ship 50 | - 894 # Heavy Interdiction Cruiser 51 | - 898 # Black Ops 52 | - 900 # Marauder 53 | - 902 # Jump Freighter 54 | - 906 # Combat Recon Ship 55 | - 922 # Capture Point 56 | - 941 # Industrial Command Ship 57 | - 963 # Strategic Cruiser 58 | - 988 # Wormhole 59 | - 1022 # Prototype Exploration Ship 60 | - 1201 # Attack Battlecruiser 61 | - 1202 # Blockade Runner 62 | - 1249 # Mobile Cyno Inhibitor 63 | - 1273 # Encounter Surveillance System 64 | - 1275 # Mobile Scan Inhibitor 65 | - 1276 # Mobile Micro Jump Unit 66 | - 1283 # Expedition Frigate 67 | - 1305 # Tactical Destroyer 68 | - 1316 # Entosis Command Node 69 | - 1527 # Logistics Frigate 70 | - 1534 # Command Destroyer 71 | - 1538 # Force Auxiliary 72 | - 1548 # Guided Bomb 73 | - 1972 # Flag Cruiser 74 | - 1991 # Filament Trace 75 | - 2001 # Citizen Ships 76 | - 4079 # Encounter Surveillance System 77 | - 4088 # Interdiction Burst Probes 78 | - 4093 # Mobile Cynosural Beacon 79 | - 4107 # Mobile Observatory 80 | - 4477 # FW Propaganda Broadcast Structure 81 | - 4494 # Control Point 82 | - 4499 # FW Listening Outpost 83 | - 4594 # Lancer Dreadnought 84 | - 4713 # Guidance Objectives 85 | - 4719 # Rift 86 | - 4810 # Mercenary Den 87 | -------------------------------------------------------------------------------- /parts/filter Main PVX.yaml: -------------------------------------------------------------------------------- 1 | - - '✱ Main: PVX' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - - groups 11 | - - 25 # Frigate 12 | - 26 # Cruiser 13 | - 27 # Battleship 14 | - 28 # Hauler 15 | - 29 # Capsule 16 | - 30 # Titan 17 | - 31 # Shuttle 18 | - 90 # Bomb 19 | - 185 # Pirate Drone 20 | - 237 # Corvette 21 | - 279 # LCO Drone 22 | - 286 # Minor Threat 23 | - 287 # Rogue Drone 24 | - 297 # Convoy 25 | - 298 # Convoy Drone 26 | - 324 # Assault Frigate 27 | - 336 # Mobile Sentry Gun 28 | - 337 # Mission Drone 29 | - 358 # Heavy Assault Cruiser 30 | - 361 # Mobile Warp Disruptor 31 | - 365 # Control Tower 32 | - 366 # Warp Gate 33 | - 380 # Deep Space Transport 34 | - 381 # Elite Battleship 35 | - 383 # Destructible Sentry Gun 36 | - 419 # Combat Battlecruiser 37 | - 420 # Destroyer 38 | - 435 # Deadspace Overseer 39 | - 463 # Mining Barge 40 | - 485 # Dreadnought 41 | - 494 # Deadspace Overseer's Structure 42 | - 513 # Freighter 43 | - 520 # Storyline Frigate 44 | - 522 # Storyline Cruiser 45 | - 523 # Storyline Battleship 46 | - 527 # Storyline Mission Frigate 47 | - 533 # Storyline Mission Cruiser 48 | - 534 # Storyline Mission Battleship 49 | - 540 # Command Ship 50 | - 541 # Interdictor 51 | - 543 # Exhumer 52 | - 547 # Carrier 53 | - 548 # Interdiction Probe 54 | - 550 # Asteroid Angel Cartel Frigate 55 | - 551 # Asteroid Angel Cartel Cruiser 56 | - 552 # Asteroid Angel Cartel Battleship 57 | - 553 # Asteroid Angel Cartel Officer 58 | - 554 # Asteroid Angel Cartel Hauler 59 | - 555 # Asteroid Blood Raiders Cruiser 60 | - 556 # Asteroid Blood Raiders Battleship 61 | - 557 # Asteroid Blood Raiders Frigate 62 | - 558 # Asteroid Blood Raiders Hauler 63 | - 559 # Asteroid Blood Raiders Officer 64 | - 560 # Asteroid Guristas Battleship 65 | - 561 # Asteroid Guristas Cruiser 66 | - 562 # Asteroid Guristas Frigate 67 | - 563 # Asteroid Guristas Hauler 68 | - 564 # Asteroid Guristas Officer 69 | - 565 # Asteroid Sansha's Nation Battleship 70 | - 566 # Asteroid Sansha's Nation Cruiser 71 | - 567 # Asteroid Sansha's Nation Frigate 72 | - 568 # Asteroid Sansha's Nation Hauler 73 | - 569 # Asteroid Sansha's Nation Officer 74 | - 570 # Asteroid Serpentis Battleship 75 | - 571 # Asteroid Serpentis Cruiser 76 | - 572 # Asteroid Serpentis Frigate 77 | - 573 # Asteroid Serpentis Hauler 78 | - 574 # Asteroid Serpentis Officer 79 | - 575 # Asteroid Angel Cartel Destroyer 80 | - 576 # Asteroid Angel Cartel BattleCruiser 81 | - 577 # Asteroid Blood Raiders Destroyer 82 | - 578 # Asteroid Blood Raiders BattleCruiser 83 | - 579 # Asteroid Guristas Destroyer 84 | - 580 # Asteroid Guristas BattleCruiser 85 | - 581 # Asteroid Sansha's Nation Destroyer 86 | - 582 # Asteroid Sansha's Nation BattleCruiser 87 | - 583 # Asteroid Serpentis Destroyer 88 | - 584 # Asteroid Serpentis BattleCruiser 89 | - 593 # Deadspace Angel Cartel BattleCruiser 90 | - 594 # Deadspace Angel Cartel Battleship 91 | - 595 # Deadspace Angel Cartel Cruiser 92 | - 596 # Deadspace Angel Cartel Destroyer 93 | - 597 # Deadspace Angel Cartel Frigate 94 | - 602 # Deadspace Blood Raiders BattleCruiser 95 | - 603 # Deadspace Blood Raiders Battleship 96 | - 604 # Deadspace Blood Raiders Cruiser 97 | - 605 # Deadspace Blood Raiders Destroyer 98 | - 606 # Deadspace Blood Raiders Frigate 99 | - 611 # Deadspace Guristas BattleCruiser 100 | - 612 # Deadspace Guristas Battleship 101 | - 613 # Deadspace Guristas Cruiser 102 | - 614 # Deadspace Guristas Destroyer 103 | - 615 # Deadspace Guristas Frigate 104 | - 620 # Deadspace Sansha's Nation BattleCruiser 105 | - 621 # Deadspace Sansha's Nation Battleship 106 | - 622 # Deadspace Sansha's Nation Cruiser 107 | - 623 # Deadspace Sansha's Nation Destroyer 108 | - 624 # Deadspace Sansha's Nation Frigate 109 | - 629 # Deadspace Serpentis BattleCruiser 110 | - 630 # Deadspace Serpentis Battleship 111 | - 631 # Deadspace Serpentis Cruiser 112 | - 632 # Deadspace Serpentis Destroyer 113 | - 633 # Deadspace Serpentis Frigate 114 | - 659 # Supercarrier 115 | - 665 # Mission Amarr Empire Frigate 116 | - 666 # Mission Amarr Empire Battlecruiser 117 | - 667 # Mission Amarr Empire Battleship 118 | - 668 # Mission Amarr Empire Cruiser 119 | - 669 # Mission Amarr Empire Destroyer 120 | - 670 # Mission Amarr Empire Other 121 | - 671 # Mission Caldari State Frigate 122 | - 672 # Mission Caldari State Battlecruiser 123 | - 673 # Mission Caldari State Cruiser 124 | - 674 # Mission Caldari State Battleship 125 | - 675 # Mission Caldari State Other 126 | - 676 # Mission Caldari State Destroyer 127 | - 677 # Mission Gallente Federation Frigate 128 | - 678 # Mission Gallente Federation Cruiser 129 | - 679 # Mission Gallente Federation Destroyer 130 | - 680 # Mission Gallente Federation Battleship 131 | - 681 # Mission Gallente Federation Battlecruiser 132 | - 682 # Mission Gallente Federation Other 133 | - 683 # Mission Minmatar Republic Frigate 134 | - 684 # Mission Minmatar Republic Destroyer 135 | - 685 # Mission Minmatar Republic Battlecruiser 136 | - 686 # Mission Minmatar Republic Other 137 | - 687 # Mission Khanid Frigate 138 | - 688 # Mission Khanid Destroyer 139 | - 689 # Mission Khanid Cruiser 140 | - 690 # Mission Khanid Battlecruiser 141 | - 691 # Mission Khanid Battleship 142 | - 692 # Mission Khanid Other 143 | - 693 # Mission CONCORD Frigate 144 | - 694 # Mission CONCORD Destroyer 145 | - 695 # Mission CONCORD Cruiser 146 | - 696 # Mission CONCORD Battlecruiser 147 | - 697 # Mission CONCORD Battleship 148 | - 698 # Mission CONCORD Other 149 | - 699 # Mission Mordu Frigate 150 | - 700 # Mission Mordu Destroyer 151 | - 701 # Mission Mordu Cruiser 152 | - 702 # Mission Mordu Battlecruiser 153 | - 703 # Mission Mordu Battleship 154 | - 704 # Mission Mordu Other 155 | - 705 # Mission Minmatar Republic Cruiser 156 | - 706 # Mission Minmatar Republic Battleship 157 | - 715 # Destructible Agents In Space 158 | - 755 # Asteroid Rogue Drone BattleCruiser 159 | - 756 # Asteroid Rogue Drone Battleship 160 | - 757 # Asteroid Rogue Drone Cruiser 161 | - 758 # Asteroid Rogue Drone Destroyer 162 | - 759 # Asteroid Rogue Drone Frigate 163 | - 760 # Asteroid Rogue Drone Hauler 164 | - 761 # Asteroid Rogue Drone Swarm 165 | - 789 # Asteroid Angel Cartel Commander Frigate 166 | - 790 # Asteroid Angel Cartel Commander Cruiser 167 | - 791 # Asteroid Blood Raiders Commander Cruiser 168 | - 792 # Asteroid Blood Raiders Commander Frigate 169 | - 793 # Asteroid Angel Cartel Commander BattleCruiser 170 | - 794 # Asteroid Angel Cartel Commander Destroyer 171 | - 795 # Asteroid Blood Raiders Commander BattleCruiser 172 | - 796 # Asteroid Blood Raiders Commander Destroyer 173 | - 797 # Asteroid Guristas Commander BattleCruiser 174 | - 798 # Asteroid Guristas Commander Cruiser 175 | - 799 # Asteroid Guristas Commander Destroyer 176 | - 800 # Asteroid Guristas Commander Frigate 177 | - 801 # Deadspace Rogue Drone BattleCruiser 178 | - 802 # Deadspace Rogue Drone Battleship 179 | - 803 # Deadspace Rogue Drone Cruiser 180 | - 804 # Deadspace Rogue Drone Destroyer 181 | - 805 # Deadspace Rogue Drone Frigate 182 | - 806 # Deadspace Rogue Drone Swarm 183 | - 807 # Asteroid Sansha's Nation Commander BattleCruiser 184 | - 808 # Asteroid Sansha's Nation Commander Cruiser 185 | - 809 # Asteroid Sansha's Nation Commander Destroyer 186 | - 810 # Asteroid Sansha's Nation Commander Frigate 187 | - 811 # Asteroid Serpentis Commander BattleCruiser 188 | - 812 # Asteroid Serpentis Commander Cruiser 189 | - 813 # Asteroid Serpentis Commander Destroyer 190 | - 814 # Asteroid Serpentis Commander Frigate 191 | - 816 # Mission Generic Battleships 192 | - 817 # Mission Generic Cruisers 193 | - 818 # Mission Generic Frigates 194 | - 819 # Deadspace Overseer Frigate 195 | - 820 # Deadspace Overseer Cruiser 196 | - 821 # Deadspace Overseer Battleship 197 | - 822 # Mission Thukker Battlecruiser 198 | - 823 # Mission Thukker Battleship 199 | - 824 # Mission Thukker Cruiser 200 | - 825 # Mission Thukker Destroyer 201 | - 826 # Mission Thukker Frigate 202 | - 827 # Mission Thukker Other 203 | - 828 # Mission Generic Battle Cruisers 204 | - 829 # Mission Generic Destroyers 205 | - 830 # Covert Ops 206 | - 831 # Interceptor 207 | - 832 # Logistics 208 | - 833 # Force Recon Ship 209 | - 834 # Stealth Bomber 210 | - 843 # Asteroid Rogue Drone Commander BattleCruiser 211 | - 844 # Asteroid Rogue Drone Commander Battleship 212 | - 845 # Asteroid Rogue Drone Commander Cruiser 213 | - 846 # Asteroid Rogue Drone Commander Destroyer 214 | - 847 # Asteroid Rogue Drone Commander Frigate 215 | - 848 # Asteroid Angel Cartel Commander Battleship 216 | - 849 # Asteroid Blood Raiders Commander Battleship 217 | - 850 # Asteroid Guristas Commander Battleship 218 | - 851 # Asteroid Sansha's Nation Commander Battleship 219 | - 852 # Asteroid Serpentis Commander Battleship 220 | - 861 # Mission Fighter Drone 221 | - 863 # Bomb ECM 222 | - 864 # Bomb Energy 223 | - 865 # Mission Amarr Empire Carrier 224 | - 866 # Mission Caldari State Carrier 225 | - 867 # Mission Gallente Federation Carrier 226 | - 868 # Mission Minmatar Republic Carrier 227 | - 875 # Mission Faction Transports 228 | - 883 # Capital Industrial Ship 229 | - 893 # Electronic Attack Ship 230 | - 894 # Heavy Interdiction Cruiser 231 | - 898 # Black Ops 232 | - 900 # Marauder 233 | - 902 # Jump Freighter 234 | - 906 # Combat Recon Ship 235 | - 922 # Capture Point 236 | - 924 # Mission Faction Battleship 237 | - 927 # Mission Faction Haulers 238 | - 941 # Industrial Command Ship 239 | - 959 # Deadspace Sleeper Sleepless Sentinel 240 | - 960 # Deadspace Sleeper Awakened Sentinel 241 | - 961 # Deadspace Sleeper Emergent Sentinel 242 | - 963 # Strategic Cruiser 243 | - 982 # Deadspace Sleeper Sleepless Defender 244 | - 983 # Deadspace Sleeper Sleepless Patroller 245 | - 984 # Deadspace Sleeper Awakened Defender 246 | - 985 # Deadspace Sleeper Awakened Patroller 247 | - 986 # Deadspace Sleeper Emergent Defender 248 | - 987 # Deadspace Sleeper Emergent Patroller 249 | - 988 # Wormhole 250 | - 1006 # Mission Faction Cruiser 251 | - 1007 # Mission Faction Frigate 252 | - 1022 # Prototype Exploration Ship 253 | - 1051 # Incursion Sansha's Nation Industrial 254 | - 1052 # Incursion Sansha's Nation Capital 255 | - 1053 # Incursion Sansha's Nation Frigate 256 | - 1054 # Incursion Sansha's Nation Cruiser 257 | - 1056 # Incursion Sansha's Nation Battleship 258 | - 1166 # FW Minmatar Republic Frigate 259 | - 1167 # FW Caldari State Frigate 260 | - 1168 # FW Gallente Federation Frigate 261 | - 1169 # FW Amarr Empire Frigate 262 | - 1174 # Asteroid Rogue Drone Officer 263 | - 1175 # FW Amarr Empire Destroyer 264 | - 1176 # FW Caldari State Destroyer 265 | - 1177 # FW Gallente Federation Destroyer 266 | - 1178 # FW Minmatar Republic Destroyer 267 | - 1179 # FW Amarr Empire Cruiser 268 | - 1180 # FW Caldari State Cruiser 269 | - 1181 # FW Gallente Federation Cruiser 270 | - 1182 # FW Minmatar Republic Cruiser 271 | - 1183 # FW Amarr Empire Battlecruiser 272 | - 1184 # FW Caldari State Battlecruiser 273 | - 1185 # FW Gallente Federation Battlecruiser 274 | - 1186 # FW Minmatar Republic Battlecruiser 275 | - 1201 # Attack Battlecruiser 276 | - 1202 # Blockade Runner 277 | - 1249 # Mobile Cyno Inhibitor 278 | - 1252 # Ghost Sites Angel Cartel Cruiser 279 | - 1255 # Ghost Sites Blood Raiders Cruiser 280 | - 1259 # Ghost Sites Guristas Cruiser 281 | - 1262 # Ghost Sites Serpentis Cruiser 282 | - 1265 # Ghost Sites Sanshas Cruiser 283 | - 1273 # Encounter Surveillance System 284 | - 1275 # Mobile Scan Inhibitor 285 | - 1276 # Mobile Micro Jump Unit 286 | - 1283 # Expedition Frigate 287 | - 1285 # Asteroid Mordus Legion Commander Frigate 288 | - 1286 # Asteroid Mordus Legion Commander Cruiser 289 | - 1287 # Asteroid Mordus Legion Commander Battleship 290 | - 1288 # Ghost Sites Mordu's Legion 291 | - 1305 # Tactical Destroyer 292 | - 1307 # Roaming Sleepers Cruiser 293 | - 1310 # Drifter Battleship 294 | - 1316 # Entosis Command Node 295 | - 1402 # Amarr Navy Roaming Battleship 296 | - 1411 # Amarr Navy Roaming Cruiser 297 | - 1412 # Amarr Navy Roaming Capital 298 | - 1413 # Amarr Navy Roaming Logistics 299 | - 1414 # Amarr Navy Roaming Frigate 300 | - 1452 # Irregular Drone 301 | - 1453 # Irregular EW Drone 302 | - 1454 # Irregular Fighter 303 | - 1455 # Irregular Fighter Squadron 304 | - 1465 # Mission Generic Supercarrier 305 | - 1527 # Logistics Frigate 306 | - 1529 # Deadspace Sleeper Upgraded Avenger 307 | - 1530 # Drifter Response Battleship 308 | - 1534 # Command Destroyer 309 | - 1538 # Force Auxiliary 310 | - 1548 # Guided Bomb 311 | - 1566 # Irregular Shuttle 312 | - 1567 # Irregular Corvette 313 | - 1568 # Irregular Frigate 314 | - 1664 # Irregular Destroyer 315 | - 1665 # Irregular Cruiser 316 | - 1666 # Irregular Battlecruiser 317 | - 1667 # Irregular Battleship 318 | - 1681 # Asteroid Angel Cartel Dreadnought 319 | - 1682 # Asteroid Angel Cartel Titan 320 | - 1683 # Asteroid Blood Raider Dreadnought 321 | - 1684 # Asteroid Blood Raider Titan 322 | - 1685 # Asteroid Guristas Dreadnought 323 | - 1686 # Asteroid Guristas Titan 324 | - 1687 # Asteroid Sansha's Nation Dreadnought 325 | - 1688 # Asteroid Sansha's Nation Supercarrier 326 | - 1689 # Asteroid Serpentis Dreadnought 327 | - 1690 # Asteroid Serpentis Titan 328 | - 1691 # Asteroid Rogue Drone Carrier 329 | - 1692 # Asteroid Rogue Drone Supercarrier 330 | - 1720 # Roaming Serpentis Battleship 331 | - 1721 # Roaming Serpentis Cruiser 332 | - 1722 # Roaming Serpentis Frigate 333 | - 1724 # Irregular Dreadnought 334 | - 1725 # Irregular Force Auxiliary 335 | - 1726 # Irregular Carrier 336 | - 1727 # Roaming Angel Cartel Battleship 337 | - 1728 # Roaming Angel Cartel Cruiser 338 | - 1729 # Roaming Angel Cartel Frigate 339 | - 1731 # Irregular Super Carrier 340 | - 1734 # Roaming Blood Raider Frigate 341 | - 1735 # Roaming Blood Raider Cruiser 342 | - 1736 # Roaming Blood Raider Battlecruiser 343 | - 1737 # Roaming Blood Raider Battleship 344 | - 1759 # Irregular Titan 345 | - 1761 # Irregular Mining Frigate 346 | - 1762 # Irregular Mining Barge 347 | - 1764 # ♦ Mining Frigate 348 | - 1765 # ♦ Mining Barge 349 | - 1766 # ♦ Mining Exhumer 350 | - 1767 # ♦ Mining Hauler 351 | - 1768 # Seeker Scouts 352 | - 1788 # Hidden Zenith Drifters 353 | - 1789 # Hidden Zenith Amarr Battleship 354 | - 1790 # Hidden Zenith Amarr Cruiser 355 | - 1791 # Hidden Zenith Amarr Frigate 356 | - 1792 # Hidden Zenith Caldari Battleship 357 | - 1793 # Hidden Zenith Caldari Cruiser 358 | - 1794 # Hidden Zenith Caldari Frigate 359 | - 1795 # Hidden Zenith Gallente Battleship 360 | - 1796 # Hidden Zenith Gallente Cruiser 361 | - 1797 # Hidden Zenith Gallente Frigate 362 | - 1798 # Hidden Zenith Minmatar Battleship 363 | - 1799 # Hidden Zenith Minmatar Cruiser 364 | - 1800 # Hidden Zenith Minmatar Frigate 365 | - 1803 # ♦ Frigate 366 | - 1804 # Hidden Zenith Amarr Capital 367 | - 1805 # Hidden Zenith Caldari Capital 368 | - 1806 # Hidden Zenith Gallente Capital 369 | - 1807 # Hidden Zenith Minmatar Capital 370 | - 1813 # ♦ Cruiser 371 | - 1814 # ♦ Battleship 372 | - 1872 # Structure Entities 373 | - 1876 # ♦ Engineering Complex 374 | - 1878 # ♦ Titan 375 | - 1879 # ♦ Force Auxiliary 376 | - 1880 # ♦ Dreadnought 377 | - 1895 # Irregular Industrial 378 | - 1896 # ♦ Industrial Command 379 | - 1904 380 | - 1905 381 | - 1906 382 | - 1907 383 | - 1908 384 | - 1909 # ♦ Battlecruiser 385 | - 1910 386 | - 1924 # ♦ Stronghold 387 | - 1925 # Irregular Industrial Command Ship 388 | - 1926 # Irregular Freighter 389 | - 1927 # Irregular Structure 390 | - 1929 # Irregular - Unidentified 391 | - 1956 # Drifter Reinforcements 392 | - 1972 # Flag Cruiser 393 | - 1982 # Abyssal Spaceship Entities 394 | - 1991 # Filament Trace 395 | - 1997 # Abyssal Drone Entities 396 | - 2001 # Citizen Ships 397 | - 2009 # Precursor Cache 398 | - 4028 # Triglavian Entities 399 | - 4034 # EDENCOM Entities 400 | - 4035 # Drifter Entities 401 | - 4036 # Sleeper Entities 402 | - 4037 # Rogue Drone Entities 403 | - 4053 # Irregular Capsule 404 | - 4079 # Encounter Surveillance System 405 | - 4088 # Interdiction Burst Probes 406 | - 4093 # Mobile Cynosural Beacon 407 | - 4105 # Unidentified Entities 408 | - 4106 # AIR Entities I 409 | - 4107 # Mobile Observatory 410 | - 4128 # AIR Entities II 411 | - 4130 # Unidentified Entities II 412 | - 4431 # FW Amarr Empire Battleship 413 | - 4432 # FW Caldari State Battleship 414 | - 4433 # FW Gallente Federation Battleship 415 | - 4434 # FW Minmatar Republic Battleship 416 | - 4477 # FW Propaganda Broadcast Structure 417 | - 4494 # Control Point 418 | - 4499 # FW Listening Outpost 419 | - 4501 # Mission Generic Capsules 420 | - 4569 # Homefront Operations Enemy Frigate 421 | - 4570 # Homefront Operations Enemy Destroyer 422 | - 4571 # Homefront Operations Enemy Cruiser 423 | - 4572 # Homefront Operations Allied Dreadnought 424 | - 4573 # Homefront Operations Enemy Battlecruiser 425 | - 4574 # Homefront Operations Enemy Battleship 426 | - 4576 # Homefront Operations Structure 427 | - 4577 # Homefront Operations Hauler 428 | - 4594 # Lancer Dreadnought 429 | - 4636 # Pirate Entities 430 | - 4637 # Insurgency Roaming Pirates 431 | - 4638 # Insurgency Roaming Enforcers 432 | - 4647 # Insurgency Pirate Frigate 433 | - 4648 # Insurgency Pirate Destroyer 434 | - 4649 # Insurgency Pirate Cruiser 435 | - 4650 # Insurgency Pirate Battlecruiser 436 | - 4651 # Insurgency Pirate Battleship 437 | - 4652 # Insurgency Mordu Frigate 438 | - 4653 # Insurgency Mordu Destroyer 439 | - 4654 # Insurgency Mordu Cruiser 440 | - 4655 # Insurgency Mordu Battlecruiser 441 | - 4656 # Insurgency Mordu Battleship 442 | - 4673 # Insurgency Mining Ship 443 | - 4712 # Guided Entities 444 | - 4713 # Guidance Objectives 445 | - 4719 # Rift 446 | - 4737 # Homefront Operations Shuttle 447 | - 4771 # Homefront Operations Noncombatant 448 | - 4795 # Asteroid Angel Cartel Officer Cruiser 449 | - 4796 # Asteroid Angel Cartel Officer Frigate 450 | - 4797 # Asteroid Blood Raiders Officer Cruiser 451 | - 4798 # Asteroid Blood Raiders Officer Frigate 452 | - 4799 # Asteroid Guristas Officer Cruiser 453 | - 4800 # Asteroid Guristas Officer Frigate 454 | - 4801 # Asteroid Sansha's Nation Officer Cruiser 455 | - 4802 # Asteroid Sansha's Nation Officer Frigate 456 | - 4803 # Asteroid Serpentis Officer Cruiser 457 | - 4804 # Asteroid Serpentis Officer Frigate 458 | - 4810 # Mercenary Den 459 | -------------------------------------------------------------------------------- /parts/filter Main System & PVX (-npc).yaml: -------------------------------------------------------------------------------- 1 | - - '✕ Main: System & PVX 2 | (-npc)' 3 | - - - alwaysShownStates 4 | - [] 5 | - - filteredStates 6 | - - 11 7 | - 12 8 | - 14 9 | - 15 10 | - 16 11 | - 37 12 | - - groups 13 | - - 6 # Sun 14 | - 10 # Stargate 15 | - 15 # Station 16 | - 25 # Frigate 17 | - 26 # Cruiser 18 | - 27 # Battleship 19 | - 28 # Hauler 20 | - 29 # Capsule 21 | - 30 # Titan 22 | - 31 # Shuttle 23 | - 90 # Bomb 24 | - 237 # Corvette 25 | - 310 # Beacon 26 | - 318 # Landmark 27 | - 324 # Assault Frigate 28 | - 336 # Mobile Sentry Gun 29 | - 358 # Heavy Assault Cruiser 30 | - 361 # Mobile Warp Disruptor 31 | - 365 # Control Tower 32 | - 366 # Warp Gate 33 | - 380 # Deep Space Transport 34 | - 381 # Elite Battleship 35 | - 383 # Destructible Sentry Gun 36 | - 419 # Combat Battlecruiser 37 | - 420 # Destroyer 38 | - 463 # Mining Barge 39 | - 485 # Dreadnought 40 | - 513 # Freighter 41 | - 540 # Command Ship 42 | - 541 # Interdictor 43 | - 543 # Exhumer 44 | - 547 # Carrier 45 | - 548 # Interdiction Probe 46 | - 659 # Supercarrier 47 | - 830 # Covert Ops 48 | - 831 # Interceptor 49 | - 832 # Logistics 50 | - 833 # Force Recon Ship 51 | - 834 # Stealth Bomber 52 | - 863 # Bomb ECM 53 | - 864 # Bomb Energy 54 | - 883 # Capital Industrial Ship 55 | - 893 # Electronic Attack Ship 56 | - 894 # Heavy Interdiction Cruiser 57 | - 897 # Covert Cynosural Field 58 | - 898 # Black Ops 59 | - 900 # Marauder 60 | - 902 # Jump Freighter 61 | - 906 # Combat Recon Ship 62 | - 922 # Capture Point 63 | - 925 # FW Infrastructure Hub 64 | - 941 # Industrial Command Ship 65 | - 963 # Strategic Cruiser 66 | - 988 # Wormhole 67 | - 1003 # Territorial Claim Unit 68 | - 1012 # Sovereignty Hub 69 | - 1022 # Prototype Exploration Ship 70 | - 1201 # Attack Battlecruiser 71 | - 1202 # Blockade Runner 72 | - 1249 # Mobile Cyno Inhibitor 73 | - 1273 # Encounter Surveillance System 74 | - 1275 # Mobile Scan Inhibitor 75 | - 1276 # Mobile Micro Jump Unit 76 | - 1283 # Expedition Frigate 77 | - 1305 # Tactical Destroyer 78 | - 1316 # Entosis Command Node 79 | - 1404 # Engineering Complex 80 | - 1406 # Refinery 81 | - 1408 # Upwell Jump Gate 82 | - 1527 # Logistics Frigate 83 | - 1534 # Command Destroyer 84 | - 1538 # Force Auxiliary 85 | - 1548 # Guided Bomb 86 | - 1657 # Citadel 87 | - 1704 # Super Weapon Beacon 88 | - 1876 # ♦ Engineering Complex 89 | - 1924 # ♦ Stronghold 90 | - 1972 # Flag Cruiser 91 | - 1991 # Filament Trace 92 | - 2001 # Citizen Ships 93 | - 2015 # Upwell Monument 94 | - 2016 # Upwell Cyno Jammer 95 | - 2017 # Upwell Cyno Beacon 96 | - 2020 # Cynosural Fields 97 | - 4033 # Destructible Effect Beacon 98 | - 4079 # Encounter Surveillance System 99 | - 4081 # Disrupted Gate 100 | - 4088 # Interdiction Burst Probes 101 | - 4093 # Mobile Cynosural Beacon 102 | - 4107 # Mobile Observatory 103 | - 4137 # Mobile Analysis Beacon 104 | - 4477 # FW Propaganda Broadcast Structure 105 | - 4494 # Control Point 106 | - 4499 # FW Listening Outpost 107 | - 4547 # Interstellar Shipcaster Beacon 108 | - 4548 # Shipcaster Beacon Constructor 109 | - 4549 # Interstellar Shipcaster 110 | - 4594 # Lancer Dreadnought 111 | - 4644 # Pirate Forward Operating Base 112 | - 4713 # Guidance Objectives 113 | - 4719 # Rift 114 | - 4744 # Upwell Moon Drill 115 | - 4810 # Mercenary Den 116 | - 4825 # Local Beacon 117 | -------------------------------------------------------------------------------- /parts/filter Ships Enemy All (hisec criminals).yaml: -------------------------------------------------------------------------------- 1 | - - '❖ Ships: Enemy All (hisec criminals)' 2 | - - - alwaysShownStates 3 | - - 9 4 | - 13 5 | - 44 6 | - 50 7 | - 51 8 | - - filteredStates 9 | - - 10 10 | - 11 11 | - 12 12 | - 14 13 | - 15 14 | - 16 15 | - 17 16 | - 18 17 | - 19 18 | - 20 19 | - 21 20 | - 36 21 | - 37 22 | - 45 23 | - 48 24 | - 49 25 | - 52 26 | - 53 27 | - 66 28 | - 68 29 | - - groups 30 | - - 25 # Frigate 31 | - 26 # Cruiser 32 | - 27 # Battleship 33 | - 28 # Hauler 34 | - 29 # Capsule 35 | - 30 # Titan 36 | - 31 # Shuttle 37 | - 237 # Corvette 38 | - 324 # Assault Frigate 39 | - 358 # Heavy Assault Cruiser 40 | - 380 # Deep Space Transport 41 | - 381 # Elite Battleship 42 | - 419 # Combat Battlecruiser 43 | - 420 # Destroyer 44 | - 463 # Mining Barge 45 | - 485 # Dreadnought 46 | - 513 # Freighter 47 | - 540 # Command Ship 48 | - 541 # Interdictor 49 | - 543 # Exhumer 50 | - 547 # Carrier 51 | - 659 # Supercarrier 52 | - 830 # Covert Ops 53 | - 831 # Interceptor 54 | - 832 # Logistics 55 | - 833 # Force Recon Ship 56 | - 834 # Stealth Bomber 57 | - 883 # Capital Industrial Ship 58 | - 893 # Electronic Attack Ship 59 | - 894 # Heavy Interdiction Cruiser 60 | - 898 # Black Ops 61 | - 900 # Marauder 62 | - 902 # Jump Freighter 63 | - 906 # Combat Recon Ship 64 | - 941 # Industrial Command Ship 65 | - 963 # Strategic Cruiser 66 | - 1022 # Prototype Exploration Ship 67 | - 1201 # Attack Battlecruiser 68 | - 1202 # Blockade Runner 69 | - 1283 # Expedition Frigate 70 | - 1305 # Tactical Destroyer 71 | - 1527 # Logistics Frigate 72 | - 1534 # Command Destroyer 73 | - 1538 # Force Auxiliary 74 | - 1972 # Flag Cruiser 75 | - 2001 # Citizen Ships 76 | - 4594 # Lancer Dreadnought 77 | -------------------------------------------------------------------------------- /parts/filter Ships Enemy All (red -capsules).yaml: -------------------------------------------------------------------------------- 1 | - - '❖ Ships: Enemy All (red -capsules)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 10 6 | - 11 7 | - 12 8 | - 14 9 | - 15 10 | - 16 11 | - 17 12 | - 20 13 | - 21 14 | - 36 15 | - 37 16 | - 45 17 | - 48 18 | - 49 19 | - 50 20 | - 51 21 | - 53 22 | - 66 23 | - 68 24 | - - groups 25 | - - 25 # Frigate 26 | - 26 # Cruiser 27 | - 27 # Battleship 28 | - 28 # Hauler 29 | - 30 # Titan 30 | - 31 # Shuttle 31 | - 237 # Corvette 32 | - 324 # Assault Frigate 33 | - 358 # Heavy Assault Cruiser 34 | - 380 # Deep Space Transport 35 | - 381 # Elite Battleship 36 | - 419 # Combat Battlecruiser 37 | - 420 # Destroyer 38 | - 463 # Mining Barge 39 | - 485 # Dreadnought 40 | - 513 # Freighter 41 | - 540 # Command Ship 42 | - 541 # Interdictor 43 | - 543 # Exhumer 44 | - 547 # Carrier 45 | - 659 # Supercarrier 46 | - 830 # Covert Ops 47 | - 831 # Interceptor 48 | - 832 # Logistics 49 | - 833 # Force Recon Ship 50 | - 834 # Stealth Bomber 51 | - 883 # Capital Industrial Ship 52 | - 893 # Electronic Attack Ship 53 | - 894 # Heavy Interdiction Cruiser 54 | - 898 # Black Ops 55 | - 900 # Marauder 56 | - 902 # Jump Freighter 57 | - 906 # Combat Recon Ship 58 | - 941 # Industrial Command Ship 59 | - 963 # Strategic Cruiser 60 | - 1022 # Prototype Exploration Ship 61 | - 1201 # Attack Battlecruiser 62 | - 1202 # Blockade Runner 63 | - 1283 # Expedition Frigate 64 | - 1305 # Tactical Destroyer 65 | - 1527 # Logistics Frigate 66 | - 1534 # Command Destroyer 67 | - 1538 # Force Auxiliary 68 | - 1972 # Flag Cruiser 69 | - 2001 # Citizen Ships 70 | - 4594 # Lancer Dreadnought 71 | -------------------------------------------------------------------------------- /parts/filter Ships Enemy All (red).yaml: -------------------------------------------------------------------------------- 1 | - - '❖ Ships: Enemy All (red)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 10 6 | - 11 7 | - 12 8 | - 14 9 | - 15 10 | - 16 11 | - 17 12 | - 20 13 | - 21 14 | - 36 15 | - 37 16 | - 45 17 | - 48 18 | - 49 19 | - 50 20 | - 51 21 | - 53 22 | - 66 23 | - 68 24 | - - groups 25 | - - 25 # Frigate 26 | - 26 # Cruiser 27 | - 27 # Battleship 28 | - 28 # Hauler 29 | - 29 # Capsule 30 | - 30 # Titan 31 | - 31 # Shuttle 32 | - 237 # Corvette 33 | - 324 # Assault Frigate 34 | - 358 # Heavy Assault Cruiser 35 | - 380 # Deep Space Transport 36 | - 381 # Elite Battleship 37 | - 419 # Combat Battlecruiser 38 | - 420 # Destroyer 39 | - 463 # Mining Barge 40 | - 485 # Dreadnought 41 | - 513 # Freighter 42 | - 540 # Command Ship 43 | - 541 # Interdictor 44 | - 543 # Exhumer 45 | - 547 # Carrier 46 | - 659 # Supercarrier 47 | - 830 # Covert Ops 48 | - 831 # Interceptor 49 | - 832 # Logistics 50 | - 833 # Force Recon Ship 51 | - 834 # Stealth Bomber 52 | - 883 # Capital Industrial Ship 53 | - 893 # Electronic Attack Ship 54 | - 894 # Heavy Interdiction Cruiser 55 | - 898 # Black Ops 56 | - 900 # Marauder 57 | - 902 # Jump Freighter 58 | - 906 # Combat Recon Ship 59 | - 941 # Industrial Command Ship 60 | - 963 # Strategic Cruiser 61 | - 1022 # Prototype Exploration Ship 62 | - 1201 # Attack Battlecruiser 63 | - 1202 # Blockade Runner 64 | - 1283 # Expedition Frigate 65 | - 1305 # Tactical Destroyer 66 | - 1527 # Logistics Frigate 67 | - 1534 # Command Destroyer 68 | - 1538 # Force Auxiliary 69 | - 1972 # Flag Cruiser 70 | - 2001 # Citizen Ships 71 | - 4594 # Lancer Dreadnought 72 | -------------------------------------------------------------------------------- /parts/filter Ships Enemy All (red+neutral -capsules).yaml: -------------------------------------------------------------------------------- 1 | - - '❖ Ships: Enemy All (red+neutral -capsules)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 21 11 | - - groups 12 | - - 25 # Frigate 13 | - 26 # Cruiser 14 | - 27 # Battleship 15 | - 28 # Hauler 16 | - 30 # Titan 17 | - 31 # Shuttle 18 | - 237 # Corvette 19 | - 324 # Assault Frigate 20 | - 358 # Heavy Assault Cruiser 21 | - 380 # Deep Space Transport 22 | - 381 # Elite Battleship 23 | - 419 # Combat Battlecruiser 24 | - 420 # Destroyer 25 | - 463 # Mining Barge 26 | - 485 # Dreadnought 27 | - 513 # Freighter 28 | - 540 # Command Ship 29 | - 541 # Interdictor 30 | - 543 # Exhumer 31 | - 547 # Carrier 32 | - 659 # Supercarrier 33 | - 830 # Covert Ops 34 | - 831 # Interceptor 35 | - 832 # Logistics 36 | - 833 # Force Recon Ship 37 | - 834 # Stealth Bomber 38 | - 883 # Capital Industrial Ship 39 | - 893 # Electronic Attack Ship 40 | - 894 # Heavy Interdiction Cruiser 41 | - 898 # Black Ops 42 | - 900 # Marauder 43 | - 902 # Jump Freighter 44 | - 906 # Combat Recon Ship 45 | - 941 # Industrial Command Ship 46 | - 963 # Strategic Cruiser 47 | - 1022 # Prototype Exploration Ship 48 | - 1201 # Attack Battlecruiser 49 | - 1202 # Blockade Runner 50 | - 1283 # Expedition Frigate 51 | - 1305 # Tactical Destroyer 52 | - 1527 # Logistics Frigate 53 | - 1534 # Command Destroyer 54 | - 1538 # Force Auxiliary 55 | - 1972 # Flag Cruiser 56 | - 2001 # Citizen Ships 57 | - 4594 # Lancer Dreadnought 58 | -------------------------------------------------------------------------------- /parts/filter Ships Enemy All (red+neutral).yaml: -------------------------------------------------------------------------------- 1 | - - '❖ Ships: Enemy All (red+neutral)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 21 11 | - - groups 12 | - - 25 # Frigate 13 | - 26 # Cruiser 14 | - 27 # Battleship 15 | - 28 # Hauler 16 | - 29 # Capsule 17 | - 30 # Titan 18 | - 31 # Shuttle 19 | - 237 # Corvette 20 | - 324 # Assault Frigate 21 | - 358 # Heavy Assault Cruiser 22 | - 380 # Deep Space Transport 23 | - 381 # Elite Battleship 24 | - 419 # Combat Battlecruiser 25 | - 420 # Destroyer 26 | - 463 # Mining Barge 27 | - 485 # Dreadnought 28 | - 513 # Freighter 29 | - 540 # Command Ship 30 | - 541 # Interdictor 31 | - 543 # Exhumer 32 | - 547 # Carrier 33 | - 659 # Supercarrier 34 | - 830 # Covert Ops 35 | - 831 # Interceptor 36 | - 832 # Logistics 37 | - 833 # Force Recon Ship 38 | - 834 # Stealth Bomber 39 | - 883 # Capital Industrial Ship 40 | - 893 # Electronic Attack Ship 41 | - 894 # Heavy Interdiction Cruiser 42 | - 898 # Black Ops 43 | - 900 # Marauder 44 | - 902 # Jump Freighter 45 | - 906 # Combat Recon Ship 46 | - 941 # Industrial Command Ship 47 | - 963 # Strategic Cruiser 48 | - 1022 # Prototype Exploration Ship 49 | - 1201 # Attack Battlecruiser 50 | - 1202 # Blockade Runner 51 | - 1283 # Expedition Frigate 52 | - 1305 # Tactical Destroyer 53 | - 1527 # Logistics Frigate 54 | - 1534 # Command Destroyer 55 | - 1538 # Force Auxiliary 56 | - 1972 # Flag Cruiser 57 | - 2001 # Citizen Ships 58 | - 4594 # Lancer Dreadnought 59 | -------------------------------------------------------------------------------- /parts/filter Ships Enemy All (war targets).yaml: -------------------------------------------------------------------------------- 1 | - - '❖ Ships: Enemy All (war targets)' 2 | - - - alwaysShownStates 3 | - - 13 4 | - 44 5 | - - filteredStates 6 | - - 9 7 | - 10 8 | - 11 9 | - 12 10 | - 14 11 | - 15 12 | - 16 13 | - 17 14 | - 18 15 | - 19 16 | - 20 17 | - 21 18 | - 36 19 | - 37 20 | - 45 21 | - 48 22 | - 49 23 | - 50 24 | - 51 25 | - 52 26 | - 53 27 | - 66 28 | - 68 29 | - - groups 30 | - - 25 # Frigate 31 | - 26 # Cruiser 32 | - 27 # Battleship 33 | - 28 # Hauler 34 | - 29 # Capsule 35 | - 30 # Titan 36 | - 31 # Shuttle 37 | - 237 # Corvette 38 | - 324 # Assault Frigate 39 | - 358 # Heavy Assault Cruiser 40 | - 380 # Deep Space Transport 41 | - 381 # Elite Battleship 42 | - 419 # Combat Battlecruiser 43 | - 420 # Destroyer 44 | - 463 # Mining Barge 45 | - 485 # Dreadnought 46 | - 513 # Freighter 47 | - 540 # Command Ship 48 | - 541 # Interdictor 49 | - 543 # Exhumer 50 | - 547 # Carrier 51 | - 659 # Supercarrier 52 | - 830 # Covert Ops 53 | - 831 # Interceptor 54 | - 832 # Logistics 55 | - 833 # Force Recon Ship 56 | - 834 # Stealth Bomber 57 | - 883 # Capital Industrial Ship 58 | - 893 # Electronic Attack Ship 59 | - 894 # Heavy Interdiction Cruiser 60 | - 898 # Black Ops 61 | - 900 # Marauder 62 | - 902 # Jump Freighter 63 | - 906 # Combat Recon Ship 64 | - 941 # Industrial Command Ship 65 | - 963 # Strategic Cruiser 66 | - 1022 # Prototype Exploration Ship 67 | - 1201 # Attack Battlecruiser 68 | - 1202 # Blockade Runner 69 | - 1283 # Expedition Frigate 70 | - 1305 # Tactical Destroyer 71 | - 1527 # Logistics Frigate 72 | - 1534 # Command Destroyer 73 | - 1538 # Force Auxiliary 74 | - 1972 # Flag Cruiser 75 | - 2001 # Citizen Ships 76 | - 4594 # Lancer Dreadnought 77 | -------------------------------------------------------------------------------- /parts/filter Ships Enemy Capitals (red+neutral).yaml: -------------------------------------------------------------------------------- 1 | - - '❖ Ships: Enemy Capitals (red+neutral)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 21 11 | - - groups 12 | - - 30 # Titan 13 | - 485 # Dreadnought 14 | - 513 # Freighter 15 | - 547 # Carrier 16 | - 659 # Supercarrier 17 | - 883 # Capital Industrial Ship 18 | - 902 # Jump Freighter 19 | - 1538 # Force Auxiliary 20 | - 4594 # Lancer Dreadnought 21 | -------------------------------------------------------------------------------- /parts/filter Ships Enemy Logi (red+neutral).yaml: -------------------------------------------------------------------------------- 1 | - - '❖ Ships: Enemy Logi (red+neutral)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 21 11 | - - groups 12 | - - 832 # Logistics 13 | - 1527 # Logistics Frigate 14 | - 1538 # Force Auxiliary 15 | -------------------------------------------------------------------------------- /parts/filter Ships Enemy Utility (red+neutral).yaml: -------------------------------------------------------------------------------- 1 | - - '❖ Ships: Enemy Utility (red+neutral)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 21 11 | - - groups 12 | - - 540 # Command Ship 13 | - 541 # Interdictor 14 | - 894 # Heavy Interdiction Cruiser 15 | - 1534 # Command Destroyer 16 | -------------------------------------------------------------------------------- /parts/filter Ships Fleet.yaml: -------------------------------------------------------------------------------- 1 | - - '❖ Ships: Fleet' 2 | - - - alwaysShownStates 3 | - - 11 4 | - - filteredStates 5 | - - 9 6 | - 10 7 | - 12 8 | - 13 9 | - 14 10 | - 15 11 | - 16 12 | - 17 13 | - 18 14 | - 19 15 | - 20 16 | - 21 17 | - 36 18 | - 37 19 | - 44 20 | - 45 21 | - 48 22 | - 49 23 | - 50 24 | - 51 25 | - 52 26 | - 53 27 | - 66 28 | - 68 29 | - - groups 30 | - - 25 # Frigate 31 | - 26 # Cruiser 32 | - 27 # Battleship 33 | - 28 # Hauler 34 | - 29 # Capsule 35 | - 30 # Titan 36 | - 31 # Shuttle 37 | - 237 # Corvette 38 | - 324 # Assault Frigate 39 | - 358 # Heavy Assault Cruiser 40 | - 380 # Deep Space Transport 41 | - 381 # Elite Battleship 42 | - 419 # Combat Battlecruiser 43 | - 420 # Destroyer 44 | - 463 # Mining Barge 45 | - 485 # Dreadnought 46 | - 513 # Freighter 47 | - 540 # Command Ship 48 | - 541 # Interdictor 49 | - 543 # Exhumer 50 | - 547 # Carrier 51 | - 659 # Supercarrier 52 | - 830 # Covert Ops 53 | - 831 # Interceptor 54 | - 832 # Logistics 55 | - 833 # Force Recon Ship 56 | - 834 # Stealth Bomber 57 | - 883 # Capital Industrial Ship 58 | - 893 # Electronic Attack Ship 59 | - 894 # Heavy Interdiction Cruiser 60 | - 898 # Black Ops 61 | - 900 # Marauder 62 | - 902 # Jump Freighter 63 | - 906 # Combat Recon Ship 64 | - 941 # Industrial Command Ship 65 | - 963 # Strategic Cruiser 66 | - 1022 # Prototype Exploration Ship 67 | - 1201 # Attack Battlecruiser 68 | - 1202 # Blockade Runner 69 | - 1283 # Expedition Frigate 70 | - 1305 # Tactical Destroyer 71 | - 1527 # Logistics Frigate 72 | - 1534 # Command Destroyer 73 | - 1538 # Force Auxiliary 74 | - 1972 # Flag Cruiser 75 | - 2001 # Citizen Ships 76 | - 4594 # Lancer Dreadnought 77 | -------------------------------------------------------------------------------- /parts/filter Ships Friendly.yaml: -------------------------------------------------------------------------------- 1 | - - '❖ Ships: Friendly' 2 | - - - alwaysShownStates 3 | - - 11 4 | - 12 5 | - 14 6 | - 15 7 | - 16 8 | - 45 9 | - 49 10 | - - filteredStates 11 | - - 9 12 | - 10 13 | - 13 14 | - 17 15 | - 18 16 | - 19 17 | - 20 18 | - 21 19 | - 36 20 | - 37 21 | - 44 22 | - 48 23 | - 50 24 | - 51 25 | - 52 26 | - 53 27 | - 66 28 | - 68 29 | - - groups 30 | - - 25 # Frigate 31 | - 26 # Cruiser 32 | - 27 # Battleship 33 | - 28 # Hauler 34 | - 29 # Capsule 35 | - 30 # Titan 36 | - 31 # Shuttle 37 | - 237 # Corvette 38 | - 324 # Assault Frigate 39 | - 358 # Heavy Assault Cruiser 40 | - 380 # Deep Space Transport 41 | - 381 # Elite Battleship 42 | - 419 # Combat Battlecruiser 43 | - 420 # Destroyer 44 | - 463 # Mining Barge 45 | - 485 # Dreadnought 46 | - 513 # Freighter 47 | - 540 # Command Ship 48 | - 541 # Interdictor 49 | - 543 # Exhumer 50 | - 547 # Carrier 51 | - 659 # Supercarrier 52 | - 830 # Covert Ops 53 | - 831 # Interceptor 54 | - 832 # Logistics 55 | - 833 # Force Recon Ship 56 | - 834 # Stealth Bomber 57 | - 883 # Capital Industrial Ship 58 | - 893 # Electronic Attack Ship 59 | - 894 # Heavy Interdiction Cruiser 60 | - 898 # Black Ops 61 | - 900 # Marauder 62 | - 902 # Jump Freighter 63 | - 906 # Combat Recon Ship 64 | - 941 # Industrial Command Ship 65 | - 963 # Strategic Cruiser 66 | - 1022 # Prototype Exploration Ship 67 | - 1201 # Attack Battlecruiser 68 | - 1202 # Blockade Runner 69 | - 1283 # Expedition Frigate 70 | - 1305 # Tactical Destroyer 71 | - 1527 # Logistics Frigate 72 | - 1534 # Command Destroyer 73 | - 1538 # Force Auxiliary 74 | - 1972 # Flag Cruiser 75 | - 2001 # Citizen Ships 76 | - 4594 # Lancer Dreadnought 77 | -------------------------------------------------------------------------------- /parts/filter Ships NPCs (+turrets).yaml: -------------------------------------------------------------------------------- 1 | - - '❖ Ships: NPCs (+turrets)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - - groups 11 | - - 99 # Sentry Gun 12 | - 180 # Protective Sentry Gun 13 | - 182 # Police Drone 14 | - 185 # Pirate Drone 15 | - 279 # LCO Drone 16 | - 286 # Minor Threat 17 | - 287 # Rogue Drone 18 | - 288 # Faction Drone 19 | - 297 # Convoy 20 | - 298 # Convoy Drone 21 | - 301 # Concord Drone 22 | - 337 # Mission Drone 23 | - 383 # Destructible Sentry Gun 24 | - 435 # Deadspace Overseer 25 | - 446 # Customs Official 26 | - 494 # Deadspace Overseer's Structure 27 | - 495 # Deadspace Overseer's Sentry 28 | - 520 # Storyline Frigate 29 | - 522 # Storyline Cruiser 30 | - 523 # Storyline Battleship 31 | - 527 # Storyline Mission Frigate 32 | - 533 # Storyline Mission Cruiser 33 | - 534 # Storyline Mission Battleship 34 | - 550 # Asteroid Angel Cartel Frigate 35 | - 551 # Asteroid Angel Cartel Cruiser 36 | - 552 # Asteroid Angel Cartel Battleship 37 | - 553 # Asteroid Angel Cartel Officer 38 | - 554 # Asteroid Angel Cartel Hauler 39 | - 555 # Asteroid Blood Raiders Cruiser 40 | - 556 # Asteroid Blood Raiders Battleship 41 | - 557 # Asteroid Blood Raiders Frigate 42 | - 558 # Asteroid Blood Raiders Hauler 43 | - 559 # Asteroid Blood Raiders Officer 44 | - 560 # Asteroid Guristas Battleship 45 | - 561 # Asteroid Guristas Cruiser 46 | - 562 # Asteroid Guristas Frigate 47 | - 563 # Asteroid Guristas Hauler 48 | - 564 # Asteroid Guristas Officer 49 | - 565 # Asteroid Sansha's Nation Battleship 50 | - 566 # Asteroid Sansha's Nation Cruiser 51 | - 567 # Asteroid Sansha's Nation Frigate 52 | - 568 # Asteroid Sansha's Nation Hauler 53 | - 569 # Asteroid Sansha's Nation Officer 54 | - 570 # Asteroid Serpentis Battleship 55 | - 571 # Asteroid Serpentis Cruiser 56 | - 572 # Asteroid Serpentis Frigate 57 | - 573 # Asteroid Serpentis Hauler 58 | - 574 # Asteroid Serpentis Officer 59 | - 575 # Asteroid Angel Cartel Destroyer 60 | - 576 # Asteroid Angel Cartel BattleCruiser 61 | - 577 # Asteroid Blood Raiders Destroyer 62 | - 578 # Asteroid Blood Raiders BattleCruiser 63 | - 579 # Asteroid Guristas Destroyer 64 | - 580 # Asteroid Guristas BattleCruiser 65 | - 581 # Asteroid Sansha's Nation Destroyer 66 | - 582 # Asteroid Sansha's Nation BattleCruiser 67 | - 583 # Asteroid Serpentis Destroyer 68 | - 584 # Asteroid Serpentis BattleCruiser 69 | - 593 # Deadspace Angel Cartel BattleCruiser 70 | - 594 # Deadspace Angel Cartel Battleship 71 | - 595 # Deadspace Angel Cartel Cruiser 72 | - 596 # Deadspace Angel Cartel Destroyer 73 | - 597 # Deadspace Angel Cartel Frigate 74 | - 602 # Deadspace Blood Raiders BattleCruiser 75 | - 603 # Deadspace Blood Raiders Battleship 76 | - 604 # Deadspace Blood Raiders Cruiser 77 | - 605 # Deadspace Blood Raiders Destroyer 78 | - 606 # Deadspace Blood Raiders Frigate 79 | - 611 # Deadspace Guristas BattleCruiser 80 | - 612 # Deadspace Guristas Battleship 81 | - 613 # Deadspace Guristas Cruiser 82 | - 614 # Deadspace Guristas Destroyer 83 | - 615 # Deadspace Guristas Frigate 84 | - 620 # Deadspace Sansha's Nation BattleCruiser 85 | - 621 # Deadspace Sansha's Nation Battleship 86 | - 622 # Deadspace Sansha's Nation Cruiser 87 | - 623 # Deadspace Sansha's Nation Destroyer 88 | - 624 # Deadspace Sansha's Nation Frigate 89 | - 629 # Deadspace Serpentis BattleCruiser 90 | - 630 # Deadspace Serpentis Battleship 91 | - 631 # Deadspace Serpentis Cruiser 92 | - 632 # Deadspace Serpentis Destroyer 93 | - 633 # Deadspace Serpentis Frigate 94 | - 665 # Mission Amarr Empire Frigate 95 | - 666 # Mission Amarr Empire Battlecruiser 96 | - 667 # Mission Amarr Empire Battleship 97 | - 668 # Mission Amarr Empire Cruiser 98 | - 669 # Mission Amarr Empire Destroyer 99 | - 670 # Mission Amarr Empire Other 100 | - 671 # Mission Caldari State Frigate 101 | - 672 # Mission Caldari State Battlecruiser 102 | - 673 # Mission Caldari State Cruiser 103 | - 674 # Mission Caldari State Battleship 104 | - 675 # Mission Caldari State Other 105 | - 676 # Mission Caldari State Destroyer 106 | - 677 # Mission Gallente Federation Frigate 107 | - 678 # Mission Gallente Federation Cruiser 108 | - 679 # Mission Gallente Federation Destroyer 109 | - 680 # Mission Gallente Federation Battleship 110 | - 681 # Mission Gallente Federation Battlecruiser 111 | - 682 # Mission Gallente Federation Other 112 | - 683 # Mission Minmatar Republic Frigate 113 | - 684 # Mission Minmatar Republic Destroyer 114 | - 685 # Mission Minmatar Republic Battlecruiser 115 | - 686 # Mission Minmatar Republic Other 116 | - 687 # Mission Khanid Frigate 117 | - 688 # Mission Khanid Destroyer 118 | - 689 # Mission Khanid Cruiser 119 | - 690 # Mission Khanid Battlecruiser 120 | - 691 # Mission Khanid Battleship 121 | - 692 # Mission Khanid Other 122 | - 693 # Mission CONCORD Frigate 123 | - 694 # Mission CONCORD Destroyer 124 | - 695 # Mission CONCORD Cruiser 125 | - 696 # Mission CONCORD Battlecruiser 126 | - 697 # Mission CONCORD Battleship 127 | - 698 # Mission CONCORD Other 128 | - 699 # Mission Mordu Frigate 129 | - 700 # Mission Mordu Destroyer 130 | - 701 # Mission Mordu Cruiser 131 | - 702 # Mission Mordu Battlecruiser 132 | - 703 # Mission Mordu Battleship 133 | - 704 # Mission Mordu Other 134 | - 705 # Mission Minmatar Republic Cruiser 135 | - 706 # Mission Minmatar Republic Battleship 136 | - 715 # Destructible Agents In Space 137 | - 755 # Asteroid Rogue Drone BattleCruiser 138 | - 756 # Asteroid Rogue Drone Battleship 139 | - 757 # Asteroid Rogue Drone Cruiser 140 | - 758 # Asteroid Rogue Drone Destroyer 141 | - 759 # Asteroid Rogue Drone Frigate 142 | - 760 # Asteroid Rogue Drone Hauler 143 | - 761 # Asteroid Rogue Drone Swarm 144 | - 789 # Asteroid Angel Cartel Commander Frigate 145 | - 790 # Asteroid Angel Cartel Commander Cruiser 146 | - 791 # Asteroid Blood Raiders Commander Cruiser 147 | - 792 # Asteroid Blood Raiders Commander Frigate 148 | - 793 # Asteroid Angel Cartel Commander BattleCruiser 149 | - 794 # Asteroid Angel Cartel Commander Destroyer 150 | - 795 # Asteroid Blood Raiders Commander BattleCruiser 151 | - 796 # Asteroid Blood Raiders Commander Destroyer 152 | - 797 # Asteroid Guristas Commander BattleCruiser 153 | - 798 # Asteroid Guristas Commander Cruiser 154 | - 799 # Asteroid Guristas Commander Destroyer 155 | - 800 # Asteroid Guristas Commander Frigate 156 | - 801 # Deadspace Rogue Drone BattleCruiser 157 | - 802 # Deadspace Rogue Drone Battleship 158 | - 803 # Deadspace Rogue Drone Cruiser 159 | - 804 # Deadspace Rogue Drone Destroyer 160 | - 805 # Deadspace Rogue Drone Frigate 161 | - 806 # Deadspace Rogue Drone Swarm 162 | - 807 # Asteroid Sansha's Nation Commander BattleCruiser 163 | - 808 # Asteroid Sansha's Nation Commander Cruiser 164 | - 809 # Asteroid Sansha's Nation Commander Destroyer 165 | - 810 # Asteroid Sansha's Nation Commander Frigate 166 | - 811 # Asteroid Serpentis Commander BattleCruiser 167 | - 812 # Asteroid Serpentis Commander Cruiser 168 | - 813 # Asteroid Serpentis Commander Destroyer 169 | - 814 # Asteroid Serpentis Commander Frigate 170 | - 816 # Mission Generic Battleships 171 | - 817 # Mission Generic Cruisers 172 | - 818 # Mission Generic Frigates 173 | - 819 # Deadspace Overseer Frigate 174 | - 820 # Deadspace Overseer Cruiser 175 | - 821 # Deadspace Overseer Battleship 176 | - 822 # Mission Thukker Battlecruiser 177 | - 823 # Mission Thukker Battleship 178 | - 824 # Mission Thukker Cruiser 179 | - 825 # Mission Thukker Destroyer 180 | - 826 # Mission Thukker Frigate 181 | - 827 # Mission Thukker Other 182 | - 828 # Mission Generic Battle Cruisers 183 | - 829 # Mission Generic Destroyers 184 | - 843 # Asteroid Rogue Drone Commander BattleCruiser 185 | - 844 # Asteroid Rogue Drone Commander Battleship 186 | - 845 # Asteroid Rogue Drone Commander Cruiser 187 | - 846 # Asteroid Rogue Drone Commander Destroyer 188 | - 847 # Asteroid Rogue Drone Commander Frigate 189 | - 848 # Asteroid Angel Cartel Commander Battleship 190 | - 849 # Asteroid Blood Raiders Commander Battleship 191 | - 850 # Asteroid Guristas Commander Battleship 192 | - 851 # Asteroid Sansha's Nation Commander Battleship 193 | - 852 # Asteroid Serpentis Commander Battleship 194 | - 861 # Mission Fighter Drone 195 | - 865 # Mission Amarr Empire Carrier 196 | - 866 # Mission Caldari State Carrier 197 | - 867 # Mission Gallente Federation Carrier 198 | - 868 # Mission Minmatar Republic Carrier 199 | - 875 # Mission Faction Transports 200 | - 922 # Capture Point 201 | - 924 # Mission Faction Battleship 202 | - 927 # Mission Faction Haulers 203 | - 959 # Deadspace Sleeper Sleepless Sentinel 204 | - 960 # Deadspace Sleeper Awakened Sentinel 205 | - 961 # Deadspace Sleeper Emergent Sentinel 206 | - 982 # Deadspace Sleeper Sleepless Defender 207 | - 983 # Deadspace Sleeper Sleepless Patroller 208 | - 984 # Deadspace Sleeper Awakened Defender 209 | - 985 # Deadspace Sleeper Awakened Patroller 210 | - 986 # Deadspace Sleeper Emergent Defender 211 | - 987 # Deadspace Sleeper Emergent Patroller 212 | - 1006 # Mission Faction Cruiser 213 | - 1007 # Mission Faction Frigate 214 | - 1051 # Incursion Sansha's Nation Industrial 215 | - 1052 # Incursion Sansha's Nation Capital 216 | - 1053 # Incursion Sansha's Nation Frigate 217 | - 1054 # Incursion Sansha's Nation Cruiser 218 | - 1056 # Incursion Sansha's Nation Battleship 219 | - 1166 # FW Minmatar Republic Frigate 220 | - 1167 # FW Caldari State Frigate 221 | - 1168 # FW Gallente Federation Frigate 222 | - 1169 # FW Amarr Empire Frigate 223 | - 1174 # Asteroid Rogue Drone Officer 224 | - 1175 # FW Amarr Empire Destroyer 225 | - 1176 # FW Caldari State Destroyer 226 | - 1177 # FW Gallente Federation Destroyer 227 | - 1178 # FW Minmatar Republic Destroyer 228 | - 1179 # FW Amarr Empire Cruiser 229 | - 1180 # FW Caldari State Cruiser 230 | - 1181 # FW Gallente Federation Cruiser 231 | - 1182 # FW Minmatar Republic Cruiser 232 | - 1183 # FW Amarr Empire Battlecruiser 233 | - 1184 # FW Caldari State Battlecruiser 234 | - 1185 # FW Gallente Federation Battlecruiser 235 | - 1186 # FW Minmatar Republic Battlecruiser 236 | - 1252 # Ghost Sites Angel Cartel Cruiser 237 | - 1255 # Ghost Sites Blood Raiders Cruiser 238 | - 1259 # Ghost Sites Guristas Cruiser 239 | - 1262 # Ghost Sites Serpentis Cruiser 240 | - 1265 # Ghost Sites Sanshas Cruiser 241 | - 1285 # Asteroid Mordus Legion Commander Frigate 242 | - 1286 # Asteroid Mordus Legion Commander Cruiser 243 | - 1287 # Asteroid Mordus Legion Commander Battleship 244 | - 1288 # Ghost Sites Mordu's Legion 245 | - 1307 # Roaming Sleepers Cruiser 246 | - 1310 # Drifter Battleship 247 | - 1402 # Amarr Navy Roaming Battleship 248 | - 1411 # Amarr Navy Roaming Cruiser 249 | - 1412 # Amarr Navy Roaming Capital 250 | - 1413 # Amarr Navy Roaming Logistics 251 | - 1414 # Amarr Navy Roaming Frigate 252 | - 1452 # Irregular Drone 253 | - 1453 # Irregular EW Drone 254 | - 1454 # Irregular Fighter 255 | - 1455 # Irregular Fighter Squadron 256 | - 1465 # Mission Generic Supercarrier 257 | - 1529 # Deadspace Sleeper Upgraded Avenger 258 | - 1530 # Drifter Response Battleship 259 | - 1566 # Irregular Shuttle 260 | - 1567 # Irregular Corvette 261 | - 1568 # Irregular Frigate 262 | - 1664 # Irregular Destroyer 263 | - 1665 # Irregular Cruiser 264 | - 1666 # Irregular Battlecruiser 265 | - 1667 # Irregular Battleship 266 | - 1681 # Asteroid Angel Cartel Dreadnought 267 | - 1682 # Asteroid Angel Cartel Titan 268 | - 1683 # Asteroid Blood Raider Dreadnought 269 | - 1684 # Asteroid Blood Raider Titan 270 | - 1685 # Asteroid Guristas Dreadnought 271 | - 1686 # Asteroid Guristas Titan 272 | - 1687 # Asteroid Sansha's Nation Dreadnought 273 | - 1688 # Asteroid Sansha's Nation Supercarrier 274 | - 1689 # Asteroid Serpentis Dreadnought 275 | - 1690 # Asteroid Serpentis Titan 276 | - 1691 # Asteroid Rogue Drone Carrier 277 | - 1692 # Asteroid Rogue Drone Supercarrier 278 | - 1720 # Roaming Serpentis Battleship 279 | - 1721 # Roaming Serpentis Cruiser 280 | - 1722 # Roaming Serpentis Frigate 281 | - 1724 # Irregular Dreadnought 282 | - 1725 # Irregular Force Auxiliary 283 | - 1726 # Irregular Carrier 284 | - 1727 # Roaming Angel Cartel Battleship 285 | - 1728 # Roaming Angel Cartel Cruiser 286 | - 1729 # Roaming Angel Cartel Frigate 287 | - 1731 # Irregular Super Carrier 288 | - 1734 # Roaming Blood Raider Frigate 289 | - 1735 # Roaming Blood Raider Cruiser 290 | - 1736 # Roaming Blood Raider Battlecruiser 291 | - 1737 # Roaming Blood Raider Battleship 292 | - 1759 # Irregular Titan 293 | - 1761 # Irregular Mining Frigate 294 | - 1762 # Irregular Mining Barge 295 | - 1764 # ♦ Mining Frigate 296 | - 1765 # ♦ Mining Barge 297 | - 1766 # ♦ Mining Exhumer 298 | - 1767 # ♦ Mining Hauler 299 | - 1768 # Seeker Scouts 300 | - 1788 # Hidden Zenith Drifters 301 | - 1789 # Hidden Zenith Amarr Battleship 302 | - 1790 # Hidden Zenith Amarr Cruiser 303 | - 1791 # Hidden Zenith Amarr Frigate 304 | - 1792 # Hidden Zenith Caldari Battleship 305 | - 1793 # Hidden Zenith Caldari Cruiser 306 | - 1794 # Hidden Zenith Caldari Frigate 307 | - 1795 # Hidden Zenith Gallente Battleship 308 | - 1796 # Hidden Zenith Gallente Cruiser 309 | - 1797 # Hidden Zenith Gallente Frigate 310 | - 1798 # Hidden Zenith Minmatar Battleship 311 | - 1799 # Hidden Zenith Minmatar Cruiser 312 | - 1800 # Hidden Zenith Minmatar Frigate 313 | - 1803 # ♦ Frigate 314 | - 1804 # Hidden Zenith Amarr Capital 315 | - 1805 # Hidden Zenith Caldari Capital 316 | - 1806 # Hidden Zenith Gallente Capital 317 | - 1807 # Hidden Zenith Minmatar Capital 318 | - 1813 # ♦ Cruiser 319 | - 1814 # ♦ Battleship 320 | - 1872 # Structure Entities 321 | - 1876 # ♦ Engineering Complex 322 | - 1878 # ♦ Titan 323 | - 1879 # ♦ Force Auxiliary 324 | - 1880 # ♦ Dreadnought 325 | - 1895 # Irregular Industrial 326 | - 1896 # ♦ Industrial Command 327 | - 1904 328 | - 1905 329 | - 1906 330 | - 1907 331 | - 1908 332 | - 1909 # ♦ Battlecruiser 333 | - 1910 334 | - 1924 # ♦ Stronghold 335 | - 1925 # Irregular Industrial Command Ship 336 | - 1926 # Irregular Freighter 337 | - 1927 # Irregular Structure 338 | - 1956 # Drifter Reinforcements 339 | - 1982 # Abyssal Spaceship Entities 340 | - 1997 # Abyssal Drone Entities 341 | - 2009 # Precursor Cache 342 | - 4028 # Triglavian Entities 343 | - 4034 # EDENCOM Entities 344 | - 4035 # Drifter Entities 345 | - 4036 # Sleeper Entities 346 | - 4037 # Rogue Drone Entities 347 | - 4053 # Irregular Capsule 348 | - 4105 # Unidentified Entities 349 | - 4106 # AIR Entities I 350 | - 4128 # AIR Entities II 351 | - 4130 # Unidentified Entities II 352 | - 4431 # FW Amarr Empire Battleship 353 | - 4432 # FW Caldari State Battleship 354 | - 4433 # FW Gallente Federation Battleship 355 | - 4434 # FW Minmatar Republic Battleship 356 | - 4494 # Control Point 357 | - 4501 # Mission Generic Capsules 358 | - 4569 # Homefront Operations Enemy Frigate 359 | - 4570 # Homefront Operations Enemy Destroyer 360 | - 4571 # Homefront Operations Enemy Cruiser 361 | - 4572 # Homefront Operations Allied Dreadnought 362 | - 4573 # Homefront Operations Enemy Battlecruiser 363 | - 4574 # Homefront Operations Enemy Battleship 364 | - 4576 # Homefront Operations Structure 365 | - 4577 # Homefront Operations Hauler 366 | - 4636 # Pirate Entities 367 | - 4637 # Insurgency Roaming Pirates 368 | - 4638 # Insurgency Roaming Enforcers 369 | - 4647 # Insurgency Pirate Frigate 370 | - 4648 # Insurgency Pirate Destroyer 371 | - 4649 # Insurgency Pirate Cruiser 372 | - 4650 # Insurgency Pirate Battlecruiser 373 | - 4651 # Insurgency Pirate Battleship 374 | - 4652 # Insurgency Mordu Frigate 375 | - 4653 # Insurgency Mordu Destroyer 376 | - 4654 # Insurgency Mordu Cruiser 377 | - 4655 # Insurgency Mordu Battlecruiser 378 | - 4656 # Insurgency Mordu Battleship 379 | - 4673 # Insurgency Mining Ship 380 | - 4712 # Guided Entities 381 | - 4737 # Homefront Operations Shuttle 382 | - 4771 # Homefront Operations Noncombatant 383 | - 4795 # Asteroid Angel Cartel Officer Cruiser 384 | - 4796 # Asteroid Angel Cartel Officer Frigate 385 | - 4797 # Asteroid Blood Raiders Officer Cruiser 386 | - 4798 # Asteroid Blood Raiders Officer Frigate 387 | - 4799 # Asteroid Guristas Officer Cruiser 388 | - 4800 # Asteroid Guristas Officer Frigate 389 | - 4801 # Asteroid Sansha's Nation Officer Cruiser 390 | - 4802 # Asteroid Sansha's Nation Officer Frigate 391 | - 4803 # Asteroid Serpentis Officer Cruiser 392 | - 4804 # Asteroid Serpentis Officer Frigate 393 | -------------------------------------------------------------------------------- /parts/filter System Beacons.yaml: -------------------------------------------------------------------------------- 1 | - - '✪ System: Beacons' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - [] 6 | - - groups 7 | - - 310 # Beacon 8 | - 318 # Landmark 9 | - 897 # Covert Cynosural Field 10 | - 925 # FW Infrastructure Hub 11 | - 1003 # Territorial Claim Unit 12 | - 1012 # Sovereignty Hub 13 | - 1704 # Super Weapon Beacon 14 | - 1915 # Moon Mining Beacon 15 | - 4079 # Encounter Surveillance System 16 | - 4137 # Mobile Analysis Beacon 17 | - 4477 # FW Propaganda Broadcast Structure 18 | - 4499 # FW Listening Outpost 19 | - 4825 # Local Beacon 20 | -------------------------------------------------------------------------------- /parts/filter System Mining.yaml: -------------------------------------------------------------------------------- 1 | - - '✪ System: Mining' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - - groups 11 | - - 9 # Asteroid Belt 12 | - 450 # Arkonor 13 | - 451 # Bistot 14 | - 452 # Crokite 15 | - 453 # Dark Ochre 16 | - 454 # Hedbergite 17 | - 455 # Hemorphite 18 | - 456 # Jaspet 19 | - 457 # Kernite 20 | - 458 # Plagioclase 21 | - 459 # Pyroxeres 22 | - 460 # Scordite 23 | - 461 # Spodumain 24 | - 462 # Veldspar 25 | - 465 # Ice 26 | - 467 # Gneiss 27 | - 468 # Mercoxit 28 | - 469 # Omber 29 | - 711 # Harvestable Cloud 30 | - 1884 # Ubiquitous Moon Asteroids 31 | - 1911 # Empire Asteroids 32 | - 1920 # Common Moon Asteroids 33 | - 1921 # Uncommon Moon Asteroids 34 | - 1922 # Rare Moon Asteroids 35 | - 1923 # Exceptional Moon Asteroids 36 | - 2006 # Deadspace Asteroids 37 | - 2022 # Temporal Resources 38 | - 2024 # Fluorite 39 | - 4029 # Talassonite 40 | - 4030 # Rakovene 41 | - 4031 # Bezdnacine 42 | - 4094 # Scalable Decorative Asteroid 43 | - 4161 # AIR Ore Asteroid Resources 44 | - 4168 # Compressed Gas 45 | - 4513 # Mordunium 46 | - 4514 # Ytirium 47 | - 4515 # Eifyrium 48 | - 4516 # Ducinium 49 | - 4568 # Mutanite 50 | - 4755 # Kylixium 51 | - 4756 # Nocxite 52 | - 4757 # Ueganite 53 | - 4758 # Hezorime 54 | - 4759 # Griemeer 55 | - 4857 # Tyranite 56 | -------------------------------------------------------------------------------- /parts/filter System System (+belts).yaml: -------------------------------------------------------------------------------- 1 | - - '✪ System: System (+belts)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - [] 6 | - - groups 7 | - - 6 # Sun 8 | - 9 # Asteroid Belt 9 | - 10 # Stargate 10 | - 15 # Station 11 | - 310 # Beacon 12 | - 318 # Landmark 13 | - 366 # Warp Gate 14 | - 897 # Covert Cynosural Field 15 | - 925 # FW Infrastructure Hub 16 | - 1003 # Territorial Claim Unit 17 | - 1012 # Sovereignty Hub 18 | - 1316 # Entosis Command Node 19 | - 1404 # Engineering Complex 20 | - 1406 # Refinery 21 | - 1408 # Upwell Jump Gate 22 | - 1657 # Citadel 23 | - 1704 # Super Weapon Beacon 24 | - 1876 # ♦ Engineering Complex 25 | - 1924 # ♦ Stronghold 26 | - 2015 # Upwell Monument 27 | - 2016 # Upwell Cyno Jammer 28 | - 2017 # Upwell Cyno Beacon 29 | - 2020 # Cynosural Fields 30 | - 4033 # Destructible Effect Beacon 31 | - 4079 # Encounter Surveillance System 32 | - 4081 # Disrupted Gate 33 | - 4107 # Mobile Observatory 34 | - 4137 # Mobile Analysis Beacon 35 | - 4477 # FW Propaganda Broadcast Structure 36 | - 4499 # FW Listening Outpost 37 | - 4547 # Interstellar Shipcaster Beacon 38 | - 4548 # Shipcaster Beacon Constructor 39 | - 4549 # Interstellar Shipcaster 40 | - 4644 # Pirate Forward Operating Base 41 | - 4744 # Upwell Moon Drill 42 | - 4825 # Local Beacon 43 | -------------------------------------------------------------------------------- /parts/filter System System (-citadels).yaml: -------------------------------------------------------------------------------- 1 | - - '✪ System: System (-citadels)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - [] 6 | - - groups 7 | - - 6 # Sun 8 | - 10 # Stargate 9 | - 15 # Station 10 | - 310 # Beacon 11 | - 318 # Landmark 12 | - 366 # Warp Gate 13 | - 897 # Covert Cynosural Field 14 | - 925 # FW Infrastructure Hub 15 | - 1003 # Territorial Claim Unit 16 | - 1012 # Sovereignty Hub 17 | - 1316 # Entosis Command Node 18 | - 1408 # Upwell Jump Gate 19 | - 1704 # Super Weapon Beacon 20 | - 2020 # Cynosural Fields 21 | - 4033 # Destructible Effect Beacon 22 | - 4079 # Encounter Surveillance System 23 | - 4081 # Disrupted Gate 24 | - 4107 # Mobile Observatory 25 | - 4137 # Mobile Analysis Beacon 26 | - 4477 # FW Propaganda Broadcast Structure 27 | - 4499 # FW Listening Outpost 28 | - 4547 # Interstellar Shipcaster Beacon 29 | - 4548 # Shipcaster Beacon Constructor 30 | - 4549 # Interstellar Shipcaster 31 | - 4644 # Pirate Forward Operating Base 32 | - 4825 # Local Beacon 33 | -------------------------------------------------------------------------------- /parts/filter System System.yaml: -------------------------------------------------------------------------------- 1 | - - '✪ System: System' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - [] 6 | - - groups 7 | - - 6 # Sun 8 | - 10 # Stargate 9 | - 15 # Station 10 | - 310 # Beacon 11 | - 318 # Landmark 12 | - 366 # Warp Gate 13 | - 897 # Covert Cynosural Field 14 | - 925 # FW Infrastructure Hub 15 | - 1003 # Territorial Claim Unit 16 | - 1012 # Sovereignty Hub 17 | - 1316 # Entosis Command Node 18 | - 1404 # Engineering Complex 19 | - 1406 # Refinery 20 | - 1408 # Upwell Jump Gate 21 | - 1657 # Citadel 22 | - 1704 # Super Weapon Beacon 23 | - 1876 # ♦ Engineering Complex 24 | - 1924 # ♦ Stronghold 25 | - 2015 # Upwell Monument 26 | - 2016 # Upwell Cyno Jammer 27 | - 2017 # Upwell Cyno Beacon 28 | - 2020 # Cynosural Fields 29 | - 4033 # Destructible Effect Beacon 30 | - 4079 # Encounter Surveillance System 31 | - 4081 # Disrupted Gate 32 | - 4107 # Mobile Observatory 33 | - 4137 # Mobile Analysis Beacon 34 | - 4477 # FW Propaganda Broadcast Structure 35 | - 4499 # FW Listening Outpost 36 | - 4547 # Interstellar Shipcaster Beacon 37 | - 4548 # Shipcaster Beacon Constructor 38 | - 4549 # Interstellar Shipcaster 39 | - 4644 # Pirate Forward Operating Base 40 | - 4744 # Upwell Moon Drill 41 | - 4825 # Local Beacon 42 | -------------------------------------------------------------------------------- /parts/filter Warp Travel (-citadels).yaml: -------------------------------------------------------------------------------- 1 | - - '➔ Warp: Travel (-citadels)' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 21 11 | - 45 12 | - 49 13 | - - groups 14 | - - 10 # Stargate 15 | - 15 # Station 16 | - 318 # Landmark 17 | - 365 # Control Tower 18 | - 366 # Warp Gate 19 | - 411 # Force Field 20 | - 416 # Moon Mining 21 | - 707 # Jump Portal Array 22 | - 897 # Covert Cynosural Field 23 | - 988 # Wormhole 24 | - 1408 # Upwell Jump Gate 25 | - 1915 # Moon Mining Beacon 26 | - 2020 # Cynosural Fields 27 | - 4081 # Disrupted Gate 28 | - 4547 # Interstellar Shipcaster Beacon 29 | - 4548 # Shipcaster Beacon Constructor 30 | - 4549 # Interstellar Shipcaster 31 | - 4644 # Pirate Forward Operating Base 32 | -------------------------------------------------------------------------------- /parts/filter Warp Travel.yaml: -------------------------------------------------------------------------------- 1 | - - '➔ Warp: Travel' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - - 11 6 | - 12 7 | - 14 8 | - 15 9 | - 16 10 | - 21 11 | - 45 12 | - 49 13 | - - groups 14 | - - 10 # Stargate 15 | - 15 # Station 16 | - 318 # Landmark 17 | - 365 # Control Tower 18 | - 366 # Warp Gate 19 | - 411 # Force Field 20 | - 416 # Moon Mining 21 | - 707 # Jump Portal Array 22 | - 897 # Covert Cynosural Field 23 | - 988 # Wormhole 24 | - 1404 # Engineering Complex 25 | - 1406 # Refinery 26 | - 1408 # Upwell Jump Gate 27 | - 1657 # Citadel 28 | - 1876 # ♦ Engineering Complex 29 | - 1915 # Moon Mining Beacon 30 | - 1924 # ♦ Stronghold 31 | - 2020 # Cynosural Fields 32 | - 4081 # Disrupted Gate 33 | - 4547 # Interstellar Shipcaster Beacon 34 | - 4548 # Shipcaster Beacon Constructor 35 | - 4549 # Interstellar Shipcaster 36 | - 4644 # Pirate Forward Operating Base 37 | -------------------------------------------------------------------------------- /parts/filter Warp Warp out!.yaml: -------------------------------------------------------------------------------- 1 | - - '➔ Warp: Warp out!' 2 | - - - alwaysShownStates 3 | - [] 4 | - - filteredStates 5 | - [] 6 | - - groups 7 | - - 6 # Sun 8 | - 7 # Planet 9 | - 8 # Moon 10 | - 9 # Asteroid Belt 11 | - 10 # Stargate 12 | - 15 # Station 13 | - 310 # Beacon 14 | - 318 # Landmark 15 | - 366 # Warp Gate 16 | - 925 # FW Infrastructure Hub 17 | - 988 # Wormhole 18 | - 1003 # Territorial Claim Unit 19 | - 1012 # Sovereignty Hub 20 | - 1025 # Orbital Infrastructure 21 | - 1106 # Orbital Construction Platform 22 | - 1404 # Engineering Complex 23 | - 1406 # Refinery 24 | - 1408 # Upwell Jump Gate 25 | - 1657 # Citadel 26 | - 1704 # Super Weapon Beacon 27 | - 1876 # ♦ Engineering Complex 28 | - 1915 # Moon Mining Beacon 29 | - 1924 # ♦ Stronghold 30 | - 4033 # Destructible Effect Beacon 31 | - 4081 # Disrupted Gate 32 | - 4100 # Logo Display Monument 33 | - 4736 # Skyhook 34 | -------------------------------------------------------------------------------- /parts/general.yaml: -------------------------------------------------------------------------------- 1 | backgroundOrder: 2 | - 11 3 | - 13 4 | - 52 5 | - 12 6 | - 14 7 | - 15 8 | - 16 9 | - 45 10 | - 44 11 | - 68 12 | - 9 13 | - 51 14 | - 50 15 | - 19 16 | - 18 17 | - 53 18 | - 10 19 | - 49 20 | - 17 21 | - 48 22 | - 66 23 | - 21 24 | - 20 25 | backgroundStates: 26 | - 9 27 | - 11 28 | - 12 29 | - 13 30 | - 14 31 | - 15 32 | - 16 33 | - 17 34 | - 18 35 | - 19 36 | - 21 37 | - 44 38 | - 45 39 | - 48 40 | - 49 41 | - 50 42 | - 51 43 | - 52 44 | - 53 45 | - 68 46 | columnOrder: 47 | - TAG 48 | - ICON 49 | - DISTANCE 50 | - NAME 51 | - TYPE 52 | - CORPORATION 53 | - ALLIANCE 54 | - FACTION 55 | - MILITIA 56 | - SIZE 57 | - VELOCITY 58 | - RADIALVELOCITY 59 | - TRANSVERSALVELOCITY 60 | - ANGULARVELOCITY 61 | flagOrder: 62 | - 11 63 | - 13 64 | - 52 65 | - 12 66 | - 14 67 | - 15 68 | - 16 69 | - 45 70 | - 44 71 | - 68 72 | - 9 73 | - 51 74 | - 50 75 | - 19 76 | - 18 77 | - 53 78 | - 10 79 | - 49 80 | - 17 81 | - 48 82 | - 66 83 | - 21 84 | - 20 85 | flagStates: 86 | - 9 87 | - 11 88 | - 12 89 | - 13 90 | - 14 91 | - 15 92 | - 16 93 | - 17 94 | - 18 95 | - 19 96 | - 21 97 | - 44 98 | - 45 99 | - 48 100 | - 49 101 | - 50 102 | - 51 103 | - 52 104 | - 53 105 | - 68 106 | overviewColumns: 107 | - ALLIANCE 108 | - ANGULARVELOCITY 109 | - CORPORATION 110 | - DISTANCE 111 | - ICON 112 | - NAME 113 | - TYPE 114 | - VELOCITY 115 | presets: [] -------------------------------------------------------------------------------- /parts/labels.yaml: -------------------------------------------------------------------------------- 1 | shipLabelOrder: 2 | - pilot name 3 | - alliance 4 | - corporation 5 | - linebreak 6 | - ship type 7 | - ship name 8 | - null 9 | shipLabels: 10 | - - null 11 | - - - fontsize 12 | - 12 13 | - - post 14 | - '' 15 | - - pre 16 | - '' 17 | - - state 18 | - 0 19 | - - type 20 | - null 21 | - - alliance 22 | - - - color 23 | - - 1.0 24 | - 0.7 25 | - 0.0 26 | - - fontsize 27 | - 12 28 | - - post 29 | - ']' 30 | - - pre 31 | - '[' 32 | - - state 33 | - 1 34 | - - type 35 | - alliance 36 | - - underline 37 | - 0 38 | - - corporation 39 | - - - color 40 | - null 41 | - - fontsize 42 | - 12 43 | - - post 44 | - ']' 45 | - - pre 46 | - '[' 47 | - - state 48 | - 1 49 | - - type 50 | - corporation 51 | - - linebreak 52 | - - - bold 53 | - false 54 | - - color 55 | - null 56 | - - fontsize 57 | - null 58 | - - italic 59 | - false 60 | - - post 61 | - null 62 | - - pre 63 | - null 64 | - - state 65 | - null 66 | - - type 67 | - linebreak 68 | - - underline 69 | - false 70 | - - pilot name 71 | - - - bold 72 | - 1 73 | - - color 74 | - &id001 75 | - 1.0 76 | - 1.0 77 | - 1.0 78 | - - fontsize 79 | - 12 80 | - - italic 81 | - 0 82 | - - post 83 | - ' ' 84 | - - pre 85 | - '' 86 | - - state 87 | - 1 88 | - - type 89 | - pilot name 90 | - - underline 91 | - 0 92 | - - ship name 93 | - - - color 94 | - null 95 | - - fontsize 96 | - 12 97 | - - italic 98 | - 1 99 | - - post 100 | - '' 101 | - - pre 102 | - ' - ' 103 | - - state 104 | - 0 105 | - - type 106 | - ship name 107 | - - ship type 108 | - - - bold 109 | - 1 110 | - - color 111 | - *id001 112 | - - fontsize 113 | - 12 114 | - - post 115 | - '' 116 | - - pre 117 | - '' 118 | - - state 119 | - 1 120 | - - type 121 | - ship type 122 | - - underline 123 | - 0 124 | -------------------------------------------------------------------------------- /parts/readme.md: -------------------------------------------------------------------------------- 1 | # YAML files 2 | 3 | Instead of having one large unwieldy YAML file, Iridium Overview is split into individual parts, allowing to easily generate alternative versions with different sets of filters or tab settings variations. 4 | 5 | During the build process, filter files get updated with data from SDE in form of comment labels, however all YAML comments are stripped from final YAML file. 6 | 7 | ## Filter Naming 8 | Filters are grouped into categories based on intended use-case via common first character (symbol). 9 | 10 | Brackets and Dscan filter names are prepended with a character (`/` and `?`) selected for its low ASCII numeric value in order to allow their selection via shortcuts in the Dscan window, which sorts filters lexically in ascending order. 11 | 12 | Part in parenthesis denotes changes compared to base filter. Character `+` indicates that something was added while `-` indicates removal. Alternatively it describes what state is displayed on the filter. 13 | 14 | States: 15 | - All - any standings, any special state 16 | - Red - negative standing i.e. -5 and -10 17 | - Neutral - neutral standing or no standings 18 | - Friendly - positive standings i.e. +5 and +10, fleet 19 | - War targets - valid target due to Concord sanctioned war 20 | - Hisec criminals - valid target due to suspect or criminal timer or low security status 21 | 22 | ## Filter list and description 23 | 24 | ### / Brackets: Combat 25 | Standard bracket filter, controls what is visible in space. 26 | 27 | ### / Brackets: Combat (+drones) 28 | Variation with drones and fighters. In many situations such as large scale fights, drones are irrelevant and their rendering can significantly hinder performance. However in smaller engagements drones can play crucial role and thus their visibility in space is needed. 29 | 30 | ### / Brackets: Combat (-wrecks) 31 | Variation without wrecks. While wrecks are typically useful to display in PVE situations and can be used as tactical warp-in points in PVP engagements, in larger quantities they can be seen as distracting clutter. Users of the CTRL+Drag&Select feature might prefer this bracket filter to avoid targeting wrecks when using it. 32 | 33 | ### ? DSCAN: Ships 34 | Strictly defensive Dscan filter intended to warn you about ships and ships only. 35 | 36 | ### ? DSCAN: Basic 37 | Standard multipurpose dscan filter, intended both for defense (displaying potentially dangerous objects like ships, combat probes and warp disruption bubbles) and offence (enabling to quickly locate targets). 38 | 39 | ### ? DSCAN: Extra 40 | 41 | Dscan filter with expanded list of displayed objects. Intended for reconnaissance in wormholes, hunting specific targets (such as Combat Recons which themselves are immune to Dscan but secondary evidence such as wreck accumulation can be observed), etc. 42 | 43 | ### ⌘ All: All 44 | Displays all objects and all states. Intended for situations that require finding obscure mission objectives or navigating while cloaked. 45 | 46 | ### ✪ System: System 47 | Standard navigation filter. Displays warpable objects beyond current grid. 48 | 49 | ### ✪ System: System (-citadels) 50 | Variation without citadels. Due to extreme Upwell structure spam in some areas such as The Citadel region around the system of Jita or near Goonswarm staging in Delve. 51 | 52 | ### ✪ System: System (+belts) 53 | Variation with permanent asteroid belts. 54 | 55 | ### ✪ System: Mining 56 | Only asteroids and permanent asteroid belts. 57 | 58 | ### ✪ System: Beacons 59 | Only warpable beacons. 60 | 61 | ### ➔ Warp: Warp out! 62 | Designed as a list of relatively safe warp destinations usable in emergency, for example after encountering a gatecamp, being chased by tackle or to save your pod after your ship is destroyed. This filter is also handy for hunting miners, PI haulers and anyone else loitering at such locations. 63 | 64 | ### ➔ Warp: Travel 65 | Intended to allow quick navigation on congested grids in nullsec staging systems or hisec trade hubs. 66 | 67 | Note: This is deprecated legacy filter; multiple overview window support alleviates the need for this. 68 | 69 | ### ➔ Warp: Travel (-citadels) 70 | Variation without citadels. Due to extreme Upwell structure spam in some areas such as The Citadel region around the system of Jita or near Goonswarm staging in Delve. 71 | 72 | Note: This is deprecated legacy filter; multiple overview window support alleviates the need for this. Furthermore, Upwell structure spam is significantly less of a problem than it used to be. 73 | 74 | ### ❒ Loot: Loot and salvage 75 | Containers, wrecks and common openable or destructible mission objects. 76 | 77 | ### ✜ Drones: Drones and Fighters (all) 78 | Drones and fighters belonging to player ships or player structures. 79 | 80 | ### ✜ Drones: Drones and Fighters (red+neutral) 81 | Drones and fighters. Only those that belong to entities with neutral or negative standing. 82 | 83 | ### ✜ Drones: Fighters (red+neutral) 84 | Fighters that belong to entities with neutral or negative standing. 85 | 86 | ### ❖ Ships: NPCs (+turrets) 87 | All NPC ships and other NPC entities including turrets. 88 | 89 | ### ❖ Ships: Friendly 90 | Ships of players with positive standing, including corporation and alliance members. 91 | 92 | ### ❖ Ships: Fleet 93 | Player ships that are part of your fleet regardless of standings. Useful mainly for logistics pilots who prefer it to watchlist or NPSI fleets as well. 94 | 95 | ### ❖ Ships: Enemy All (red) 96 | Ships belonging to players with negative standings. 97 | 98 | ### ❖ Ships: Enemy All (red -capsules) 99 | Ships belonging to players with negative standings. Excludes capsules since they do not pose a threat themselves and often aren't interesting targets. 100 | 101 | ### ❖ Ships: Enemy All (red+neutral) 102 | Ships belonging to players with negative or neutral standings. 103 | 104 | ### ❖ Ships: Enemy All (red+neutral -capsules) 105 | Ships belonging to players with negative or neutral standings. Excludes capsules since they do not pose a threat themselves and often aren't interesting targets. 106 | 107 | ### ❖ Ships: Enemy All (war targets) 108 | 109 | Ships belonging to players that your corporation is at war with. They can be freely attacked in hisec. 110 | 111 | ### ❖ Ships: Enemy All (hisec criminals) 112 | All player ships that can be attacked in hisec without Concord interference. 113 | 114 | ### ❖ Ships: Enemy Logi (red+neutral) 115 | Logistic ships belonging to players with negative or neutral standings. 116 | 117 | ### ❖ Ships: Enemy Utility (red+neutral) 118 | Force multiplier utility ships (booshers, links and interdictors) belonging to players with negative or neutral standings. 119 | 120 | ### ❖ Ships: Enemy Capitals (red+neutral) 121 | Capital ships belonging to players with negative or neutral standings. 122 | 123 | ### ✱ Main: PVX 124 | This filter combines previously used `Main: PVE` and `Main: PVP` into single universal filter, suitable for most situations and activities. 125 | 126 | ### ✱ Main: PVX (+extra) 127 | Includes additional objects of interest (mainly for PVE) such as depots, containers, mission objectives, some destructible structures, tractor units and some beacons. 128 | 129 | ### ✱ Main: PVX (+friendly +extra) 130 | Includes ships of players with positive standing, corporation and alliance members. 131 | 132 | ### ✱ Main: PVX (-npc) 133 | Excludes NPC ships. 134 | 135 | ### ✱ Main: PVX (+mining) 136 | Includes clouds and asteroids. 137 | 138 | ### ✕ Main: System & PVX (+extra) 139 | Combines `✪ System: System` and `✱ Main: PVX (+extra)` into single filter for single-overview-window users. 140 | 141 | ### ✕ Main: System & PVX (-npc) 142 | Combines `✪ System: System` and `✱ Main: PVX (-npc)` into single filter for single-overview-window users. 143 | -------------------------------------------------------------------------------- /parts/states.yaml: -------------------------------------------------------------------------------- 1 | stateBlinks: 2 | - - background_13 3 | - false 4 | - - background_44 5 | - false 6 | - - flag_13 7 | - true 8 | - - flag_44 9 | - true 10 | - - flag_50 11 | - true 12 | - - flag_51 13 | - true 14 | - - flag_52 15 | - true 16 | - - flag_68 17 | - true 18 | - - flag_9 19 | - true 20 | stateColorsNameList: 21 | - - background_10 22 | - white 23 | - - background_12 24 | - darkBlue 25 | - - background_15 26 | - blue 27 | - - background_16 28 | - blue 29 | - - background_17 30 | - white 31 | - - background_18 32 | - orange 33 | - - background_20 34 | - white 35 | - - background_21 36 | - white 37 | - - background_44 38 | - red 39 | - - background_45 40 | - turquoise 41 | - - background_49 42 | - turquoise 43 | - - background_50 44 | - yellow 45 | - - background_51 46 | - yellow 47 | - - background_52 48 | - orange 49 | - - background_53 50 | - yellow 51 | - - background_66 52 | - darkBlue 53 | - - background_9 54 | - yellow 55 | - - flag_17 56 | - white 57 | - - flag_49 58 | - darkTurquoise 59 | - - flag_53 60 | - yellow 61 | - - flag_68 62 | - yellow 63 | -------------------------------------------------------------------------------- /parts/tabs carbon.yaml: -------------------------------------------------------------------------------- 1 | tabSetup: 2 | - - 0 3 | - - - bracket 4 | - '/ Brackets: Combat' 5 | - - color 6 | - - 1.0 7 | - 1.0 8 | - 1.0 9 | - - name 10 | - SYSTEM 11 | - - overview 12 | - '✪ System: System' 13 | - - tabColumns 14 | - - ICON 15 | - DISTANCE 16 | - NAME 17 | - TYPE 18 | - - 1 19 | - - - bracket 20 | - '/ Brackets: Combat (+drones)' 21 | - - color 22 | - - 0.0784 23 | - 0.6901 24 | - 0.8235 25 | - - name 26 | - MAIN 27 | - - overview 28 | - '✕ Main: System & PVX (+extra)' 29 | - - tabColumns 30 | - - ICON 31 | - DISTANCE 32 | - NAME 33 | - TYPE 34 | - VELOCITY 35 | - ANGULARVELOCITY 36 | - CORPORATION 37 | - ALLIANCE 38 | - - 2 39 | - - - bracket 40 | - '/ Brackets: Combat' 41 | - - color 42 | - - 1.0 43 | - 0.6 44 | - 0.0 45 | - - name 46 | - SHIPS 47 | - - overview 48 | - '❖ Ships: Enemy All (red+neutral)' 49 | - - tabColumns 50 | - - ICON 51 | - DISTANCE 52 | - NAME 53 | - TYPE 54 | - VELOCITY 55 | - ANGULARVELOCITY 56 | - ALLIANCE 57 | - CORPORATION 58 | - - 3 59 | - - - bracket 60 | - '/ Brackets: Combat (-wrecks)' 61 | - - color 62 | - - 1.0 63 | - 0.6 64 | - 0.0 65 | - - name 66 | - NPC 67 | - - overview 68 | - '❖ Ships: NPCs (+turrets)' 69 | - - tabColumns 70 | - - ICON 71 | - DISTANCE 72 | - NAME 73 | - TYPE 74 | - VELOCITY 75 | - ANGULARVELOCITY 76 | - - 4 77 | - - - bracket 78 | - '/ Brackets: Combat (+drones)' 79 | - - color 80 | - - 1.0 81 | - 0.9333 82 | - 0.0 83 | - - name 84 | - DRONES 85 | - - overview 86 | - '✜ Drones: Drones and Fighters (red+neutral)' 87 | - - tabColumns 88 | - - ICON 89 | - DISTANCE 90 | - NAME 91 | - TYPE 92 | - VELOCITY 93 | - ANGULARVELOCITY 94 | - ALLIANCE 95 | - CORPORATION 96 | - - 5 97 | - - - bracket 98 | - '/ Brackets: Combat' 99 | - - color 100 | - - 1.0 101 | - 0.3333 102 | - 0.0 103 | - - name 104 | - ' ➔ ' 105 | - - overview 106 | - '➔ Warp: Warp out!' 107 | - - tabColumns 108 | - - ICON 109 | - DISTANCE 110 | - NAME 111 | - TYPE 112 | - - 6 113 | - - - bracket 114 | - '/ Brackets: Combat (+drones)' 115 | - - color 116 | - - 1.0 117 | - 1.0 118 | - 1.0 119 | - - name 120 | - ' ❒ ' 121 | - - overview 122 | - '❒ Loot: Loot and salvage' 123 | - - tabColumns 124 | - - ICON 125 | - DISTANCE 126 | - NAME 127 | - TYPE 128 | - CORPORATION 129 | - ALLIANCE 130 | - - 7 131 | - - - bracket 132 | - _BracketFilterShowAll 133 | - - color 134 | - - 1.0 135 | - 1.0 136 | - 1.0 137 | - - name 138 | - ' ⌘ ' 139 | - - overview 140 | - '⌘ All: All' 141 | - - tabColumnOrder 142 | - - TAG 143 | - ICON 144 | - DISTANCE 145 | - NAME 146 | - TYPE 147 | - CORPORATION 148 | - ALLIANCE 149 | - FACTION 150 | - MILITIA 151 | - SIZE 152 | - VELOCITY 153 | - RADIALVELOCITY 154 | - TRANSVERSALVELOCITY 155 | - ANGULARVELOCITY 156 | - - tabColumns 157 | - - ICON 158 | - DISTANCE 159 | - NAME 160 | - TYPE 161 | - CORPORATION 162 | - ALLIANCE 163 | - VELOCITY 164 | - ANGULARVELOCITY 165 | - - 8 166 | - - - bracket 167 | - '/ Brackets: Combat' 168 | - - color 169 | - - 0.098 170 | - 0.6 171 | - 0.098 172 | - - name 173 | - ' ❤ ' 174 | - - overview 175 | - '❖ Ships: Friendly' 176 | - - tabColumns 177 | - - ICON 178 | - DISTANCE 179 | - NAME 180 | - TYPE 181 | - VELOCITY 182 | - ANGULARVELOCITY 183 | - ALLIANCE 184 | - CORPORATION -------------------------------------------------------------------------------- /parts/tabs icons.yaml: -------------------------------------------------------------------------------- 1 | tabSetup: 2 | - - 0 3 | - - - bracket 4 | - '/ Brackets: Combat' 5 | - - color 6 | - - 1.0 7 | - 1.0 8 | - 1.0 9 | - - name 10 | - ' ✪ ' 11 | - - overview 12 | - '✪ System: System' 13 | - - tabColumns 14 | - - ICON 15 | - DISTANCE 16 | - NAME 17 | - TYPE 18 | - - 1 19 | - - - bracket 20 | - '/ Brackets: Combat (+drones)' 21 | - - color 22 | - - 0.0784 23 | - 0.6901 24 | - 0.8235 25 | - - name 26 | - ' ✱ ' 27 | - - overview 28 | - '✱ Main: PVX (+friendly +extra)' 29 | - - tabColumns 30 | - - ICON 31 | - DISTANCE 32 | - NAME 33 | - TYPE 34 | - VELOCITY 35 | - ANGULARVELOCITY 36 | - CORPORATION 37 | - ALLIANCE 38 | - - 2 39 | - - - bracket 40 | - '/ Brackets: Combat' 41 | - - color 42 | - - 1.0 43 | - 0.2705 44 | - 0.2705 45 | - - name 46 | - ' ✱ ' 47 | - - overview 48 | - '✱ Main: PVX' 49 | - - tabColumns 50 | - - ICON 51 | - DISTANCE 52 | - NAME 53 | - TYPE 54 | - VELOCITY 55 | - ANGULARVELOCITY 56 | - ALLIANCE 57 | - CORPORATION 58 | - - 3 59 | - - - bracket 60 | - '/ Brackets: Combat' 61 | - - color 62 | - - 1.0 63 | - 0.6 64 | - 0.0 65 | - - name 66 | - ' ❖ ' 67 | - - overview 68 | - '❖ Ships: Enemy All (red+neutral)' 69 | - - tabColumns 70 | - - ICON 71 | - DISTANCE 72 | - NAME 73 | - TYPE 74 | - VELOCITY 75 | - ANGULARVELOCITY 76 | - ALLIANCE 77 | - CORPORATION 78 | - - 4 79 | - - - bracket 80 | - '/ Brackets: Combat (-wrecks)' 81 | - - color 82 | - - 1.0 83 | - 0.6 84 | - 0.0 85 | - - name 86 | - ' ✿ ' 87 | - - overview 88 | - '❖ Ships: NPCs (+turrets)' 89 | - - tabColumns 90 | - - ICON 91 | - DISTANCE 92 | - NAME 93 | - TYPE 94 | - VELOCITY 95 | - ANGULARVELOCITY 96 | - - 5 97 | - - - bracket 98 | - '/ Brackets: Combat (+drones)' 99 | - - color 100 | - - 1.0 101 | - 0.9333 102 | - 0.0 103 | - - name 104 | - ' ✜ ' 105 | - - overview 106 | - '✜ Drones: Drones and Fighters (red+neutral)' 107 | - - tabColumns 108 | - - ICON 109 | - DISTANCE 110 | - NAME 111 | - TYPE 112 | - VELOCITY 113 | - ANGULARVELOCITY 114 | - ALLIANCE 115 | - CORPORATION 116 | - - 6 117 | - - - bracket 118 | - '/ Brackets: Combat' 119 | - - color 120 | - - 1.0 121 | - 0.3333 122 | - 0.0 123 | - - name 124 | - ' ➔ ' 125 | - - overview 126 | - '➔ Warp: Warp out!' 127 | - - tabColumns 128 | - - ICON 129 | - DISTANCE 130 | - NAME 131 | - TYPE 132 | - - 7 133 | - - - bracket 134 | - '/ Brackets: Combat (+drones)' 135 | - - color 136 | - - 1.0 137 | - 1.0 138 | - 1.0 139 | - - name 140 | - ' ❒ ' 141 | - - overview 142 | - '❒ Loot: Loot and salvage' 143 | - - tabColumns 144 | - - ICON 145 | - DISTANCE 146 | - NAME 147 | - TYPE 148 | - CORPORATION 149 | - ALLIANCE 150 | - - 8 151 | - - - bracket 152 | - _BracketFilterShowAll 153 | - - color 154 | - - 1.0 155 | - 1.0 156 | - 1.0 157 | - - name 158 | - ' ⌘ ' 159 | - - overview 160 | - '⌘ All: All' 161 | - - tabColumnOrder 162 | - - TAG 163 | - ICON 164 | - DISTANCE 165 | - NAME 166 | - TYPE 167 | - CORPORATION 168 | - ALLIANCE 169 | - FACTION 170 | - MILITIA 171 | - SIZE 172 | - VELOCITY 173 | - RADIALVELOCITY 174 | - TRANSVERSALVELOCITY 175 | - ANGULARVELOCITY 176 | - - tabColumns 177 | - - ICON 178 | - DISTANCE 179 | - NAME 180 | - TYPE 181 | - CORPORATION 182 | - ALLIANCE 183 | - VELOCITY 184 | - ANGULARVELOCITY 185 | - - 9 186 | - - - bracket 187 | - '/ Brackets: Combat' 188 | - - color 189 | - - 0.9333 190 | - 0.1333 191 | - 0.9333 192 | - - name 193 | - ' ❤ ' 194 | - - overview 195 | - '❖ Ships: Fleet' 196 | - - tabColumns 197 | - - ICON 198 | - DISTANCE 199 | - NAME 200 | - TYPE 201 | - VELOCITY 202 | - ANGULARVELOCITY 203 | - ALLIANCE 204 | - CORPORATION 205 | - - 10 206 | - - - bracket 207 | - '/ Brackets: Combat' 208 | - - color 209 | - - 0.098 210 | - 0.6 211 | - 0.098 212 | - - name 213 | - ' ❤ ' 214 | - - overview 215 | - '❖ Ships: Friendly' 216 | - - tabColumns 217 | - - ICON 218 | - DISTANCE 219 | - NAME 220 | - TYPE 221 | - VELOCITY 222 | - ANGULARVELOCITY 223 | - ALLIANCE 224 | - CORPORATION 225 | - - 11 226 | - - - bracket 227 | - '/ Brackets: Combat (+drones)' 228 | - - color 229 | - - 1.0 230 | - 1.0 231 | - 1.0 232 | - - name 233 | - ' ✇ ' 234 | - - overview 235 | - '✪ System: Mining' 236 | - - tabColumns 237 | - - DISTANCE 238 | - ICON 239 | - NAME 240 | - TYPE -------------------------------------------------------------------------------- /parts/tabs main.yaml: -------------------------------------------------------------------------------- 1 | tabSetup: 2 | - - 0 3 | - - - bracket 4 | - '/ Brackets: Combat' 5 | - - color 6 | - - 1.0 7 | - 1.0 8 | - 1.0 9 | - - name 10 | - SYSTEM 11 | - - overview 12 | - '✪ System: System' 13 | - - tabColumns 14 | - - ICON 15 | - DISTANCE 16 | - NAME 17 | - TYPE 18 | - - 1 19 | - - - bracket 20 | - '/ Brackets: Combat (+drones)' 21 | - - color 22 | - - 0.0784 23 | - 0.6901 24 | - 0.8235 25 | - - name 26 | - PVE 27 | - - overview 28 | - '✱ Main: PVX (+friendly +extra)' 29 | - - tabColumns 30 | - - ICON 31 | - DISTANCE 32 | - NAME 33 | - TYPE 34 | - VELOCITY 35 | - ANGULARVELOCITY 36 | - CORPORATION 37 | - ALLIANCE 38 | - - 2 39 | - - - bracket 40 | - '/ Brackets: Combat' 41 | - - color 42 | - - 1.0 43 | - 0.2705 44 | - 0.2705 45 | - - name 46 | - PVP 47 | - - overview 48 | - '✱ Main: PVX' 49 | - - tabColumns 50 | - - ICON 51 | - DISTANCE 52 | - NAME 53 | - TYPE 54 | - VELOCITY 55 | - ANGULARVELOCITY 56 | - ALLIANCE 57 | - CORPORATION 58 | - - 3 59 | - - - bracket 60 | - '/ Brackets: Combat' 61 | - - color 62 | - - 1.0 63 | - 0.6 64 | - 0.0 65 | - - name 66 | - SHIPS 67 | - - overview 68 | - '❖ Ships: Enemy All (red+neutral)' 69 | - - tabColumns 70 | - - ICON 71 | - DISTANCE 72 | - NAME 73 | - TYPE 74 | - VELOCITY 75 | - ANGULARVELOCITY 76 | - ALLIANCE 77 | - CORPORATION 78 | - - 4 79 | - - - bracket 80 | - '/ Brackets: Combat (-wrecks)' 81 | - - color 82 | - - 1.0 83 | - 0.6 84 | - 0.0 85 | - - name 86 | - NPC 87 | - - overview 88 | - '❖ Ships: NPCs (+turrets)' 89 | - - tabColumns 90 | - - ICON 91 | - DISTANCE 92 | - NAME 93 | - TYPE 94 | - VELOCITY 95 | - ANGULARVELOCITY 96 | - - 5 97 | - - - bracket 98 | - '/ Brackets: Combat (+drones)' 99 | - - color 100 | - - 1.0 101 | - 0.9333 102 | - 0.0 103 | - - name 104 | - DRONES 105 | - - overview 106 | - '✜ Drones: Drones and Fighters (red+neutral)' 107 | - - tabColumns 108 | - - ICON 109 | - DISTANCE 110 | - NAME 111 | - TYPE 112 | - VELOCITY 113 | - ANGULARVELOCITY 114 | - ALLIANCE 115 | - CORPORATION 116 | - - 6 117 | - - - bracket 118 | - '/ Brackets: Combat' 119 | - - color 120 | - - 1.0 121 | - 0.3333 122 | - 0.0 123 | - - name 124 | - WARP 125 | - - overview 126 | - '➔ Warp: Warp out!' 127 | - - tabColumns 128 | - - ICON 129 | - DISTANCE 130 | - NAME 131 | - TYPE 132 | - - 7 133 | - - - bracket 134 | - '/ Brackets: Combat (+drones)' 135 | - - color 136 | - - 1.0 137 | - 1.0 138 | - 1.0 139 | - - name 140 | - LOOT 141 | - - overview 142 | - '❒ Loot: Loot and salvage' 143 | - - tabColumns 144 | - - ICON 145 | - DISTANCE 146 | - NAME 147 | - TYPE 148 | - CORPORATION 149 | - ALLIANCE 150 | - - 8 151 | - - - bracket 152 | - _BracketFilterShowAll 153 | - - color 154 | - - 1.0 155 | - 1.0 156 | - 1.0 157 | - - name 158 | - ALL 159 | - - overview 160 | - '⌘ All: All' 161 | - - tabColumnOrder 162 | - - TAG 163 | - ICON 164 | - DISTANCE 165 | - NAME 166 | - TYPE 167 | - CORPORATION 168 | - ALLIANCE 169 | - FACTION 170 | - MILITIA 171 | - SIZE 172 | - VELOCITY 173 | - RADIALVELOCITY 174 | - TRANSVERSALVELOCITY 175 | - ANGULARVELOCITY 176 | - - tabColumns 177 | - - ICON 178 | - DISTANCE 179 | - NAME 180 | - TYPE 181 | - CORPORATION 182 | - ALLIANCE 183 | - VELOCITY 184 | - ANGULARVELOCITY 185 | - - 9 186 | - - - bracket 187 | - '/ Brackets: Combat' 188 | - - color 189 | - - 0.9333 190 | - 0.1333 191 | - 0.9333 192 | - - name 193 | - FLEET 194 | - - overview 195 | - '❖ Ships: Fleet' 196 | - - tabColumns 197 | - - ICON 198 | - DISTANCE 199 | - NAME 200 | - TYPE 201 | - VELOCITY 202 | - ANGULARVELOCITY 203 | - ALLIANCE 204 | - CORPORATION 205 | - - 10 206 | - - - bracket 207 | - '/ Brackets: Combat' 208 | - - color 209 | - - 0.098 210 | - 0.6 211 | - 0.098 212 | - - name 213 | - FRIENDLY 214 | - - overview 215 | - '❖ Ships: Friendly' 216 | - - tabColumns 217 | - - ICON 218 | - DISTANCE 219 | - NAME 220 | - TYPE 221 | - VELOCITY 222 | - ANGULARVELOCITY 223 | - ALLIANCE 224 | - CORPORATION 225 | - - 11 226 | - - - bracket 227 | - '/ Brackets: Combat (+drones)' 228 | - - color 229 | - - 1.0 230 | - 1.0 231 | - 1.0 232 | - - name 233 | - MINING 234 | - - overview 235 | - '✪ System: Mining' 236 | - - tabColumns 237 | - - DISTANCE 238 | - ICON 239 | - NAME 240 | - TYPE -------------------------------------------------------------------------------- /parts/user.yaml: -------------------------------------------------------------------------------- 1 | userSettings: [] 2 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Iridium Overview 2 | 3 | An EVE Online overview pack. 4 | 5 | ## For users 6 | 7 | - See [wiki article on IridiumOps website](https://iridiumops.github.io/website/#!/website/wiki/overview.md) for details. 8 | - Get the latest version in [Releases](https://github.com/iridiumops/overview/releases) or the ingame channel `Iridium Overview` 9 | - See [Changelog](https://github.com/iridiumops/overview/blob/main/changelog.md) for latest changes and release notes. 10 | 11 | ## For developers 12 | - See [Setup and Workflow](https://github.com/iridiumops/overview/blob/main/workflow.md) 13 | - This project is open source, see [License](https://github.com/iridiumops/overview/blob/main/license.md) for details. Feel free to contribute or fork! 14 | 15 | ## Contact 16 | 17 | Contact `Thomas Iridium` in-game or via email: 18 | 19 | ## Relevant links 20 | 21 | - https://iridiumops.github.io/website/ 22 | - https://eveonline.com/ 23 | - https://wiki.eveuniversity.org/Overview 24 | 25 | --- 26 | 27 | ![Iridium Overview v3](https://i.imgur.com/aSXYzO9.jpeg) -------------------------------------------------------------------------------- /releases/readme.md: -------------------------------------------------------------------------------- 1 | # Release archive 2 | 3 | This archive includes some old Iridium Overview versions. New releases are also on GitHub release page. -------------------------------------------------------------------------------- /requirements/create.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | chcp 65001 > nul 3 | 4 | set "conda_env=iridium_overview" 5 | 6 | echo Checking if conda environment exists... 7 | call conda list --name %conda_env% 8 | if %ERRORLEVEL% EQU 0 ( 9 | echo Removing old conda environment... 10 | call conda env remove --name %conda_env% 11 | ) else ( 12 | echo Environment %conda_env% not found. 13 | ) 14 | 15 | echo Creating new conda environment from file... 16 | call conda env create --name %conda_env% -f environment.yml 17 | 18 | pause 19 | goto :eof -------------------------------------------------------------------------------- /requirements/environment.yml: -------------------------------------------------------------------------------- 1 | name: iridium_overview 2 | channels: 3 | - defaults 4 | dependencies: 5 | - ca-certificates=2024.9.24=haa95532_0 6 | - libffi=3.4.4=hd77b12b_1 7 | - openssl=3.0.15=h827c3e9_0 8 | - pip=22.3.1=py38haa95532_0 9 | - python=3.8.20=h8205438_0 10 | - setuptools=75.1.0=py38haa95532_0 11 | - sqlite=3.45.3=h2bbff1b_0 12 | - vc=14.40=h2eaa2aa_1 13 | - vs2015_runtime=14.40.33807=h98bb1dd_1 14 | - wheel=0.44.0=py38haa95532_0 15 | - pip: 16 | - numpy==1.24.4 17 | - pandas==2.0.3 18 | - python-dateutil==2.9.0.post0 19 | - pytz==2024.2 20 | - pyyaml==6.0.2 21 | - six==1.16.0 22 | - tzdata==2024.2 23 | prefix: c:\programs\anaconda\envs\iridium_overview 24 | -------------------------------------------------------------------------------- /requirements/export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | chcp 65001 > nul 3 | 4 | echo Exporting conda environment to file... 5 | 6 | call activate.bat iridium_overview 7 | call conda env export > environment.yml 8 | 9 | pause 10 | goto :eof -------------------------------------------------------------------------------- /shell.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | title iridium_overview 3 | chcp 65001 > nul 4 | call activate.bat iridium_overview 5 | cmd -------------------------------------------------------------------------------- /src/build.py: -------------------------------------------------------------------------------- 1 | # import libs 2 | import os, yaml, re, shutil 3 | import pandas as pd 4 | from datetime import date, datetime 5 | from pprint import pprint 6 | 7 | temp_dir = "./temp" 8 | if not os.path.exists(temp_dir): 9 | os.makedirs(temp_dir) 10 | 11 | output_dir = "./output" 12 | if not os.path.exists(output_dir): 13 | os.makedirs(output_dir) 14 | 15 | parts_dir = "./parts" 16 | 17 | # list of all parts and corresponding names of yaml files 18 | parts = { 19 | "general": "general", 20 | "filters": [ 21 | "Brackets Combat", 22 | "Brackets Combat (+drones)", 23 | "Brackets Combat (-wrecks)", 24 | "DSCAN Ships", 25 | "DSCAN Basic", 26 | "DSCAN Extra", 27 | "All All", 28 | "System System", 29 | "System System (-citadels)", 30 | "System System (+belts)", 31 | "System Mining", 32 | "System Beacons", 33 | "Warp Warp out!", 34 | "Warp Travel (-citadels)", 35 | "Warp Travel", 36 | "Loot Loot and salvage", 37 | "Drones Drones and Fighters (all)", 38 | "Drones Drones and Fighters (red+neutral)", 39 | "Drones Fighters (red+neutral)", 40 | "Ships NPCs (+turrets)", 41 | "Ships Friendly", 42 | "Ships Fleet", 43 | "Ships Enemy All (red)", 44 | "Ships Enemy All (red -capsules)", 45 | "Ships Enemy All (red+neutral)", 46 | "Ships Enemy All (red+neutral -capsules)", 47 | "Ships Enemy All (war targets)", 48 | "Ships Enemy All (hisec criminals)", 49 | "Ships Enemy Logi (red+neutral)", 50 | "Ships Enemy Utility (red+neutral)", 51 | "Ships Enemy Capitals (red+neutral)", 52 | "Main PVX (+friendly +extra)", 53 | "Main PVX (+extra)", 54 | "Main PVX", 55 | "Main PVX (-npc)", 56 | "Main PVX (+mining)", 57 | "Main System & PVX (+extra)", 58 | "Main System & PVX (-npc)", 59 | ], 60 | "labels": "labels", 61 | "states": "states", 62 | "tabs": { 63 | "carbon": "tabs carbon", 64 | "icons": "tabs icons", 65 | "main": "tabs main" 66 | }, 67 | "user": "user" 68 | } 69 | 70 | 71 | def yaml_append(yaml_content, name): 72 | """ 73 | Load yaml from file and add it to the end of yaml document 74 | 75 | :param yaml_content: yaml document object 76 | :param name: file name part 77 | """ 78 | part_file_path = parts_dir + "/" + name + ".yaml" 79 | with open(part_file_path, 'r', encoding="utf8") as part_file: 80 | part_content = yaml.safe_load(part_file) 81 | yaml_content.update(part_content) 82 | 83 | 84 | def yaml_add_filter(yaml_content, name): 85 | """ 86 | Load filter from yaml file and add it to filters inside yaml document 87 | 88 | :param yaml_content: yaml document object 89 | :param name: file name part 90 | """ 91 | part_file_path = parts_dir + "/" + name + ".yaml" 92 | with open(part_file_path, 'r', encoding="utf8") as part_file: 93 | part_content = yaml.safe_load(part_file) 94 | yaml_content["presets"].extend(part_content) 95 | 96 | 97 | def yaml_sort_section(data): 98 | """ 99 | Sort groupIDs numerically in ascending order 100 | 101 | :param data: yaml document object 102 | """ 103 | if isinstance(data, dict): 104 | for key, value in data.items(): 105 | yaml_sort_section(value) 106 | elif isinstance(data, list): 107 | for item in data: 108 | if item == "groups": 109 | data[1] = sorted(data[1]) 110 | yaml_sort_section(item) 111 | else: 112 | pass 113 | 114 | 115 | def yaml_comment(data_inv_types, name): 116 | """ 117 | Add groupName (string description) as yaml comment for each groupID 118 | 119 | :param data_inv_types: mapping if groupIDs to groupName data_inv_types 120 | :param name: file name part 121 | """ 122 | part_file_path = parts_dir + "/" + name + ".yaml" 123 | part_file_path_temp = temp_dir + "/" + name + ".yaml" 124 | group_start_found = False 125 | 126 | # append group names for IDs, write to temp file 127 | with open(part_file_path, 'r', encoding="utf8") as in_file, open(part_file_path_temp, 'w', encoding="utf8") as out_file: 128 | for line in in_file: 129 | if group_start_found: 130 | match_id = re.search(r' - (\d+)', line) 131 | match_comment = re.search(r' # ', line) 132 | if match_id and not match_comment: 133 | group_id = int(match_id.group(1)) 134 | if group_id in data_inv_types: 135 | line = line.rstrip() + ' # ' + data_inv_types[group_id] + '\n' 136 | else: 137 | match_groups = re.search(r' - groups', line) 138 | if match_groups: 139 | group_start_found = True 140 | 141 | out_file.write(line) 142 | 143 | # replace old file 144 | os.remove(part_file_path) 145 | shutil.move(part_file_path_temp, part_file_path) 146 | 147 | 148 | if __name__ == '__main__': 149 | # set vars 150 | date_now = date.today().strftime("%Y%m%d") 151 | time_now = datetime.now().strftime("%H%M%S") 152 | 153 | # load groupIDs and corresponding groupNames from SDE csv 154 | data_inv_types = pd.read_csv('./data/invGroups.csv', sep=",", header=0, usecols=[0, 2], index_col=[0]) 155 | data_inv_types = data_inv_types.to_dict()["groupName"] 156 | 157 | # build yaml file(s) 158 | print("Generating all files...") 159 | for tab_type, tab_file in parts["tabs"].items(): 160 | yaml_content = {} 161 | 162 | # combine yaml parts 163 | yaml_append(yaml_content, parts["general"]) 164 | for filter in parts["filters"]: # add all filters defined in parts["filters"] 165 | filter_name = "filter " + filter 166 | yaml_comment(data_inv_types, filter_name) # optional step, adds comments to part files with groupNames for GroupIDs 167 | yaml_add_filter(yaml_content, filter_name) 168 | yaml_append(yaml_content, parts["labels"]) 169 | yaml_append(yaml_content, parts["states"]) 170 | yaml_append(yaml_content, parts["tabs"][tab_type]) 171 | yaml_append(yaml_content, parts["user"]) 172 | 173 | # sort group IDs 174 | yaml_sort_section(yaml_content) 175 | 176 | # save to file 177 | output_path = output_dir + "/iridium_overview_" + date_now + "-" + time_now + "_" + tab_type + ".yaml" 178 | with open(output_path, 'w', encoding="utf8") as outfile: 179 | yaml.safe_dump(yaml_content, outfile, sort_keys=False, encoding="utf8", allow_unicode=True) 180 | print(" - saved to file: " + output_path) 181 | 182 | print("Done") 183 | -------------------------------------------------------------------------------- /workflow.md: -------------------------------------------------------------------------------- 1 | # First time setup 2 | 1) Install [Git](https://git-scm.com/) and clone the repository `git clone https://github.com/iridiumops/overview.git` 3 | 2) Install [Anaconda or Miniconda](https://www.anaconda.com/download/success). Create Python environment and setup dependencies via `requirements/create.bat` script 4 | 5 | # Workflow 6 | 1) Get latest data: 7 | 1) Run `git fetch origin main` inside the repository. Git will fetch new changes from the Github repository for main branch if there are any. 8 | 2) Get latest SDE data via `data/download.bat`. Curl will download latest SDE export files that we need in `csv` format from Fuzzwork into the `data` directory. 9 | 2) Find new type IDs: 10 | 1) Run `git diff origin/main data\invGroups.csv` to view new inventory group type IDs by comparing newly download SDE data with data fetched from main branch on the Github repository. 11 | 2) Check ingame overview settings for any other newly added inventory group types that aren't yet in the Fuzzwork SDE export. Get their IDs by searching their names on [EVE Ref](https://everef.net/). 12 | 3) Alternatively open ingame overview settings, view the `All: All` filter and tick all types. On `Misc` tab click `Export Settings`, select only the `All: All` filter and export it to a file under any name you wish. On Windows it will be located in `%USERPROFILE%\Documents\EVE\Overview\`. You can compare the new file with `parts\filter All All.yaml` to find new IDs. 13 | 3) Update the overview filters: 14 | 1) Modify or update YAML files in `parts` directory to your liking with the new IDs. 15 | 2) Optionally update the Python build script `src/build.py` if other changes are needed. 16 | 4) Generate YAML files: 17 | 1) Run `build.bat` to build YAML files from parts. It will call `src/build.py` and generate new YAML files in the `output` directory, ready to be imported ingame. 18 | 2) Import generated YAML files into EVE Online. 19 | 1) Copy the newly generated YAML files from `output` directory to `%USERPROFILE%\Documents\EVE\Overview\` 20 | 2) Open ingame overview settings, on the `Misc` tab click `Reset All Settings` then click `Import Settings`, select desired file from the list, tick `Check All` and click `Import` to load it. 21 | 3) Check that the overview changes are correct. Repeat step above with other variants of the overview. 22 | 5) Release new version: 23 | 1) Decide on version number (use semantic versioning). 24 | 2) Update `changelog.md`, describe your changes. 25 | 3) Release it ingame: 26 | Note: if you are not approved channel operator you won't be able to update the MOTD. 27 | 1) Obtain new shareable links for all variants of the overview: 28 | 1) Open ingame overview settings. On `Misc` tab click `Import Settings`, select the main YAML file on the left, tick `Check All` and click `Import`. Without clicking on anything else in the settings, close the overview settings window and open it again to avoid a bug where some settings do not load right. 29 | 2) On `Misc` tab click `Export Settings`, select `General Overview Settings` and `Overview Profile` and up to 16 filters. 30 | 1) For part 1 select filters used by the tabs by default (should be already selected). 31 | 2) For part 2 select `Ships: Enemy...` filters. 32 | 3) Fort part 3 select remaining filters that you didn't select in part 1 or 2. 33 | 4) For version with Tab Icons repeat import but select icon YAML file instead, repeat selecting filters just like for part 1. 34 | 5) For Carbon Mode version repeat import but select carbon YAML file instead, repeat selecting filters just like for part 1. 35 | 3) Click the text left of the `Share` button at the top to rename the shareable link. 36 | 4) Drag the `Share` button to ingame notepad to create shareable link. 37 | 5) Repeat previous steps for all variants. 38 | 6) Select the links in the ingame notepad, right click and use `Copy Selected With Formatting`. Paste the links in a text editor to see the actual link URI for each link, it will look like `overviewPreset:e68.....675//1`. 39 | 2) Open `motd/motd.html` in a text editor. Update information and replace old links with new ones from the step above. Make sure it it less than 4000 bytes so it fits in the ingame MOTD. Note: html formatting used by the game is simplified and non-standard. 40 | 3) Open ingame chat channel configuration - right click on the channel tab, select `Configuration`. Copy the HTML and paste it in MOTD field. Test that all links work and point to the new version. Click `OK` to publish. 41 | 4) Release on Github: 42 | Note: if you are not approved contributor, you should instead push to your own fork and then submit pull request as you will not have necessary privileges to push to main branch. 43 | 1) Copy YAML files from `output` directory to `releases` directory and rename them based on the version. 44 | 2) Run `git status` to see all changes 45 | 3) Run `git add .` to add tracking for new and changed files and stage them for commit. 46 | 4) Run `git commit -m "MESSAGE"` where message is short description of what changed. 47 | 5) Run `git tag v1.0.0` where 1.0.0 is the new version number to apply the tag to the last commit. 48 | 6) Run `git rebase` in case there are diverging changes between your local repository and Github repository. This will merge changes from last commit on the end of main branch. 49 | 7) Run `git push origin main --dry-run` to to confirm that there are no conflicts. 50 | 8) Run `git push origin main ` to update Github repository. 51 | 9) Run `git push origin --tags` to update tags in the Github repository. 52 | 10) On Github create a new release. Select the added tag. Write release description or copy information from changelog, select individual YAML files from for the release or upload a zip containing them all. Set the release as latest. 53 | 5) Notify `Thomas Iridium` to update overview page on the iridiumops website and discord. 54 | 55 | --------------------------------------------------------------------------------