Eldraine now official; adding unofficials for Theros Beyond Death, Ikoria, Zendikar Rising, Core 2021, Game Night 2019, and PTG promos

This commit is contained in:
Andrew Gioia 2019-10-30 10:05:42 -04:00
parent b2814f1001
commit 75e7879791
13 changed files with 63 additions and 1031 deletions

View File

@ -1,4 +1,4 @@
# Keyrune v3.5.0
# Keyrune v3.6.0
## The Magic: the Gathering set symbol font!
@ -54,6 +54,7 @@ All set symbol images are trademarks of Wizards of the Coast ([http://magicthega
## Changelog
* v3.6.0 - Big 2020 update: unofficials for Theros: Beyond Death, Ikoria: Lair of Behemoths, Core 2021, Zendikar Rising, promo PTG, and Game Night 2019; ELD updated with official
* v3.5.0 - Throne of Eldraine (unofficial) and Commander 2019 added; SCSS files cleaned up and tested; SVG files now distributed with project
* v3.4.3 - Magic 2020 (finally) added, sorry everyone. M19 symbol updated to M20 style it should have been.
* v3.4.2 - Signature Spellbook: Gideon added, Mirage symbol corrected

View File

@ -1,7 +1,7 @@
{
"name": "keyrune",
"homepage": "http://andrewgioia.github.io/Keyrune",
"version": "3.5.0",
"version": "3.6.0",
"authors": [
"Andrew Gioia <andrewgioia@gmail.com>"
],

View File

@ -2,8 +2,8 @@
* Global */
@font-face {
font-family: 'Keyrune';
src: url('../fonts/keyrune.eot?v=3.5.0');
src: url('../fonts/keyrune.eot?#iefix&v=3.5.0') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.5.0') format('woff2'), url('../fonts/keyrune.woff?v=3.5.0') format('woff'), url('../fonts/keyrune.ttf?v=3.5.0') format('truetype'), url('../fonts/keyrune.svg?v=3.5.0#keyrune') format('svg');
src: url('../fonts/keyrune.eot?v=3.6.0');
src: url('../fonts/keyrune.eot?#iefix&v=3.6.0') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.6.0') format('woff2'), url('../fonts/keyrune.woff?v=3.6.0') format('woff'), url('../fonts/keyrune.ttf?v=3.6.0') format('truetype'), url('../fonts/keyrune.svg?v=3.6.0#keyrune') format('svg');
font-weight: normal;
font-style: normal;
}
@ -216,6 +216,9 @@
.ss-3e:before {
content: "\e94a";
}
.ss-m21:before {
content: "\e960";
}
/**
* Expansions */
/* Artifact Block */
@ -501,6 +504,16 @@
.ss-eld:before {
content: "\e95e";
}
/* 2020 Sets */
.ss-thb:before {
content: "\e961";
}
.ss-xikr:before {
content: "\e962";
}
.ss-xznr:before {
content: "\e963";
}
/**
* Command Zone */
.ss-van:before {
@ -805,6 +818,9 @@
.ss-gnt:before {
content: "\e94d";
}
.ss-gn2:before {
content: "\e964";
}
/**
* Promotional */
.ss-pgru:before {
@ -892,6 +908,9 @@
.ss-med:before {
content: "\e94c";
}
.ss-ptg:before {
content: "\e965";
}
/**
* Online */
.ss-me1:before {

1010
css/keyrune.min.css vendored

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 529 KiB

After

Width:  |  Height:  |  Size: 540 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -27,6 +27,7 @@
.@{ss-prefix}-2e:before { content: "\e948"; } // Beta (MODO)
.@{ss-prefix}-2u:before { content: "\e949"; } // Unlimited (MODO)
.@{ss-prefix}-3e:before { content: "\e94a"; } // Revised (MODO)
.@{ss-prefix}-m21:before { content: "\e960"; } // Core 2021
/**
* Expansions */
@ -148,6 +149,10 @@
.@{ss-prefix}-war:before { content: "\e95a"; } // War of the Spark
/* Eldraine Block */
.@{ss-prefix}-eld:before { content: "\e95e"; } // Throne of Eldraine
/* 2020 Sets */
.@{ss-prefix}-thb:before { content: "\e961"; } // Theros: Beyond Death
.@{ss-prefix}-xikr:before { content: "\e962"; } // Ikoria: Lair of Behemoths
.@{ss-prefix}-xznr:before { content: "\e963"; } // Zendikar Rising
/**
* Command Zone */
@ -284,6 +289,7 @@
* Other Supplemental Products */
.@{ss-prefix}-gnt:before { content: "\e94d"; } // Game Night
.@{ss-prefix}-gn2:before { content: "\e964"; } // Game Night 2019
/**
* Promotional */
@ -317,6 +323,7 @@
.@{ss-prefix}-parl3:before { content: "\e943"; } // MTGO Arena
.@{ss-prefix}-htr:before { content: "\e687"; } // 2016 Heroes of the Realm
.@{ss-prefix}-med:before { content: "\e94c"; } // Mythic Edition
.@{ss-prefix}-ptg:before { content: "\e965"; } // Ponies: the Galloping
/**
* Online */

View File

@ -2,6 +2,6 @@
* Global */
@ss-font-path: '../fonts';
@ss-version: '3.5.0';
@ss-version: '3.6.0';
@ss-font-size-base: 14px;
@ss-prefix: ss;

View File

@ -1,7 +1,7 @@
{
"name": "keyrune",
"description": "Keyrune",
"version": "3.5.0",
"version": "3.6.0",
"author": {
"name": "Andrew Gioia",
"email": "andrewgioia@gmail.com",

View File

@ -1,7 +1,7 @@
/**
* Globals */
$keyrune_version: '3.5.0' !default;
$keyrune_version: '3.6.0' !default;
$keyrune_font_path: '../fonts' !default;
// font specific
@ -79,6 +79,7 @@ $keyrune_sets: (
("Beta (MODO)", "2e", "\e948"),
("Unlimited (MODO)", "2u", "\e949"),
("Revised (MODO)", "3e", "\e94a"),
("Core 2021", "m21", "\e960"),
//
// Artifact block
("Arabian Nights", "arn", "\e613"),
@ -197,8 +198,12 @@ $keyrune_sets: (
("War of the Spark", "war", "\e95a"),
// Eldraine block
("Throne of Eldraine", "eld", "\e95e"),
// 2020 sets
("Theros: Beyond Death", "thb", "\e961"),
("Ikoria: Lair of Behemoths", "xikr", "\e962"),
("Zendikar Rising", "xznr", "\e963"),
//
// command zone
// Command zone
("Vanguard", "van", "\e655"),
("Planechase 2009", "hop", "\e656"),
("Archenemy", "arc", "\e657"),
@ -222,7 +227,7 @@ $keyrune_sets: (
("Commander 2018", "c18", "\e946"),
("Commander 2019", "c19", "\e95f"),
//
// reprint
// Reprint sets
("Chronicles", "chr", "\e65e"),
("Anthologies", "ath", "\e65f"),
("Battle Royale", "brb", "\e660"),
@ -239,7 +244,7 @@ $keyrune_sets: (
("Ultimate Masters", "uma", "\e958"),
("Modern Horizons", "mh1", "\e95b"),
//
// beginner
// Beginner
("Portal", "por", "\e664"),
("Portal 2", "p02", "\e665"),
("Portal 2", "po2", "\e665"),
@ -249,7 +254,7 @@ $keyrune_sets: (
("Welcome Deck 2016", "w16", "\e907"),
("Welcome Deck 2017", "w17", "\e923"),
//
// duel decks
// Duel Decks
("Elves vs. Goblins", "evg", "\e669"),
("Jace vs. Chandra", "dd2", "\e66a"),
("Divine vs. Demonic", "ddc", "\e66b"),
@ -273,7 +278,7 @@ $keyrune_sets: (
("Merfolk vs. Goblins", "ddt", "\e933"),
("Elves vs. Inventors", "ddu", "\e93e"),
//
// from the vault
// From the Vaults
("Dragons", "drb", "\e678"),
("Exiled", "v09", "\e679"),
("Relics", "v10", "\e67a"),
@ -286,20 +291,20 @@ $keyrune_sets: (
("Vaults", "v0x", "\e920"),
("Transform", "v17", "\e939"),
//
// premium deck series
// Premium Deck Series
("Slivers", "h09", "\e67f"),
("Fire & Lightning", "pd2", "\e680"),
("Graveborn", "pd3", "\e681"),
("Modern Event Deck", "md1", "\e682"),
//
// signature spellbook
// Signature Spellbook
("Jace", "ss1", "\e944"),
("Gideon", "ss2", "\e95c"),
//
// global series
// Global Series
("Jiang Yanggu & Mu Yanling", "gs1", "\e945"),
//
// guild kits
// Guild Kits
("Azorius", "azorius", "\e94e"),
("Boros", "boros", "\e94f"),
("Dimir", "dimir", "\e950"),
@ -311,10 +316,11 @@ $keyrune_sets: (
("Selesnya", "selesnya", "\e956"),
("Simic", "simic", "\e957"),
//
// other supplemental products
// Other supplemental products
("Game Night", "gnt", "\e94d"),
("Game Night 2019", "gn2", "\e964"),
//
// promos
// Promos
("Guru", "pgru", "\e683"),
("Magic symbol", "pmtg1", "\e684"),
("Magic symbol", "pmtg2", "\e685"),
@ -344,8 +350,9 @@ $keyrune_sets: (
("Arena (MTGO)", "parl3", "\e943"),
("2016 Heroes of the Realm", "htr", "\e687"),
("Mythic Edition", "med", "\e94c"),
("Ponies: the Galloping", "ptg", "\e965"),
//
// online only
// Online only sets
("Masters Edition", "me1", "\e68d"),
("Masters Edition II", "me2", "\e68e"),
("Masters Edition III", "me3", "\e68f"),
@ -361,12 +368,12 @@ $keyrune_sets: (
("Magic Online Deck Series", "xmods", "\e91e"),
("Treasure Chests", "pz2", "\e91f"),
//
// unsets
// Unsets
("Unglued", "ugl", "\e691"),
("Unhinged", "unh", "\e692"),
("Unstable", "ust", "\e930"),
//
// unoffocial
// Unoffocial
("Collector's Edition", "xcle", "\e926"),
("International Collector's Edition", "xice", "\e927"),
("Two Player Introductory Set", "x2ps", "\e928"),