Add new rune assets from Max Deas

This commit is contained in:
spengreb 2021-02-06 15:11:31 +01:00
parent 50b3b50922
commit 8c49c3f870
7 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View file

@ -1,2 +1,3 @@
output/*.png output/*.png
.DS_Store .DS_Store
assets/*.old

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 221 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 195 KiB

View file

@ -43,7 +43,7 @@ def draw_symbol(img, symbol, color, x, y):
def draw_rune(img, color): def draw_rune(img, color):
with Image(filename='assets/{}.png'.format(color)) as rune: with Image(filename='assets/{}.png'.format(color)) as rune:
rune.resize(110,122) rune.resize(220,244)
img.composite( img.composite(
rune, rune,
left=int((img.width - rune.width) / 2), left=int((img.width - rune.width) / 2),