Add empty coin symbol with example

This commit is contained in:
Manuel 2016-02-24 22:19:37 +01:00 committed by Manuel Oddoy
parent 9df8ee0ee7
commit 6aaa690473
3 changed files with 15 additions and 1 deletions

View File

@ -2692,5 +2692,16 @@
"Duration" "Duration"
], ],
"name": "Champion" "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"
]
}
] ]

View File

@ -92,6 +92,9 @@ class DividerDrawer(object):
replace = '<img src='"'%s/coin_small_question.png'"' width=%d height='"'100%%'"' valign='"'middle'"'/>' % ( replace = '<img src='"'%s/coin_small_question.png'"' width=%d height='"'100%%'"' valign='"'middle'"'/>' % (
path, fontsize * 1.2) path, fontsize * 1.2)
text = re.sub('\?\s(c|C)oin(s)?', replace, text) text = re.sub('\?\s(c|C)oin(s)?', replace, text)
replace = '<img src='"'%s/coin_small_empty.png'"' width=%d height='"'100%%'"' valign='"'middle'"'/>' % (
path, fontsize * 1.2)
text = re.sub('empty\s(c|C)oin(s)?', replace, text)
replace = '<img src='"'%s/victory_emblem.png'"' width=%d height='"'120%%'"' valign='"'middle'"'/>' % ( replace = '<img src='"'%s/victory_emblem.png'"' width=%d height='"'120%%'"' valign='"'middle'"'/>' % (
path, fontsize * 1.5) path, fontsize * 1.5)
text = re.sub('\<VP\>', replace, text) text = re.sub('\<VP\>', replace, text)

BIN
images/coin_small_empty.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB