Files @ r2147:d338acdbdc70
Branch filter:

Location: cpp/openttd-patchpack/source/table/currency.h

celestar
(svn r2657) -Codechange: The available railtypes per player are now a bitmask, so
that railtypes do not be in ascending order of appearance. Allows easier
implementation or more railtypes
// exchange rate    prefix
// |  separator        |     postfix
// |   |    Euro year  |       |
// |   |    |          |       |
CurrencySpec _currency_specs[] = {
{ 1,   ',', CF_NOEURO, "\xA3",   "" }, // british pounds
{ 2,   ',', CF_NOEURO, "$",      "" }, // us dollars
{ 2,   ',', CF_ISEURO, "ยค",      "" }, // Euro
{ 200, ',', CF_NOEURO, "\xA5",   "" }, // yen

{ 19,  ',', 2002,         "", " S." }, // austrian schilling
{ 57,  ',', 2002,     "BEF ",    "" }, // belgian franc
{ 2,   ',', CF_NOEURO,"CHF ",    "" }, // swiss franc
{ 50,  ',', CF_NOEURO,    "", " Kc" }, // czech koruna // TODO: Should use the "c" with an upside down "^"
{ 4,   '.', 2002,      "DM ",    "" }, // deutsche mark
{ 10,  '.', CF_NOEURO,    "", " kr" }, // danish krone
{ 200, '.', 2002,     "Pts ",    "" }, // spanish pesetas
{ 8,   ',', 2002,         "", " MK" }, // finnish markka
{ 10,  '.', 2002,      "FF ",    "" }, // french francs
{ 480, ',', 2002,         "", "Dr." }, // greek drachma
{ 376, ',', 2002,         "", " Ft" }, // forint
{ 130, '.', CF_NOEURO,    "", " Kr" }, // icelandic krona
{ 2730,',', 2002,         "", " L." }, // italian lira
{ 3,   ',', 2002,     "NLG ",    "" }, // dutch gulden
{ 11,  '.', CF_NOEURO,    "", " Kr" }, // norwegian krone
{ 6,   ' ', CF_NOEURO,    "", " zl" }, // polish zloty
{ 6,   '.', CF_NOEURO,    ""," Lei" }, // romanian Lei
{ 5,   ' ', CF_NOEURO,    "",  " p" }, // russian rouble
{ 13,  '.', CF_NOEURO,    "", " Kr" }, // swedish krona
{ 1,   ' ', CF_NOEURO,    "",    "" }, // custom currency
};