Add random tiles generation

This commit is contained in:
Gabriel Augendre 2019-11-24 17:26:41 +01:00
parent eceaaf1ef8
commit 822c47eaff
No known key found for this signature in database
GPG Key ID: 1E693F4CE4AEE7B4
191 changed files with 648 additions and 1 deletions

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
*.png filter=lfs diff=lfs merge=lfs -text
*.mp3 filter=lfs diff=lfs merge=lfs -text

11
constants.py Normal file
View File

@ -0,0 +1,11 @@
GAME_NAME = "Adventure game"
UPSCALE_FACTOR = 3
TILE_SIZE = 16 * UPSCALE_FACTOR
SCREEN_WIDTH_IN_TILES = 20
SCREEN_HEIGHT_IN_TILES = 20
SCREEN_WIDTH_IN_PIXELS = SCREEN_WIDTH_IN_TILES * TILE_SIZE
SCREEN_HEIGHT_IN_PIXELS = SCREEN_HEIGHT_IN_TILES * TILE_SIZE
BACKGROUND_COLOR = (255, 255, 255)

21
graphics/release.txt Normal file
View File

@ -0,0 +1,21 @@
ESTÚDIO VACA ROXA
Ajude a iniciativa Vaca Roxa:
https://apoia.se/vacaroxa
https://patreon.com/bakudas
Social:
https://twitter.com/bakudas
https://twitter.com/estudiovacaroxa/
https://www.fb.com/estudiovacaroxa
https://www.youtube.com/estudiovacaroxa
Artwork by Bakudas and Gabe Fern
Versão ALPHA release v0.3
License:
The resources can be used in free and commercial games, videos, and other forms of media.
You may freely edit the resources for your own purposes, including using modified versions in games, videos, etc.
Credit is optional but appreciated and recommended.
You may NOT redistribute the resources themselves, or derivatives thereof - neither for free, paid or otherwise.
You may NOT transfer this license, or issue sub-licenses for the usage of the resources (or derivatives thereof) by third parties.

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b2ec6d6bce604b3435b8c3eacdf12d5656f24dcf4a32b5ef65a5114d424224a6
size 3468

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5a3a14daccc7733420fbd7b1942d2de91f1abf0f6785f129be878c873a319106
size 121

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:330a1143edf812afdeb74a904ff1360ada865627a9ae226e57a5e1b1c7ba7ac5
size 105

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6f85121cc918e74d39333da09ff632f42fa0c8736abd4418844d69f58bb2a926
size 102

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:32049aa269d5155bd2505b614bb7ab4415db435a83c2af4c94b2f59c4437611f
size 171

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:338b10208b4f25e59b4ba2178b7397a8615607a47db898b5b47e017f9d508937
size 372

BIN
graphics/rpg-pack/atlas.ase Normal file

Binary file not shown.

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ff5a83a1af0cb4fbe686ffb3cc51778bc11987c1e110d43edafd12320cb9b2c0
size 57998

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:48b8ac17973c0b6867c62747bd5c9d36a4fa8430b229e4c997ac7601ba9b2ce8
size 1997

Binary file not shown.

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:560c2e33a24e4394097cb7dcf30e214fdb99aefe0e81b74bbd4ef5759653a00b
size 456

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d13b06ba762fc73769d0ecaac8537b0d7ec4e139b543504c36b5449bdb7a3231
size 2884

Binary file not shown.

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2aa79e12ce2c2fbc00f4fd1a5fa4c127312daac69cbe4b4aa83d085f56faa193
size 716

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9de09659210c8d88ac4d09f262ffc62981be8bea672351de92a4b040fcdf7bee
size 3056

