diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-26 15:17:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-26 15:17:48 -0300 |
commit | 061ac16210375fa68419bfa40da68655fb207c9f (patch) | |
tree | 25ace9de01d9f8afb0812cc3124f63f5741ec535 | |
parent | 4c1654364b140f0de6a8482b41945a3cfa877df0 (diff) | |
download | client-061ac16210375fa68419bfa40da68655fb207c9f.tar.gz client-061ac16210375fa68419bfa40da68655fb207c9f.tar.bz2 client-061ac16210375fa68419bfa40da68655fb207c9f.tar.xz client-061ac16210375fa68419bfa40da68655fb207c9f.zip |
Add elemental information to the unit squares.
-rw-r--r-- | game/03_init.rpy | 6 | ||||
-rw-r--r-- | game/ATTRIBUTION | 6 | ||||
-rw-r--r-- | game/gfx/square/ele_0.png | bin | 0 -> 7140 bytes | |||
-rw-r--r-- | game/gfx/square/ele_1.png | bin | 0 -> 9819 bytes | |||
-rw-r--r-- | game/gfx/square/ele_2.png | bin | 0 -> 9797 bytes | |||
-rw-r--r-- | game/gfx/square/ele_3.png | bin | 0 -> 10031 bytes | |||
-rw-r--r-- | game/gfx/square/ele_4.png | bin | 0 -> 9467 bytes | |||
-rw-r--r-- | game/gfx/square/ele_5.png | bin | 0 -> 6562 bytes |
8 files changed, 10 insertions, 2 deletions
diff --git a/game/03_init.rpy b/game/03_init.rpy index 222738a..5fa1d76 100644 --- a/game/03_init.rpy +++ b/game/03_init.rpy @@ -67,13 +67,15 @@ init python: (340, 340), (0, 0), "gfx/square/bg.png", (0, 0), path, - (0, 0), "gfx/square/%d.png" % r) + (0, 0), "gfx/square/%d.png" % r, + (0, 0), "gfx/square/ele_%d.png" % e) else: return Composite( (340, 340), (0, 0), "gfx/square/bg.png", (0, 0), ExtraImage(path), - (0, 0), "gfx/square/%d.png" % r) + (0, 0), "gfx/square/%d.png" % r, + (0, 0), "gfx/square/ele_%d.png" % e) def card_composite(cid, path, ei=False): # We need to try to get rarity diff --git a/game/ATTRIBUTION b/game/ATTRIBUTION index e80a172..b815184 100644 --- a/game/ATTRIBUTION +++ b/game/ATTRIBUTION @@ -113,6 +113,12 @@ Where relevant, you must also include a link to https://tmw2.org in your credit. gfx/square/5.png gfx/square/6.png gfx/square/7.png + gfx/square/ele_0.png (Chrisdesign) (CC0) (From OpenGameArt/Modified) + gfx/square/ele_1.png (Chrisdesign) (CC0) (From OpenGameArt) + gfx/square/ele_2.png (Chrisdesign) (CC0) (From OpenGameArt) + gfx/square/ele_3.png (Chrisdesign) (CC0) (From OpenGameArt) + gfx/square/ele_4.png (Chrisdesign) (CC0) (From OpenGameArt) + gfx/square/ele_5.png (Chrisdesign) (CC0) (From OpenGameArt) gfx/square/back_hover.png gfx/square/back_idle.png gfx/square/bg.png diff --git a/game/gfx/square/ele_0.png b/game/gfx/square/ele_0.png Binary files differnew file mode 100644 index 0000000..04c36fd --- /dev/null +++ b/game/gfx/square/ele_0.png diff --git a/game/gfx/square/ele_1.png b/game/gfx/square/ele_1.png Binary files differnew file mode 100644 index 0000000..410110f --- /dev/null +++ b/game/gfx/square/ele_1.png diff --git a/game/gfx/square/ele_2.png b/game/gfx/square/ele_2.png Binary files differnew file mode 100644 index 0000000..4b77df2 --- /dev/null +++ b/game/gfx/square/ele_2.png diff --git a/game/gfx/square/ele_3.png b/game/gfx/square/ele_3.png Binary files differnew file mode 100644 index 0000000..ee5b45c --- /dev/null +++ b/game/gfx/square/ele_3.png diff --git a/game/gfx/square/ele_4.png b/game/gfx/square/ele_4.png Binary files differnew file mode 100644 index 0000000..b976c8f --- /dev/null +++ b/game/gfx/square/ele_4.png diff --git a/game/gfx/square/ele_5.png b/game/gfx/square/ele_5.png Binary files differnew file mode 100644 index 0000000..eba0bfd --- /dev/null +++ b/game/gfx/square/ele_5.png |