├── .gitignore
├── template.psd
├── template-assets
├── tileset.png
└── sprites
│ ├── floor.png
│ ├── background.png
│ ├── wall_bot.png
│ ├── wall_left.png
│ ├── wall_right.png
│ ├── wall_top.png
│ ├── corner_bot_left.png
│ ├── corner_top_left.png
│ ├── slim_path_down.png
│ ├── slim_path_left.png
│ ├── slim_path_right.png
│ ├── slim_path_top.png
│ ├── corner_bot_right.png
│ ├── corner_top_right.png
│ ├── floor_variation_1.png
│ ├── floor_variation_2.png
│ ├── slim_path_bot_left.png
│ ├── slim_path_bot_right.png
│ ├── slim_path_connection.png
│ ├── slim_path_crossing.png
│ ├── slim_path_three_way.png
│ ├── slim_path_top_left.png
│ ├── slim_path_top_right.png
│ ├── slim_path_wall_left.png
│ ├── slim_path_wall_right.png
│ ├── slim_path_wall_center.png
│ ├── small_corner_bot_left.png
│ ├── small_corner_bot_right.png
│ ├── small_corner_top_left.png
│ ├── small_corner_top_right.png
│ └── slim_path_wall_surrounded.png
├── template.tsx
├── README.md
├── license.md
└── template.tmx
/.gitignore:
--------------------------------------------------------------------------------
1 | *.zip
2 | dist/
--------------------------------------------------------------------------------
/template.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template.psd
--------------------------------------------------------------------------------
/template-assets/tileset.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/tileset.png
--------------------------------------------------------------------------------
/template-assets/sprites/floor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/floor.png
--------------------------------------------------------------------------------
/template-assets/sprites/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/background.png
--------------------------------------------------------------------------------
/template-assets/sprites/wall_bot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/wall_bot.png
--------------------------------------------------------------------------------
/template-assets/sprites/wall_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/wall_left.png
--------------------------------------------------------------------------------
/template-assets/sprites/wall_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/wall_right.png
--------------------------------------------------------------------------------
/template-assets/sprites/wall_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/wall_top.png
--------------------------------------------------------------------------------
/template-assets/sprites/corner_bot_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/corner_bot_left.png
--------------------------------------------------------------------------------
/template-assets/sprites/corner_top_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/corner_top_left.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_down.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_left.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_right.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_top.png
--------------------------------------------------------------------------------
/template-assets/sprites/corner_bot_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/corner_bot_right.png
--------------------------------------------------------------------------------
/template-assets/sprites/corner_top_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/corner_top_right.png
--------------------------------------------------------------------------------
/template-assets/sprites/floor_variation_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/floor_variation_1.png
--------------------------------------------------------------------------------
/template-assets/sprites/floor_variation_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/floor_variation_2.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_bot_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_bot_left.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_bot_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_bot_right.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_connection.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_connection.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_crossing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_crossing.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_three_way.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_three_way.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_top_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_top_left.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_top_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_top_right.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_wall_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_wall_left.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_wall_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_wall_right.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_wall_center.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_wall_center.png
--------------------------------------------------------------------------------
/template-assets/sprites/small_corner_bot_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/small_corner_bot_left.png
--------------------------------------------------------------------------------
/template-assets/sprites/small_corner_bot_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/small_corner_bot_right.png
--------------------------------------------------------------------------------
/template-assets/sprites/small_corner_top_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/small_corner_top_left.png
--------------------------------------------------------------------------------
/template-assets/sprites/small_corner_top_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/small_corner_top_right.png
--------------------------------------------------------------------------------
/template-assets/sprites/slim_path_wall_surrounded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_wall_surrounded.png
--------------------------------------------------------------------------------
/template.tsx:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Tilemap template for Krita Tiled and Photoshop
2 |
3 | Produce your game's levels faster with this top-down tilemap template! It comes with the PSD, TMX and TSX files. The map files require [Tiled 1.0](http://www.mapeditor.org/2017/05/24/tiled-1-0-0-released.html)!
4 |
5 | See the [releases tab](https://github.com/GDquest/Tileset-Templates/releases) to get all the files.
6 |
7 | 
8 |
9 | _Copyright (c) 2017 Nathan Lovato. Licensed under [CC-By 4.0](https://creativecommons.org/licenses/by/4.0/) terms._
10 |
11 | ## Changelog
12 |
13 | **Version 0.1**:
14 |
15 | - Zelda-inspired top-down dungeon tileset with rooms and slim paths.
16 | - Tiled 1.0 template tileset and level files
17 | - Krita-compatible PSD file, set up for automatic exports with Adobe Generator.
--------------------------------------------------------------------------------
/license.md:
--------------------------------------------------------------------------------
1 | # CC-By 4.0 license
2 |
3 | Copyright (c) 2017 Nathan Lovato
4 |
5 | ## You are free to:
6 |
7 | **Share** — copy and redistribute the material in any medium or format
8 | **Adapt** — remix, transform, and build upon the material for any purpose, even commercially.
9 |
10 | This license is acceptable for Free Cultural Works.
11 |
12 | The licensor cannot revoke these freedoms as long as you follow the license terms.
13 |
14 | ## Under the following terms:
15 |
16 | **Attribution** — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
17 |
18 | **No additional restrictions** — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
19 |
20 | [Full license terms](https://creativecommons.org/licenses/by/4.0/legalcode)
--------------------------------------------------------------------------------
/template.tmx:
--------------------------------------------------------------------------------
1 |
2 |
1513 |
--------------------------------------------------------------------------------