Skip to content

Instantly share code, notes, and snippets.

@AustinLMayes
Last active February 4, 2017 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AustinLMayes/26be74ae74862a86ab3998ee43b815ef to your computer and use it in GitHub Desktop.
Save AustinLMayes/26be74ae74862a86ab3998ee43b815ef to your computer and use it in GitHub Desktop.
// -----------------------------------------------------------------
// ----------- Prices are calculated using this formula: -----------
// --- (500 * (500 + markup) (number beside badge)) + color cost ---
// -----------------------------------------------------------------
// Chars
ASTERISK('*', 0.0),
DOT('°', 0.5),
COPYRIGHT('©', 1.2),
REGISTERED('®', 1.4),
TRADEMARK('™', 2.0),
// Math
HOLLOW_ISOTOXAL('✧', 2.2),
ISOTOXAL('✦', 2.3),
INTERSECTION('✳', 2.0),
INTERSECTION_THICK('❋', 2.2),
INFINITY('∞', 4.0),
NULL_SET('∅', 3.5),
NOT_EQUAL('≠', 4.4),
ALMOST_EQUAL('≈', 4.2),
// Chess
KING('♚', 100.0),
QUEEN('♛', 60.3),
ROOK('♜', 45.0),
BISHOP('♝', 35.0),
KNIGHT('♞', 20.0),
PAWN('♟', 10.0),
// Aerospace
PROPELLER('✣', 43.0),
AIRPLANE('✈', 35.0),
// Greek
THETA('Θ', 15.0),
SIGMA('Σ', 15.0),
OMEGA('Ω', 55.0),
DELTA('∆', 45.0),
DIGAMMA('Ͷ', 25.0),
XI('Ξ', 22.0),
PHI('Φ', 15.0),
PSI('Ψ', 32.0),
// Cards
SPADE('♠', 36.0),
DIAMOND('♢', 66.0),
// Nature
SNOWFLAKE('❄', 50.0),
STAR_BADGE('✪', 66.0),
SUN_BADGE('❂', 60.0),
STAR('✭', 70.0),
FLOWER('❀', 55.0),
// Misc
SMILEY('ツ', 66.0),
HOT_BEVERAGE('☕', 66.0),
MUSIC_NOTES('♫', 54.0),
HEART('❤', 20.0),
YIN_YANG('☯', 39.0),
BIOHAZARD('☣', 120.0),
ARROW('➤', 73.0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment