diff options
-rw-r--r-- | game/05_init.rpy | 20 | ||||
-rw-r--r-- | game/ATTRIBUTION | 5 | ||||
-rw-r--r-- | game/gfx/logo.png | bin | 0 -> 89940 bytes | |||
-rw-r--r-- | game/script.rpy | 13 |
4 files changed, 23 insertions, 15 deletions
diff --git a/game/05_init.rpy b/game/05_init.rpy index a66dcb8..f55a058 100644 --- a/game/05_init.rpy +++ b/game/05_init.rpy @@ -17,6 +17,7 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ######################################################################################## # Definitions - Prestart +image TMW2 = "gfx/logo.png" label prestart: python: @@ -29,3 +30,22 @@ label prestart: session_id=uuid.uuid4().hex return +label splashscreen: + show TMW2 at truecenter with fade + pause 2.5 + hide TMW2 with Dissolve(1.5) + python: + """ + centered "{b}{color=#f00}Disclaimer{/color}\n\nBy running this software, you affirm that you have the right to do so.\nNo license is provided for using this demo software.\n\n\ +\ +\ +{color=#f00}This client may contain assets which {u}does not{/u} belongs to it.\n\ +If you are the legal owner of an asset, or their legal representant,\n\ +And find an asset of yours illegally used, please, fill a DMCA complaint\n\ +by sending an email to {a=mailto:dmca@tmw2.org}dmca@tmw2.org{/a}.{/color}\n\ +\n\ +\n\ +No warranties.{/b}{fast}" + """ + return + diff --git a/game/ATTRIBUTION b/game/ATTRIBUTION index af90584..3b4a2ef 100644 --- a/game/ATTRIBUTION +++ b/game/ATTRIBUTION @@ -41,12 +41,13 @@ Where relevant, you must also include a link to https://tmw2.org in your credit. f/ShadowedBlack.ttf (Paul Lloyd) (GPLv2) (From Freecol) # GFX - gfx/actionarea.png (-) (-) (-) gfx/action.png + gfx/actionarea.png (-) (-) (-) gfx/evol.png (Ren'Py Team) (MIT) (Modified by Jesusalva) + gfx/logo.png (TMW2 Group) (-) (*License not appliable*) + gfx/nourishedflower.webp (Santiago Iborra) (CC BY-SA 4.0) (From Arcmage) gfx/off.png (Jesusalva) (CC0) gfx/spinner.png - gfx/nourishedflower.webp (Santiago Iborra) (CC BY-SA 4.0) (From Arcmage) ## BG gfx/bg/academy.webp gfx/bg/battle.png (Écrivain) (CC0) (OpenGameArt) diff --git a/game/gfx/logo.png b/game/gfx/logo.png Binary files differnew file mode 100644 index 0000000..7882f0d --- /dev/null +++ b/game/gfx/logo.png diff --git a/game/script.rpy b/game/script.rpy index 4517c61..ab430ce 100644 --- a/game/script.rpy +++ b/game/script.rpy @@ -8,19 +8,6 @@ image dialog rebel = "gfx/dialog/rebel.png" define e = Character("Player") -label splashscreen: - centered "{b}{color=#f00}Disclaimer{/color}\n\nBy running this software, you affirm that you have the right to do so.\nNo license is provided for using this demo software.\n\n\ -\ -\ -{color=#f00}This client may contain assets which {u}does not{/u} belongs to it.\n\ -If you are the legal owner of an asset, or their legal representant,\n\ -And find an asset of yours illegally used, please, fill a DMCA complaint\n\ -by sending an email to {a=mailto:dmca@tmw2.org}dmca@tmw2.org{/a}.{/color}\n\ -\n\ -\n\ -No warranties.{/b}{fast}" - return - # Inform you are now ingame label start: |