Destiny 1 Emblem Charts

48 shiny Destiny 1 emblems. Enjoy, my friends.

Emblem Emblem Name Link
Clades Orygis Chart
Judgment’s Right Hand * Chart
Vigilamus Noctu Chart
Sign of Opposing Will * Chart
Blessing of the Unmade * Chart
Comet’s Heart Chart
Sigil of the War Cult * Chart
The Rising* Chart
Badge of the Monarchy Chart
The Reflective Proof * Chart
Omen of Chaos Chart
Devourer of Light * Chart
Slayer of Oryx * Chart
Alt Chart ^
Vanguard Honor Chart
Vigilant Disciple ^ Chart
Alt Chart *
Nadir * Chart
Vosik’s Venom Chart
Command ^ Chart
Bomb Squad II ^ Chart
Founder’s Seal Chart
Rising Light ^ Chart
City Force Chart
Sign of Unity Chart
Sentinel’s Crest ^ Chart
Swords of the Dawn Chart
Crota’s End ^ Chart
Eris Morn Chart
Crown of the Sovereign ^ Chart
Emerald Rook Chart
Alt Chart ^
The Obelisk I Chart
Bomb Squad # Chart
Bastet’s Dream Chart
Sunset City ^ Chart
Corsair’s Badge Chart
Glass and Time Chart
Sign of Momentum Chart
SUROS Chart
Sigil of Deviance # Chart
Omolon # Chart
Kellbreaker Chart
Symbol of the Wolf ~ Chart
Paladin’s Blazon * Chart
Alt Chart ^
Sign of the Finite Chart
Häkke Chart
Prison of Elders ^ Chart
Echoes of Shattered Suns * Chart
Field of Light Chart
Heart of the Foundation Chart
* made by Talliroxxor
^ made by BlueCrew86
~ made by GingerFaerie
# made by kbgreenland

If you do decide to tackle any of these, I’d love to see them! Be sure to tag @craftinggeek on Twitter or Instagram.

Happy crafting!

window._tkq = window._tkq || [];

window._tkq.push( [ ‘recordEvent’, ‘wpcom_marketing_bar_impression’, {“is_current_user_blog_owner”:false} ] );

document.querySelectorAll( ‘#marketingbar > a’ ).forEach( link => {
link.addEventListener( ‘click’, ( e ) => {
window._tkq.push( [ ‘recordEvent’, ‘wpcom_marketing_bar_cta_click’, {“is_current_user_blog_owner”:false} ] );
} );
});

( function() {
function getMobileUserAgentInfo() {
if ( typeof wpcom_mobile_user_agent_info === ‘object’ ) {
wpcom_mobile_user_agent_info.init();
var mobileStatsQueryString = ”;

if ( wpcom_mobile_user_agent_info.matchedPlatformName !== false ) {
mobileStatsQueryString += ‘&x_’ + ‘mobile_platforms’ + ‘=’ + wpcom_mobile_user_agent_info.matchedPlatformName;
}

if ( wpcom_mobile_user_agent_info.matchedUserAgentName !== false ) {
mobileStatsQueryString += ‘&x_’ + ‘mobile_devices’ + ‘=’ + wpcom_mobile_user_agent_info.matchedUserAgentName;
}

if ( wpcom_mobile_user_agent_info.isIPad() ) {
mobileStatsQueryString += ‘&x_’ + ‘ipad_views’ + ‘=’ + ‘views’;
}

if ( mobileStatsQueryString != ” ) {
new Image().src = document.location.protocol + ‘//pixel.wp.com/g.gif?v=wpcom-no-pv’ + mobileStatsQueryString + ‘&baba=’ + Math.random();
}
}
}

document.addEventListener( ‘DOMContentLoaded’, getMobileUserAgentInfo );
} )();

wp.i18n.setLocaleData( { ‘text direction\u0004ltr’: [ ‘ltr’ ] } );