Binary file not shown.

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fd6b8d4b557656307dac0ffbae88458623b067b2b7daf69b2cdbcc8b786e5f89
size 1223

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:958066557a68c846ea0626e35c054a804a028bc664cfb90bd2c5157ce9d23604
size 1098

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:aaf88cf8b56ed306b57bb4aadda18891e6d3e1322a579bfb174431fe1dac7b9d
size 2526

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:496f72872b22a82795ab7e40f5e58282488f286875e271e3f5e5cff79fb1f01c
size 552

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e3b3db94d28b8ac38d7337fc463194b2ab32793abb68e88aad85e6bd801c1483
size 570

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0509562c7149041705e2e6c65329246c02eadb38260c634bdb07eca00472e22b
size 579

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f064442cdab85e6b82f188e536df56b2e10b7c84a0b6b445af2db2aab3760737
size 754

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:674dbe0d3c0638b90b899d80ff9323a1ff9be7b6a9c1e8e01ede20dd49dd8388
size 405

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4b8d803ad946e2deeab9f7afa8bedf13682cc3905129f4c39a42c958039ecc74
size 462

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d05b1484bc18cd73b0769ef3c56997ef767609c25d8d0cae69a596bf815149ef
size 372

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7d3f391622467977c6dc2d7b1b13af55b1f227374120e5b0b2537205135d0a21
size 359

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2007eb9aa26d872a2c37911c5250b0bdc0624e7a187e2b5211e5ab730aee3aaa
size 375

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4ebd36c65e0985c5a41a0c295b22ad58ccc7b82fd5fdb89467b378f943040839
size 479

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1900634a47c6ac1701ed3fc561137b9c6ac778a54912b00e9c2304436244421c
size 347

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:968277602b53bbb2b46117583816828c7e1843f630aabe781ff8489e3906833b
size 1843

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d199150145765588ef471eade5f4faf905022a7165d7ca970df8e7f6145d0559
size 436

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:180c2488bc53d8fa13e68688ae2a4d37c89ea0f247d0c6728ac1614dc58fb4b1
size 587

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:98b3571ebf03f1dc646ce83e68a6e43861dd1fc3090e75eedc5fa336f8adfb80
size 346

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c4b89881a9d3b9f831bcc5423070e9a7a06a0ac26b33ee16a749faabcf050506
size 700

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8b3144b17742ce65cf120decbee744b807918fe26e9345ff0df60d8041b27ac1
size 350

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:17106bd657a058d228f7d26b5a8ba2c30de98d31a7e96d7b9e30ee72387bd5f6
size 357

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:85851589c245cf12a2b094054f6270317919e1c962135a42183fe71b1ee76d4a
size 342

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:df537f8b5a9333ed3631ccd68daf7ea47a43cf804b041c91b8729b2abf32bccc
size 340

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7ccf49683b223c6b342d287449ed31b76a4549a9cb5808f13b55316098d6061b
size 330

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1f9448b7187bebcd2546388210cda7ca7f9deb6e90340969c63da24b32844926
size 266

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c1a2b3d1dac647c937b839ca9dd20e146f0390e0c9edffa18ca9a40d4fbb1cb8
size 268

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c48fe4cac62dab34da922ebb411f3d941f7f5ad85c69cf4b499a51744fb002f0
size 269

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1ec94e0b4ab52501569a18d749c0fca1154008134ea4c77a5b8ea9a87751ff28
size 336

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:31138f7721c87ab693c4e60d4b3c6c41931ee1d88031375959594fdb8f39b23a
size 340

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:36c6aa0a17f687ae2cdd489dfcd6b0cc64594fde6e3a14eef032cf707a8ae7ba
size 271

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bc4bb2e3e978f3faf92336888ffd1e6e84cd67adada03766c01be662902fe100
size 278

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f303336203b84b1ad1815cbefbfa65eaf9220eeca78c613c209f047c6be37868
size 268

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:82fef7c2f3683ad9b0fe57f4508c6cc1061c6cf0bfd2a5a69bad0dfd0f70af9c
size 312

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3b9cc82a5a591bd139066cabf02fcfdcad462deeb0842a75495ce2da787ea6b6
size 344

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ef80d0670e8ae95a8215d943d21edf259ea70cd25287ad809739bc4d57b4ffa8
size 335

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cde319fa6667a407f94b84ef3bb967b7a2ba578ea43bf0a9f2179daf5ec2d765
size 443

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e6efe6925d848165789a91cc0ea8d363790c7d089417d63458694ea86de3de8f
size 367

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2eb4166ee48b8c141e0120f27c529d5c71b6fb8c0e996e0774fd26394587ba5f
size 308

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1da916c29d087dd5334bdd276b2a626efe4925b74e6fd03ff6978db22d4fb759
size 291

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:66bee551a464855498384918a1c0ee64afe7d1ce0c439ecc898140fbf4ad4588
size 366

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9ddd10a41ca8d52244830655acd3e07e16e6de87092f8840891fe348ea4fce24
size 329

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e81c2c86b34c9264cf2eb2e8665dc0ea07b1385873e2f2c75ff6841bea7fc4a4
size 339

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7bd33d61cca4b47c0c1370f98287650a151bc4866c2ced03a65909ce44869ea6
size 394

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:455d88c1c32e5f0376891adffd37a91d0649091bf7d333e36ee857103071d682
size 383

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8c1277193aa880a1e82bcd5542a57dcd737f0ecb04b9fb5b5f9b0b9aa6da73aa
size 228

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d3450e43725117e14880800ecabf1f772dda3e927666e913dc974113c1c89066
size 201

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8d1259d015a9f0d2a3d9e91a86c52d9ed3549a5ca7cd4cb70f8737f98430e396
size 228

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f62d93cbd29b82a2002cd481c82a76f4df713f78d7b7ea98e0c1ec9bd62bd209
size 207

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dff0bfd6ad00db81259d1eb17f56ac1da884c7a18b1d932ca745ff5844625066
size 241

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c480b141215c09dffd4f749278f8f327d1dd95cff201c3b760d2728c4a6cc42a
size 147

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bb7635e8eb2148c6058bbf546f33007cf37ef9bdb2acd9c5fccb3712fc11665c
size 129

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f604f337f79e1c281f4274d4baf1449036d901a1a3615605b17519b7d448567a
size 267

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a0879dcba2fcf4ed4c0f803f158ca43aa6ebbef5cbbba38ff16359dab57949b4
size 201

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ee8f378ee8579064844399752f78584f0f2615e2d09ec527d243d01c51e11bc9
size 183

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:78580671093d7735a88672ed52b7bb613ade53c90eaa81ef646336f2081b47c8
size 216

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f74d7ccb82c1dd1cdc8658330f07cac045eeaecd44ae591027f508458242c863
size 234

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:83d345474c31017530bba4a31b235a6dde062f845ec98905f2c7306f9650ac8a
size 137

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b64558d42253e589126ed5e59e9c5d204978e480844778f3d9069a621b568c41
size 159

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:767d1d2f0e119d67824eaa1a85db06c461ca8968c7992db6d621d05b56e169a4
size 121

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ee792e9b10a1818b43907dba192e94db8e1dc129a39436241732b9b0f4c27c94
size 102

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:55574093b4144a7eeb27075ae6116c56b1efdcc654afc75146256021f522599c
size 114

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e40a7355c7ef7da0d04dcb1d67a8c63b77765ef0b2c4ea03d45a9912c75bbb81
size 109

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e15860acdf35cf69ad9fd62946cba642081d9d45a938af572bc99ce9ac687cfc
size 194

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:658d4c71a6e0d2706337bfa728d7c3513186b037215d6cf8f829d1fbdf2857dd
size 201

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:77f34e921ed7a986b26de74628bc1b4e94791608811878f6255121b681e78060
size 199

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3ae0872f2a30bcdc5581a8d718b1201c48c1e0c180de30be4ceae30aa44df86a
size 715

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3b50ec601a84c41f0c053660d630f53a81051f10489b2380b98b90e79f10eef2
size 132

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f8b84053d17ea34e62e7b51c07179a54fea7acf44ae3d62adaa4c86400a4d9fc
size 156

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cca76c60353042d3cd75d8597810ba73b89d9bcb788d8015b8f845128fe5b026
size 2851

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c30955458ef7306dfe7ee52887e010743f588d8e3abcc998593357a72d898ee9
size 250

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:22149a50c87a53ce1a9bcb53f8b8eceb14dbd1504d7590a8de1b9ea86dd0a409
size 183

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:12ca496b726ccfd10b1e3e1d6f95772ee1e806ae165240afff1e06a80dae2cfa
size 293

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:42989f9d09d2cece9709b2538b350370db6dba000b9c1aebcba9bdd617773c7f
size 286

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b6c82e8812a868998149c2848b133e22a77c659abfd91d5cfe0ea1fa980e7313
size 291

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a566db5c93c9e98c47d33e7293abd38e6ebb086a6f420371b7e1d2c14934e6fd
size 1016

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d17c19165e7bbcd7b77d3db258732db7efb6ccea9806ee46b647dae4fb6b6462
size 272

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7290cd6d7b0b34be196ec373678f8ab00a461e36c72ba11b215d6434cf18856f
size 387

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:69a56716b30377e358684dfc340ce728a0488011f265ad7909dc75bf9600814a
size 388

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:48039dad168e501f0c563d81d7b2b9c0d4bfc3f349a6994aedfb4210b5dc2705
size 476

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:344a5ec71c5a5f9cdaadbbaf1ae501c464c1ce24a11983637c697b02959ab1c3
size 391

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0710dfe5c99ebffae6803ddb3583eb8582aae4e908f42a04a663e90010a0634e
size 483

Some files were not shown because too many files have changed in this diff Show More