├── 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 | 2 | blocker_small 3 | 4 | 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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /general/class_titan_proportional.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /general/damage_stasis.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /gambit/blocker_medium.svg: -------------------------------------------------------------------------------- 1 | 2 | blocker_medium 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /general/arrivals.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /general/class_titan.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /general/cabal-gold.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /breaker_types/pierce.svg: -------------------------------------------------------------------------------- 1 | 2 | pierce 3 | 4 | 5 | -------------------------------------------------------------------------------- /general/consumables.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /explore/sleeper_nodes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | sleeper_nodes 4 | 5 | 6 | 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 | 2 | stagger 3 | 4 | 5 | -------------------------------------------------------------------------------- /gambit/blocker_large.svg: -------------------------------------------------------------------------------- 1 | 2 | blocker_large 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /general/power2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | power 4 | 5 | 6 | -------------------------------------------------------------------------------- /general/mobility.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 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 | 2 | overload 3 | 4 | 5 | -------------------------------------------------------------------------------- /general/vault_armour.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | vault_armour 4 | 5 | 6 | -------------------------------------------------------------------------------- /general/ammo-primary.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 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 | 2 | blocker_giant 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /factions/xur_ix.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | xur_ix 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /armor_types/boots.svg: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /general/the-hunt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /general/the-chosen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /factions/team_alpha.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | team_alpha 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /general/resilience.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 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 | 2 | Asset 1 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /explore/clovis_bray.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | clovis_bray 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /general/strength.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /general/ammo-special.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /weapons/sword_heavy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | sword_heavy 4 | 5 | 6 | -------------------------------------------------------------------------------- /abilities/stasis_crystal_shatter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /armor_types/chest.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /general/clan.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vehicles/loader_tank.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | loader_tank 4 | 5 | 6 | -------------------------------------------------------------------------------- /armor_types/helmet.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /explore/clovis_bray_device.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | clovis_bray_device 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /general/class_warlock_outline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weapons/headshot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | headshot 4 | 5 | 6 | -------------------------------------------------------------------------------- /weapons/grenade.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | grenade 4 | 5 | 6 | -------------------------------------------------------------------------------- /general/engram.svg: -------------------------------------------------------------------------------- 1 | 2 | engram 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /general/recovery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /races/fallen_kings.svg: -------------------------------------------------------------------------------- 1 | 2 | fallen_kings 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /weapons/grenade_launcher.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /explore/ace_of_spades.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ace_of_spades 4 | 5 | 6 | -------------------------------------------------------------------------------- /general/discipline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /general/ammo-heavy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vehicles/guardian_tank.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | guardian_tank 4 | 5 | 6 | -------------------------------------------------------------------------------- /explore/shield_artifact.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | shield_artifact 4 | 5 | 6 | -------------------------------------------------------------------------------- /weapons/beam_weapon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | beam_weapon 4 | 5 | 6 | -------------------------------------------------------------------------------- /weapons/damage_solar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | damage_solar 4 | 5 | 6 | -------------------------------------------------------------------------------- /general/power.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | power 4 | 5 | 6 | -------------------------------------------------------------------------------- /explore/lost_memory_fragments.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | lost_memory_fragments 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 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 | 3 | sidearm 4 | 5 | 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 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /factions/black_armory.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 11 | 12 | -------------------------------------------------------------------------------- /general/pursuits.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /armor_types/class.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /general/class_titan_outline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /abilities/stasis_encasement_shatter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /abilities/stasis_grenade_wave.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /weapons/damage_arc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | damage_arc 4 | 5 | 6 | -------------------------------------------------------------------------------- /general/shaders2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vehicles/turret.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | turret 4 | 5 | 6 | -------------------------------------------------------------------------------- /general/collections.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /general/intellect.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | 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 | {f.name} 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 | 3 | hand_cannon 4 | 5 | 6 | -------------------------------------------------------------------------------- /armor_types/gloves.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | -------------------------------------------------------------------------------- /general/energy_weapon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weapons/fusion_rifle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | fusion_rifle 4 | 5 | 6 | -------------------------------------------------------------------------------- /general/the-worthy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /weapons/environment_hazard.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | environment_hazard 4 | 5 | 6 | -------------------------------------------------------------------------------- /general/damage_solar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | damage_solar 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /weapons/melee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | melee 4 | 5 | 6 | -------------------------------------------------------------------------------- /gambit/gambit_hostiles2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | gambit_hostiles 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /factions/faction_xur.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | faction_xur 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /general/class_hunter_outline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /factions/faction_xur3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | faction_xur 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /general/gunsmith_materials.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | gunsmith_materials 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /weapons/cabal_rifle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | cabal_rifle 4 | 5 | 6 | -------------------------------------------------------------------------------- /general/emblem.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weapons/auto_rifle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | auto_rifle 4 | 5 | 6 | -------------------------------------------------------------------------------- /weapons/shotgun.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | shotgun 4 | 5 | 6 | -------------------------------------------------------------------------------- /factions/black_armory_forge.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 11 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /explore/quest_flag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | quest 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /factions/faction_new_monarchy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | faction_new_monarchy 4 | 5 | 6 | -------------------------------------------------------------------------------- /explore/cat_statues.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | cat_statues 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /weapons/sniper_rifle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | sniper_rifle 4 | 5 | 6 | -------------------------------------------------------------------------------- /weapons/pulse_rifle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | pulse_rifle 4 | 5 | 6 | -------------------------------------------------------------------------------- /weapons/rocket_launcher.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | rocket_launcher 4 | 5 | 6 | -------------------------------------------------------------------------------- /abilities/stasis_grenade_bolt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /explore/adventure.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | adventure 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /explore/ghost.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ghost 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /weapons/smg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | smg 4 | 5 | 6 | -------------------------------------------------------------------------------- /general/damage_void.svg: -------------------------------------------------------------------------------- 1 | 2 | damage_void 3 | 4 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /vehicles/sparrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | sparrow 4 | 5 | 6 | -------------------------------------------------------------------------------- /deep_stone_crypt_raid/Scanner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 16 | 17 | -------------------------------------------------------------------------------- /factions/faction_vanguard.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | faction_vanguard 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /factions/faction_xur2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | faction_xur2 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /explore/leviathan_cup.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | leviathan_cup 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /explore/region_chest.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | regionchest 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /factions/team_bravo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | team_bravo 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /factions/faction_new_monarchy2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | faction_new_monarchy2 4 | 5 | 6 | -------------------------------------------------------------------------------- /factions/faction_thenine.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | faction_thenine 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /supers/arc_titan.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | fist_of_havoc 4 | 5 | 6 | -------------------------------------------------------------------------------- /weapons/hunter_smoke.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | hunter_smoke 4 | 5 | 6 | -------------------------------------------------------------------------------- /deep_stone_crypt_raid/Suppressor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /races/fallen_winter.svg: -------------------------------------------------------------------------------- 1 | 2 | fallen_winter 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /weapons/scout_rifle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | scout_rifle 4 | 5 | 6 | -------------------------------------------------------------------------------- /explore/quest_flag-colour.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | quest2 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /explore/patrol.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | patrol 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /supers/stasis_hunter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /general/ghost.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /races/hive_crota.svg: -------------------------------------------------------------------------------- 1 | 2 | fallen_exile 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /general/modifications.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /general/shadowkeep.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supers/stasis_titan.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /abilities/stasis_grenade_flare.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /races/fallen_devils.svg: -------------------------------------------------------------------------------- 1 | 2 | fallen_devils 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /abilities/stasis_turret.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /weapons/bow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /explore/strike.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | strike 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /weapons/trace_rifle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /general/damage_arc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | damage_arc 4 | 5 | 6 | -------------------------------------------------------------------------------- /races/fallen_judgement.svg: -------------------------------------------------------------------------------- 1 | 2 | fallen_judgement 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /weapons/wire_rifle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | wire_rifle 4 | 5 | 6 | -------------------------------------------------------------------------------- /general/shaders.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /factions/srl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | srl 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /weapons/throwing_knife.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | throwing_knife 4 | 5 | 6 | -------------------------------------------------------------------------------- /races/vex.svg: -------------------------------------------------------------------------------- 1 | 2 | vex 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /supers/arc_hunter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | hunter_staff 4 | 5 | 6 | -------------------------------------------------------------------------------- /general/sparrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /explore/ishtar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ishtar 4 | 5 | 6 | -------------------------------------------------------------------------------- /factions/faction_queens_wrath.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | faction_queens_wrath 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /supers/solar_warlock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | warlock_blade 4 | 5 | 6 | -------------------------------------------------------------------------------- /factions/faction_fwc2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | faction_fwc2 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /factions/faction_fwc3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | faction_fwc 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /explore/leviathan_axes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | leviathan_axes 4 | 5 | 6 | -------------------------------------------------------------------------------- /weapons/spear_launcher.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | spear_launcher 4 | 5 | 6 | -------------------------------------------------------------------------------- /factions/faction_fwc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | faction_fwc 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /weapons/arc_drone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arc_drone 4 | 5 | 6 | -------------------------------------------------------------------------------- /gambit/gambit_mote2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | gambit_mote 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /events/crimson_days.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | crimson_days 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /deep_stone_crypt_raid/Operator.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /factions/faction_cryptarch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | cryptarch 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /general/empty-engram.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 14 | 15 | 21 | 22 | 23 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /factions/faction_dead_orbit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | faction_dead_orbit 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /explore/adventure-colour.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | adventure2 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /general/traveller.svg: -------------------------------------------------------------------------------- 1 | traveller_no_outline --------------------------------------------------------------------------------