├── README.md ├── RPG ├── License.txt ├── README.md ├── roguelikeChar_transparent.png ├── roguelikeChar_transparent.tsx ├── roguelikeDungeon_transparent.png ├── roguelikeDungeon_transparent.tsx ├── roguelikeIndoor_transparent.png ├── roguelikeIndoor_transparent.tsx ├── roguelikeSheet_transparent.png ├── roguelikeSheet_transparent.tsx └── sample.tmx └── RTS ├── Medieval ├── License.txt ├── Readme.md ├── medieval_tilesheet.png ├── medieval_tilesheet.tsx └── sample.tmx └── Sci-Fi ├── License.txt ├── Readme.md ├── sample.tmx ├── scifi_tilesheet.png └── scifi_tilesheet.tsx /README.md: -------------------------------------------------------------------------------- 1 | Tiled Resources 2 | =============== 3 | 4 | A repository with free resources ready to be used with the Tiled map editor. 5 | 6 | Other Places to Look 7 | -------------------- 8 | 9 | There are many resources available online. 10 | 11 | * [OpenGameArt.org](https://opengameart.org/) has a large collection of free assets, including [many tagged tilesets](https://opengameart.org/art-search-advanced?field_art_tags_tid=tileset&sort_by=totalcount). Also check out Thorbjørn's collection of [tilesets with terrain transitions](https://opengameart.org/content/terrain-transitions) that should work well with the [Terrain Brush](http://doc.mapeditor.org/en/stable/manual/using-the-terrain-tool/). 12 | 13 | * [itch.io](https://itch.io/) lists many free and non-free [game assets](https://itch.io/game-assets), including [many tagged tilesets](https://itch.io/game-assets/tag-tileset). Thorbjørn is maintaining a [collection of tilesets](https://itch.io/c/133871/tiled-resources) there as well. 14 | -------------------------------------------------------------------------------- /RPG/License.txt: -------------------------------------------------------------------------------- 1 | 2 | ############################################################################### 3 | 4 | 5 | Roguelike pack 6 | by Kenney Vleugels for Kenney (www.kenney.nl) 7 | with help by Lynn Evers (Twitter: @EversLynn) 8 | 9 | ------------------------------ 10 | 11 | License (Creative Commons Zero, CC0) 12 | http://creativecommons.org/publicdomain/zero/1.0/ 13 | 14 | You may use these graphics in personal and commercial projects. 15 | Credit (Kenney or www.kenney.nl) would be nice but is not mandatory. 16 | 17 | ------------------------------ 18 | 19 | Donate: http://donate.kenney.nl/ 20 | Request: http://request.kenney.nl/ 21 | 22 | 23 | ############################################################################### -------------------------------------------------------------------------------- /RPG/README.md: -------------------------------------------------------------------------------- 1 | ## Usage 2 | ### New Map 3 | 1. Open [Tiled] 4 | 2. Create a new Map: File > New 5 | 3. In the Dialog that pops up make sure orientation is orthogonal and the tile height and size are 16 px 6 | 4. Choose your map size and then click OK 7 | 8 | ### Import Tilesets 9 | 1. Import .tsx file: Map > Add External Tileset 10 | 2. Find the .tsx files in the file browser window and click hold Open (hold ctrl or commend to select multiple) 11 | 12 | [Tiled]: www.mapeditor.org/ 13 | 14 | ## Sources 15 | http://kenney.nl/assets/roguelike-rpg-pack 16 | 17 | http://kenney.nl/assets/roguelike-characters 18 | 19 | http://kenney.nl/assets/roguelike-caves-dungeons 20 | 21 | http://kenney.nl/assets/roguelike-indoors 22 | 23 | ## Credits 24 | Please give credit to http://kenney.nl/ for these assets for rpg 25 | 26 | ## Donate 27 | Please also consider donating to http://kenney.nl/support 28 | -------------------------------------------------------------------------------- /RPG/roguelikeChar_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled-resources/b03f300dabbfaca46f2222b6a0ae964fdf666e49/RPG/roguelikeChar_transparent.png -------------------------------------------------------------------------------- /RPG/roguelikeChar_transparent.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /RPG/roguelikeDungeon_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled-resources/b03f300dabbfaca46f2222b6a0ae964fdf666e49/RPG/roguelikeDungeon_transparent.png -------------------------------------------------------------------------------- /RPG/roguelikeDungeon_transparent.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /RPG/roguelikeIndoor_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled-resources/b03f300dabbfaca46f2222b6a0ae964fdf666e49/RPG/roguelikeIndoor_transparent.png -------------------------------------------------------------------------------- /RPG/roguelikeIndoor_transparent.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /RPG/roguelikeSheet_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled-resources/b03f300dabbfaca46f2222b6a0ae964fdf666e49/RPG/roguelikeSheet_transparent.png -------------------------------------------------------------------------------- /RPG/roguelikeSheet_transparent.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | -------------------------------------------------------------------------------- /RPG/sample.tmx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | eJzt08EJgDAQRFFP9l+CoHalvZgcBBFjsmZhZ2QOv4DH7M7jMMxOTak9tQbkZcgtQQZPR+QWno7ILeTAuikvR/QWHg6ELXodKIYeB5LhqwPN8NWB8Ne9DsQtrA5Ug9WBeE9WB/IWFgfyFq0O9C1aHehbtDgYtqg5WAw1B8M91RxMW7w5mLYoOdi2KDnYtnhyMG7x5GDc4u5g3eLuYN3idOQdNuIt1pH7lq79waCUUkoppZRSyt4BFTmH4g== 12 | 13 | 14 | 15 | 16 | eJztmEEKwjAQRWebXqh6A9fihdyLl9LWS6k1XQRKiJKSkUzKe/A3nSzmJZlSKgIAAAAAAABgj8GJjD4P9702Jmo1WfYV8vKZfJ4/apMhjyHqa20sUOpgxeNd6ICHHhp3KuVx8M/OPleFnDL2SeMs/n0elwzXYwMeOfSdyH0DHjPMuR2PFuYcDzzwwEPrnVvbQ+ss8MBjidY3Yk2P8G+k9TnXvFN4lDPPxi6ReF5uLr0uXm+NPu6vy1tvldDf3nCPsH0+UEnutQ== 17 | 18 | 19 | 20 | 21 | eJztmL0NAjEMhd0dBy2wEwUwDROAgCkYAYkeJgDxMwXSDUBNGiSanKJcbMe590luEz9HeXZCBHLjM9LOwAargXYG5bJBbVs5Jq7PRaneb6F94Wn2Se23oetpehF6TP6cCjmjRkhHaL1mmXu2VL0ssC6kFmdmHW1zVuqZTovYmQ4+CqxzGGpnAFLC6cmPmujp4lXz7fGD850tqYOTm8v/6uJuXEcq8PbUQXMOSnmXNecgC54U0lsseFKX3jKuiCaemFZxa2q8o+Yu14UnlpE6pP7G/+HQoYGGDo5+2dfzCK2ldK/culx3nth3OA/8GQAAQL/5Aks7PK8= 22 | 23 | 24 | 25 | 26 | eJzt0jEOQGAQhNG/onARCi2F0yDRInEIpZoL0LqDe5lWNBISVr6XTLadSdY5AAAAAAAAAE8IA+diJQrebnJPrv6VUhjfMap/qUzGd6z+8VrWe283uCbRz2RKavx3avXvlIYdnzCrf6ssxncM3vFatv1gAwAAAICzHbklDS4= 27 | 28 | 29 | 30 | 31 | eJztzkEJAEAIADB/gvWv5aUwgyD42RIsAgAAAADY9PJ6AGz4dT0AAAAAphoGrAGP 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /RTS/Medieval/License.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | RTS Pack: Medieval 4 | 5 | by Kenney Vleugels (Kenney.nl) 6 | 7 | ------------------------------ 8 | 9 | License (Creative Commons Zero, CC0) 10 | http://creativecommons.org/publicdomain/zero/1.0/ 11 | 12 | You may use these assets in personal and commercial projects. 13 | Credit (Kenney or www.kenney.nl) would be nice but is not mandatory. 14 | 15 | ------------------------------ 16 | 17 | Donate: http://support.kenney.nl 18 | Request: http://request.kenney.nl 19 | 20 | Follow on Twitter for updates: 21 | @KenneyNL -------------------------------------------------------------------------------- /RTS/Medieval/Readme.md: -------------------------------------------------------------------------------- 1 | ## Usage 2 | ### New Map 3 | 1. Open [Tiled] 4 | 2. Create a new Map: File > New 5 | 3. In the Dialog that pops up make sure orientation is orthogonal and the tile height and size are 16 px 6 | 4. Choose your map size and then click OK 7 | 8 | ### Import Tilesets 9 | 1. Import .tsx file: Map > Add External Tileset 10 | 2. Find the .tsx files in the file browser window and click hold Open (hold ctrl or commend to select multiple) 11 | 12 | [Tiled]: www.mapeditor.org/ 13 | 14 | ## Sources 15 | http://kenney.nl/assets/medieval-rts 16 | 17 | 18 | ## Credits 19 | Please give credit to http://kenney.nl/ for these assets for rts 20 | 21 | ## Donate 22 | Please also consider donating to http://kenney.nl/support 23 | -------------------------------------------------------------------------------- /RTS/Medieval/medieval_tilesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled-resources/b03f300dabbfaca46f2222b6a0ae964fdf666e49/RTS/Medieval/medieval_tilesheet.png -------------------------------------------------------------------------------- /RTS/Medieval/medieval_tilesheet.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /RTS/Medieval/sample.tmx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | eJytlEsOwCAIROnc/9DtumE+oAsiMfoyDgiqCl88v0CzD7Hf5ewuzFnHZqwuV0y2dtpSnnq/8tZ5xTQ4VlKDCUN5kvrvdLGYamN6NsyUtfUy7bUbMfl/m3qdvHM6H1wv3vI0mX1b/7Z9k8yQU57jvIHKAgI= 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | -------------------------------------------------------------------------------- /RTS/Sci-Fi/License.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | RTS Pack: Sci-Fi 4 | 5 | by Kenney Vleugels (Kenney.nl) 6 | 7 | ------------------------------ 8 | 9 | License (Creative Commons Zero, CC0) 10 | http://creativecommons.org/publicdomain/zero/1.0/ 11 | 12 | You may use these assets in personal and commercial projects. 13 | Credit (Kenney or www.kenney.nl) would be nice but is not mandatory. 14 | 15 | ------------------------------ 16 | 17 | Donate: http://support.kenney.nl 18 | Request: http://request.kenney.nl 19 | 20 | Follow on Twitter for updates: 21 | @KenneyNL -------------------------------------------------------------------------------- /RTS/Sci-Fi/Readme.md: -------------------------------------------------------------------------------- 1 | ## Usage 2 | ### New Map 3 | 1. Open [Tiled] 4 | 2. Create a new Map: File > New 5 | 3. In the Dialog that pops up make sure orientation is orthogonal and the tile height and size are 16 px 6 | 4. Choose your map size and then click OK 7 | 8 | ### Import Tilesets 9 | 1. Import .tsx file: Map > Add External Tileset 10 | 2. Find the .tsx files in the file browser window and click hold Open (hold ctrl or commend to select multiple) 11 | 12 | [Tiled]: www.mapeditor.org/ 13 | 14 | ## Sources 15 | http://kenney.nl/assets/sci-fi-rts 16 | 17 | 18 | ## Credits 19 | Please give credit to http://kenney.nl/ for these assets for rts 20 | 21 | ## Donate 22 | Please also consider donating to http://kenney.nl/support 23 | -------------------------------------------------------------------------------- /RTS/Sci-Fi/sample.tmx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | eJytk0kOACAIA5H/P9qrISzT4IEoxoy0oJvZEcPBuT+rJzllRkbF7WrIasq4kRf3mYaqpo6ZaaG+VbxKH2F1PnV3Jq3Ed5U16SSzQN6tfKVeTD1T/teUK/91w+rm9UdQ/1TNih9bHtFGWD96TuZs278LJjECKg== 7 | 8 | 9 | 10 | 11 | eJxjYCAfcFGgl1rmGQAxNxTLUsE8ZKCAZDYI61No3mAIr1HzEMCQyuaNglEw0gAAfkYBVQ== 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | -------------------------------------------------------------------------------- /RTS/Sci-Fi/scifi_tilesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled-resources/b03f300dabbfaca46f2222b6a0ae964fdf666e49/RTS/Sci-Fi/scifi_tilesheet.png -------------------------------------------------------------------------------- /RTS/Sci-Fi/scifi_tilesheet.tsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | --------------------------------------------------------------------------------