├── gambit
├── blocker_small.svg
├── blocker_medium.svg
├── blocker_large.svg
├── blocker_giant.svg
├── gambit_hostiles2.svg
└── gambit_mote2.svg
├── docs-build
├── public
│ ├── manifest.json
│ └── index.html
├── .gitignore
├── src
│ ├── index.js
│ └── App.js
├── package.json
└── scripts
│ └── index.js
├── general
├── stasis.svg
├── class_titan_proportional.svg
├── damage_stasis.svg
├── arrivals.svg
├── class_titan.svg
├── cabal-gold.svg
├── consumables.svg
├── class_hunter.svg
├── class_hunter_proportional.svg
├── class_warlock.svg
├── class_warlock_proportional.svg
├── power2.svg
├── mobility.svg
├── vault_armour.svg
├── ammo-primary.svg
├── shaped.svg
├── the-hunt.svg
├── the-chosen.svg
├── resilience.svg
├── strength.svg
├── ammo-special.svg
├── clan.svg
├── class_warlock_outline.svg
├── engram.svg
├── recovery.svg
├── discipline.svg
├── ammo-heavy.svg
├── power.svg
├── pursuits.svg
├── class_titan_outline.svg
├── shaders2.svg
├── collections.svg
├── intellect.svg
├── ship.svg
├── energy_weapon.svg
├── the-worthy.svg
├── damage_solar.svg
├── class_hunter_outline.svg
├── gunsmith_materials.svg
├── emblem.svg
├── damage_void.svg
├── ghost.svg
├── modifications.svg
├── shadowkeep.svg
├── damage_arc.svg
├── shaders.svg
├── sparrow.svg
├── empty-engram.svg
└── traveller.svg
├── breaker_types
├── pierce.svg
├── stagger.svg
└── overload.svg
├── explore
├── sleeper_nodes.svg
├── quest.svg
├── clovis_bray.svg
├── clovis_bray_device.svg
├── ace_of_spades.svg
├── shield_artifact.svg
├── lost_memory_fragments.svg
├── quest_flag.svg
├── cat_statues.svg
├── adventure.svg
├── ghost.svg
├── leviathan_cup.svg
├── region_chest.svg
├── quest_flag-colour.svg
├── patrol.svg
├── strike.svg
├── ishtar.svg
├── leviathan_axes.svg
└── adventure-colour.svg
├── factions
├── xur_ix.svg
├── team_alpha.svg
├── black_armory.svg
├── faction_xur.svg
├── faction_xur3.svg
├── black_armory_forge.svg
├── faction_new_monarchy.svg
├── faction_vanguard.svg
├── faction_xur2.svg
├── team_bravo.svg
├── faction_new_monarchy2.svg
├── faction_thenine.svg
├── srl.svg
├── faction_queens_wrath.svg
├── faction_fwc2.svg
├── faction_fwc3.svg
├── faction_fwc.svg
├── faction_cryptarch.svg
└── faction_dead_orbit.svg
├── armor_types
├── boots.svg
├── chest.svg
├── helmet.svg
├── class.svg
└── gloves.svg
├── readme.md
├── weapons
├── sword_heavy.svg
├── headshot.svg
├── grenade.svg
├── grenade_launcher.svg
├── beam_weapon.svg
├── damage_solar.svg
├── sidearm.svg
├── damage_arc.svg
├── hand_cannon.svg
├── fusion_rifle.svg
├── environment_hazard.svg
├── melee.svg
├── cabal_rifle.svg
├── auto_rifle.svg
├── shotgun.svg
├── sniper_rifle.svg
├── pulse_rifle.svg
├── rocket_launcher.svg
├── smg.svg
├── hunter_smoke.svg
├── scout_rifle.svg
├── bow.svg
├── trace_rifle.svg
├── wire_rifle.svg
├── throwing_knife.svg
├── spear_launcher.svg
└── arc_drone.svg
├── abilities
├── stasis_crystal_shatter.svg
├── stasis_titan_melee.svg
├── stasis_encasement_shatter.svg
├── stasis_grenade_wave.svg
├── stasis_grenade_bolt.svg
├── stasis_grenade_flare.svg
└── stasis_turret.svg
├── vehicles
├── loader_tank.svg
├── guardian_tank.svg
├── turret.svg
└── sparrow.svg
├── races
├── fallen_kings.svg
├── fallen_winter.svg
├── hive_crota.svg
├── fallen_devils.svg
├── fallen_judgement.svg
└── vex.svg
├── deep_stone_crypt_raid
├── Scanner.svg
├── Suppressor.svg
└── Operator.svg
├── supers
├── arc_titan.svg
├── stasis_hunter.svg
├── stasis_titan.svg
├── arc_hunter.svg
└── solar_warlock.svg
└── events
└── crimson_days.svg
/gambit/blocker_small.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/docs-build/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "destiny-icons-index",
3 | "name": "destiny-icons-index",
4 | "icons": [],
5 | "start_url": ".",
6 | "theme_color": "#000000",
7 | "background_color": "#ffffff"
8 | }
9 |
--------------------------------------------------------------------------------
/general/stasis.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/general/class_titan_proportional.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/general/damage_stasis.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/gambit/blocker_medium.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/general/arrivals.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/general/class_titan.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/general/cabal-gold.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/breaker_types/pierce.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/general/consumables.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/explore/sleeper_nodes.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/general/class_hunter.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/general/class_hunter_proportional.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/general/class_warlock.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/general/class_warlock_proportional.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/breaker_types/stagger.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/gambit/blocker_large.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/general/power2.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/general/mobility.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/docs-build/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/breaker_types/overload.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/general/vault_armour.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/general/ammo-primary.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/docs-build/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 |
4 | import App from './App';
5 | import * as serviceWorker from './serviceWorker';
6 |
7 | ReactDOM.render(, document.getElementById('root'));
8 |
9 | // If you want your app to work offline and load faster, you can change
10 | // unregister() to register() below. Note this comes with some pitfalls.
11 | // Learn more about service workers: https://bit.ly/CRA-PWA
12 | serviceWorker.unregister();
13 |
--------------------------------------------------------------------------------
/general/shaped.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs-build/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | Destiny Icons
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/gambit/blocker_giant.svg:
--------------------------------------------------------------------------------
1 |
11 |
--------------------------------------------------------------------------------
/factions/xur_ix.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/armor_types/boots.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/general/the-hunt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/general/the-chosen.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/factions/team_alpha.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/general/resilience.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | Bungie Content © Bungie, Inc. All rights reserved. Destiny, the Destiny Logo,
2 | Bungie and the Bungie logo are among the trademarks of Bungie, Inc.
3 |
4 | # Destiny icons
5 |
6 | Hello! I've spent some time remastering and collecting Destiny and Destiny-related icons to use in my projects. Use them for yours!
7 |
8 | View the icons online at [https://justrealmilk.github.io/destiny-icons/](https://justrealmilk.github.io/destiny-icons/)!
9 |
10 | ## Web fonts
11 |
12 | [https://icomoon.io/app/](https://icomoon.io/app/) is my favourite for making web fonts from these SVGs. Highly recommend.
13 |
--------------------------------------------------------------------------------
/explore/quest.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/explore/clovis_bray.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/general/strength.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/general/ammo-special.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/weapons/sword_heavy.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/abilities/stasis_crystal_shatter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/armor_types/chest.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/general/clan.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vehicles/loader_tank.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/armor_types/helmet.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/explore/clovis_bray_device.svg:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/general/class_warlock_outline.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/weapons/headshot.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/weapons/grenade.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/general/engram.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/general/recovery.svg:
--------------------------------------------------------------------------------
1 |
11 |
--------------------------------------------------------------------------------
/races/fallen_kings.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/weapons/grenade_launcher.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/explore/ace_of_spades.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/general/discipline.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/general/ammo-heavy.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/vehicles/guardian_tank.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/explore/shield_artifact.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/weapons/beam_weapon.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/weapons/damage_solar.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/general/power.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/explore/lost_memory_fragments.svg:
--------------------------------------------------------------------------------
1 |
2 |
14 |
--------------------------------------------------------------------------------
/docs-build/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "destiny-icons-index",
3 | "version": "0.2.0",
4 | "private": true,
5 | "homepage": "https://justrealmilk.github.io/destiny-icons/",
6 | "dependencies": {
7 | "react": "^16.11.0",
8 | "react-dom": "^16.11.0",
9 | "react-scripts": "3.2.0"
10 | },
11 | "scripts": {
12 | "start": "react-scripts start",
13 | "build": "react-scripts build",
14 | "test": "react-scripts test",
15 | "eject": "react-scripts eject",
16 | "predeploy": "npm run build",
17 | "deploy": "gh-pages -d build"
18 | },
19 | "eslintConfig": {
20 | "extends": "react-app"
21 | },
22 | "browserslist": {
23 | "production": [
24 | ">0.2%",
25 | "not dead",
26 | "not op_mini all"
27 | ],
28 | "development": [
29 | "last 1 chrome version",
30 | "last 1 firefox version",
31 | "last 1 safari version"
32 | ]
33 | },
34 | "devDependencies": {
35 | "gh-pages": "^2.1.1"
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/weapons/sidearm.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/docs-build/scripts/index.js:
--------------------------------------------------------------------------------
1 | const fs = require('fs');
2 | const path = require('path');
3 |
4 | const root = '../';
5 |
6 | function dirTree(filename) {
7 |
8 | var stats = fs.lstatSync(filename),
9 | info = {
10 | path: filename.replace(root, ''),
11 | name: path.basename(filename)
12 | };
13 |
14 | if (['/.git', '/LICENSE', '/readme.md', '/docs', '/docs-build'].includes(info.path)) return false;
15 |
16 | if (stats.isDirectory()) {
17 | info.type = 'folder';
18 | info.children = fs.readdirSync(filename).map(function(child) {
19 | return dirTree(filename + '/' + child);
20 | }).filter(f => f);
21 | } else {
22 | // Assuming it's a file. In real life it could be a symlink or
23 | // something else!
24 | info.type = 'file';
25 | info.content = fs.readFileSync(filename).toString();
26 | }
27 |
28 | return info;
29 | }
30 |
31 | const index = dirTree(root);
32 |
33 | fs.writeFile(`./src/data.json`, JSON.stringify(index), 'utf8', () => {});
34 |
--------------------------------------------------------------------------------
/abilities/stasis_titan_melee.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
12 |
--------------------------------------------------------------------------------
/factions/black_armory.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
12 |
--------------------------------------------------------------------------------
/general/pursuits.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/armor_types/class.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/general/class_titan_outline.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/abilities/stasis_encasement_shatter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/abilities/stasis_grenade_wave.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/weapons/damage_arc.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/general/shaders2.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/vehicles/turret.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/general/collections.svg:
--------------------------------------------------------------------------------
1 |
16 |
--------------------------------------------------------------------------------
/general/intellect.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/general/ship.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs-build/src/App.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | import './App.css';
4 |
5 | import data from './data.json';
6 |
7 | class App extends React.Component {
8 | constructor() {
9 | super();
10 |
11 | this.state = {};
12 | }
13 |
14 | componentDidMount() {
15 | console.log(data)
16 | }
17 |
18 | render() {
19 |
20 |
21 |
22 | return (
23 |
24 | {data.children.map((f, i) => {
25 | return (
26 |
27 |
{f.name}
28 |
29 | {f.children.filter(c => c.type === 'file').map((f, i) => {
30 |
31 | return (
32 |
33 |
}`})
34 |
{f.name}
35 |
36 | )
37 | })}
38 |
39 |
40 | )
41 | })}
42 |
43 | );
44 |
45 | }
46 | }
47 |
48 | export default App;
--------------------------------------------------------------------------------
/weapons/hand_cannon.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/armor_types/gloves.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/general/energy_weapon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/weapons/fusion_rifle.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/general/the-worthy.svg:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/weapons/environment_hazard.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/general/damage_solar.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/weapons/melee.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/gambit/gambit_hostiles2.svg:
--------------------------------------------------------------------------------
1 |
2 |
14 |
--------------------------------------------------------------------------------
/factions/faction_xur.svg:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/general/class_hunter_outline.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/factions/faction_xur3.svg:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/general/gunsmith_materials.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/weapons/cabal_rifle.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/general/emblem.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/weapons/auto_rifle.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/weapons/shotgun.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/factions/black_armory_forge.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/explore/quest_flag.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/factions/faction_new_monarchy.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/explore/cat_statues.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/weapons/sniper_rifle.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/weapons/pulse_rifle.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/weapons/rocket_launcher.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/abilities/stasis_grenade_bolt.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
15 |
--------------------------------------------------------------------------------
/explore/adventure.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/explore/ghost.svg:
--------------------------------------------------------------------------------
1 |
2 |
19 |
--------------------------------------------------------------------------------
/weapons/smg.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/general/damage_void.svg:
--------------------------------------------------------------------------------
1 |
19 |
--------------------------------------------------------------------------------
/vehicles/sparrow.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/deep_stone_crypt_raid/Scanner.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
--------------------------------------------------------------------------------
/factions/faction_vanguard.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/factions/faction_xur2.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/explore/leviathan_cup.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/explore/region_chest.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/factions/team_bravo.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/factions/faction_new_monarchy2.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/factions/faction_thenine.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/supers/arc_titan.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/weapons/hunter_smoke.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/deep_stone_crypt_raid/Suppressor.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/races/fallen_winter.svg:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/weapons/scout_rifle.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/explore/quest_flag-colour.svg:
--------------------------------------------------------------------------------
1 |
2 |
11 |
--------------------------------------------------------------------------------
/explore/patrol.svg:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/supers/stasis_hunter.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
15 |
--------------------------------------------------------------------------------
/general/ghost.svg:
--------------------------------------------------------------------------------
1 |
2 |
19 |
--------------------------------------------------------------------------------
/races/hive_crota.svg:
--------------------------------------------------------------------------------
1 |
23 |
--------------------------------------------------------------------------------
/general/modifications.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/general/shadowkeep.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/supers/stasis_titan.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
16 |
--------------------------------------------------------------------------------
/abilities/stasis_grenade_flare.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
16 |
--------------------------------------------------------------------------------
/races/fallen_devils.svg:
--------------------------------------------------------------------------------
1 |
21 |
--------------------------------------------------------------------------------
/abilities/stasis_turret.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
--------------------------------------------------------------------------------
/weapons/bow.svg:
--------------------------------------------------------------------------------
1 |
2 |
5 |
--------------------------------------------------------------------------------
/explore/strike.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/weapons/trace_rifle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/general/damage_arc.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/races/fallen_judgement.svg:
--------------------------------------------------------------------------------
1 |
17 |
--------------------------------------------------------------------------------
/weapons/wire_rifle.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/general/shaders.svg:
--------------------------------------------------------------------------------
1 |
40 |
--------------------------------------------------------------------------------
/factions/srl.svg:
--------------------------------------------------------------------------------
1 |
2 |
11 |
--------------------------------------------------------------------------------
/weapons/throwing_knife.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/races/vex.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/supers/arc_hunter.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/general/sparrow.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/explore/ishtar.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/factions/faction_queens_wrath.svg:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/supers/solar_warlock.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/factions/faction_fwc2.svg:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/factions/faction_fwc3.svg:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/explore/leviathan_axes.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/weapons/spear_launcher.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/factions/faction_fwc.svg:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/weapons/arc_drone.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/gambit/gambit_mote2.svg:
--------------------------------------------------------------------------------
1 |
2 |
22 |
--------------------------------------------------------------------------------
/events/crimson_days.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/deep_stone_crypt_raid/Operator.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
27 |
--------------------------------------------------------------------------------
/factions/faction_cryptarch.svg:
--------------------------------------------------------------------------------
1 |
2 |
20 |
--------------------------------------------------------------------------------
/general/empty-engram.svg:
--------------------------------------------------------------------------------
1 |
32 |
--------------------------------------------------------------------------------
/factions/faction_dead_orbit.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/explore/adventure-colour.svg:
--------------------------------------------------------------------------------
1 |
2 |
11 |
--------------------------------------------------------------------------------
/general/traveller.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------