WinColl 0.9.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- WinColl-0.9.6.dist-info/METADATA +138 -0
- WinColl-0.9.6.dist-info/RECORD +37 -0
- WinColl-0.9.6.dist-info/WHEEL +5 -0
- WinColl-0.9.6.dist-info/entry_points.txt +2 -0
- WinColl-0.9.6.dist-info/top_level.txt +1 -0
- wincoll/Collect.wav +0 -0
- wincoll/Slide.wav +0 -0
- wincoll/Splat.wav +0 -0
- wincoll/Unlock.wav +0 -0
- wincoll/__init__.py +643 -0
- wincoll/__main__.py +7 -0
- wincoll/acorn-mode-1.ttf +0 -0
- wincoll/diamond.png +0 -0
- wincoll/langdetect.py +60 -0
- wincoll/levels/01.tmx +61 -0
- wincoll/levels/02.tmx +61 -0
- wincoll/levels/03.tmx +61 -0
- wincoll/levels/04.tmx +61 -0
- wincoll/levels/05.tmx +61 -0
- wincoll/levels/06.tmx +61 -0
- wincoll/levels/Blob.png +0 -0
- wincoll/levels/Brick.png +0 -0
- wincoll/levels/Diamond.png +0 -0
- wincoll/levels/Earth.png +0 -0
- wincoll/levels/Gap.png +0 -0
- wincoll/levels/Key.png +0 -0
- wincoll/levels/Rock.png +0 -0
- wincoll/levels/Safe.png +0 -0
- wincoll/levels/Win.png +0 -0
- wincoll/levels/WinColl.tsx +34 -0
- wincoll/locale/el/LC_MESSAGES/wincoll.mo +0 -0
- wincoll/locale/fr/LC_MESSAGES/argparse.mo +0 -0
- wincoll/locale/fr/LC_MESSAGES/wincoll.mo +0 -0
- wincoll/ptext.py +1196 -0
- wincoll/splat.png +0 -0
- wincoll/title.png +0 -0
- wincoll/warnings_util.py +29 -0
wincoll/langdetect.py
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Detect the user's preferred language for messages.
|
|
3
|
+
|
|
4
|
+
Uses the standard library's `locale` module, except on macOS and Windows,
|
|
5
|
+
where custom code is used.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import locale
|
|
9
|
+
import logging
|
|
10
|
+
import subprocess
|
|
11
|
+
import sys
|
|
12
|
+
from typing import Optional
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
_logger = logging.getLogger(__name__)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def language_code() -> Optional[str]:
|
|
19
|
+
"""
|
|
20
|
+
Returns the user's environment language as a language code string.
|
|
21
|
+
(examples: 'en_GB', 'en_US', 'pt_PT', 'pt_BR', etc.)
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
if sys.platform == "darwin":
|
|
25
|
+
lang_code = _lang_code_mac()
|
|
26
|
+
elif sys.platform == "win32":
|
|
27
|
+
lang_code, _encoding = locale.getlocale()
|
|
28
|
+
else:
|
|
29
|
+
lang_code, _encoding = locale.getlocale(locale.LC_MESSAGES)
|
|
30
|
+
|
|
31
|
+
return lang_code
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def _lang_code_mac() -> Optional[str]:
|
|
35
|
+
"""
|
|
36
|
+
Returns the user's language preference as defined in the Language & Region
|
|
37
|
+
preference pane in macOS's System Preferences.
|
|
38
|
+
|
|
39
|
+
Uses the shell command `defaults read -g AppleLocale` that prints out a
|
|
40
|
+
language code to standard output. Assumptions about the command:
|
|
41
|
+
- It exists and is in the shell's PATH.
|
|
42
|
+
- It accepts those arguments.
|
|
43
|
+
- It returns a usable language code.
|
|
44
|
+
|
|
45
|
+
Reference documentation:
|
|
46
|
+
- The man page for the `defaults` command on macOS.
|
|
47
|
+
- The macOS underlying API:
|
|
48
|
+
https://developer.apple.com/documentation/foundation/nsuserdefaults.
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
lang_detect_command = "defaults read -g AppleLocale"
|
|
52
|
+
|
|
53
|
+
status, output = subprocess.getstatusoutput(lang_detect_command)
|
|
54
|
+
if status == 0: # Command was successful.
|
|
55
|
+
lang_code = output
|
|
56
|
+
else:
|
|
57
|
+
_logger.warning("Language detection command failed: %r", output)
|
|
58
|
+
lang_code = None
|
|
59
|
+
|
|
60
|
+
return lang_code
|
wincoll/levels/01.tmx
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<map version="1.8" tiledversion="1.8.2" orientation="orthogonal" renderorder="right-down" width="50" height="50" tilewidth="16" tileheight="16" infinite="0" nextlayerid="2" nextobjectid="1">
|
|
3
|
+
<properties>
|
|
4
|
+
<property name="Title" value="Hi! from Pav"/>
|
|
5
|
+
</properties>
|
|
6
|
+
<tileset firstgid="1" source="WinColl.tsx"/>
|
|
7
|
+
<layer id="1" name="Tile Layer 1" width="50" height="50">
|
|
8
|
+
<data encoding="csv">
|
|
9
|
+
11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
|
|
10
|
+
11,12,15,12,15,12,15,11,15,12,15,10,11,10,15,13,16,13,11,10,15,10,10,10,10,10,10,10,10,10,10,10,10,10,16,10,10,10,10,10,16,10,10,10,10,11,16,15,16,11,
|
|
11
|
+
11,12,15,12,15,12,15,11,15,12,10,15,11,15,10,15,15,15,11,15,10,11,11,11,12,11,11,11,11,11,10,10,10,10,13,14,11,11,10,10,11,11,11,10,10,11,13,10,13,11,
|
|
12
|
+
11,12,12,12,15,12,15,12,15,12,15,10,15,10,15,10,15,15,11,10,13,16,11,14,10,10,10,10,10,11,14,10,10,10,14,11,10,11,11,10,10,11,10,10,13,11,10,10,10,11,
|
|
13
|
+
11,12,15,12,15,12,15,11,15,15,10,15,11,15,10,15,15,15,11,15,13,13,16,11,14,10,13,13,10,10,11,14,10,14,11,10,10,10,11,10,10,10,10,13,11,11,10,14,10,11,
|
|
14
|
+
11,12,15,12,15,12,15,11,15,12,15,10,11,10,11,10,16,16,11,11,15,13,13,16,11,14,10,13,10,11,11,11,10,11,10,10,10,11,11,16,10,10,13,11,11,10,10,14,10,11,
|
|
15
|
+
11,11,11,11,11,11,11,11,10,11,11,11,11,11,11,10,15,15,10,11,11,15,13,13,16,11,14,10,10,11,10,10,13,11,10,10,12,12,10,15,10,13,11,11,10,10,10,10,10,11,
|
|
16
|
+
11,10,10,10,11,10,16,10,10,10,10,10,11,10,10,10,16,16,10,10,11,11,15,13,13,10,11,14,10,10,10,10,11,11,10,11,11,11,11,11,10,11,11,10,10,11,10,11,10,11,
|
|
17
|
+
11,16,10,16,11,10,11,16,10,10,10,10,11,10,10,16,11,11,16,10,10,11,11,15,13,10,10,11,14,10,10,11,11,10,10,11,10,10,13,16,10,10,12,10,15,16,15,11,10,11,
|
|
18
|
+
11,15,10,15,11,10,11,15,16,10,10,10,11,10,10,11,11,11,11,10,10,10,11,11,15,10,10,10,11,14,10,16,13,10,10,11,10,13,15,15,10,11,11,11,13,13,11,11,10,11,
|
|
19
|
+
11,10,10,10,10,10,11,13,15,16,10,10,11,10,10,11,13,13,11,10,10,10,14,11,14,10,10,10,10,10,10,15,10,10,10,10,13,15,14,11,10,10,10,11,11,11,11,16,10,11,
|
|
20
|
+
11,11,11,11,11,10,11,11,10,15,16,10,11,10,10,10,12,12,10,10,10,14,11,10,11,14,10,10,10,10,10,14,10,10,10,13,15,14,11,10,10,10,10,10,10,10,11,13,13,11,
|
|
21
|
+
11,15,15,13,15,15,13,15,15,13,15,10,11,14,10,10,10,10,10,10,14,11,10,10,10,11,14,10,10,10,14,11,14,10,10,15,14,11,10,10,10,11,11,11,11,10,11,11,11,11,
|
|
22
|
+
11,13,15,15,13,13,15,13,13,15,13,13,11,11,14,10,10,10,10,14,11,10,10,10,10,10,11,14,10,10,11,10,11,10,10,14,11,10,10,10,11,11,13,10,11,15,13,15,16,11,
|
|
23
|
+
11,15,15,11,11,11,11,11,11,11,15,15,13,11,11,14,10,10,10,11,10,10,10,10,10,10,10,11,14,10,10,10,10,10,14,11,10,10,10,11,11,13,15,10,11,13,15,13,15,11,
|
|
24
|
+
11,15,13,15,13,11,10,10,10,11,11,11,15,13,13,15,15,10,10,10,10,10,10,10,10,10,10,10,11,14,11,10,11,11,11,10,10,10,11,11,13,15,16,10,11,11,11,11,10,11,
|
|
25
|
+
11,15,15,13,15,11,10,10,10,11,10,11,13,15,15,11,11,11,11,11,11,11,15,10,15,11,10,15,10,15,10,10,10,10,10,10,10,11,11,13,15,15,16,10,11,10,15,13,15,11,
|
|
26
|
+
11,11,11,11,11,11,11,11,10,11,16,11,15,13,13,11,16,15,16,15,16,11,10,15,10,11,15,10,15,11,10,10,10,10,10,10,11,11,13,15,15,16,11,10,10,15,13,15,13,11,
|
|
27
|
+
11,13,11,13,11,10,10,11,10,11,15,15,13,15,15,11,15,15,15,15,15,11,15,10,15,11,16,15,10,11,10,10,10,10,10,10,11,13,15,15,16,11,11,10,11,10,11,11,11,11,
|
|
28
|
+
11,16,11,16,11,10,10,11,10,11,10,11,11,10,10,11,15,15,11,15,15,11,10,15,10,11,15,10,15,11,11,11,13,10,10,10,11,15,15,16,11,11,16,10,11,15,10,15,10,11,
|
|
29
|
+
11,13,13,13,11,10,10,10,10,11,10,15,11,10,10,11,15,16,11,13,15,11,15,10,15,15,10,10,11,13,10,11,14,13,10,10,10,15,16,11,11,16,15,10,11,16,15,10,15,11,
|
|
30
|
+
11,15,11,15,11,10,10,11,11,11,15,10,11,10,10,11,15,15,11,11,11,11,10,15,10,11,14,10,10,11,13,10,11,14,10,10,10,11,11,11,16,15,15,10,11,11,11,14,10,11,
|
|
31
|
+
11,10,11,10,11,11,10,15,10,15,13,11,11,15,10,11,16,15,15,16,15,15,15,10,15,11,11,14,10,10,11,13,10,11,14,10,10,11,13,11,13,13,13,10,11,13,15,13,16,11,
|
|
32
|
+
11,10,11,10,10,11,15,11,11,13,11,11,15,10,15,11,15,15,15,13,15,15,10,15,10,11,14,11,14,10,10,11,10,10,10,10,14,11,13,11,11,11,11,11,11,15,13,15,13,11,
|
|
33
|
+
11,10,11,10,10,11,10,15,11,11,11,15,10,15,10,11,11,11,11,11,11,11,11,11,11,11,13,14,11,14,10,10,10,13,10,14,11,11,16,10,15,15,10,10,11,10,14,11,11,11,
|
|
34
|
+
11,13,10,13,10,10,15,10,15,10,15,10,15,10,15,16,15,10,15,10,15,13,15,10,15,10,10,10,14,11,10,16,10,15,10,10,15,11,15,15,16,16,15,15,11,13,15,13,15,11,
|
|
35
|
+
11,15,16,15,10,10,10,15,10,15,10,15,10,15,10,15,10,15,13,15,10,15,10,15,13,10,10,10,10,11,13,15,11,11,11,15,10,11,10,10,11,11,10,10,11,15,13,15,13,11,
|
|
36
|
+
11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,16,10,10,11,11,11,11,13,15,10,15,11,15,15,10,11,15,15,11,11,11,11,10,11,
|
|
37
|
+
11,10,10,10,10,15,15,15,11,13,10,10,10,11,16,11,10,11,10,16,10,10,16,11,10,11,11,10,10,11,13,11,13,15,13,15,11,11,11,11,13,11,10,10,13,11,13,10,10,11,
|
|
38
|
+
11,10,12,12,10,15,13,15,11,11,11,10,10,10,13,10,10,10,10,15,10,10,15,11,10,10,11,10,10,11,15,11,15,16,15,11,11,15,10,10,10,11,10,10,10,10,10,10,10,11,
|
|
39
|
+
11,10,12,12,10,15,15,15,15,15,11,11,11,15,13,15,16,15,11,11,12,13,10,11,16,10,11,10,10,15,13,11,13,15,11,11,13,16,13,11,11,11,13,13,10,10,10,13,13,11,
|
|
40
|
+
11,10,12,12,10,11,15,15,13,15,15,15,11,11,11,11,13,11,11,12,13,10,12,11,15,10,10,10,11,13,15,16,15,13,11,13,12,13,10,10,10,11,11,11,11,10,11,11,11,11,
|
|
41
|
+
11,10,10,10,10,11,15,15,15,15,15,15,15,15,15,11,11,11,12,10,10,12,15,11,10,10,10,10,11,11,11,11,13,15,11,16,13,15,11,11,13,10,11,10,10,10,10,10,10,11,
|
|
42
|
+
11,11,11,11,11,11,11,11,11,15,15,15,15,15,15,15,10,10,10,13,12,11,11,11,10,11,11,10,10,10,13,11,15,13,11,11,11,11,11,10,10,10,11,10,11,10,10,11,10,11,
|
|
43
|
+
11,10,13,13,11,13,13,10,11,11,11,11,11,15,15,15,10,10,13,12,11,16,10,10,10,10,11,10,10,10,13,11,10,15,11,16,13,12,10,10,10,10,11,10,10,10,10,10,10,11,
|
|
44
|
+
11,10,11,13,11,13,11,10,11,10,10,15,15,15,15,11,10,10,12,11,11,15,10,10,13,15,10,10,11,10,13,11,15,10,11,13,15,14,10,16,10,10,11,10,10,11,11,10,10,11,
|
|
45
|
+
11,10,11,11,11,11,11,10,11,10,10,16,15,15,15,11,10,10,11,11,11,10,10,13,15,11,11,11,11,10,13,11,10,15,12,15,15,11,10,15,10,10,11,10,16,10,10,16,10,11,
|
|
46
|
+
11,10,10,10,10,10,10,10,10,10,14,11,11,11,11,11,10,10,10,10,11,10,13,15,11,11,10,10,10,10,11,11,11,11,11,11,11,11,11,11,10,16,11,10,11,13,13,11,10,11,
|
|
47
|
+
11,10,11,11,11,11,11,10,10,14,11,10,10,10,10,11,13,10,10,10,11,13,15,11,11,10,13,11,10,10,10,16,10,10,10,10,10,11,13,10,13,15,11,15,10,11,11,15,10,11,
|
|
48
|
+
11,10,10,10,10,10,11,10,10,10,10,10,10,10,10,11,11,11,11,10,11,11,11,11,10,13,11,11,11,10,10,13,11,10,11,10,10,11,10,13,10,10,11,11,15,10,15,10,15,11,
|
|
49
|
+
11,10,10,10,10,16,11,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,10,13,11,11,16,11,11,11,11,11,10,11,11,11,11,11,11,11,11,11,15,10,15,10,15,10,11,
|
|
50
|
+
11,10,10,10,16,15,11,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,10,10,10,10,10,15,10,10,10,10,10,10,10,10,10,10,16,10,10,10,16,10,15,10,15,10,15,11,
|
|
51
|
+
11,10,10,10,15,15,10,10,14,11,11,11,11,10,10,10,10,11,11,10,10,11,10,10,11,11,11,15,15,11,15,16,15,11,15,11,10,16,15,14,10,11,11,11,11,11,11,11,12,11,
|
|
52
|
+
11,10,10,10,11,11,11,10,11,11,10,10,11,10,10,16,11,10,10,11,10,11,15,11,10,10,16,11,15,11,11,13,11,11,15,11,10,15,14,11,10,15,16,15,10,10,10,10,15,11,
|
|
53
|
+
11,16,15,16,11,10,10,10,11,10,10,10,11,10,10,15,11,10,10,11,10,11,15,11,10,13,15,16,15,11,15,11,15,11,15,11,15,14,15,11,15,13,15,13,11,10,11,11,11,11,
|
|
54
|
+
11,13,13,13,11,10,11,11,11,11,11,10,11,10,10,10,11,11,11,11,10,11,15,11,10,13,10,15,15,11,15,15,15,11,15,11,13,11,13,11,16,15,16,15,11,10,11,16,13,11,
|
|
55
|
+
11,11,15,11,11,10,11,13,13,15,15,10,11,10,10,10,11,16,17,12,10,11,15,11,10,15,13,11,15,11,15,15,15,11,15,11,11,13,15,11,15,13,15,13,11,10,11,13,15,11,
|
|
56
|
+
11,15,13,15,11,10,11,11,16,11,10,10,11,16,11,10,11,15,16,11,10,11,15,15,11,11,11,15,15,11,15,15,15,11,15,11,13,15,13,11,16,15,16,15,11,10,16,15,13,11,
|
|
57
|
+
11,18,15,15,11,10,10,10,15,10,10,10,10,15,10,10,10,10,15,10,10,12,15,15,15,15,15,15,15,15,15,15,15,15,15,13,15,13,15,13,13,10,13,10,12,10,12,10,10,11,
|
|
58
|
+
11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
|
|
59
|
+
</data>
|
|
60
|
+
</layer>
|
|
61
|
+
</map>
|
wincoll/levels/02.tmx
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<map version="1.8" tiledversion="1.8.2" orientation="orthogonal" renderorder="right-down" width="50" height="50" tilewidth="16" tileheight="16" infinite="0" nextlayerid="2" nextobjectid="1">
|
|
3
|
+
<properties>
|
|
4
|
+
<property name="Title" value="Not a rip-off"/>
|
|
5
|
+
</properties>
|
|
6
|
+
<tileset firstgid="1" source="WinColl.tsx"/>
|
|
7
|
+
<layer id="1" name="Tile Layer 1" width="50" height="50">
|
|
8
|
+
<data encoding="csv">
|
|
9
|
+
11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
|
|
10
|
+
11,13,13,13,13,13,14,15,16,15,16,15,16,15,15,10,11,10,10,10,10,16,10,10,11,16,11,16,10,10,10,10,10,13,13,11,10,10,10,10,11,13,16,10,10,10,10,16,13,11,
|
|
11
|
+
11,11,11,11,11,13,14,15,15,15,15,15,15,15,14,15,11,13,10,10,11,11,11,10,11,13,15,15,10,10,10,10,10,13,13,11,11,11,11,10,11,11,15,10,10,10,10,15,11,11,
|
|
12
|
+
11,13,13,13,11,13,14,15,11,11,11,11,15,14,14,10,11,15,10,16,11,10,10,10,11,10,11,10,11,11,11,11,11,11,11,11,10,10,10,10,11,10,10,10,11,11,14,10,10,11,
|
|
13
|
+
11,13,11,13,11,13,14,15,11,13,16,16,15,15,14,15,11,10,10,11,11,10,11,11,11,10,11,10,10,10,10,10,10,13,11,11,10,10,10,10,10,10,10,11,11,10,11,14,10,11,
|
|
14
|
+
11,13,11,13,11,13,14,15,11,13,15,15,15,15,14,10,11,10,10,13,11,10,11,13,11,10,11,10,10,10,10,10,10,10,13,11,10,11,11,11,11,11,11,11,10,10,10,11,10,11,
|
|
15
|
+
11,13,11,13,11,13,14,15,11,11,11,11,11,15,14,15,11,10,10,11,11,10,11,10,11,10,11,10,11,11,11,11,14,10,10,10,10,11,13,16,16,16,12,10,10,14,10,10,10,11,
|
|
16
|
+
11,13,11,13,13,13,14,15,15,15,15,15,15,15,14,10,11,10,10,10,12,10,11,10,10,10,10,10,10,10,10,12,11,14,10,10,10,11,13,15,15,15,12,10,14,14,14,10,10,11,
|
|
17
|
+
11,13,11,11,11,11,11,15,11,15,11,11,11,11,11,15,11,11,11,11,11,10,11,11,11,11,11,11,11,11,11,10,12,11,14,10,10,11,11,11,11,11,11,10,16,10,14,14,10,11,
|
|
18
|
+
11,13,13,13,13,10,11,15,11,15,11,10,15,10,15,10,15,10,11,10,10,10,10,10,10,10,10,10,10,10,11,11,10,11,10,10,12,12,10,10,11,10,10,10,15,13,14,16,10,11,
|
|
19
|
+
11,11,11,11,11,10,13,10,11,13,11,15,11,15,11,14,10,15,11,10,10,10,11,11,10,10,10,11,14,10,10,11,10,10,10,12,11,11,16,10,11,16,10,14,14,14,14,15,10,11,
|
|
20
|
+
11,13,10,10,11,10,11,10,11,11,11,10,11,10,15,11,14,10,15,10,10,10,10,11,11,14,10,10,11,14,10,11,10,11,11,11,11,11,15,10,11,13,10,14,13,10,14,14,10,11,
|
|
21
|
+
11,10,11,10,11,10,11,10,11,10,10,15,11,11,10,15,11,14,10,11,11,10,10,10,10,11,14,10,10,11,16,11,15,15,15,15,11,13,10,10,10,10,10,14,10,13,10,10,10,11,
|
|
22
|
+
11,10,11,10,11,10,11,10,11,10,14,10,15,11,11,10,15,11,13,13,11,10,11,11,10,10,11,14,10,10,15,11,15,13,13,15,11,11,11,10,11,11,11,11,11,11,11,11,11,11,
|
|
23
|
+
11,10,11,10,11,10,11,17,11,10,14,14,10,15,11,11,13,11,11,11,11,10,11,15,15,15,15,11,14,13,13,10,15,15,15,15,11,15,12,15,10,10,10,10,10,10,10,10,10,11,
|
|
24
|
+
11,10,11,16,11,10,11,11,11,10,16,14,15,10,15,11,15,11,15,13,10,10,11,15,11,11,15,16,11,11,11,10,11,11,11,15,15,15,12,15,10,11,11,11,11,11,11,16,10,11,
|
|
25
|
+
11,10,11,13,10,10,10,10,10,10,15,14,10,14,10,11,13,15,13,11,10,10,11,15,16,11,11,15,10,10,10,10,10,10,11,12,15,15,12,15,10,10,10,10,10,16,11,15,10,11,
|
|
26
|
+
11,10,11,11,11,11,11,11,11,10,14,14,15,14,15,11,15,13,11,11,10,10,11,15,13,15,11,10,10,11,13,10,10,10,11,11,11,11,11,11,10,10,10,11,10,15,11,10,10,11,
|
|
27
|
+
11,10,11,10,16,10,11,10,10,15,10,16,10,14,10,11,11,11,11,10,10,10,11,15,15,15,11,10,10,11,11,13,10,10,10,11,13,16,15,11,10,10,10,11,10,13,11,10,16,11,
|
|
28
|
+
11,10,10,15,13,10,13,10,10,10,10,13,14,11,10,10,11,10,10,10,10,11,11,11,11,15,11,10,10,16,11,11,13,10,10,11,11,15,10,11,10,11,11,10,11,11,10,10,15,11,
|
|
29
|
+
11,11,11,11,10,11,11,11,11,11,11,11,11,11,11,10,11,11,11,11,10,11,10,10,10,10,10,10,10,15,13,11,11,13,10,11,13,16,15,11,10,10,10,10,10,10,10,10,10,11,
|
|
30
|
+
11,13,11,15,15,15,15,16,15,15,14,10,15,10,15,10,11,13,11,10,10,11,10,10,10,10,11,10,10,14,10,13,11,11,10,11,11,15,10,11,10,11,11,11,11,11,11,16,10,11,
|
|
31
|
+
11,15,11,11,11,11,15,15,11,15,14,15,10,15,10,15,11,10,11,10,11,11,10,10,11,11,11,14,10,10,14,10,13,11,10,11,13,16,15,11,10,12,13,13,13,13,13,15,10,11,
|
|
32
|
+
11,15,11,15,15,15,15,15,11,15,15,10,15,10,15,10,11,10,11,10,10,11,11,10,10,10,13,11,14,10,10,14,10,10,10,11,11,15,10,11,10,11,11,11,11,11,11,10,10,11,
|
|
33
|
+
11,15,11,15,11,11,11,11,11,11,15,11,11,11,11,10,11,10,11,11,10,10,11,10,11,14,10,13,11,14,10,11,10,10,10,10,10,10,10,11,10,10,10,11,10,10,11,10,16,11,
|
|
34
|
+
11,15,11,15,11,13,13,16,16,11,15,11,10,10,10,10,11,10,11,11,11,10,10,10,10,11,14,10,13,11,10,11,10,10,10,11,12,15,11,11,10,10,10,11,10,10,11,10,15,11,
|
|
35
|
+
11,15,15,15,11,13,13,15,16,11,15,11,10,11,11,11,11,10,11,16,11,11,10,14,10,10,11,14,10,11,10,10,10,11,11,11,15,15,11,10,10,10,16,16,11,11,10,10,10,11,
|
|
36
|
+
11,15,11,11,11,13,13,16,15,11,15,11,10,10,11,10,16,10,11,13,16,15,15,13,14,10,10,10,10,11,10,11,11,11,16,16,15,15,11,12,11,10,13,13,10,10,10,10,10,11,
|
|
37
|
+
11,15,15,10,11,13,13,15,15,12,15,15,14,10,11,10,15,10,11,15,13,15,15,15,16,14,10,10,10,11,10,10,11,16,15,15,15,16,11,10,11,10,10,10,10,14,10,10,10,11,
|
|
38
|
+
11,11,11,10,11,11,11,11,11,11,11,11,16,10,11,10,13,10,11,15,15,15,15,15,15,13,10,10,13,11,11,10,11,13,13,13,13,15,11,10,11,10,14,14,14,14,14,10,10,11,
|
|
39
|
+
11,10,10,10,11,10,10,10,10,10,10,10,15,10,11,10,11,10,11,14,15,15,15,14,10,10,10,10,11,11,13,10,11,11,11,11,11,11,11,10,11,10,10,15,10,14,10,15,10,11,
|
|
40
|
+
11,10,11,11,11,11,10,11,11,11,11,11,11,10,13,10,11,10,11,15,14,15,14,11,10,10,10,13,10,10,10,13,10,10,10,10,10,10,10,10,11,10,15,10,15,10,15,10,10,11,
|
|
41
|
+
11,10,11,15,16,15,10,10,10,16,10,10,11,11,11,11,11,10,11,15,15,15,16,11,10,11,11,11,10,11,11,11,11,11,11,11,11,11,11,11,11,12,11,11,11,11,11,14,10,11,
|
|
42
|
+
11,10,11,13,15,13,10,11,15,15,16,10,13,10,11,13,11,10,15,15,15,15,13,11,10,10,11,10,10,10,10,15,10,15,15,15,15,15,15,11,15,13,15,10,13,11,13,11,15,11,
|
|
43
|
+
11,10,11,16,10,15,10,11,13,10,15,10,11,10,10,15,11,11,11,15,11,11,11,11,11,10,11,11,11,11,11,10,11,11,11,11,11,11,15,11,13,15,13,11,16,15,16,11,15,11,
|
|
44
|
+
11,10,10,15,11,11,11,11,11,11,11,11,11,11,11,15,15,15,11,13,15,13,15,13,11,10,11,13,10,10,11,15,11,15,15,15,15,11,15,11,15,13,15,11,15,15,15,11,15,11,
|
|
45
|
+
11,10,11,10,11,13,11,15,10,15,11,13,13,13,11,11,11,15,11,15,13,15,13,15,11,10,11,11,11,10,11,10,11,15,11,11,13,11,15,11,13,15,13,15,15,15,15,12,15,11,
|
|
46
|
+
11,16,11,10,11,10,15,10,11,10,15,10,15,10,11,15,15,15,11,11,11,11,11,15,11,10,11,10,10,10,11,15,11,15,11,13,13,11,15,11,11,11,11,11,11,11,11,11,15,11,
|
|
47
|
+
11,15,10,10,11,10,11,11,11,11,11,11,11,15,11,15,11,11,11,13,16,16,13,15,11,13,11,10,11,11,11,10,11,15,11,11,11,11,15,11,10,10,10,10,10,10,10,11,15,11,
|
|
48
|
+
11,10,11,10,11,10,11,15,15,15,15,15,11,10,11,15,15,15,11,15,15,15,15,15,11,11,11,10,10,10,11,15,11,15,15,15,15,15,15,11,16,15,15,11,13,15,13,11,15,11,
|
|
49
|
+
11,10,11,10,14,10,11,15,11,11,11,15,11,15,11,11,11,15,11,15,15,15,15,15,15,10,11,11,11,10,11,10,11,11,11,11,11,11,11,11,15,16,15,11,15,13,15,11,15,11,
|
|
50
|
+
11,10,11,10,14,10,11,15,11,13,11,15,11,10,11,15,15,15,11,11,15,15,11,11,11,10,10,10,10,10,10,15,10,15,10,15,10,15,10,15,15,15,16,11,13,15,13,15,15,11,
|
|
51
|
+
11,10,11,10,14,10,11,15,11,15,15,15,11,15,11,15,11,11,11,13,15,15,15,15,11,10,14,14,14,10,10,14,14,14,15,16,14,14,14,10,11,11,11,11,11,11,11,11,11,11,
|
|
52
|
+
11,10,10,10,14,10,11,15,11,11,11,11,11,10,11,15,15,15,11,11,11,11,11,15,11,10,10,10,16,14,10,16,10,10,14,15,10,15,10,15,10,10,10,10,10,10,10,10,10,11,
|
|
53
|
+
11,10,10,10,14,10,11,15,15,15,15,15,15,15,11,15,11,15,11,13,10,13,11,15,11,10,14,10,13,14,10,14,10,13,14,13,15,14,15,11,11,11,11,11,11,11,11,11,10,11,
|
|
54
|
+
11,13,11,11,11,10,11,11,11,11,11,11,11,11,11,15,11,15,11,10,11,10,11,10,10,10,14,14,14,13,10,14,14,14,15,15,16,14,10,11,10,11,15,15,15,16,15,11,10,11,
|
|
55
|
+
11,10,10,13,14,10,11,13,15,13,11,13,15,15,15,15,11,15,11,10,11,10,11,10,11,10,14,13,16,14,10,14,10,10,14,13,15,14,15,11,10,11,15,15,15,13,15,11,10,11,
|
|
56
|
+
11,11,10,11,11,10,11,15,11,15,11,15,11,11,11,11,11,15,11,10,11,10,11,10,11,10,14,16,13,14,10,14,10,10,14,15,16,15,10,11,10,10,15,16,16,15,15,11,10,11,
|
|
57
|
+
11,18,10,13,10,10,15,13,11,13,15,13,11,13,10,10,10,15,12,10,11,13,10,13,11,10,10,15,15,10,10,10,10,10,10,10,15,11,15,10,10,11,15,13,13,13,15,11,13,11,
|
|
58
|
+
11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
|
|
59
|
+
</data>
|
|
60
|
+
</layer>
|
|
61
|
+
</map>
|
wincoll/levels/03.tmx
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<map version="1.8" tiledversion="1.8.2" orientation="orthogonal" renderorder="right-down" width="50" height="50" tilewidth="16" tileheight="16" infinite="0" nextlayerid="2" nextobjectid="1">
|
|
3
|
+
<properties>
|
|
4
|
+
<property name="Title" value="Long way round"/>
|
|
5
|
+
</properties>
|
|
6
|
+
<tileset firstgid="1" source="WinColl.tsx"/>
|
|
7
|
+
<layer id="1" name="Tile Layer 1" width="50" height="50">
|
|
8
|
+
<data encoding="csv">
|
|
9
|
+
11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
|
|
10
|
+
11,12,12,12,12,12,12,12,12,10,10,11,15,11,15,16,15,11,15,10,15,11,15,10,15,10,11,15,15,15,15,13,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,11,
|
|
11
|
+
11,12,12,11,11,11,11,11,16,11,10,11,13,11,13,11,16,11,10,11,10,11,10,11,11,15,11,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,13,15,15,15,15,13,11,
|
|
12
|
+
11,16,11,11,16,10,10,11,15,11,10,11,15,11,15,11,15,11,15,11,15,11,15,11,15,10,11,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,15,15,11,
|
|
13
|
+
11,16,11,10,15,11,10,10,10,11,10,11,10,11,10,10,10,11,10,11,10,11,10,11,11,15,11,15,16,11,16,15,16,15,16,13,13,13,11,16,16,10,10,10,10,16,11,15,15,11,
|
|
14
|
+
11,15,10,13,10,11,13,10,14,11,10,10,15,10,15,11,15,11,15,11,15,11,15,11,15,10,11,10,13,11,15,15,16,15,11,11,13,13,11,10,10,10,10,10,13,13,12,15,15,11,
|
|
15
|
+
11,10,13,11,10,11,13,14,11,10,10,13,14,10,10,11,10,11,10,11,10,11,10,11,10,11,11,15,11,11,15,16,16,11,11,16,16,15,11,10,11,11,11,10,16,16,11,15,15,11,
|
|
16
|
+
11,13,11,11,10,11,11,11,10,10,13,14,14,10,15,11,15,10,15,11,15,10,15,11,15,10,15,10,15,11,15,15,16,15,16,15,14,16,11,10,16,16,11,10,11,11,11,15,15,11,
|
|
17
|
+
11,13,11,10,10,11,10,10,10,13,14,13,16,10,11,11,11,11,11,11,11,11,11,11,10,15,10,15,10,11,15,15,16,16,16,10,16,13,11,15,13,13,11,10,10,10,11,15,15,11,
|
|
18
|
+
11,11,11,10,11,11,10,10,13,14,14,15,15,10,10,10,10,13,11,13,13,16,15,15,15,11,11,10,11,11,15,15,15,11,11,11,11,15,11,16,16,15,11,10,10,10,11,15,15,11,
|
|
19
|
+
11,13,11,10,11,10,10,13,14,14,11,11,11,11,10,11,11,11,11,11,14,15,15,16,15,16,11,15,16,11,15,15,11,11,15,15,15,15,11,13,13,15,11,11,11,10,11,15,15,11,
|
|
20
|
+
11,16,12,10,10,10,13,14,14,16,11,10,15,10,10,10,15,13,11,15,14,14,15,15,15,15,11,15,13,11,15,15,11,15,15,15,15,15,11,11,11,15,15,16,15,10,11,15,15,11,
|
|
21
|
+
11,16,11,10,10,13,14,13,15,15,11,15,10,15,10,15,16,15,11,15,15,14,14,15,15,15,11,15,16,11,15,15,11,15,11,15,11,15,15,15,15,15,11,13,13,10,11,15,15,11,
|
|
22
|
+
11,16,11,10,10,14,14,15,15,15,11,13,15,11,10,11,15,10,11,15,15,16,14,14,15,16,11,15,13,11,15,15,11,15,11,15,11,11,16,11,11,11,11,11,11,10,11,15,15,11,
|
|
23
|
+
11,16,11,10,10,14,16,15,16,15,11,15,10,11,10,11,10,15,11,15,15,15,13,14,15,15,11,15,15,11,15,15,15,15,11,15,15,15,15,10,10,10,16,10,11,11,11,15,15,11,
|
|
24
|
+
11,16,11,10,10,14,14,15,15,15,11,10,15,11,10,11,15,13,11,15,16,15,14,14,15,11,11,15,15,11,11,11,11,11,11,11,11,11,11,10,10,10,15,10,11,13,11,15,15,11,
|
|
25
|
+
11,15,15,10,10,13,14,14,15,16,15,15,10,11,15,11,13,15,15,15,15,14,14,15,15,16,15,15,15,15,15,15,15,16,10,10,11,10,10,10,10,13,14,10,10,16,11,15,15,11,
|
|
26
|
+
11,14,14,10,10,10,13,14,14,15,15,10,15,11,10,11,15,16,15,15,14,14,15,15,15,15,15,16,11,11,15,15,11,15,16,10,11,10,10,10,13,14,10,10,11,16,11,15,15,11,
|
|
27
|
+
11,15,14,14,10,10,15,16,14,14,15,15,10,11,15,11,10,15,15,14,14,15,15,16,15,15,13,15,11,15,15,15,11,11,15,16,11,10,10,13,14,14,16,10,11,16,11,15,15,11,
|
|
28
|
+
11,15,15,14,14,11,15,15,13,11,11,11,11,11,10,11,11,11,11,11,15,15,15,15,15,13,14,15,11,15,15,15,15,11,11,15,11,10,13,14,10,13,15,10,11,16,11,15,15,11,
|
|
29
|
+
11,15,15,15,15,15,15,16,15,15,15,10,15,10,15,15,15,11,11,15,15,15,15,15,13,14,15,15,11,11,11,15,15,15,10,10,10,15,10,10,10,14,13,10,11,16,11,15,15,11,
|
|
30
|
+
11,15,15,15,15,15,15,15,16,15,11,15,15,11,10,15,15,11,15,15,16,15,15,13,14,15,15,15,15,15,11,11,15,10,15,10,15,11,11,11,10,10,14,10,11,16,11,15,15,11,
|
|
31
|
+
11,15,15,15,15,15,15,13,13,15,10,10,10,11,15,15,15,15,15,15,15,15,13,14,15,15,11,13,11,10,15,15,15,15,10,10,10,15,10,11,10,10,10,10,10,15,11,15,15,11,
|
|
32
|
+
11,15,11,11,11,11,11,10,14,11,11,10,10,11,11,11,11,11,15,15,11,11,11,15,15,15,11,11,11,15,15,11,11,10,10,11,11,11,15,11,11,11,11,11,11,11,11,15,16,11,
|
|
33
|
+
11,15,15,15,15,15,15,10,15,10,11,10,10,11,10,10,10,11,11,11,15,15,15,15,15,15,11,10,11,10,10,10,11,10,10,11,13,15,10,10,10,10,10,10,11,10,12,15,15,11,
|
|
34
|
+
11,11,11,11,11,11,11,10,11,10,11,15,11,11,16,16,16,11,10,15,16,15,10,15,10,15,11,13,11,11,15,15,11,11,10,11,11,11,11,11,11,10,11,10,11,10,11,15,15,11,
|
|
35
|
+
11,16,10,10,16,10,11,17,11,10,10,10,10,11,15,15,15,11,10,11,10,11,10,11,11,10,11,10,10,11,10,10,10,10,10,10,10,10,10,13,11,10,11,10,10,10,11,15,15,11,
|
|
36
|
+
11,13,15,13,11,10,11,11,11,10,15,11,15,11,15,11,15,10,15,11,15,11,15,11,15,15,11,15,15,15,15,15,16,15,11,11,10,11,11,11,11,10,11,11,11,10,11,15,15,11,
|
|
37
|
+
11,13,13,13,11,10,11,15,15,10,10,11,10,10,10,12,10,11,10,11,10,10,10,11,10,10,10,10,10,10,10,11,13,11,11,13,10,10,10,10,10,10,11,16,11,10,11,16,15,11,
|
|
38
|
+
11,11,11,11,11,10,11,15,15,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,16,11,10,11,15,15,11,
|
|
39
|
+
11,16,10,10,10,10,11,15,15,11,13,10,10,10,16,15,11,10,10,10,11,10,10,10,10,10,10,10,10,10,15,15,15,15,16,16,16,16,15,15,15,15,10,13,11,10,11,15,15,11,
|
|
40
|
+
11,13,15,11,10,11,11,15,15,11,11,15,16,15,15,15,11,10,10,11,11,11,11,15,15,15,15,15,11,11,11,15,15,15,15,15,15,15,15,15,15,15,10,10,11,10,11,15,15,11,
|
|
41
|
+
11,10,16,11,10,15,15,15,15,15,11,11,13,11,11,15,11,10,10,11,10,10,11,15,16,15,15,15,11,13,11,11,11,15,13,13,13,13,15,15,15,10,10,14,11,10,11,15,15,11,
|
|
42
|
+
11,13,13,10,10,15,15,15,15,10,15,11,11,11,15,15,11,10,10,11,10,10,11,15,13,15,16,15,11,16,13,15,11,11,16,16,16,16,15,15,10,10,14,11,10,16,11,15,15,11,
|
|
43
|
+
11,11,11,11,10,11,11,11,15,15,10,16,13,11,15,11,11,11,11,11,10,10,11,11,11,11,13,11,11,16,16,15,15,11,15,15,15,15,15,10,10,14,11,10,10,13,11,15,16,11,
|
|
44
|
+
11,13,15,16,10,10,10,10,10,10,10,15,11,11,15,15,15,15,15,15,10,15,15,15,15,11,11,11,15,15,14,15,15,11,13,13,13,13,10,10,14,11,16,16,16,11,11,15,15,11,
|
|
45
|
+
11,15,11,15,10,10,10,10,16,10,15,15,15,11,11,11,15,11,11,11,11,11,11,11,15,15,15,15,15,15,15,15,15,11,11,11,14,10,10,14,10,10,15,15,15,10,11,15,13,11,
|
|
46
|
+
11,13,11,10,10,10,10,16,15,10,11,11,15,15,15,11,15,11,15,15,10,10,10,11,15,11,11,11,11,11,13,13,13,11,10,13,11,14,10,10,10,10,15,14,15,10,11,15,16,11,
|
|
47
|
+
11,15,11,10,10,10,16,15,10,10,10,11,11,11,15,15,15,15,15,11,11,11,10,11,15,11,13,13,13,11,11,11,11,11,10,10,13,11,14,10,10,10,14,11,14,10,11,15,15,11,
|
|
48
|
+
11,13,11,10,10,16,15,10,10,14,10,10,10,11,11,11,15,11,11,11,13,11,10,11,15,11,16,16,16,16,16,15,15,15,15,10,10,13,11,14,10,10,10,10,10,10,12,15,15,11,
|
|
49
|
+
11,15,11,10,16,15,10,10,14,16,10,10,10,10,10,11,10,11,10,10,16,11,10,11,10,10,15,15,15,15,15,15,11,11,15,14,10,10,13,11,14,10,10,10,10,11,11,15,15,11,
|
|
50
|
+
11,13,11,10,15,10,10,14,13,15,10,10,10,16,10,11,10,11,11,10,15,11,10,11,10,11,16,16,15,16,16,11,11,16,15,11,14,10,10,13,11,14,10,10,10,10,11,13,15,11,
|
|
51
|
+
11,15,11,10,10,10,14,10,15,10,11,11,11,13,11,11,10,11,10,10,14,11,10,11,10,11,11,16,15,16,11,11,16,16,15,15,11,14,10,10,13,11,14,10,10,10,11,15,15,11,
|
|
52
|
+
11,13,15,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,10,11,10,13,11,11,15,15,15,15,15,15,15,15,15,11,14,10,10,13,11,14,10,10,11,15,15,11,
|
|
53
|
+
11,11,11,11,11,11,11,11,11,11,11,11,11,10,11,11,10,11,11,11,10,11,10,11,10,10,13,11,11,16,16,16,16,16,16,15,15,15,11,14,10,10,13,11,14,10,11,15,16,11,
|
|
54
|
+
11,15,15,15,15,15,15,15,15,11,15,16,16,15,15,11,10,11,15,16,10,11,10,11,11,10,10,13,11,11,13,13,13,13,13,15,15,15,15,11,10,11,15,15,15,15,11,15,13,11,
|
|
55
|
+
11,10,10,16,16,15,15,15,15,11,13,13,13,15,15,11,10,11,13,13,10,11,10,10,10,10,10,10,10,10,15,15,15,15,15,15,15,15,15,15,10,11,13,13,13,13,11,15,15,11,
|
|
56
|
+
11,10,13,15,16,15,15,15,15,11,11,11,11,11,11,11,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,11,11,11,11,11,11,16,15,11,
|
|
57
|
+
11,18,16,10,13,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,11,
|
|
58
|
+
11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
|
|
59
|
+
</data>
|
|
60
|
+
</layer>
|
|
61
|
+
</map>
|
wincoll/levels/04.tmx
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<map version="1.8" tiledversion="1.8.2" orientation="orthogonal" renderorder="right-down" width="50" height="50" tilewidth="16" tileheight="16" infinite="0" nextlayerid="2" nextobjectid="1">
|
|
3
|
+
<properties>
|
|
4
|
+
<property name="Title" value="Which key?"/>
|
|
5
|
+
</properties>
|
|
6
|
+
<tileset firstgid="1" source="WinColl.tsx"/>
|
|
7
|
+
<layer id="1" name="Tile Layer 1" width="50" height="50">
|
|
8
|
+
<data encoding="csv">
|
|
9
|
+
14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,
|
|
10
|
+
14,16,16,11,15,16,11,16,16,11,16,10,11,15,15,13,11,13,11,15,15,16,13,11,13,13,13,13,13,13,11,10,10,10,15,15,15,16,11,13,13,13,13,13,13,13,13,13,13,14,
|
|
11
|
+
14,13,13,11,15,13,11,13,13,11,12,10,11,15,11,11,11,15,11,15,16,13,15,11,13,11,11,11,11,11,10,10,11,11,11,15,13,13,11,13,16,13,13,13,16,13,13,13,13,14,
|
|
12
|
+
14,15,15,11,13,15,11,13,13,11,15,16,11,15,15,15,15,15,11,16,13,15,16,11,13,11,13,13,13,10,10,16,11,16,11,16,13,16,11,16,13,13,13,13,13,16,13,13,15,14,
|
|
13
|
+
14,15,13,11,15,16,11,15,15,11,10,12,11,15,14,11,11,11,11,13,15,15,15,11,13,11,11,11,11,10,10,12,11,17,11,13,13,15,11,13,13,16,15,13,13,13,13,16,13,14,
|
|
14
|
+
14,15,15,11,15,15,11,15,11,11,10,10,11,15,10,10,10,10,10,10,15,15,15,11,13,13,13,13,11,10,14,13,11,10,11,14,13,11,11,13,13,13,13,13,13,13,16,13,13,14,
|
|
15
|
+
14,15,15,11,15,15,15,15,15,11,10,10,11,15,11,11,11,10,11,11,10,10,14,11,13,11,11,11,11,10,11,11,11,10,11,11,11,11,10,13,13,13,16,13,15,13,13,13,16,14,
|
|
16
|
+
14,13,15,11,15,11,11,15,15,11,10,10,11,15,11,16,11,10,11,10,10,14,11,10,10,10,10,11,10,10,11,10,10,10,10,11,10,16,16,13,15,13,13,16,13,13,13,15,13,14,
|
|
17
|
+
14,15,15,11,13,13,11,13,13,10,10,10,10,15,11,13,10,10,11,10,10,10,10,10,10,11,10,10,10,10,10,10,11,10,10,10,13,13,13,11,13,13,13,13,13,13,13,13,13,14,
|
|
18
|
+
14,10,11,11,11,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,14,14,14,14,14,14,14,14,14,14,
|
|
19
|
+
14,15,10,11,15,15,15,15,15,15,10,15,15,15,15,15,15,15,15,15,10,10,11,16,11,16,11,10,10,15,15,15,15,15,15,15,15,16,15,15,15,15,15,15,15,15,15,15,15,14,
|
|
20
|
+
14,16,15,11,16,16,16,16,16,16,10,16,16,16,16,15,15,15,15,15,10,10,12,13,13,13,13,10,15,15,15,16,15,15,15,16,15,15,15,15,15,16,16,16,16,16,15,15,15,14,
|
|
21
|
+
14,13,10,11,13,13,13,13,13,13,10,13,13,13,13,15,15,15,15,15,10,10,11,11,11,11,11,15,15,14,14,15,15,16,15,15,15,15,16,15,15,16,13,13,13,16,15,15,15,14,
|
|
22
|
+
14,13,10,11,16,16,16,16,16,16,10,16,16,16,16,15,15,15,15,15,10,10,10,11,10,11,15,15,14,14,15,15,15,15,15,15,15,15,15,15,15,16,13,13,13,16,15,15,15,14,
|
|
23
|
+
14,13,10,11,13,13,13,13,13,13,10,13,13,13,13,15,15,15,15,15,10,10,10,11,15,15,15,15,15,15,15,15,16,15,15,16,15,15,15,15,15,16,13,13,13,16,15,15,15,14,
|
|
24
|
+
14,13,10,11,16,16,16,16,16,16,10,16,16,16,16,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,15,15,15,15,14,15,15,15,16,16,15,15,15,15,15,15,15,15,15,14,
|
|
25
|
+
14,13,10,11,13,13,13,13,13,13,10,13,13,13,13,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,14,15,15,15,15,15,15,16,15,15,15,15,15,15,16,16,16,16,16,14,
|
|
26
|
+
14,13,10,11,16,16,16,16,16,16,10,16,16,16,16,15,15,15,15,15,15,15,15,15,15,11,11,11,11,15,14,14,15,16,15,15,15,13,15,15,15,15,15,15,16,13,13,13,16,14,
|
|
27
|
+
14,13,10,11,13,13,13,13,13,13,10,13,13,13,13,15,15,15,15,15,15,15,15,15,15,15,15,16,11,15,15,14,14,15,15,16,15,15,15,15,15,15,15,15,16,13,13,13,16,14,
|
|
28
|
+
14,13,10,11,10,10,10,10,10,10,10,10,10,10,10,15,15,15,15,15,15,15,15,15,15,15,15,15,11,15,15,15,14,14,15,15,15,15,15,15,15,15,15,15,16,13,13,13,16,14,
|
|
29
|
+
14,13,10,11,15,15,15,15,15,15,10,10,10,10,10,10,10,10,10,10,10,10,11,10,10,11,16,15,15,15,15,15,11,15,15,15,15,15,15,15,10,11,15,15,15,15,15,15,15,14,
|
|
30
|
+
14,13,10,11,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,16,10,10,11,10,10,11,15,15,15,15,15,15,11,11,11,11,11,15,15,15,11,15,15,15,15,15,15,15,15,14,
|
|
31
|
+
14,13,10,11,15,15,15,15,15,15,10,11,11,11,10,10,10,10,10,14,13,10,11,10,10,11,11,11,11,11,15,15,11,15,15,15,15,15,11,11,11,11,11,11,15,15,15,14,15,14,
|
|
32
|
+
14,13,10,11,10,10,10,10,10,10,10,11,16,15,10,10,10,10,10,10,10,10,11,15,15,15,15,15,15,15,15,15,11,11,11,11,15,11,11,15,16,16,16,11,11,15,14,14,15,14,
|
|
33
|
+
14,13,10,11,15,15,15,15,15,15,11,11,16,10,10,11,11,11,10,10,14,10,11,15,15,11,11,11,11,11,15,15,11,15,15,15,15,15,15,15,15,15,15,13,15,15,14,13,15,14,
|
|
34
|
+
14,13,10,11,10,10,10,10,10,10,11,13,13,13,11,10,16,10,11,10,11,10,11,15,15,11,12,16,16,16,15,15,15,15,15,15,15,11,11,13,13,13,11,11,11,15,14,14,15,14,
|
|
35
|
+
14,13,10,11,15,15,15,15,15,15,11,15,10,10,16,11,12,10,10,10,11,13,11,15,15,11,12,13,13,13,15,11,11,11,15,15,15,15,11,11,11,11,11,15,15,15,16,14,15,14,
|
|
36
|
+
14,13,10,11,10,10,10,10,10,10,11,15,10,15,13,13,11,12,11,11,11,11,11,15,15,11,11,11,11,11,15,15,15,11,11,11,15,15,15,15,15,15,11,11,15,13,13,13,15,14,
|
|
37
|
+
14,13,10,11,15,15,15,15,15,11,11,11,11,11,11,11,11,11,15,15,15,11,15,15,11,15,15,15,15,15,11,11,15,15,15,11,11,15,15,15,15,15,15,15,15,16,16,16,15,14,
|
|
38
|
+
14,13,10,10,10,10,10,10,10,12,10,10,16,10,13,13,13,11,15,11,15,15,15,11,15,15,11,11,11,15,15,15,11,15,15,15,11,11,11,15,15,15,15,15,15,15,15,15,15,14,
|
|
39
|
+
14,11,11,11,11,11,11,11,11,11,10,14,14,16,14,13,13,11,16,15,11,15,11,15,15,11,12,12,12,11,11,15,11,10,10,10,10,10,10,10,15,15,15,15,15,15,15,15,15,14,
|
|
40
|
+
14,16,16,16,13,15,15,14,13,13,11,13,10,16,14,15,11,11,13,15,15,11,15,15,11,16,16,16,16,16,11,15,11,10,10,10,10,10,10,10,15,15,11,11,11,11,11,15,15,14,
|
|
41
|
+
14,13,12,13,13,11,15,14,13,13,13,10,10,12,14,15,15,11,13,15,11,15,15,11,11,16,16,16,16,14,15,15,11,11,11,10,10,10,10,10,15,15,11,12,13,16,15,15,15,14,
|
|
42
|
+
14,13,13,13,13,11,15,14,13,13,13,10,13,10,14,15,15,11,13,15,11,15,11,13,13,16,16,16,14,15,15,11,15,15,15,11,10,10,10,10,15,15,11,12,13,16,11,15,15,14,
|
|
43
|
+
14,13,13,13,13,11,15,14,13,14,14,14,14,14,14,11,15,11,15,11,16,15,11,13,13,16,16,14,13,15,11,15,15,11,15,11,10,10,10,10,15,15,11,12,13,16,11,15,15,14,
|
|
44
|
+
14,13,13,13,13,11,15,14,14,14,15,15,15,15,15,15,15,11,15,10,16,15,13,13,14,16,14,13,13,15,15,15,11,15,15,14,15,15,15,15,15,15,11,11,11,15,15,15,15,14,
|
|
45
|
+
14,13,13,13,13,11,15,14,15,15,15,11,11,16,11,11,15,11,11,10,12,10,11,13,14,16,10,11,11,11,11,11,15,15,11,14,15,14,15,15,15,15,16,16,11,11,11,15,15,14,
|
|
46
|
+
14,13,13,13,13,11,15,14,15,16,11,15,15,15,11,11,15,11,15,10,11,11,13,13,13,12,15,15,15,16,15,11,15,11,15,16,14,16,14,15,15,15,13,13,15,15,15,15,15,14,
|
|
47
|
+
14,13,13,13,13,11,15,14,15,14,15,15,11,10,15,15,15,15,15,10,12,13,13,13,13,11,15,15,15,13,15,11,15,11,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,
|
|
48
|
+
14,13,13,13,13,11,15,14,15,15,15,11,11,11,11,11,11,11,11,11,11,11,13,10,10,11,15,15,15,15,15,11,15,11,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,
|
|
49
|
+
14,11,11,11,11,11,15,14,14,15,11,15,15,16,10,10,10,11,13,16,10,11,10,11,10,11,15,16,15,15,15,11,15,11,16,15,11,11,11,15,15,15,15,15,16,16,16,11,11,14,
|
|
50
|
+
14,16,13,16,13,15,15,15,15,15,11,16,11,15,16,15,15,11,13,12,11,11,11,16,11,11,15,13,15,15,15,11,15,11,12,15,16,16,11,15,15,15,15,15,13,13,13,11,13,14,
|
|
51
|
+
14,13,13,16,13,14,14,14,14,15,11,16,13,11,15,16,10,11,15,15,15,15,15,16,10,11,15,15,15,11,15,11,15,11,12,15,13,13,11,15,15,16,16,16,15,14,15,10,16,14,
|
|
52
|
+
14,13,13,13,13,14,16,16,14,15,11,13,13,11,15,15,16,11,15,11,11,16,11,12,10,11,16,15,15,15,16,11,15,11,11,11,11,11,11,15,15,13,13,13,15,15,15,11,16,14,
|
|
53
|
+
14,14,14,14,14,14,13,13,14,15,11,13,13,13,11,10,13,15,15,15,15,15,11,11,10,11,15,15,16,15,13,11,15,11,16,16,16,16,16,16,15,15,14,15,16,16,16,11,16,14,
|
|
54
|
+
14,13,13,13,13,14,13,13,14,15,11,13,13,11,13,10,11,11,10,11,11,15,15,15,10,11,15,15,13,15,15,11,15,11,13,13,13,13,13,13,15,15,15,15,13,13,13,11,16,14,
|
|
55
|
+
14,16,13,13,16,14,13,13,15,15,11,15,11,13,13,10,10,11,15,15,11,13,16,11,10,11,11,15,15,15,15,11,15,11,15,15,15,15,15,15,15,16,16,16,15,14,15,11,16,14,
|
|
56
|
+
14,13,16,13,13,14,14,14,14,15,11,15,11,13,13,10,16,15,11,15,11,13,13,11,10,10,11,15,15,16,15,11,15,11,11,11,11,11,11,15,15,13,13,13,15,15,15,11,16,14,
|
|
57
|
+
14,18,13,16,13,15,15,15,15,15,15,15,11,13,13,15,16,15,15,15,11,13,13,11,17,10,11,15,15,13,15,11,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,10,15,14,
|
|
58
|
+
14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
|
|
59
|
+
</data>
|
|
60
|
+
</layer>
|
|
61
|
+
</map>
|
wincoll/levels/05.tmx
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<map version="1.8" tiledversion="1.8.2" orientation="orthogonal" renderorder="right-down" width="50" height="50" tilewidth="16" tileheight="16" infinite="0" nextlayerid="2" nextobjectid="1">
|
|
3
|
+
<properties>
|
|
4
|
+
<property name="Title" value="Not done yet"/>
|
|
5
|
+
</properties>
|
|
6
|
+
<tileset firstgid="1" source="WinColl.tsx"/>
|
|
7
|
+
<layer id="1" name="Tile Layer 1" width="50" height="50">
|
|
8
|
+
<data encoding="csv">
|
|
9
|
+
11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
|
|
10
|
+
11,10,10,10,10,10,10,10,10,10,15,15,15,15,15,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,
|
|
11
|
+
11,13,13,13,11,11,11,11,11,15,15,15,15,10,10,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,10,11,
|
|
12
|
+
11,11,11,11,11,10,10,10,10,10,15,15,15,10,16,13,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
13
|
+
11,10,10,10,10,10,10,10,10,10,10,15,15,10,15,13,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
14
|
+
11,10,11,10,10,10,16,16,10,10,14,10,15,10,15,13,10,13,13,13,10,10,13,10,10,10,10,13,13,13,13,10,10,13,13,10,10,10,13,13,13,10,13,13,13,13,10,13,10,11,
|
|
15
|
+
11,10,11,10,16,16,16,16,16,16,14,10,15,10,15,13,10,13,10,13,13,10,13,10,10,10,10,13,10,10,10,10,13,10,10,13,10,13,10,10,10,10,13,10,10,10,10,13,10,11,
|
|
16
|
+
11,10,11,10,13,13,13,13,13,13,10,10,15,10,15,13,10,13,10,10,13,10,13,10,10,10,10,13,10,10,10,10,13,10,10,13,10,13,10,10,10,10,13,10,10,10,10,13,10,11,
|
|
17
|
+
11,10,11,10,10,10,13,13,10,10,10,15,15,10,15,13,10,13,10,13,13,10,13,10,10,10,10,13,10,10,10,10,13,10,10,13,10,13,10,10,10,10,13,10,10,10,10,13,10,11,
|
|
18
|
+
11,10,10,10,14,10,10,11,11,11,11,15,15,10,15,13,10,13,13,13,10,10,13,10,10,10,10,13,13,13,10,10,13,13,13,13,10,10,13,13,10,10,13,13,13,10,10,13,10,11,
|
|
19
|
+
11,10,10,11,11,11,11,11,15,11,11,15,15,10,15,13,10,13,10,10,10,10,13,10,10,10,10,13,10,10,10,10,13,10,10,13,10,10,10,10,13,10,13,10,10,10,10,13,10,11,
|
|
20
|
+
11,10,11,11,10,10,11,11,15,15,11,15,15,10,15,13,10,13,10,10,10,10,13,10,10,10,10,13,10,10,10,10,13,10,10,13,10,10,10,10,13,10,13,10,10,10,10,13,10,11,
|
|
21
|
+
11,10,10,11,10,11,11,10,15,11,11,15,15,10,15,13,10,13,10,10,10,10,13,10,10,10,10,13,10,10,10,10,13,10,10,13,10,10,10,10,13,10,13,10,10,10,10,13,10,11,
|
|
22
|
+
11,10,10,11,10,10,10,10,11,11,11,15,15,10,15,13,10,13,10,10,10,10,13,13,13,13,10,13,13,13,13,10,13,10,10,13,10,13,13,13,10,10,13,13,13,13,10,13,10,11,
|
|
23
|
+
11,10,10,11,10,10,10,10,10,10,11,15,15,10,15,13,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
24
|
+
11,10,11,11,10,13,10,10,16,11,13,10,10,10,10,13,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
25
|
+
11,10,11,11,11,10,13,10,15,11,10,10,10,10,10,13,10,10,13,13,13,13,10,13,13,13,10,13,10,10,13,10,13,13,13,10,10,13,13,13,10,13,10,10,13,10,10,13,10,11,
|
|
26
|
+
11,10,11,11,10,10,11,10,10,11,10,10,16,16,16,13,10,10,13,10,10,10,10,10,13,10,10,13,10,10,13,10,10,13,10,10,13,10,10,10,10,13,10,10,13,10,10,13,10,11,
|
|
27
|
+
11,10,10,11,10,11,10,11,17,11,10,14,14,14,14,13,10,10,13,10,10,10,10,10,13,10,10,13,10,10,13,10,10,13,10,10,13,10,10,10,10,13,10,10,13,10,10,13,10,11,
|
|
28
|
+
11,10,10,11,10,10,10,10,11,11,17,10,10,10,10,13,10,10,13,10,10,10,10,10,13,10,10,13,13,10,13,10,10,13,10,10,13,10,10,10,10,13,10,10,13,10,10,13,10,11,
|
|
29
|
+
11,10,13,11,15,15,15,15,15,15,11,10,10,10,10,13,10,10,13,13,13,10,10,10,13,10,10,13,10,13,13,10,10,13,10,10,10,13,13,10,10,13,13,13,13,10,10,13,10,11,
|
|
30
|
+
11,10,11,15,14,14,14,14,14,15,11,10,10,10,10,13,10,10,13,10,10,10,10,10,13,10,10,13,10,10,13,10,10,13,10,10,10,10,10,13,10,13,10,10,13,10,10,13,10,11,
|
|
31
|
+
11,10,11,14,13,13,13,13,13,15,11,15,15,10,10,13,10,10,13,10,10,10,10,10,13,10,10,13,10,10,13,10,10,13,10,10,10,10,10,13,10,13,10,10,13,10,10,13,10,11,
|
|
32
|
+
11,10,11,15,14,14,14,14,14,15,11,15,13,15,10,13,10,10,13,10,10,10,10,10,13,10,10,13,10,10,13,10,10,13,10,10,10,10,10,13,10,13,10,10,13,10,10,13,10,11,
|
|
33
|
+
11,10,11,15,15,15,15,15,15,15,11,15,10,10,15,13,10,10,13,10,10,10,10,13,13,13,10,13,10,10,13,10,13,13,13,10,13,13,13,10,10,13,10,10,13,10,10,13,10,11,
|
|
34
|
+
11,10,11,10,16,16,14,15,15,15,15,15,15,10,15,13,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
35
|
+
11,10,11,10,10,16,16,15,15,15,11,15,15,10,15,13,10,10,10,10,10,10,10,10,10,13,13,13,10,13,10,10,13,10,13,13,13,13,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
36
|
+
11,10,10,10,10,10,16,10,10,10,11,11,15,10,15,13,10,10,10,10,10,10,10,10,10,10,13,10,10,13,10,10,13,10,13,10,10,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
37
|
+
11,10,10,10,10,10,10,10,10,10,11,15,15,10,15,13,10,10,10,10,10,10,10,10,10,10,13,10,10,13,10,10,13,10,13,10,10,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
38
|
+
11,10,11,10,10,13,10,10,10,10,11,15,10,10,15,13,10,10,10,10,10,10,10,10,10,10,13,10,10,13,10,10,13,10,13,10,10,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
39
|
+
11,10,11,15,11,11,11,11,11,11,11,15,10,15,10,13,10,10,10,10,10,10,10,10,10,10,13,10,10,13,13,13,13,10,13,13,13,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
40
|
+
11,10,11,15,11,15,15,15,15,15,11,15,10,15,10,13,10,10,10,10,10,10,10,10,10,10,13,10,10,13,10,10,13,10,13,10,10,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
41
|
+
11,10,11,15,11,15,11,15,11,11,11,15,10,10,10,13,10,10,10,10,10,10,10,10,10,10,13,10,10,13,10,10,13,10,13,10,10,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
42
|
+
11,10,11,15,11,15,11,15,13,11,11,15,15,15,15,13,10,10,10,10,10,10,10,10,10,10,13,10,10,13,10,10,13,10,13,10,10,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
43
|
+
11,10,11,15,11,15,11,11,11,11,11,15,15,15,15,13,10,10,10,10,10,10,10,10,10,10,13,10,10,13,10,10,13,10,13,13,13,13,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
44
|
+
11,10,11,15,11,15,15,15,15,15,11,15,16,16,16,13,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
45
|
+
11,10,11,15,11,11,11,15,11,11,11,15,15,15,15,13,10,10,10,10,13,10,10,10,10,13,13,13,13,10,13,10,13,10,13,13,13,13,10,13,10,10,10,10,12,10,10,13,10,11,
|
|
46
|
+
11,10,11,15,15,15,15,15,15,13,11,15,15,15,15,13,10,10,10,10,13,10,10,10,10,13,10,10,10,10,13,10,13,10,13,10,10,10,10,13,10,10,10,10,12,10,10,13,10,11,
|
|
47
|
+
11,10,11,15,11,11,11,11,11,11,11,15,15,15,15,13,10,10,10,10,13,10,10,10,10,13,10,10,10,10,13,10,13,10,13,10,10,10,10,13,10,10,10,10,12,10,10,13,10,11,
|
|
48
|
+
11,10,10,10,10,10,10,10,10,10,11,15,15,15,15,13,10,10,10,10,13,10,10,10,10,13,10,10,10,10,13,10,13,10,13,10,10,10,10,13,10,10,10,10,12,10,10,13,10,11,
|
|
49
|
+
11,10,16,15,10,10,10,10,10,10,11,10,11,11,11,13,10,10,10,10,13,10,10,10,10,13,13,13,10,10,13,10,13,10,13,13,13,10,10,13,10,10,10,10,12,10,10,13,10,11,
|
|
50
|
+
11,10,14,15,10,13,10,14,14,10,16,16,15,15,11,13,10,10,10,10,13,10,10,10,10,13,10,10,10,10,13,10,13,10,13,10,10,10,10,13,10,10,10,10,12,10,10,13,10,11,
|
|
51
|
+
11,10,11,15,10,10,10,10,14,10,11,10,15,15,11,13,10,10,10,10,13,10,10,10,10,13,10,10,10,10,13,10,13,10,13,10,10,10,10,13,10,10,10,10,12,10,10,13,10,11,
|
|
52
|
+
11,10,11,15,10,10,10,10,10,10,11,10,15,15,11,13,10,10,10,10,13,10,10,10,10,13,10,10,10,10,10,13,10,10,13,10,10,10,10,13,10,10,10,10,10,10,10,13,10,11,
|
|
53
|
+
11,10,11,15,10,13,10,10,13,10,11,10,15,15,11,13,10,10,10,10,13,13,13,13,10,13,13,13,13,10,10,13,10,10,13,13,13,13,10,13,13,13,13,10,17,10,10,13,10,11,
|
|
54
|
+
11,10,11,15,10,10,10,10,10,10,11,10,13,15,11,13,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,13,10,11,
|
|
55
|
+
11,10,11,15,15,15,15,15,15,15,11,10,15,15,11,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,10,11,
|
|
56
|
+
11,10,11,16,11,11,11,11,11,11,11,10,10,15,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,
|
|
57
|
+
11,18,10,10,10,10,10,10,10,10,11,13,10,15,11,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,
|
|
58
|
+
11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
|
|
59
|
+
</data>
|
|
60
|
+
</layer>
|
|
61
|
+
</map>
|
wincoll/levels/06.tmx
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<map version="1.8" tiledversion="1.8.2" orientation="orthogonal" renderorder="right-down" compressionlevel="0" width="50" height="50" tilewidth="16" tileheight="16" infinite="0" nextlayerid="2" nextobjectid="1">
|
|
3
|
+
<properties>
|
|
4
|
+
<property name="Title" value="Round and round"/>
|
|
5
|
+
</properties>
|
|
6
|
+
<tileset firstgid="1" source="WinColl.tsx"/>
|
|
7
|
+
<layer id="1" name="Tile Layer 1" width="50" height="50">
|
|
8
|
+
<data encoding="csv">
|
|
9
|
+
11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
|
|
10
|
+
11,15,15,15,15,15,15,15,15,15,15,15,16,10,11,13,12,11,16,16,16,16,16,16,16,11,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,
|
|
11
|
+
11,10,15,16,15,15,13,15,15,15,15,11,13,14,11,10,15,16,16,16,16,16,16,12,11,10,10,14,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,16,11,
|
|
12
|
+
11,13,15,15,16,15,15,10,13,15,15,11,10,15,16,10,11,13,16,16,16,16,12,11,10,10,14,12,13,12,13,12,13,12,13,12,13,12,13,12,13,10,10,10,10,10,13,11,16,11,
|
|
13
|
+
11,15,16,15,15,15,16,15,15,10,10,16,10,11,13,12,11,11,16,16,16,12,11,10,10,14,12,13,14,11,11,11,11,11,11,11,11,11,11,11,11,10,12,12,12,10,12,11,16,11,
|
|
14
|
+
11,15,15,15,10,15,15,15,15,15,11,13,14,11,10,15,16,10,16,16,12,11,10,10,14,12,13,14,10,10,10,10,10,10,10,10,10,10,10,10,11,10,12,10,10,10,13,11,16,11,
|
|
15
|
+
11,15,13,15,15,13,15,10,13,15,11,10,15,16,10,11,13,11,16,12,11,16,10,14,12,13,14,10,10,10,10,10,10,10,10,10,11,11,11,10,11,10,12,12,10,10,12,11,16,11,
|
|
16
|
+
11,15,15,15,15,15,16,15,15,15,16,10,11,13,12,11,10,11,16,11,10,15,10,11,13,14,10,10,10,10,10,10,11,11,14,10,10,11,10,10,11,10,10,10,12,10,13,14,16,11,
|
|
17
|
+
11,16,15,13,15,10,15,15,15,11,13,14,11,10,15,16,10,10,16,10,10,12,10,11,12,11,10,10,14,11,14,10,11,10,11,10,10,11,10,10,11,10,12,12,10,10,14,16,16,11,
|
|
18
|
+
11,15,15,16,15,15,15,13,10,11,10,15,16,10,11,13,11,10,11,11,11,16,10,11,13,11,10,10,11,10,11,10,11,11,14,10,10,11,10,10,11,10,10,10,10,14,16,16,13,11,
|
|
19
|
+
11,15,15,15,13,15,16,15,15,16,10,11,13,12,11,10,10,10,16,16,11,15,15,11,12,11,10,10,11,11,11,10,11,10,10,10,10,11,10,10,11,13,11,11,14,10,15,13,10,11,
|
|
20
|
+
11,16,15,10,15,10,15,15,11,13,14,11,10,15,16,10,10,13,15,15,15,12,11,16,16,11,10,10,11,10,11,10,11,10,10,10,10,10,10,14,13,12,16,14,10,10,14,14,10,11,
|
|
21
|
+
11,15,15,15,15,15,15,15,11,10,15,16,10,11,13,11,10,11,11,11,11,11,16,16,14,10,10,10,11,10,11,10,10,10,10,10,10,10,14,13,12,16,14,10,10,14,16,11,10,11,
|
|
22
|
+
11,15,10,13,16,15,16,15,16,10,11,13,12,11,10,10,10,16,16,11,13,16,16,13,11,10,11,10,10,10,10,10,10,10,10,10,10,14,13,12,16,14,10,10,14,16,16,11,10,11,
|
|
23
|
+
11,13,15,15,15,10,15,11,13,14,11,10,15,16,10,10,13,15,15,15,11,16,16,13,11,10,11,10,10,10,10,10,10,10,10,10,14,13,12,16,14,10,10,14,16,16,16,11,10,11,
|
|
24
|
+
11,15,16,15,16,15,15,11,10,15,16,10,11,13,11,10,11,11,11,10,11,13,13,13,10,10,11,12,11,10,10,10,10,10,10,14,13,12,16,14,10,10,14,16,16,16,16,11,10,11,
|
|
25
|
+
11,15,15,13,15,15,15,16,10,11,13,12,11,10,10,10,16,13,11,10,11,11,11,11,11,10,11,13,11,11,11,11,11,11,14,13,12,16,14,10,10,14,16,16,16,16,16,11,10,11,
|
|
26
|
+
11,15,10,15,16,13,11,13,14,11,10,15,16,10,10,13,14,11,11,10,10,10,10,10,11,10,11,12,13,12,13,12,13,12,13,12,16,14,10,10,14,16,16,16,16,16,16,11,10,11,
|
|
27
|
+
11,13,16,15,16,10,11,10,15,16,10,11,13,11,10,11,16,13,11,10,10,12,10,10,11,10,11,11,11,11,11,11,11,11,11,11,14,10,10,14,16,16,16,16,16,16,16,11,10,11,
|
|
28
|
+
11,15,16,15,15,15,16,10,11,13,12,11,10,10,10,16,16,13,11,10,12,12,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,14,16,16,16,16,16,16,16,16,11,10,11,
|
|
29
|
+
11,15,16,15,15,11,13,14,11,10,15,16,10,10,13,15,15,11,11,10,10,12,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,16,16,16,16,16,16,16,16,16,11,10,11,
|
|
30
|
+
11,15,15,10,15,11,10,15,16,10,11,13,11,10,11,11,11,16,15,10,10,12,10,10,11,16,16,11,10,10,10,10,10,11,13,13,16,11,12,16,16,16,16,16,16,16,16,11,10,11,
|
|
31
|
+
11,16,15,13,15,16,10,11,13,12,11,10,10,10,16,16,11,12,10,10,12,12,12,10,11,12,12,11,10,10,10,12,10,11,16,16,16,16,14,12,16,16,16,16,16,16,14,11,10,11,
|
|
32
|
+
11,13,10,15,11,13,14,11,10,15,16,10,10,13,15,15,10,12,11,10,10,10,10,10,11,13,13,11,10,10,12,12,10,11,14,16,16,14,10,10,12,16,16,16,16,14,16,11,10,11,
|
|
33
|
+
11,15,15,15,11,10,15,16,10,11,13,11,10,11,11,11,10,11,11,11,11,11,11,11,11,17,13,11,10,12,10,12,10,11,10,16,14,10,10,10,10,12,16,16,14,12,16,11,10,11,
|
|
34
|
+
11,10,15,15,16,10,11,13,12,11,10,10,10,16,13,11,10,10,10,16,16,10,10,10,10,13,13,11,10,12,12,12,10,11,10,12,10,10,10,10,11,16,16,14,16,10,16,11,10,11,
|
|
35
|
+
11,16,15,11,13,14,11,10,15,16,10,10,13,14,11,11,11,11,11,16,16,11,11,11,11,12,11,11,10,10,10,12,10,11,16,10,11,11,11,11,11,16,12,11,12,10,12,10,10,11,
|
|
36
|
+
11,15,10,11,10,15,16,10,11,13,11,10,11,11,10,10,10,10,10,15,15,10,10,10,10,10,10,10,10,10,10,10,10,15,16,16,10,10,10,10,11,16,11,11,11,10,10,16,10,11,
|
|
37
|
+
11,13,15,16,10,11,13,12,11,10,10,10,16,11,10,11,11,11,11,11,11,11,11,11,11,12,11,11,11,11,11,11,11,11,16,16,11,10,11,10,10,16,10,10,10,10,11,13,11,11,
|
|
38
|
+
11,15,11,13,14,11,10,15,16,10,10,13,14,11,10,11,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,15,15,10,10,11,11,11,16,11,11,10,13,11,10,10,11,
|
|
39
|
+
11,10,11,10,15,16,10,11,13,11,10,11,16,11,10,11,10,12,12,10,10,11,11,11,11,12,11,11,11,11,11,11,11,11,16,16,11,11,11,10,10,16,10,10,11,11,16,11,10,11,
|
|
40
|
+
11,15,16,10,11,13,12,11,10,10,10,16,14,10,10,11,10,10,10,12,10,11,13,13,11,10,10,10,10,10,10,10,10,10,15,15,10,10,10,10,11,12,10,10,10,11,13,10,10,11,
|
|
41
|
+
11,11,13,14,11,10,15,16,10,10,13,14,16,16,11,11,10,10,12,10,10,11,10,10,10,16,10,11,11,11,11,11,10,11,16,16,11,10,11,12,10,10,12,10,10,10,10,11,10,11,
|
|
42
|
+
11,11,10,15,16,10,11,13,11,10,11,16,15,16,15,11,10,12,10,10,10,11,15,15,16,15,14,16,13,16,13,11,10,10,15,15,10,10,11,12,10,10,10,10,10,10,11,11,10,11,
|
|
43
|
+
11,16,10,11,13,12,11,10,10,10,16,14,15,16,15,16,10,12,12,12,10,11,10,16,15,14,16,13,16,14,15,13,11,11,11,11,11,11,11,12,10,10,10,10,10,10,10,11,10,11,
|
|
44
|
+
11,13,14,11,10,15,16,10,10,13,14,16,15,11,12,15,10,10,10,10,10,11,16,15,14,16,13,13,13,16,14,15,13,10,15,16,13,16,11,12,10,10,10,10,10,10,10,11,10,11,
|
|
45
|
+
11,10,15,16,10,11,13,11,10,11,16,14,15,10,10,10,11,11,11,11,11,11,14,10,10,14,16,13,16,14,15,13,16,15,16,15,16,15,10,12,10,10,10,10,10,10,10,11,10,11,
|
|
46
|
+
11,10,11,13,12,11,10,10,10,16,16,13,14,16,10,12,10,10,16,16,13,11,10,10,10,10,14,16,14,13,14,15,13,16,15,16,11,10,11,12,10,10,10,10,10,10,10,11,10,11,
|
|
47
|
+
11,14,11,10,15,16,10,10,13,15,15,15,11,12,10,10,10,11,16,16,11,11,10,10,11,10,16,13,16,10,15,10,16,15,16,15,16,15,11,12,10,10,10,10,10,10,10,11,10,11,
|
|
48
|
+
11,15,16,10,11,13,11,10,11,11,11,11,12,10,10,16,16,16,15,15,10,11,11,11,10,15,14,11,11,11,10,16,15,16,15,16,11,10,11,12,10,10,10,10,10,10,10,11,10,11,
|
|
49
|
+
11,11,13,12,11,10,10,10,16,16,11,13,10,10,16,14,11,16,11,11,10,10,10,10,10,14,10,10,10,10,10,11,16,15,16,15,16,15,11,12,10,10,10,10,10,10,10,11,10,11,
|
|
50
|
+
11,11,10,15,16,10,10,13,15,15,10,10,15,16,14,16,11,13,10,11,11,11,11,11,11,11,10,10,12,12,10,16,15,16,15,16,11,10,11,12,10,10,10,10,10,10,10,11,10,11,
|
|
51
|
+
11,16,10,11,13,11,10,11,11,11,10,10,15,15,16,16,13,11,10,10,10,10,10,10,10,11,10,12,10,10,10,11,16,15,16,15,16,15,11,12,10,10,10,10,10,10,10,11,10,11,
|
|
52
|
+
11,13,12,11,10,10,10,16,16,11,12,11,11,11,16,14,10,11,11,11,10,12,12,10,10,11,10,12,12,10,10,16,15,16,15,16,11,10,11,12,10,10,10,10,10,10,10,11,10,11,
|
|
53
|
+
11,10,15,16,10,10,13,15,15,16,11,10,10,10,16,10,10,11,10,10,10,10,10,12,10,11,10,12,10,12,10,11,16,15,16,15,16,15,11,12,10,10,10,10,10,10,10,11,10,11,
|
|
54
|
+
11,10,11,13,11,10,11,11,11,16,11,10,11,16,14,11,10,11,16,11,10,10,12,10,10,11,10,10,12,10,10,16,11,16,11,16,11,10,11,12,10,10,10,10,10,10,14,11,16,11,
|
|
55
|
+
11,12,11,10,10,10,16,16,11,16,13,10,11,15,10,13,11,16,16,11,10,10,10,12,10,11,10,10,10,10,10,11,12,15,10,15,10,15,11,14,10,10,10,10,10,14,16,16,16,11,
|
|
56
|
+
11,15,16,11,10,13,15,15,15,16,11,11,11,11,10,10,10,13,16,11,10,12,12,10,10,11,11,11,11,11,12,16,16,11,11,11,11,12,11,11,11,11,11,11,11,11,16,13,13,11,
|
|
57
|
+
11,18,13,10,10,11,11,11,15,15,10,10,10,10,10,10,10,13,13,11,10,10,10,10,10,10,10,10,10,10,10,13,15,10,10,10,10,10,10,10,10,10,10,10,10,10,13,13,16,11,
|
|
58
|
+
11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
|
|
59
|
+
</data>
|
|
60
|
+
</layer>
|
|
61
|
+
</map>
|
wincoll/levels/Blob.png
ADDED
|
Binary file
|
wincoll/levels/Brick.png
ADDED
|
Binary file
|
|
Binary file
|
wincoll/levels/Earth.png
ADDED
|
Binary file
|
wincoll/levels/Gap.png
ADDED
|
Binary file
|
wincoll/levels/Key.png
ADDED
|
Binary file
|
wincoll/levels/Rock.png
ADDED
|
Binary file
|
wincoll/levels/Safe.png
ADDED
|
Binary file
|
wincoll/levels/Win.png
ADDED
|
Binary file
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<tileset version="1.8" tiledversion="1.8.2" name="WinColl" tilewidth="16" tileheight="16" tilecount="10" columns="0">
|
|
3
|
+
<grid orientation="orthogonal" width="1" height="1"/>
|
|
4
|
+
<tile id="9">
|
|
5
|
+
<image width="16" height="16" source="Gap.png"/>
|
|
6
|
+
</tile>
|
|
7
|
+
<tile id="10">
|
|
8
|
+
<image width="16" height="16" source="Brick.png"/>
|
|
9
|
+
</tile>
|
|
10
|
+
<tile id="11">
|
|
11
|
+
<image width="16" height="16" source="Safe.png"/>
|
|
12
|
+
</tile>
|
|
13
|
+
<tile id="12">
|
|
14
|
+
<image width="16" height="16" source="Diamond.png"/>
|
|
15
|
+
</tile>
|
|
16
|
+
<tile id="13">
|
|
17
|
+
<image width="16" height="16" source="Blob.png"/>
|
|
18
|
+
</tile>
|
|
19
|
+
<tile id="14">
|
|
20
|
+
<image width="16" height="16" source="Earth.png"/>
|
|
21
|
+
</tile>
|
|
22
|
+
<tile id="15">
|
|
23
|
+
<image width="16" height="16" source="Rock.png"/>
|
|
24
|
+
</tile>
|
|
25
|
+
<tile id="16">
|
|
26
|
+
<image width="16" height="16" source="Key.png"/>
|
|
27
|
+
</tile>
|
|
28
|
+
<tile id="17">
|
|
29
|
+
<image width="16" height="16" source="Win.png"/>
|
|
30
|
+
</tile>
|
|
31
|
+
<tile id="18">
|
|
32
|
+
<image width="16" height="16" source="Gap.png"/>
|
|
33
|
+
</tile>
|
|
34
|
+
</tileset>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|