diff --git a/card_db/de/cards.json b/card_db/de/cards.json
index 419e2bf..d268db7 100644
--- a/card_db/de/cards.json
+++ b/card_db/de/cards.json
@@ -2681,5 +2681,15 @@
"Duration"
],
"name": "Champion"
- }
-]
+ },
+ {
+"name":"Geschichtenerzähler",
+"cost": "5",
+"description": "",
+"extra":"Du erhältst + 1 Aktion sowie + 1 Coins. Spiele bis zu 3 Geldkarten aus deiner Hand aus und zahle alle empty Coin, die du bisher in diesem Zug ausgespielt hast. Das beinhaltet alle Geldwerte von ausgespielten Geldkarten sowie alle, z. B. durch ausgespielte Aktionskarten, erhaltene zusätzliche Geldwerte (+ 1 Coins) inkl. dem + 1 Coins dieses GESCHICHTENERZÄHLERS. Du hast danach 0 Coins. Für jedes gezahlte 1 Coins erhältst du + 1 Karte. Trank-Kosten aus Die Alchemisten sind davon nicht betroffen.",
+"cardset": "Abenteuer",
+"potcost": 0,
+"types": [
+"Action"
+}
+]
\ No newline at end of file
diff --git a/domdiv/draw.py b/domdiv/draw.py
index c2744fa..17a6f1e 100644
--- a/domdiv/draw.py
+++ b/domdiv/draw.py
@@ -92,6 +92,9 @@ class DividerDrawer(object):
replace = '
' % (
path, fontsize * 1.2)
text = re.sub('\?\s(c|C)oin(s)?', replace, text)
+ replace = '
' % (
+ path, fontsize * 1.2)
+ text = re.sub('empty\s(c|C)oin(s)?', replace, text)
replace = '
' % (
path, fontsize * 1.5)
text = re.sub('\', replace, text)
diff --git a/images/coin_small_empty.png b/images/coin_small_empty.png
new file mode 100644
index 0000000..bf6e5c1
Binary files /dev/null and b/images/coin_small_empty.png differ