summaryrefslogtreecommitdiff
path: root/table
diff options
context:
space:
mode:
authordominik <dominik@openttd.org>2004-12-22 13:19:26 +0000
committerdominik <dominik@openttd.org>2004-12-22 13:19:26 +0000
commit4f4fa940d816af32ca9fb34458b3359e53d74f4b (patch)
tree849dd228026826b8163c4b72bee611082a3ffb5f /table
parent46af99b8c0b21cd7bc8f404ba518a268241dfb8b (diff)
downloadopenttd-4f4fa940d816af32ca9fb34458b3359e53d74f4b.tar.xz
(svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
Diffstat (limited to 'table')
-rw-r--r--table/currency.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/table/currency.h b/table/currency.h
new file mode 100644
index 000000000..7e99e8f26
--- /dev/null
+++ b/table/currency.h
@@ -0,0 +1,26 @@
+
+CurrencySpec _currency_specs[] = {
+{ 1, ',', CF_NOEURO, "\xA3", "" }, // british pounds
+{ 2, ',', CF_NOEURO, "$", "" }, // us dollars
+{ 10, '.', 2002, "FF ", "" }, // french francs
+{ 4, '.', 2002, "DM ", "" }, // deutsche mark
+{ 200, ',', CF_NOEURO, "\xA5", "" }, // yen
+{ 200, '.', 2002, "Pt", "" }, // spanish pesetas
+{ 376, ',', 2002, "", " Ft" },
+{ 6, ' ', CF_NOEURO, "", " zl" },
+{ 19, ',', 2002, "ATS ", "" },
+{ 57, ',', 2002, "BEF ", "" },
+{ 10, '.', CF_NOEURO, "", " kr" },
+{ 8, ',', 2002, "FIM ", "" },
+{ 480, ',', 2002, "GRD ", "" },
+{ 2, ',', CF_NOEURO, "CHF ", "" },
+{ 3, ',', 2002, "NLG ", "" },
+{ 2730,',', 2002, "ITL ", "" },
+{ 13, '.', CF_NOEURO, "", " kr" },
+{ 5, ' ', CF_NOEURO, "", " rur" },
+{ 50, ',', CF_NOEURO, "", " Kc" },
+{ 130, '.', CF_NOEURO, "", " kr" },
+{ 11, '.', CF_NOEURO, "", " kr" },
+{ 2, ',', CF_ISEURO, "¤", "" },
+{ 6, '.', CF_NOEURO, "", " Lei" },
+};