mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-18 10:02:49 +00:00
some fixes post merge.
This commit is contained in:
@@ -1,75 +0,0 @@
|
|||||||
const diceFont = require('../../../themes/fonts/icon fonts/diceFont.js');
|
|
||||||
const elderberryInn = require('../../../themes/fonts/icon fonts/elderberryInn.js');
|
|
||||||
const gameIcons = require('../../../themes/fonts/iconFonts/gameIcons.js');
|
|
||||||
|
|
||||||
const emojis = {
|
|
||||||
...diceFont,
|
|
||||||
...elderberryInn,
|
|
||||||
...gameIcons,
|
|
||||||
"fas-heart": "fa-solid fa-heart",
|
|
||||||
"fas-star": "fa-solid fa-star"
|
|
||||||
};
|
|
||||||
|
|
||||||
const showEmojiAutocomplete = function(CodeMirror, editor) {
|
|
||||||
CodeMirror.commands.autocomplete = function(editor) {
|
|
||||||
editor.showHint({
|
|
||||||
completeSingle: false,
|
|
||||||
hint: function(editor) {
|
|
||||||
const cursor = editor.getCursor();
|
|
||||||
const line = cursor.line;
|
|
||||||
const lineContent = editor.getLine(line);
|
|
||||||
const start = lineContent.lastIndexOf(':', cursor.ch - 1) + 1;
|
|
||||||
const end = cursor.ch;
|
|
||||||
const currentWord = lineContent.slice(start, end);
|
|
||||||
|
|
||||||
|
|
||||||
const list = Object.keys(emojis).filter(function(emoji) {
|
|
||||||
return emoji.toLowerCase().indexOf(currentWord.toLowerCase()) >= 0;
|
|
||||||
}).sort((a, b) => {
|
|
||||||
const lowerA = a.replace(/\d+/g, function(match) { // Temporarily convert any numbers in emoji string
|
|
||||||
return match.padStart(4, '0'); // to 4-digits, left-padded with 0's, to aid in
|
|
||||||
}).toLowerCase(); // sorting numbers, i.e., "d6, d10, d20", not "d10, d20, d6"
|
|
||||||
const lowerB = b.replace(/\d+/g, function(match) { // Also make lowercase for case-insensitive alpha sorting
|
|
||||||
return match.padStart(4, '0');
|
|
||||||
}).toLowerCase();
|
|
||||||
|
|
||||||
if (lowerA < lowerB)
|
|
||||||
return -1;
|
|
||||||
return 1;
|
|
||||||
}).map(function(emoji) {
|
|
||||||
return {
|
|
||||||
text: emoji + ":", // Text to output to editor when option is selected
|
|
||||||
render: function(element, self, data) { // How to display the option in the dropdown
|
|
||||||
const div = document.createElement('div');
|
|
||||||
div.innerHTML = `<i class="emojiPreview ${emojis[emoji]}"></i> ${emoji}`;
|
|
||||||
element.appendChild(div);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
return {
|
|
||||||
list: list.length ? list : [],
|
|
||||||
from: CodeMirror.Pos(line, start),
|
|
||||||
to: CodeMirror.Pos(line, end)
|
|
||||||
};
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
editor.on('inputRead', function(instance, change) {
|
|
||||||
const cursor = editor.getCursor();
|
|
||||||
const line = editor.getLine(cursor.line);
|
|
||||||
|
|
||||||
// Get the text from the start of the line to the cursor
|
|
||||||
const textToCursor = line.slice(0, cursor.ch);
|
|
||||||
|
|
||||||
// Check if the text ends with ':xyz'
|
|
||||||
if (/:[^\s:]+$/.test(textToCursor)) {
|
|
||||||
CodeMirror.commands.autocomplete(editor);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
showEmojiAutocomplete
|
|
||||||
};
|
|
||||||
@@ -1,11 +1,13 @@
|
|||||||
const diceFont = require('../../../themes/fonts/iconFonts/diceFont.js');
|
const diceFont = require('../../../themes/fonts/iconFonts/diceFont.js');
|
||||||
const elderberryInn = require('../../../themes/fonts/iconFonts/elderberryInn.js');
|
const elderberryInn = require('../../../themes/fonts/iconFonts/elderberryInn.js');
|
||||||
const fontAwesome = require('../../../themes/fonts/iconFonts/fontAwesome.js');
|
const fontAwesome = require('../../../themes/fonts/iconFonts/fontAwesome.js');
|
||||||
|
const gameIcons = require('../../../themes/fonts/iconFonts/gameIcons.js');
|
||||||
|
|
||||||
const emojis = {
|
const emojis = {
|
||||||
...diceFont,
|
...diceFont,
|
||||||
...elderberryInn,
|
...elderberryInn,
|
||||||
...fontAwesome
|
...fontAwesome,
|
||||||
|
...gameIcons
|
||||||
};
|
};
|
||||||
|
|
||||||
const showAutocompleteEmoji = function(CodeMirror, editor) {
|
const showAutocompleteEmoji = function(CodeMirror, editor) {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ const { markedEmoji: MarkedEmojis } = require('marked-emoji');
|
|||||||
const diceFont = require('../../themes/fonts/iconFonts/diceFont.js');
|
const diceFont = require('../../themes/fonts/iconFonts/diceFont.js');
|
||||||
const elderberryInn = require('../../themes/fonts/iconFonts/elderberryInn.js');
|
const elderberryInn = require('../../themes/fonts/iconFonts/elderberryInn.js');
|
||||||
const fontAwesome = require('../../themes/fonts/iconFonts/fontAwesome.js');
|
const fontAwesome = require('../../themes/fonts/iconFonts/fontAwesome.js');
|
||||||
const gameIcons = require('../../themes/fonts/iconFonts/gameIcons.js');
|
const gameIcons = require('../../themes/fonts/iconFonts/gameIcons.js');
|
||||||
|
|
||||||
const MathParser = require('expr-eval').Parser;
|
const MathParser = require('expr-eval').Parser;
|
||||||
const renderer = new Marked.Renderer();
|
const renderer = new Marked.Renderer();
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
@import (less) './themes/assets/assets.less';
|
@import (less) './themes/assets/assets.less';
|
||||||
@import (less) './themes/fonts/iconFonts/elderberryInn.less';
|
@import (less) './themes/fonts/iconFonts/elderberryInn.less';
|
||||||
@import (less) './themes/fonts/iconFonts/diceFont.less';
|
@import (less) './themes/fonts/iconFonts/diceFont.less';
|
||||||
|
@import (less) './themes/fonts/iconFonts/gameIcons.less';
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
//Colors
|
//Colors
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ const elderberryInn = {
|
|||||||
'ei_slashing' : 'ei slashing',
|
'ei_slashing' : 'ei slashing',
|
||||||
'ei_thunder' : 'ei thunder',
|
'ei_thunder' : 'ei thunder',
|
||||||
|
|
||||||
/* DnD Donditions */
|
/* DnD Conditions */
|
||||||
'ei_blinded' : 'ei blinded',
|
'ei_blinded' : 'ei blinded',
|
||||||
'ei_charmed' : 'ei charmed',
|
'ei_charmed' : 'ei charmed',
|
||||||
'ei_deafened' : 'ei deafened',
|
'ei_deafened' : 'ei deafened',
|
||||||
|
|||||||
@@ -11,501 +11,501 @@
|
|||||||
|
|
||||||
|
|
||||||
const gameIcons = {
|
const gameIcons = {
|
||||||
'gizigzag-leaf' : 'gi zigzag-leaf',
|
'gi_zigzag-leaf' : 'gi zigzag-leaf',
|
||||||
'gizebra-shield' : 'gi zebra-shield',
|
'gi_zebra-shield' : 'gi zebra-shield',
|
||||||
'gix-mark' : 'gi x-mark',
|
'gi_x-mark' : 'gi x-mark',
|
||||||
'giwyvern' : 'gi wyvern',
|
'gi_wyvern' : 'gi wyvern',
|
||||||
'giwrench' : 'gi wrench',
|
'gi_wrench' : 'gi wrench',
|
||||||
'giwooden-sign' : 'gi wooden-sign',
|
'gi_wooden-sign' : 'gi wooden-sign',
|
||||||
'giwolf-howl' : 'gi wolf-howl',
|
'gi_wolf-howl' : 'gi wolf-howl',
|
||||||
'giwolf-head' : 'gi wolf-head',
|
'gi_wolf-head' : 'gi wolf-head',
|
||||||
'giwireless-signal' : 'gi wireless-signal',
|
'gi_wireless-signal' : 'gi wireless-signal',
|
||||||
'giwifi' : 'gi wifi',
|
'gi_wifi' : 'gi wifi',
|
||||||
'giwater-drop' : 'gi water-drop',
|
'gi_water-drop' : 'gi water-drop',
|
||||||
'givirgo' : 'gi virgo',
|
'gi_virgo' : 'gi virgo',
|
||||||
'givine-whip' : 'gi vine-whip',
|
'gi_vine-whip' : 'gi vine-whip',
|
||||||
'givial' : 'gi vial',
|
'gi_vial' : 'gi vial',
|
||||||
'givest' : 'gi vest',
|
'gi_vest' : 'gi vest',
|
||||||
'givenomous-snake' : 'gi venomous-snake',
|
'gi_venomous-snake' : 'gi venomous-snake',
|
||||||
'givase' : 'gi vase',
|
'gi_vase' : 'gi vase',
|
||||||
'giunplugged' : 'gi unplugged',
|
'gi_unplugged' : 'gi unplugged',
|
||||||
'giunderhand' : 'gi underhand',
|
'gi_underhand' : 'gi underhand',
|
||||||
'giuncertainty' : 'gi uncertainty',
|
'gi_uncertainty' : 'gi uncertainty',
|
||||||
'gitwo-hearts' : 'gi two-hearts',
|
'gi_two-hearts' : 'gi two-hearts',
|
||||||
'gitwo-dragons' : 'gi two-dragons',
|
'gi_two-dragons' : 'gi two-dragons',
|
||||||
'giturd' : 'gi turd',
|
'gi_turd' : 'gi turd',
|
||||||
'gitrophy' : 'gi trophy',
|
'gi_trophy' : 'gi trophy',
|
||||||
'gitriforce' : 'gi triforce',
|
'gi_triforce' : 'gi triforce',
|
||||||
'gitrident' : 'gi trident',
|
'gi_trident' : 'gi trident',
|
||||||
'gitrefoil-lily' : 'gi trefoil-lily',
|
'gi_trefoil-lily' : 'gi trefoil-lily',
|
||||||
'gitrail' : 'gi trail',
|
'gi_trail' : 'gi trail',
|
||||||
'gitower' : 'gi tower',
|
'gi_tower' : 'gi tower',
|
||||||
'gitorch' : 'gi torch',
|
'gi_torch' : 'gi torch',
|
||||||
'gitooth' : 'gi tooth',
|
'gi_tooth' : 'gi tooth',
|
||||||
'gitombstone' : 'gi tombstone',
|
'gi_tombstone' : 'gi tombstone',
|
||||||
'gitoast' : 'gi toast',
|
'gi_toast' : 'gi toast',
|
||||||
'gitic-tac-toe' : 'gi tic-tac-toe',
|
'gi_tic-tac-toe' : 'gi tic-tac-toe',
|
||||||
'githree-keys' : 'gi three-keys',
|
'gi_three-keys' : 'gi three-keys',
|
||||||
'githorny-vine' : 'gi thorny-vine',
|
'gi_thorny-vine' : 'gi thorny-vine',
|
||||||
'githorn-arrow' : 'gi thorn-arrow',
|
'gi_thorn-arrow' : 'gi thorn-arrow',
|
||||||
'gitesla' : 'gi tesla',
|
'gi_tesla' : 'gi tesla',
|
||||||
'gitentacle' : 'gi tentacle',
|
'gi_tentacle' : 'gi tentacle',
|
||||||
'gitelescope' : 'gi telescope',
|
'gi_telescope' : 'gi telescope',
|
||||||
'gitaurus' : 'gi taurus',
|
'gi_taurus' : 'gi taurus',
|
||||||
'gitargeted' : 'gi targeted',
|
'gi_targeted' : 'gi targeted',
|
||||||
'gitarget-laser' : 'gi target-laser',
|
'gi_target-laser' : 'gi target-laser',
|
||||||
'gitarget-arrows' : 'gi target-arrows',
|
'gi_target-arrows' : 'gi target-arrows',
|
||||||
'gisyringe' : 'gi syringe',
|
'gi_syringe' : 'gi syringe',
|
||||||
'gisurveillance-camera' : 'gi surveillance-camera',
|
'gi_surveillance-camera' : 'gi surveillance-camera',
|
||||||
'gisupersonic-arrow' : 'gi supersonic-arrow',
|
'gi_supersonic-arrow' : 'gi supersonic-arrow',
|
||||||
'gisuper-mushroom' : 'gi super-mushroom',
|
'gi_super-mushroom' : 'gi super-mushroom',
|
||||||
'gisunbeams' : 'gi sunbeams',
|
'gi_sunbeams' : 'gi sunbeams',
|
||||||
'gisun' : 'gi sun',
|
'gi_sun' : 'gi sun',
|
||||||
'gisun-symbol' : 'gi sun-symbol',
|
'gi_sun-symbol' : 'gi sun-symbol',
|
||||||
'gisuits' : 'gi suits',
|
'gi_suits' : 'gi suits',
|
||||||
'gisuckered-tentacle' : 'gi suckered-tentacle',
|
'gi_suckered-tentacle' : 'gi suckered-tentacle',
|
||||||
'gistopwatch' : 'gi stopwatch',
|
'gi_stopwatch' : 'gi stopwatch',
|
||||||
'gisprout' : 'gi sprout',
|
'gi_sprout' : 'gi sprout',
|
||||||
'gisprout-emblem' : 'gi sprout-emblem',
|
'gi_sprout-emblem' : 'gi sprout-emblem',
|
||||||
'gispray-can' : 'gi spray-can',
|
'gi_spray-can' : 'gi spray-can',
|
||||||
'gisplash' : 'gi splash',
|
'gi_splash' : 'gi splash',
|
||||||
'gispiral-shell' : 'gi spiral-shell',
|
'gi_spiral-shell' : 'gi spiral-shell',
|
||||||
'gispinning-sword' : 'gi spinning-sword',
|
'gi_spinning-sword' : 'gi spinning-sword',
|
||||||
'gispiked-tentacle' : 'gi spiked-tentacle',
|
'gi_spiked-tentacle' : 'gi spiked-tentacle',
|
||||||
'gispiked-mace' : 'gi spiked-mace',
|
'gi_spiked-mace' : 'gi spiked-mace',
|
||||||
'gispikeball' : 'gi spikeball',
|
'gi_spikeball' : 'gi spikeball',
|
||||||
'gispider-face' : 'gi spider-face',
|
'gi_spider-face' : 'gi spider-face',
|
||||||
'gispeech-bubbles' : 'gi speech-bubbles',
|
'gi_speech-bubbles' : 'gi speech-bubbles',
|
||||||
'gispeech-bubble' : 'gi speech-bubble',
|
'gi_speech-bubble' : 'gi speech-bubble',
|
||||||
'gispear-head' : 'gi spear-head',
|
'gi_spear-head' : 'gi spear-head',
|
||||||
'gispawn-node' : 'gi spawn-node',
|
'gi_spawn-node' : 'gi spawn-node',
|
||||||
'gispades' : 'gi spades',
|
'gi_spades' : 'gi spades',
|
||||||
'gispades-card' : 'gi spades-card',
|
'gi_spades-card' : 'gi spades-card',
|
||||||
'gisoccer-ball' : 'gi soccer-ball',
|
'gi_soccer-ball' : 'gi soccer-ball',
|
||||||
'gisnowflake' : 'gi snowflake',
|
'gi_snowflake' : 'gi snowflake',
|
||||||
'gisnorkel' : 'gi snorkel',
|
'gi_snorkel' : 'gi snorkel',
|
||||||
'gisnake' : 'gi snake',
|
'gi_snake' : 'gi snake',
|
||||||
'gisnail' : 'gi snail',
|
'gi_snail' : 'gi snail',
|
||||||
'gismall-fire' : 'gi small-fire',
|
'gi_small-fire' : 'gi small-fire',
|
||||||
'gislash-ring' : 'gi slash-ring',
|
'gi_slash-ring' : 'gi slash-ring',
|
||||||
'giskull' : 'gi skull',
|
'gi_skull' : 'gi skull',
|
||||||
'giskull-trophy' : 'gi skull-trophy',
|
'gi_skull-trophy' : 'gi skull-trophy',
|
||||||
'gisite' : 'gi site',
|
'gi_site' : 'gi site',
|
||||||
'gisideswipe' : 'gi sideswipe',
|
'gi_sideswipe' : 'gi sideswipe',
|
||||||
'gisickle' : 'gi sickle',
|
'gi_sickle' : 'gi sickle',
|
||||||
'gishuriken' : 'gi shuriken',
|
'gi_shuriken' : 'gi shuriken',
|
||||||
'gishovel' : 'gi shovel',
|
'gi_shovel' : 'gi shovel',
|
||||||
'gishotgun-shell' : 'gi shotgun-shell',
|
'gi_shotgun-shell' : 'gi shotgun-shell',
|
||||||
'gishot-through-the-heart' : 'gi shot-through-the-heart',
|
'gi_shot-through-the-heart' : 'gi shot-through-the-heart',
|
||||||
'gishoe-prints' : 'gi shoe-prints',
|
'gi_shoe-prints' : 'gi shoe-prints',
|
||||||
'giship-emblem' : 'gi ship-emblem',
|
'gi_ship-emblem' : 'gi ship-emblem',
|
||||||
'gishield' : 'gi shield',
|
'gi_shield' : 'gi shield',
|
||||||
'gisheriff' : 'gi sheriff',
|
'gi_sheriff' : 'gi sheriff',
|
||||||
'gisheep' : 'gi sheep',
|
'gi_sheep' : 'gi sheep',
|
||||||
'gishark' : 'gi shark',
|
'gi_shark' : 'gi shark',
|
||||||
'giseagull' : 'gi seagull',
|
'gi_seagull' : 'gi seagull',
|
||||||
'gisea-serpent' : 'gi sea-serpent',
|
'gi_sea-serpent' : 'gi sea-serpent',
|
||||||
'giscythe' : 'gi scythe',
|
'gi_scythe' : 'gi scythe',
|
||||||
'giscroll-unfurled' : 'gi scroll-unfurled',
|
'gi_scroll-unfurled' : 'gi scroll-unfurled',
|
||||||
'giscorpio' : 'gi scorpio',
|
'gi_scorpio' : 'gi scorpio',
|
||||||
'gisave' : 'gi save',
|
'gi_save' : 'gi save',
|
||||||
'gisatellite' : 'gi satellite',
|
'gi_satellite' : 'gi satellite',
|
||||||
'gisapphire' : 'gi sapphire',
|
'gi_sapphire' : 'gi sapphire',
|
||||||
'gisagittarius' : 'gi sagittarius',
|
'gi_sagittarius' : 'gi sagittarius',
|
||||||
'girune-stone' : 'gi rune-stone',
|
'gi_rune-stone' : 'gi rune-stone',
|
||||||
'girss' : 'gi rss',
|
'gi_rss' : 'gi rss',
|
||||||
'giround-shield' : 'gi round-shield',
|
'gi_round-shield' : 'gi round-shield',
|
||||||
'giround-bottom-flask' : 'gi round-bottom-flask',
|
'gi_round-bottom-flask' : 'gi round-bottom-flask',
|
||||||
'girobot-arm' : 'gi robot-arm',
|
'gi_robot-arm' : 'gi robot-arm',
|
||||||
'giroast-chicken' : 'gi roast-chicken',
|
'gi_roast-chicken' : 'gi roast-chicken',
|
||||||
'giringing-bell' : 'gi ringing-bell',
|
'gi_ringing-bell' : 'gi ringing-bell',
|
||||||
'girifle' : 'gi rifle',
|
'gi_rifle' : 'gi rifle',
|
||||||
'girevolver' : 'gi revolver',
|
'gi_revolver' : 'gi revolver',
|
||||||
'gireverse' : 'gi reverse',
|
'gi_reverse' : 'gi reverse',
|
||||||
'girepair' : 'gi repair',
|
'gi_repair' : 'gi repair',
|
||||||
'girelic-blade' : 'gi relic-blade',
|
'gi_relic-blade' : 'gi relic-blade',
|
||||||
'giregeneration' : 'gi regeneration',
|
'gi_regeneration' : 'gi regeneration',
|
||||||
'girecycle' : 'gi recycle',
|
'gi_recycle' : 'gi recycle',
|
||||||
'gireactor' : 'gi reactor',
|
'gi_reactor' : 'gi reactor',
|
||||||
'giraven' : 'gi raven',
|
'gi_raven' : 'gi raven',
|
||||||
'giradioactive' : 'gi radioactive',
|
'gi_radioactive' : 'gi radioactive',
|
||||||
'giradial-balance' : 'gi radial-balance',
|
'gi_radial-balance' : 'gi radial-balance',
|
||||||
'giradar-dish' : 'gi radar-dish',
|
'gi_radar-dish' : 'gi radar-dish',
|
||||||
'girabbit' : 'gi rabbit',
|
'gi_rabbit' : 'gi rabbit',
|
||||||
'giquill-ink' : 'gi quill-ink',
|
'gi_quill-ink' : 'gi quill-ink',
|
||||||
'giqueen-crown' : 'gi queen-crown',
|
'gi_queen-crown' : 'gi queen-crown',
|
||||||
'gipyramids' : 'gi pyramids',
|
'gi_pyramids' : 'gi pyramids',
|
||||||
'gipotion' : 'gi potion',
|
'gi_potion' : 'gi potion',
|
||||||
'gipoison-cloud' : 'gi poison-cloud',
|
'gi_poison-cloud' : 'gi poison-cloud',
|
||||||
'gipodium' : 'gi podium',
|
'gi_podium' : 'gi podium',
|
||||||
'giplayer' : 'gi player',
|
'gi_player' : 'gi player',
|
||||||
'giplayer-thunder-struck' : 'gi player-thunder-struck',
|
'gi_player-thunder-struck' : 'gi player-thunder-struck',
|
||||||
'giplayer-teleport' : 'gi player-teleport',
|
'gi_player-teleport' : 'gi player-teleport',
|
||||||
'giplayer-shot' : 'gi player-shot',
|
'gi_player-shot' : 'gi player-shot',
|
||||||
'giplayer-pyromaniac' : 'gi player-pyromaniac',
|
'gi_player-pyromaniac' : 'gi player-pyromaniac',
|
||||||
'giplayer-pain' : 'gi player-pain',
|
'gi_player-pain' : 'gi player-pain',
|
||||||
'giplayer-lift' : 'gi player-lift',
|
'gi_player-lift' : 'gi player-lift',
|
||||||
'giplayer-king' : 'gi player-king',
|
'gi_player-king' : 'gi player-king',
|
||||||
'giplayer-dodge' : 'gi player-dodge',
|
'gi_player-dodge' : 'gi player-dodge',
|
||||||
'giplayer-despair' : 'gi player-despair',
|
'gi_player-despair' : 'gi player-despair',
|
||||||
'giplain-dagger' : 'gi plain-dagger',
|
'gi_plain-dagger' : 'gi plain-dagger',
|
||||||
'gipisces' : 'gi pisces',
|
'gi_pisces' : 'gi pisces',
|
||||||
'giping-pong' : 'gi ping-pong',
|
'gi_ping-pong' : 'gi ping-pong',
|
||||||
'gipine-tree' : 'gi pine-tree',
|
'gi_pine-tree' : 'gi pine-tree',
|
||||||
'gipills' : 'gi pills',
|
'gi_pills' : 'gi pills',
|
||||||
'gipill' : 'gi pill',
|
'gi_pill' : 'gi pill',
|
||||||
'giperspective-dice-three' : 'gi perspective-dice-three',
|
'gi_perspective-dice-three' : 'gi perspective-dice-three',
|
||||||
'giperspective-dice-six' : 'gi perspective-dice-six',
|
'gi_perspective-dice-six' : 'gi perspective-dice-six',
|
||||||
'giperspective-dice-six-two' : 'gi perspective-dice-six-two',
|
'gi_perspective-dice-six-two' : 'gi perspective-dice-six-two',
|
||||||
'giperspective-dice-random' : 'gi perspective-dice-random',
|
'gi_perspective-dice-random' : 'gi perspective-dice-random',
|
||||||
'giperspective-dice-one' : 'gi perspective-dice-one',
|
'gi_perspective-dice-one' : 'gi perspective-dice-one',
|
||||||
'giperspective-dice-four' : 'gi perspective-dice-four',
|
'gi_perspective-dice-four' : 'gi perspective-dice-four',
|
||||||
'giperspective-dice-five' : 'gi perspective-dice-five',
|
'gi_perspective-dice-five' : 'gi perspective-dice-five',
|
||||||
'gipawprint' : 'gi pawprint',
|
'gi_pawprint' : 'gi pawprint',
|
||||||
'gipawn' : 'gi pawn',
|
'gi_pawn' : 'gi pawn',
|
||||||
'gipalm-tree' : 'gi palm-tree',
|
'gi_palm-tree' : 'gi palm-tree',
|
||||||
'giovermind' : 'gi overmind',
|
'gi_overmind' : 'gi overmind',
|
||||||
'gioverhead' : 'gi overhead',
|
'gi_overhead' : 'gi overhead',
|
||||||
'giophiuchus' : 'gi ophiuchus',
|
'gi_ophiuchus' : 'gi ophiuchus',
|
||||||
'gion-target' : 'gi on-target',
|
'gi_on-target' : 'gi on-target',
|
||||||
'giomega' : 'gi omega',
|
'gi_omega' : 'gi omega',
|
||||||
'gioctopus' : 'gi octopus',
|
'gi_octopus' : 'gi octopus',
|
||||||
'giocean-emblem' : 'gi ocean-emblem',
|
'gi_ocean-emblem' : 'gi ocean-emblem',
|
||||||
'giocarina' : 'gi ocarina',
|
'gi_ocarina' : 'gi ocarina',
|
||||||
'ginuclear' : 'gi nuclear',
|
'gi_nuclear' : 'gi nuclear',
|
||||||
'ginoose' : 'gi noose',
|
'gi_noose' : 'gi noose',
|
||||||
'ginodular' : 'gi nodular',
|
'gi_nodular' : 'gi nodular',
|
||||||
'ginails' : 'gi nails',
|
'gi_nails' : 'gi nails',
|
||||||
'gimusket' : 'gi musket',
|
'gi_musket' : 'gi musket',
|
||||||
'gimuscle-up' : 'gi muscle-up',
|
'gi_muscle-up' : 'gi muscle-up',
|
||||||
'gimuscle-fat' : 'gi muscle-fat',
|
'gi_muscle-fat' : 'gi muscle-fat',
|
||||||
'gimp5' : 'gi mp5',
|
'gi_mp5' : 'gi mp5',
|
||||||
'gimoon-sun' : 'gi moon-sun',
|
'gi_moon-sun' : 'gi moon-sun',
|
||||||
'gimontains' : 'gi montains',
|
'gi_montains' : 'gi montains',
|
||||||
'gimonster-skull' : 'gi monster-skull',
|
'gi_monster-skull' : 'gi monster-skull',
|
||||||
'gimirror' : 'gi mirror',
|
'gi_mirror' : 'gi mirror',
|
||||||
'gimining-diamonds' : 'gi mining-diamonds',
|
'gi_mining-diamonds' : 'gi mining-diamonds',
|
||||||
'gimine-wagon' : 'gi mine-wagon',
|
'gi_mine-wagon' : 'gi mine-wagon',
|
||||||
'gimicrophone' : 'gi microphone',
|
'gi_microphone' : 'gi microphone',
|
||||||
'gimetal-gate' : 'gi metal-gate',
|
'gi_metal-gate' : 'gi metal-gate',
|
||||||
'gimedical-pack' : 'gi medical-pack',
|
'gi_medical-pack' : 'gi medical-pack',
|
||||||
'gimeat' : 'gi meat',
|
'gi_meat' : 'gi meat',
|
||||||
'gimeat-hook' : 'gi meat-hook',
|
'gi_meat-hook' : 'gi meat-hook',
|
||||||
'gimatch' : 'gi match',
|
'gi_match' : 'gi match',
|
||||||
'gimass-driver' : 'gi mass-driver',
|
'gi_mass-driver' : 'gi mass-driver',
|
||||||
'gimagnet' : 'gi magnet',
|
'gi_magnet' : 'gi magnet',
|
||||||
'gimaggot' : 'gi maggot',
|
'gi_maggot' : 'gi maggot',
|
||||||
'gilove-howl' : 'gi love-howl',
|
'gi_love-howl' : 'gi love-howl',
|
||||||
'gilocked-fortress' : 'gi locked-fortress',
|
'gi_locked-fortress' : 'gi locked-fortress',
|
||||||
'giload' : 'gi load',
|
'gi_load' : 'gi load',
|
||||||
'gilit-candelabra' : 'gi lit-candelabra',
|
'gi_lit-candelabra' : 'gi lit-candelabra',
|
||||||
'gilion' : 'gi lion',
|
'gi_lion' : 'gi lion',
|
||||||
'gilightning' : 'gi lightning',
|
'gi_lightning' : 'gi lightning',
|
||||||
'gilightning-trio' : 'gi lightning-trio',
|
'gi_lightning-trio' : 'gi lightning-trio',
|
||||||
'gilightning-sword' : 'gi lightning-sword',
|
'gi_lightning-sword' : 'gi lightning-sword',
|
||||||
'gilightning-storm' : 'gi lightning-storm',
|
'gi_lightning-storm' : 'gi lightning-storm',
|
||||||
'gilightning-bolt' : 'gi lightning-bolt',
|
'gi_lightning-bolt' : 'gi lightning-bolt',
|
||||||
'gilighthouse' : 'gi lighthouse',
|
'gi_lighthouse' : 'gi lighthouse',
|
||||||
'gilight-bulb' : 'gi light-bulb',
|
'gi_light-bulb' : 'gi light-bulb',
|
||||||
'gilibra' : 'gi libra',
|
'gi_libra' : 'gi libra',
|
||||||
'gilever' : 'gi lever',
|
'gi_lever' : 'gi lever',
|
||||||
'gilevel-two' : 'gi level-two',
|
'gi_level-two' : 'gi level-two',
|
||||||
'gilevel-two-advanced' : 'gi level-two-advanced',
|
'gi_level-two-advanced' : 'gi level-two-advanced',
|
||||||
'gilevel-three' : 'gi level-three',
|
'gi_level-three' : 'gi level-three',
|
||||||
'gilevel-three-advanced' : 'gi level-three-advanced',
|
'gi_level-three-advanced' : 'gi level-three-advanced',
|
||||||
'gilevel-four' : 'gi level-four',
|
'gi_level-four' : 'gi level-four',
|
||||||
'gilevel-four-advanced' : 'gi level-four-advanced',
|
'gi_level-four-advanced' : 'gi level-four-advanced',
|
||||||
'gileo' : 'gi leo',
|
'gi_leo' : 'gi leo',
|
||||||
'gileaf' : 'gi leaf',
|
'gi_leaf' : 'gi leaf',
|
||||||
'gilava' : 'gi lava',
|
'gi_lava' : 'gi lava',
|
||||||
'gilaser-site' : 'gi laser-site',
|
'gi_laser-site' : 'gi laser-site',
|
||||||
'gilaser-blast' : 'gi laser-blast',
|
'gi_laser-blast' : 'gi laser-blast',
|
||||||
'gilarge-hammer' : 'gi large-hammer',
|
'gi_large-hammer' : 'gi large-hammer',
|
||||||
'gilantern-flame' : 'gi lantern-flame',
|
'gi_lantern-flame' : 'gi lantern-flame',
|
||||||
'gikunai' : 'gi kunai',
|
'gi_kunai' : 'gi kunai',
|
||||||
'giknight-helmet' : 'gi knight-helmet',
|
'gi_knight-helmet' : 'gi knight-helmet',
|
||||||
'giknife' : 'gi knife',
|
'gi_knife' : 'gi knife',
|
||||||
'giknife-fork' : 'gi knife-fork',
|
'gi_knife-fork' : 'gi knife-fork',
|
||||||
'gikitchen-knives' : 'gi kitchen-knives',
|
'gi_kitchen-knives' : 'gi kitchen-knives',
|
||||||
'gikey' : 'gi key',
|
'gi_key' : 'gi key',
|
||||||
'gikey-basic' : 'gi key-basic',
|
'gi_key-basic' : 'gi key-basic',
|
||||||
'gikettlebell' : 'gi kettlebell',
|
'gi_kettlebell' : 'gi kettlebell',
|
||||||
'gikaleidoscope' : 'gi kaleidoscope',
|
'gi_kaleidoscope' : 'gi kaleidoscope',
|
||||||
'gijigsaw-piece' : 'gi jigsaw-piece',
|
'gi_jigsaw-piece' : 'gi jigsaw-piece',
|
||||||
'gijetpack' : 'gi jetpack',
|
'gi_jetpack' : 'gi jetpack',
|
||||||
'giinterdiction' : 'gi interdiction',
|
'gi_interdiction' : 'gi interdiction',
|
||||||
'giinsect-jaws' : 'gi insect-jaws',
|
'gi_insect-jaws' : 'gi insect-jaws',
|
||||||
'giincense' : 'gi incense',
|
'gi_incense' : 'gi incense',
|
||||||
'giimplosion' : 'gi implosion',
|
'gi_implosion' : 'gi implosion',
|
||||||
'giice-cube' : 'gi ice-cube',
|
'gi_ice-cube' : 'gi ice-cube',
|
||||||
'gihydra' : 'gi hydra',
|
'gi_hydra' : 'gi hydra',
|
||||||
'gihydra-shot' : 'gi hydra-shot',
|
'gi_hydra-shot' : 'gi hydra-shot',
|
||||||
'gihourglass' : 'gi hourglass',
|
'gi_hourglass' : 'gi hourglass',
|
||||||
'gihot-surface' : 'gi hot-surface',
|
'gi_hot-surface' : 'gi hot-surface',
|
||||||
'gihospital-cross' : 'gi hospital-cross',
|
'gi_hospital-cross' : 'gi hospital-cross',
|
||||||
'gihorseshoe' : 'gi horseshoe',
|
'gi_horseshoe' : 'gi horseshoe',
|
||||||
'gihorns' : 'gi horns',
|
'gi_horns' : 'gi horns',
|
||||||
'gihorn-call' : 'gi horn-call',
|
'gi_horn-call' : 'gi horn-call',
|
||||||
'gihood' : 'gi hood',
|
'gi_hood' : 'gi hood',
|
||||||
'gihoneycomb' : 'gi honeycomb',
|
'gi_honeycomb' : 'gi honeycomb',
|
||||||
'gihole-ladder' : 'gi hole-ladder',
|
'gi_hole-ladder' : 'gi hole-ladder',
|
||||||
'gihive-emblem' : 'gi hive-emblem',
|
'gi_hive-emblem' : 'gi hive-emblem',
|
||||||
'gihelp' : 'gi help',
|
'gi_help' : 'gi help',
|
||||||
'gihelmet' : 'gi helmet',
|
'gi_helmet' : 'gi helmet',
|
||||||
'giheavy-shield' : 'gi heavy-shield',
|
'gi_heavy-shield' : 'gi heavy-shield',
|
||||||
'giheavy-fall' : 'gi heavy-fall',
|
'gi_heavy-fall' : 'gi heavy-fall',
|
||||||
'giheat-haze' : 'gi heat-haze',
|
'gi_heat-haze' : 'gi heat-haze',
|
||||||
'gihearts' : 'gi hearts',
|
'gi_hearts' : 'gi hearts',
|
||||||
'gihearts-card' : 'gi hearts-card',
|
'gi_hearts-card' : 'gi hearts-card',
|
||||||
'giheartburn' : 'gi heartburn',
|
'gi_heartburn' : 'gi heartburn',
|
||||||
'giheart-tower' : 'gi heart-tower',
|
'gi_heart-tower' : 'gi heart-tower',
|
||||||
'giheart-bottle' : 'gi heart-bottle',
|
'gi_heart-bottle' : 'gi heart-bottle',
|
||||||
'gihealth' : 'gi health',
|
'gi_health' : 'gi health',
|
||||||
'gihealth-increase' : 'gi health-increase',
|
'gi_health-increase' : 'gi health-increase',
|
||||||
'gihealth-decrease' : 'gi health-decrease',
|
'gi_health-decrease' : 'gi health-decrease',
|
||||||
'giharpoon-trident' : 'gi harpoon-trident',
|
'gi_harpoon-trident' : 'gi harpoon-trident',
|
||||||
'gihand' : 'gi hand',
|
'gi_hand' : 'gi hand',
|
||||||
'gihand-saw' : 'gi hand-saw',
|
'gi_hand-saw' : 'gi hand-saw',
|
||||||
'gihand-emblem' : 'gi hand-emblem',
|
'gi_hand-emblem' : 'gi hand-emblem',
|
||||||
'gihammer' : 'gi hammer',
|
'gi_hammer' : 'gi hammer',
|
||||||
'gihammer-drop' : 'gi hammer-drop',
|
'gi_hammer-drop' : 'gi hammer-drop',
|
||||||
'gihalberd' : 'gi halberd',
|
'gi_halberd' : 'gi halberd',
|
||||||
'giguillotine' : 'gi guillotine',
|
'gi_guillotine' : 'gi guillotine',
|
||||||
'giguarded-tower' : 'gi guarded-tower',
|
'gi_guarded-tower' : 'gi guarded-tower',
|
||||||
'gigroundbreaker' : 'gi groundbreaker',
|
'gi_groundbreaker' : 'gi groundbreaker',
|
||||||
'gigrenade' : 'gi grenade',
|
'gi_grenade' : 'gi grenade',
|
||||||
'gigrass' : 'gi grass',
|
'gi_grass' : 'gi grass',
|
||||||
'gigrass-patch' : 'gi grass-patch',
|
'gi_grass-patch' : 'gi grass-patch',
|
||||||
'gigrappling-hook' : 'gi grappling-hook',
|
'gi_grappling-hook' : 'gi grappling-hook',
|
||||||
'gigold-bar' : 'gi gold-bar',
|
'gi_gold-bar' : 'gi gold-bar',
|
||||||
'gigloop' : 'gi gloop',
|
'gi_gloop' : 'gi gloop',
|
||||||
'giglass-heart' : 'gi glass-heart',
|
'gi_glass-heart' : 'gi glass-heart',
|
||||||
'gigemini' : 'gi gemini',
|
'gi_gemini' : 'gi gemini',
|
||||||
'gigem' : 'gi gem',
|
'gi_gem' : 'gi gem',
|
||||||
'gigem-pendant' : 'gi gem-pendant',
|
'gi_gem-pendant' : 'gi gem-pendant',
|
||||||
'gigecko' : 'gi gecko',
|
'gi_gecko' : 'gi gecko',
|
||||||
'gigears' : 'gi gears',
|
'gi_gears' : 'gi gears',
|
||||||
'gigear-heart' : 'gi gear-heart',
|
'gi_gear-heart' : 'gi gear-heart',
|
||||||
'gigear-hammer' : 'gi gear-hammer',
|
'gi_gear-hammer' : 'gi gear-hammer',
|
||||||
'gigavel' : 'gi gavel',
|
'gi_gavel' : 'gi gavel',
|
||||||
'gigamepad-cross' : 'gi gamepad-cross',
|
'gi_gamepad-cross' : 'gi gamepad-cross',
|
||||||
'gifrozen-arrow' : 'gi frozen-arrow',
|
'gi_frozen-arrow' : 'gi frozen-arrow',
|
||||||
'gifrostfire' : 'gi frostfire',
|
'gi_frostfire' : 'gi frostfire',
|
||||||
'gifrost-emblem' : 'gi frost-emblem',
|
'gi_frost-emblem' : 'gi frost-emblem',
|
||||||
'gifox' : 'gi fox',
|
'gi_fox' : 'gi fox',
|
||||||
'giforward' : 'gi forward',
|
'gi_forward' : 'gi forward',
|
||||||
'giforging' : 'gi forging',
|
'gi_forging' : 'gi forging',
|
||||||
'gifootprint' : 'gi footprint',
|
'gi_footprint' : 'gi footprint',
|
||||||
'gifood-chain' : 'gi food-chain',
|
'gi_food-chain' : 'gi food-chain',
|
||||||
'gifocused-lightning' : 'gi focused-lightning',
|
'gi_focused-lightning' : 'gi focused-lightning',
|
||||||
'gifluffy-swirl' : 'gi fluffy-swirl',
|
'gi_fluffy-swirl' : 'gi fluffy-swirl',
|
||||||
'giflowers' : 'gi flowers',
|
'gi_flowers' : 'gi flowers',
|
||||||
'giflower' : 'gi flower',
|
'gi_flower' : 'gi flower',
|
||||||
'giflat-hammer' : 'gi flat-hammer',
|
'gi_flat-hammer' : 'gi flat-hammer',
|
||||||
'giflask' : 'gi flask',
|
'gi_flask' : 'gi flask',
|
||||||
'giflaming-trident' : 'gi flaming-trident',
|
'gi_flaming-trident' : 'gi flaming-trident',
|
||||||
'giflaming-claw' : 'gi flaming-claw',
|
'gi_flaming-claw' : 'gi flaming-claw',
|
||||||
'giflaming-arrow' : 'gi flaming-arrow',
|
'gi_flaming-arrow' : 'gi flaming-arrow',
|
||||||
'giflame-symbol' : 'gi flame-symbol',
|
'gi_flame-symbol' : 'gi flame-symbol',
|
||||||
'gifizzing-flask' : 'gi fizzing-flask',
|
'gi_fizzing-flask' : 'gi fizzing-flask',
|
||||||
'gifish' : 'gi fish',
|
'gi_fish' : 'gi fish',
|
||||||
'gifireball-sword' : 'gi fireball-sword',
|
'gi_fireball-sword' : 'gi fireball-sword',
|
||||||
'gifire' : 'gi fire',
|
'gi_fire' : 'gi fire',
|
||||||
'gifire-symbol' : 'gi fire-symbol',
|
'gi_fire-symbol' : 'gi fire-symbol',
|
||||||
'gifire-shield' : 'gi fire-shield',
|
'gi_fire-shield' : 'gi fire-shield',
|
||||||
'gifire-ring' : 'gi fire-ring',
|
'gi_fire-ring' : 'gi fire-ring',
|
||||||
'gifire-breath' : 'gi fire-breath',
|
'gi_fire-breath' : 'gi fire-breath',
|
||||||
'gifire-bomb' : 'gi fire-bomb',
|
'gi_fire-bomb' : 'gi fire-bomb',
|
||||||
'gifedora' : 'gi fedora',
|
'gi_fedora' : 'gi fedora',
|
||||||
'gifeathered-wing' : 'gi feathered-wing',
|
'gi_feathered-wing' : 'gi feathered-wing',
|
||||||
'gifeather-wing' : 'gi feather-wing',
|
'gi_feather-wing' : 'gi feather-wing',
|
||||||
'gifast-ship' : 'gi fast-ship',
|
'gi_fast-ship' : 'gi fast-ship',
|
||||||
'gifalling' : 'gi falling',
|
'gi_falling' : 'gi falling',
|
||||||
'gifall-down' : 'gi fall-down',
|
'gi_fall-down' : 'gi fall-down',
|
||||||
'gifairy' : 'gi fairy',
|
'gi_fairy' : 'gi fairy',
|
||||||
'gifairy-wand' : 'gi fairy-wand',
|
'gi_fairy-wand' : 'gi fairy-wand',
|
||||||
'gieyeball' : 'gi eyeball',
|
'gi_eyeball' : 'gi eyeball',
|
||||||
'gieye-shield' : 'gi eye-shield',
|
'gi_eye-shield' : 'gi eye-shield',
|
||||||
'gieye-monster' : 'gi eye-monster',
|
'gi_eye-monster' : 'gi eye-monster',
|
||||||
'giexplosive-materials' : 'gi explosive-materials',
|
'gi_explosive-materials' : 'gi explosive-materials',
|
||||||
'giexplosion' : 'gi explosion',
|
'gi_explosion' : 'gi explosion',
|
||||||
'gienergise' : 'gi energise',
|
'gi_energise' : 'gi energise',
|
||||||
'giemerald' : 'gi emerald',
|
'gi_emerald' : 'gi emerald',
|
||||||
'gieggplant' : 'gi eggplant',
|
'gi_eggplant' : 'gi eggplant',
|
||||||
'giegg' : 'gi egg',
|
'gi_egg' : 'gi egg',
|
||||||
'giegg-pod' : 'gi egg-pod',
|
'gi_egg-pod' : 'gi egg-pod',
|
||||||
'giduel' : 'gi duel',
|
'gi_duel' : 'gi duel',
|
||||||
'gidroplets' : 'gi droplets',
|
'gi_droplets' : 'gi droplets',
|
||||||
'gidroplet' : 'gi droplet',
|
'gi_droplet' : 'gi droplet',
|
||||||
'gidroplet-splash' : 'gi droplet-splash',
|
'gi_droplet-splash' : 'gi droplet-splash',
|
||||||
'gidripping-sword' : 'gi dripping-sword',
|
'gi_dripping-sword' : 'gi dripping-sword',
|
||||||
'gidripping-knife' : 'gi dripping-knife',
|
'gi_dripping-knife' : 'gi dripping-knife',
|
||||||
'gidripping-blade' : 'gi dripping-blade',
|
'gi_dripping-blade' : 'gi dripping-blade',
|
||||||
'gidrill' : 'gi drill',
|
'gi_drill' : 'gi drill',
|
||||||
'gidragonfly' : 'gi dragonfly',
|
'gi_dragonfly' : 'gi dragonfly',
|
||||||
'gidragon' : 'gi dragon',
|
'gi_dragon' : 'gi dragon',
|
||||||
'gidragon-wing' : 'gi dragon-wing',
|
'gi_dragon-wing' : 'gi dragon-wing',
|
||||||
'gidragon-breath' : 'gi dragon-breath',
|
'gi_dragon-breath' : 'gi dragon-breath',
|
||||||
'gidoubled' : 'gi doubled',
|
'gi_doubled' : 'gi doubled',
|
||||||
'gidouble-team' : 'gi double-team',
|
'gi_double-team' : 'gi double-team',
|
||||||
'gidiving-dagger' : 'gi diving-dagger',
|
'gi_diving-dagger' : 'gi diving-dagger',
|
||||||
'gidivert' : 'gi divert',
|
'gi_divert' : 'gi divert',
|
||||||
'gidinosaur' : 'gi dinosaur',
|
'gi_dinosaur' : 'gi dinosaur',
|
||||||
'gidice-two' : 'gi dice-two',
|
'gi_dice-two' : 'gi dice-two',
|
||||||
'gidice-three' : 'gi dice-three',
|
'gi_dice-three' : 'gi dice-three',
|
||||||
'gidice-six' : 'gi dice-six',
|
'gi_dice-six' : 'gi dice-six',
|
||||||
'gidice-one' : 'gi dice-one',
|
'gi_dice-one' : 'gi dice-one',
|
||||||
'gidice-four' : 'gi dice-four',
|
'gi_dice-four' : 'gi dice-four',
|
||||||
'gidice-five' : 'gi dice-five',
|
'gi_dice-five' : 'gi dice-five',
|
||||||
'gidiamonds' : 'gi diamonds',
|
'gi_diamonds' : 'gi diamonds',
|
||||||
'gidiamonds-card' : 'gi diamonds-card',
|
'gi_diamonds-card' : 'gi diamonds-card',
|
||||||
'gidiamond' : 'gi diamond',
|
'gi_diamond' : 'gi diamond',
|
||||||
'gidesert-skull' : 'gi desert-skull',
|
'gi_desert-skull' : 'gi desert-skull',
|
||||||
'gidervish-swords' : 'gi dervish-swords',
|
'gi_dervish-swords' : 'gi dervish-swords',
|
||||||
'gidemolish' : 'gi demolish',
|
'gi_demolish' : 'gi demolish',
|
||||||
'gidefibrillate' : 'gi defibrillate',
|
'gi_defibrillate' : 'gi defibrillate',
|
||||||
'gidecapitation' : 'gi decapitation',
|
'gi_decapitation' : 'gi decapitation',
|
||||||
'gideath-skull' : 'gi death-skull',
|
'gi_death-skull' : 'gi death-skull',
|
||||||
'gidead-tree' : 'gi dead-tree',
|
'gi_dead-tree' : 'gi dead-tree',
|
||||||
'gidaisy' : 'gi daisy',
|
'gi_daisy' : 'gi daisy',
|
||||||
'gidaggers' : 'gi daggers',
|
'gi_daggers' : 'gi daggers',
|
||||||
'gicycle' : 'gi cycle',
|
'gi_cycle' : 'gi cycle',
|
||||||
'gicut-palm' : 'gi cut-palm',
|
'gi_cut-palm' : 'gi cut-palm',
|
||||||
'gicubes' : 'gi cubes',
|
'gi_cubes' : 'gi cubes',
|
||||||
'gicrystals' : 'gi crystals',
|
'gi_crystals' : 'gi crystals',
|
||||||
'gicrystal-wand' : 'gi crystal-wand',
|
'gi_crystal-wand' : 'gi crystal-wand',
|
||||||
'gicrystal-cluster' : 'gi crystal-cluster',
|
'gi_crystal-cluster' : 'gi crystal-cluster',
|
||||||
'gicrystal-ball' : 'gi crystal-ball',
|
'gi_crystal-ball' : 'gi crystal-ball',
|
||||||
'gicrush' : 'gi crush',
|
'gi_crush' : 'gi crush',
|
||||||
'gicrowned-heart' : 'gi crowned-heart',
|
'gi_crowned-heart' : 'gi crowned-heart',
|
||||||
'gicrown' : 'gi crown',
|
'gi_crown' : 'gi crown',
|
||||||
'gicrown-of-thorns' : 'gi crown-of-thorns',
|
'gi_crown-of-thorns' : 'gi crown-of-thorns',
|
||||||
'gicrossed-swords' : 'gi crossed-swords',
|
'gi_crossed-swords' : 'gi crossed-swords',
|
||||||
'gicrossed-sabres' : 'gi crossed-sabres',
|
'gi_crossed-sabres' : 'gi crossed-sabres',
|
||||||
'gicrossed-pistols' : 'gi crossed-pistols',
|
'gi_crossed-pistols' : 'gi crossed-pistols',
|
||||||
'gicrossed-bones' : 'gi crossed-bones',
|
'gi_crossed-bones' : 'gi crossed-bones',
|
||||||
'gicrossed-axes' : 'gi crossed-axes',
|
'gi_crossed-axes' : 'gi crossed-axes',
|
||||||
'gicrossbow' : 'gi crossbow',
|
'gi_crossbow' : 'gi crossbow',
|
||||||
'gicroc-sword' : 'gi croc-sword',
|
'gi_croc-sword' : 'gi croc-sword',
|
||||||
'gicracked-shield' : 'gi cracked-shield',
|
'gi_cracked-shield' : 'gi cracked-shield',
|
||||||
'gicracked-helm' : 'gi cracked-helm',
|
'gi_cracked-helm' : 'gi cracked-helm',
|
||||||
'gicrab-claw' : 'gi crab-claw',
|
'gi_crab-claw' : 'gi crab-claw',
|
||||||
'gicorked-tube' : 'gi corked-tube',
|
'gi_corked-tube' : 'gi corked-tube',
|
||||||
'gicompass' : 'gi compass',
|
'gi_compass' : 'gi compass',
|
||||||
'gicold-heart' : 'gi cold-heart',
|
'gi_cold-heart' : 'gi cold-heart',
|
||||||
'gicog' : 'gi cog',
|
'gi_cog' : 'gi cog',
|
||||||
'gicog-wheel' : 'gi cog-wheel',
|
'gi_cog-wheel' : 'gi cog-wheel',
|
||||||
'gicoffee-mug' : 'gi coffee-mug',
|
'gi_coffee-mug' : 'gi coffee-mug',
|
||||||
'gicluster-bomb' : 'gi cluster-bomb',
|
'gi_cluster-bomb' : 'gi cluster-bomb',
|
||||||
'giclovers' : 'gi clovers',
|
'gi_clovers' : 'gi clovers',
|
||||||
'giclovers-card' : 'gi clovers-card',
|
'gi_clovers-card' : 'gi clovers-card',
|
||||||
'giclover' : 'gi clover',
|
'gi_clover' : 'gi clover',
|
||||||
'giclockwork' : 'gi clockwork',
|
'gi_clockwork' : 'gi clockwork',
|
||||||
'gicloak-and-dagger' : 'gi cloak-and-dagger',
|
'gi_cloak-and-dagger' : 'gi cloak-and-dagger',
|
||||||
'gicircular-shield' : 'gi circular-shield',
|
'gi_circular-shield' : 'gi circular-shield',
|
||||||
'gicircular-saw' : 'gi circular-saw',
|
'gi_circular-saw' : 'gi circular-saw',
|
||||||
'gicircle-of-circles' : 'gi circle-of-circles',
|
'gi_circle-of-circles' : 'gi circle-of-circles',
|
||||||
'gichicken-leg' : 'gi chicken-leg',
|
'gi_chicken-leg' : 'gi chicken-leg',
|
||||||
'gichessboard' : 'gi chessboard',
|
'gi_chessboard' : 'gi chessboard',
|
||||||
'gichemical-arrow' : 'gi chemical-arrow',
|
'gi_chemical-arrow' : 'gi chemical-arrow',
|
||||||
'gicheese' : 'gi cheese',
|
'gi_cheese' : 'gi cheese',
|
||||||
'gichain' : 'gi chain',
|
'gi_chain' : 'gi chain',
|
||||||
'gicat' : 'gi cat',
|
'gi_cat' : 'gi cat',
|
||||||
'gicastle-flag' : 'gi castle-flag',
|
'gi_castle-flag' : 'gi castle-flag',
|
||||||
'gicastle-emblem' : 'gi castle-emblem',
|
'gi_castle-emblem' : 'gi castle-emblem',
|
||||||
'gicarrot' : 'gi carrot',
|
'gi_carrot' : 'gi carrot',
|
||||||
'gicapricorn' : 'gi capricorn',
|
'gi_capricorn' : 'gi capricorn',
|
||||||
'gicapitol' : 'gi capitol',
|
'gi_capitol' : 'gi capitol',
|
||||||
'gicannon-shot' : 'gi cannon-shot',
|
'gi_cannon-shot' : 'gi cannon-shot',
|
||||||
'gicandle' : 'gi candle',
|
'gi_candle' : 'gi candle',
|
||||||
'gicandle-fire' : 'gi candle-fire',
|
'gi_candle-fire' : 'gi candle-fire',
|
||||||
'gicancer' : 'gi cancer',
|
'gi_cancer' : 'gi cancer',
|
||||||
'gicancel' : 'gi cancel',
|
'gi_cancel' : 'gi cancel',
|
||||||
'gicampfire' : 'gi campfire',
|
'gi_campfire' : 'gi campfire',
|
||||||
'gibutterfly' : 'gi butterfly',
|
'gi_butterfly' : 'gi butterfly',
|
||||||
'giburst-blob' : 'gi burst-blob',
|
'gi_burst-blob' : 'gi burst-blob',
|
||||||
'giburning-meteor' : 'gi burning-meteor',
|
'gi_burning-meteor' : 'gi burning-meteor',
|
||||||
'giburning-eye' : 'gi burning-eye',
|
'gi_burning-eye' : 'gi burning-eye',
|
||||||
'giburning-embers' : 'gi burning-embers',
|
'gi_burning-embers' : 'gi burning-embers',
|
||||||
'giburning-book' : 'gi burning-book',
|
'gi_burning-book' : 'gi burning-book',
|
||||||
'gibullets' : 'gi bullets',
|
'gi_bullets' : 'gi bullets',
|
||||||
'gibubbling-potion' : 'gi bubbling-potion',
|
'gi_bubbling-potion' : 'gi bubbling-potion',
|
||||||
'gibroken-skull' : 'gi broken-skull',
|
'gi_broken-skull' : 'gi broken-skull',
|
||||||
'gibroken-shield' : 'gi broken-shield',
|
'gi_broken-shield' : 'gi broken-shield',
|
||||||
'gibroken-heart' : 'gi broken-heart',
|
'gi_broken-heart' : 'gi broken-heart',
|
||||||
'gibroken-bottle' : 'gi broken-bottle',
|
'gi_broken-bottle' : 'gi broken-bottle',
|
||||||
'gibroken-bone' : 'gi broken-bone',
|
'gi_broken-bone' : 'gi broken-bone',
|
||||||
'gibroadsword' : 'gi broadsword',
|
'gi_broadsword' : 'gi broadsword',
|
||||||
'gibroadhead-arrow' : 'gi broadhead-arrow',
|
'gi_broadhead-arrow' : 'gi broadhead-arrow',
|
||||||
'gibridge' : 'gi bridge',
|
'gi_bridge' : 'gi bridge',
|
||||||
'gibrandy-bottle' : 'gi brandy-bottle',
|
'gi_brandy-bottle' : 'gi brandy-bottle',
|
||||||
'gibrain-freeze' : 'gi brain-freeze',
|
'gi_brain-freeze' : 'gi brain-freeze',
|
||||||
'gibowling-pin' : 'gi bowling-pin',
|
'gi_bowling-pin' : 'gi bowling-pin',
|
||||||
'gibowie-knife' : 'gi bowie-knife',
|
'gi_bowie-knife' : 'gi bowie-knife',
|
||||||
'gibottom-right' : 'gi bottom-right',
|
'gi_bottom-right' : 'gi bottom-right',
|
||||||
'gibottled-bolt' : 'gi bottled-bolt',
|
'gi_bottled-bolt' : 'gi bottled-bolt',
|
||||||
'gibottle-vapors' : 'gi bottle-vapors',
|
'gi_bottle-vapors' : 'gi bottle-vapors',
|
||||||
'giboot-stomp' : 'gi boot-stomp',
|
'gi_boot-stomp' : 'gi boot-stomp',
|
||||||
'giboomerang' : 'gi boomerang',
|
'gi_boomerang' : 'gi boomerang',
|
||||||
'gibook' : 'gi book',
|
'gi_book' : 'gi book',
|
||||||
'gibone-knife' : 'gi bone-knife',
|
'gi_bone-knife' : 'gi bone-knife',
|
||||||
'gibone-bite' : 'gi bone-bite',
|
'gi_bone-bite' : 'gi bone-bite',
|
||||||
'gibombs' : 'gi bombs',
|
'gi_bombs' : 'gi bombs',
|
||||||
'gibomb-explosion' : 'gi bomb-explosion',
|
'gi_bomb-explosion' : 'gi bomb-explosion',
|
||||||
'gibolt-shield' : 'gi bolt-shield',
|
'gi_bolt-shield' : 'gi bolt-shield',
|
||||||
'gibleeding-hearts' : 'gi bleeding-hearts',
|
'gi_bleeding-hearts' : 'gi bleeding-hearts',
|
||||||
'gibleeding-eye' : 'gi bleeding-eye',
|
'gi_bleeding-eye' : 'gi bleeding-eye',
|
||||||
'giblaster' : 'gi blaster',
|
'gi_blaster' : 'gi blaster',
|
||||||
'giblast' : 'gi blast',
|
'gi_blast' : 'gi blast',
|
||||||
'giblade-bite' : 'gi blade-bite',
|
'gi_blade-bite' : 'gi blade-bite',
|
||||||
'gibird-mask' : 'gi bird-mask',
|
'gi_bird-mask' : 'gi bird-mask',
|
||||||
'gibird-claw' : 'gi bird-claw',
|
'gi_bird-claw' : 'gi bird-claw',
|
||||||
'gibiohazard' : 'gi biohazard',
|
'gi_biohazard' : 'gi biohazard',
|
||||||
'gibell' : 'gi bell',
|
'gi_bell' : 'gi bell',
|
||||||
'gibeetle' : 'gi beetle',
|
'gi_beetle' : 'gi beetle',
|
||||||
'gibeer' : 'gi beer',
|
'gi_beer' : 'gi beer',
|
||||||
'gibear-trap' : 'gi bear-trap',
|
'gi_bear-trap' : 'gi bear-trap',
|
||||||
'gibeam-wake' : 'gi beam-wake',
|
'gi_beam-wake' : 'gi beam-wake',
|
||||||
'gibatwings' : 'gi batwings',
|
'gi_batwings' : 'gi batwings',
|
||||||
'gibattery-white' : 'gi battery-white',
|
'gi_battery-white' : 'gi battery-white',
|
||||||
'gibattery-positive' : 'gi battery-positive',
|
'gi_battery-positive' : 'gi battery-positive',
|
||||||
'gibattery-negative' : 'gi battery-negative',
|
'gi_battery-negative' : 'gi battery-negative',
|
||||||
'gibattery-black' : 'gi battery-black',
|
'gi_battery-black' : 'gi battery-black',
|
||||||
'gibattery-75' : 'gi battery-75',
|
'gi_battery-75' : 'gi battery-75',
|
||||||
'gibattery-50' : 'gi battery-50',
|
'gi_battery-50' : 'gi battery-50',
|
||||||
'gibattery-25' : 'gi battery-25',
|
'gi_battery-25' : 'gi battery-25',
|
||||||
'gibattery-100' : 'gi battery-100',
|
'gi_battery-100' : 'gi battery-100',
|
||||||
'gibattery-0' : 'gi battery-0',
|
'gi_battery-0' : 'gi battery-0',
|
||||||
'gibatteries' : 'gi batteries',
|
'gi_batteries' : 'gi batteries',
|
||||||
'gibattered-axe' : 'gi battered-axe',
|
'gi_battered-axe' : 'gi battered-axe',
|
||||||
'gibat-sword' : 'gi bat-sword',
|
'gi_bat-sword' : 'gi bat-sword',
|
||||||
'gibarrier' : 'gi barrier',
|
'gi_barrier' : 'gi barrier',
|
||||||
'gibarbed-arrow' : 'gi barbed-arrow',
|
'gi_barbed-arrow' : 'gi barbed-arrow',
|
||||||
'giball' : 'gi ball',
|
'gi_ball' : 'gi ball',
|
||||||
'giaxe' : 'gi axe',
|
'gi_axe' : 'gi axe',
|
||||||
'giaxe-swing' : 'gi axe-swing',
|
'gi_axe-swing' : 'gi axe-swing',
|
||||||
'giaware' : 'gi aware',
|
'gi_aware' : 'gi aware',
|
||||||
'giaura' : 'gi aura',
|
'gi_aura' : 'gi aura',
|
||||||
'giarson' : 'gi arson',
|
'gi_arson' : 'gi arson',
|
||||||
'giarrow-flights' : 'gi arrow-flights',
|
'gi_arrow-flights' : 'gi arrow-flights',
|
||||||
'giarrow-cluster' : 'gi arrow-cluster',
|
'gi_arrow-cluster' : 'gi arrow-cluster',
|
||||||
'giaries' : 'gi aries',
|
'gi_aries' : 'gi aries',
|
||||||
'giarena' : 'gi arena',
|
'gi_arena' : 'gi arena',
|
||||||
'giarchery-target' : 'gi archery-target',
|
'gi_archery-target' : 'gi archery-target',
|
||||||
'giarcher' : 'gi archer',
|
'gi_archer' : 'gi archer',
|
||||||
'giarcane-mask' : 'gi arcane-mask',
|
'gi_arcane-mask' : 'gi arcane-mask',
|
||||||
'giaquarius' : 'gi aquarius',
|
'gi_aquarius' : 'gi aquarius',
|
||||||
'giapple' : 'gi apple',
|
'gi_apple' : 'gi apple',
|
||||||
'gianvil' : 'gi anvil',
|
'gi_anvil' : 'gi anvil',
|
||||||
'giankh' : 'gi ankh',
|
'gi_ankh' : 'gi ankh',
|
||||||
'giangel-wings' : 'gi angel-wings',
|
'gi_angel-wings' : 'gi angel-wings',
|
||||||
'gianchor' : 'gi anchor',
|
'gi_anchor' : 'gi anchor',
|
||||||
'giammo-bag' : 'gi ammo-bag',
|
'gi_ammo-bag' : 'gi ammo-bag',
|
||||||
'gialligator-clip' : 'gi alligator-clip',
|
'gi_alligator-clip' : 'gi alligator-clip',
|
||||||
'giall-for-one' : 'gi all-for-one',
|
'gi_all-for-one' : 'gi all-for-one',
|
||||||
'gialien-fire' : 'gi alien-fire',
|
'gi_alien-fire' : 'gi alien-fire',
|
||||||
'giacorn' : 'gi acorn',
|
'gi_acorn' : 'gi acorn',
|
||||||
'giacid' : 'gi acid'
|
'gi_acid' : 'gi acid'
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = gameIcons;
|
module.exports = gameIcons;
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
@font-face {
|
@font-face {
|
||||||
font-family : 'Game Icons';
|
font-family : 'Game-Icons';
|
||||||
font-style : normal;
|
font-style : normal;
|
||||||
font-weight : normal;
|
font-weight : normal;
|
||||||
src : url('../../../fonts/iconFonts/gameIcons.woff') format('woff');
|
src : url('../../../fonts/iconFonts/gameIcons.woff') format('woff');
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
/* use !important to prevent issues with browser extensions that change fonts */
|
/* use !important to prevent issues with browser extensions that change fonts */
|
||||||
display : inline-block;
|
display : inline-block;
|
||||||
margin-right : 3px;
|
margin-right : 3px;
|
||||||
font-family : 'Game Icons' !important;
|
font-family : 'Game-Icons' !important;
|
||||||
line-height : 1;
|
line-height : 1;
|
||||||
vertical-align : baseline;
|
vertical-align : baseline;
|
||||||
-moz-osx-font-smoothing : grayscale;
|
-moz-osx-font-smoothing : grayscale;
|
||||||
|
|||||||
Reference in New Issue
Block a user