(function() {
‘use strict’;

const fetches = {};
const promises = {};
const urls = {
‘wp-polyfill’: ‘https://s0.wp.com/wp-includes/js/dist/vendor/wp-polyfill.min.js?m=1727178113i&ver=3.15.0’,
‘wp-hooks’: ‘https://s0.wp.com/wp-content/plugins/gutenberg-core/v20.0.4/build/hooks/index.min.js?m=1741299224i&ver=84e753e2b66eb7028d38’,
‘wp-i18n’: ‘https://s0.wp.com/wp-content/plugins/gutenberg-core/v20.0.4/build/i18n/index.min.js?m=1741299224i&ver=bd5a2533e717a1043151’,
‘verbum’: ‘https://s0.wp.com/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/sun/jetpack_vendor/automattic/jetpack-mu-wpcom/src/build/verbum-comments/verbum-comments.js?m=1739372488i&minify=false&ver=7cb57b0505fcb6a13e20’
};
const loaders = {
‘verbum’: () => {
fetchExternalScript(‘wp-polyfill’);
fetchExternalScript(‘wp-hooks’);
fetchExternalScript(‘wp-i18n’);
fetchExternalScript(‘verbum’);
promises[‘wp-polyfill’] = promises[‘wp-polyfill’] || loadWPScript(‘wp-polyfill’);
promises[‘wp-hooks’] = promises[‘wp-hooks’] || promises[‘wp-polyfill’].then( () => loadWPScript(‘wp-hooks’) );
promises[‘wp-i18n’] = promises[‘wp-i18n’] || Promise.all( [ promises[‘wp-hooks’], promises[‘wp-polyfill’], ] ).then( () => loadWPScript(‘wp-i18n’) );
promises[‘verbum’] = promises[‘verbum’] || Promise.all( [ promises[‘wp-polyfill’], promises[‘wp-i18n’], ] ).then( () => loadWPScript(‘verbum’) );
return promises[‘verbum’];
},

};
const scriptExtras = {
‘wp-i18n’: { translations: 0, before: 0, after: 1 },

};

window.WP_Enqueue_Dynamic_Script = {
loadScript: (handle) => {
if (!loaders[handle]) {
console.error(‘WP_Enqueue_Dynamic_Script: unregistered script `’ + handle + ‘`.’);
}
return loaders[handle]();
}
};

function fetchExternalScript(handle) {
if (!urls[handle]) {
return Promise.resolve();
}

fetches[handle] = fetches[handle] || fetch(urls[handle], { mode: ‘no-cors’ });
return fetches[handle];
}

function runExtraScript(handle, type, index) {
const id = ‘wp-enqueue-dynamic-script:’ + handle + ‘:’ + type + ‘:’ + (index + 1);
const template = document.getElementById(id);
if (!template) {
return Promise.reject();
}

const script = document.createElement( ‘script’ );
script.innerHTML = template.innerHTML;
document.body.appendChild( script );
return Promise.resolve();
}

function loadExternalScript(handle) {
if (!urls[handle]) {
return Promise.resolve();
}

return fetches[handle].then(() => {
return new Promise((resolve, reject) => {
const script = document.createElement(‘script’);
script.onload = () => resolve();
script.onerror = (e) => reject(e);
script.src = urls[handle];
document.body.appendChild(script);
});
});
}

function loadExtra(handle, pos) {
const count = (scriptExtras[handle] && scriptExtras[handle][pos]) || 0;
let promise = Promise.resolve();

for (let i = 0; i runExtraScript(handle, pos, i));
}

return promise;
}

function loadWPScript(handle) {
// Core loads scripts in this order. See: https://github.com/WordPress/WordPress/blob/a59eb9d39c4fcba834b70c9e8dfd64feeec10ba6/wp-includes/class-wp-scripts.php#L428.
return loadExtra(handle, ‘translations’)
.then(() => loadExtra(handle, ‘before’))
.then(() => loadExternalScript(handle))
.then(() => loadExtra(handle, ‘after’));
}
} )();

Create a website or blog at WordPress.com

Up ↑