mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
16x16 levels (#462)
When we wrote our gmtk game jam 23 entry, we used 8x8 tiles in our maps. But it made a lot of things quite annoying, so here is my attempt at using 16x16 tiles instead and handling the pain just once in build.rs - [x] no changelog update needed
This commit is contained in:
commit
e4dd95fbf2
|
@ -18,7 +18,7 @@ const LEVEL_NAMES: &[&str] = &[
|
||||||
"level_switch",
|
"level_switch",
|
||||||
"level_spikes",
|
"level_spikes",
|
||||||
"level_spikes2",
|
"level_spikes2",
|
||||||
"squid_force_button",
|
"level_squid_force_button",
|
||||||
"level_squid_intro",
|
"level_squid_intro",
|
||||||
"level_squid2",
|
"level_squid2",
|
||||||
"level_squid1",
|
"level_squid1",
|
||||||
|
@ -36,7 +36,7 @@ fn main() {
|
||||||
let mut tile_loader = tiled::Loader::new();
|
let mut tile_loader = tiled::Loader::new();
|
||||||
|
|
||||||
let ui_map = load_tmx(&mut tile_loader, "maps/UI.tmx");
|
let ui_map = load_tmx(&mut tile_loader, "maps/UI.tmx");
|
||||||
let ui_tiles = export_tiles(&ui_map, quote!(ui));
|
let ui_tiles = export_ui_tiles(&ui_map, quote!(ui));
|
||||||
|
|
||||||
let levels = LEVEL_NAMES
|
let levels = LEVEL_NAMES
|
||||||
.iter()
|
.iter()
|
||||||
|
@ -278,7 +278,7 @@ fn export_level(map: &tiled::Map) -> Level {
|
||||||
let tile_y = id / 11;
|
let tile_y = id / 11;
|
||||||
|
|
||||||
let is_wall = tiles
|
let is_wall = tiles
|
||||||
.get_tile(tile_x * 2, tile_y * 2)
|
.get_tile(tile_x, tile_y)
|
||||||
.map(|tile| {
|
.map(|tile| {
|
||||||
let tileset = tile.get_tileset();
|
let tileset = tile.get_tileset();
|
||||||
let tile_data = &tileset.get_tile(tile.id()).unwrap();
|
let tile_data = &tileset.get_tile(tile.id()).unwrap();
|
||||||
|
@ -305,6 +305,48 @@ fn export_level(map: &tiled::Map) -> Level {
|
||||||
fn export_tiles(map: &tiled::Map, background: TokenStream) -> TokenStream {
|
fn export_tiles(map: &tiled::Map, background: TokenStream) -> TokenStream {
|
||||||
let map_tiles = map.get_layer(0).unwrap().as_tile_layer().unwrap();
|
let map_tiles = map.get_layer(0).unwrap().as_tile_layer().unwrap();
|
||||||
|
|
||||||
|
let width = map_tiles.width().unwrap() * 2;
|
||||||
|
let height = map_tiles.height().unwrap() * 2;
|
||||||
|
|
||||||
|
let map_tiles = (0..(height * width)).map(|pos| {
|
||||||
|
let x = pos % width;
|
||||||
|
let y = pos / width;
|
||||||
|
|
||||||
|
let tile = map_tiles.get_tile(x as i32 / 2, y as i32 / 2);
|
||||||
|
|
||||||
|
match tile {
|
||||||
|
Some(tile) => {
|
||||||
|
let vflip = tile.flip_v;
|
||||||
|
let hflip = tile.flip_h;
|
||||||
|
|
||||||
|
// calculate the actual tile ID based on the properties here
|
||||||
|
// since the tiles in tiled are 16x16, but we want to export to 8x8, we have to work this out carefully
|
||||||
|
|
||||||
|
let tile_tileset_x = tile.id() % 9;
|
||||||
|
let tile_tileset_y = tile.id() / 9;
|
||||||
|
|
||||||
|
let x_offset = if (x % 2 == 0) ^ hflip { 0 } else { 1 };
|
||||||
|
let y_offset = if (y % 2 == 0) ^ vflip { 0 } else { 1 };
|
||||||
|
let gba_tile_id =
|
||||||
|
tile_tileset_x * 2 + x_offset + tile_tileset_y * 9 * 4 + y_offset * 9 * 2;
|
||||||
|
let gba_tile_id = gba_tile_id as u16;
|
||||||
|
|
||||||
|
let palette_id =
|
||||||
|
quote! { backgrounds::#background.palette_assignments[#gba_tile_id as usize] };
|
||||||
|
quote! { TileSetting::new(#gba_tile_id, #hflip, #vflip, #palette_id) }
|
||||||
|
}
|
||||||
|
None => {
|
||||||
|
quote! { TileSetting::new(1023, false, false, 0) }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
quote! {&[#(#map_tiles),*]}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn export_ui_tiles(map: &tiled::Map, background: TokenStream) -> TokenStream {
|
||||||
|
let map_tiles = map.get_layer(0).unwrap().as_tile_layer().unwrap();
|
||||||
|
|
||||||
let width = map_tiles.width().unwrap();
|
let width = map_tiles.width().unwrap();
|
||||||
let height = map_tiles.height().unwrap();
|
let height = map_tiles.height().unwrap();
|
||||||
|
|
||||||
|
@ -317,11 +359,11 @@ fn export_tiles(map: &tiled::Map, background: TokenStream) -> TokenStream {
|
||||||
match tile {
|
match tile {
|
||||||
Some(tile) => {
|
Some(tile) => {
|
||||||
let tile_id = tile.id() as u16;
|
let tile_id = tile.id() as u16;
|
||||||
let vflip = tile.flip_h;
|
let vflip = tile.flip_v;
|
||||||
let hflip = tile.flip_v;
|
let hflip = tile.flip_h;
|
||||||
let palette_id =
|
let palette_id =
|
||||||
quote! { backgrounds::#background.palette_assignments[#tile_id as usize] };
|
quote! { backgrounds::#background.palette_assignments[#tile_id as usize] };
|
||||||
quote! { TileSetting::new(#tile_id, #vflip, #hflip, #palette_id) }
|
quote! { TileSetting::new(#tile_id, #hflip, #vflip, #palette_id) }
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
quote! { TileSetting::new(1023, false, false, 0) }
|
quote! { TileSetting::new(1023, false, false, 0) }
|
||||||
|
|
|
@ -1,176 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<tileset version="1.10" tiledversion="1.10.1" name="level" tilewidth="8" tileheight="8" tilecount="324" columns="18">
|
|
||||||
<image source="level.png" width="144" height="144"/>
|
|
||||||
<tile id="0" type="WALL"/>
|
|
||||||
<tile id="1" type="WALL"/>
|
|
||||||
<tile id="2" type="WALL"/>
|
|
||||||
<tile id="3" type="WALL"/>
|
|
||||||
<tile id="4" type="WALL"/>
|
|
||||||
<tile id="5" type="WALL"/>
|
|
||||||
<tile id="6" type="WALL"/>
|
|
||||||
<tile id="7" type="WALL"/>
|
|
||||||
<tile id="8" type="WALL"/>
|
|
||||||
<tile id="9" type="WALL"/>
|
|
||||||
<tile id="10" type="WALL"/>
|
|
||||||
<tile id="11" type="WALL"/>
|
|
||||||
<tile id="12" type="WALL"/>
|
|
||||||
<tile id="13" type="WALL"/>
|
|
||||||
<tile id="14" type="WALL"/>
|
|
||||||
<tile id="15" type="WALL"/>
|
|
||||||
<tile id="16" type="WALL"/>
|
|
||||||
<tile id="17" type="WALL"/>
|
|
||||||
<tile id="18" type="WALL"/>
|
|
||||||
<tile id="19" type="WALL"/>
|
|
||||||
<tile id="20" type="WALL"/>
|
|
||||||
<tile id="21" type="WALL"/>
|
|
||||||
<tile id="22" type="WALL"/>
|
|
||||||
<tile id="23" type="WALL"/>
|
|
||||||
<tile id="24" type="WALL"/>
|
|
||||||
<tile id="25" type="WALL"/>
|
|
||||||
<tile id="26" type="WALL"/>
|
|
||||||
<tile id="27" type="WALL"/>
|
|
||||||
<tile id="28" type="WALL"/>
|
|
||||||
<tile id="29" type="WALL"/>
|
|
||||||
<tile id="30" type="WALL"/>
|
|
||||||
<tile id="31" type="WALL"/>
|
|
||||||
<tile id="32" type="WALL"/>
|
|
||||||
<tile id="33" type="WALL"/>
|
|
||||||
<tile id="34" type="WALL"/>
|
|
||||||
<tile id="35" type="WALL"/>
|
|
||||||
<tile id="36" type="WALL"/>
|
|
||||||
<tile id="37" type="WALL"/>
|
|
||||||
<tile id="38" type="FLOOR"/>
|
|
||||||
<tile id="39" type="FLOOR"/>
|
|
||||||
<tile id="40" type="FLOOR"/>
|
|
||||||
<tile id="41" type="FLOOR"/>
|
|
||||||
<tile id="42" type="FLOOR"/>
|
|
||||||
<tile id="43" type="FLOOR"/>
|
|
||||||
<tile id="44" type="FLOOR"/>
|
|
||||||
<tile id="45" type="FLOOR"/>
|
|
||||||
<tile id="46" type="FLOOR"/>
|
|
||||||
<tile id="47" type="FLOOR"/>
|
|
||||||
<tile id="48" type="FLOOR"/>
|
|
||||||
<tile id="49" type="FLOOR"/>
|
|
||||||
<tile id="50" type="FLOOR"/>
|
|
||||||
<tile id="51" type="FLOOR"/>
|
|
||||||
<tile id="52" type="WALL"/>
|
|
||||||
<tile id="53" type="WALL"/>
|
|
||||||
<tile id="54" type="WALL"/>
|
|
||||||
<tile id="55" type="WALL"/>
|
|
||||||
<tile id="56" type="FLOOR"/>
|
|
||||||
<tile id="57" type="FLOOR"/>
|
|
||||||
<tile id="58" type="FLOOR"/>
|
|
||||||
<tile id="59" type="FLOOR"/>
|
|
||||||
<tile id="60" type="FLOOR"/>
|
|
||||||
<tile id="61" type="FLOOR"/>
|
|
||||||
<tile id="62" type="FLOOR"/>
|
|
||||||
<tile id="63" type="FLOOR"/>
|
|
||||||
<tile id="64" type="FLOOR"/>
|
|
||||||
<tile id="65" type="FLOOR"/>
|
|
||||||
<tile id="66" type="FLOOR"/>
|
|
||||||
<tile id="67" type="FLOOR"/>
|
|
||||||
<tile id="68" type="FLOOR"/>
|
|
||||||
<tile id="69" type="FLOOR"/>
|
|
||||||
<tile id="70" type="WALL"/>
|
|
||||||
<tile id="71" type="WALL"/>
|
|
||||||
<tile id="72" type="WALL"/>
|
|
||||||
<tile id="73" type="WALL"/>
|
|
||||||
<tile id="74" type="WALL"/>
|
|
||||||
<tile id="75" type="WALL"/>
|
|
||||||
<tile id="76" type="WALL"/>
|
|
||||||
<tile id="77" type="WALL"/>
|
|
||||||
<tile id="78" type="WALL"/>
|
|
||||||
<tile id="79" type="WALL"/>
|
|
||||||
<tile id="80" type="WALL"/>
|
|
||||||
<tile id="81" type="WALL"/>
|
|
||||||
<tile id="82" type="WALL"/>
|
|
||||||
<tile id="83" type="WALL"/>
|
|
||||||
<tile id="84" type="WALL"/>
|
|
||||||
<tile id="85" type="WALL"/>
|
|
||||||
<tile id="86" type="WALL"/>
|
|
||||||
<tile id="87" type="WALL"/>
|
|
||||||
<tile id="88" type="WALL"/>
|
|
||||||
<tile id="89" type="WALL"/>
|
|
||||||
<tile id="90" type="WALL"/>
|
|
||||||
<tile id="91" type="WALL"/>
|
|
||||||
<tile id="92" type="WALL"/>
|
|
||||||
<tile id="93" type="WALL"/>
|
|
||||||
<tile id="94" type="WALL"/>
|
|
||||||
<tile id="95" type="WALL"/>
|
|
||||||
<tile id="96" type="WALL"/>
|
|
||||||
<tile id="97" type="WALL"/>
|
|
||||||
<tile id="98" type="WALL"/>
|
|
||||||
<tile id="99" type="WALL"/>
|
|
||||||
<tile id="100" type="WALL"/>
|
|
||||||
<tile id="101" type="WALL"/>
|
|
||||||
<tile id="102" type="WALL"/>
|
|
||||||
<tile id="103" type="WALL"/>
|
|
||||||
<tile id="104" type="WALL"/>
|
|
||||||
<tile id="105" type="WALL"/>
|
|
||||||
<tile id="106" type="WALL"/>
|
|
||||||
<tile id="107" type="WALL"/>
|
|
||||||
<tile id="108" type="WALL"/>
|
|
||||||
<tile id="109" type="WALL"/>
|
|
||||||
<tile id="110" type="WALL"/>
|
|
||||||
<tile id="111" type="WALL"/>
|
|
||||||
<tile id="112" type="WALL"/>
|
|
||||||
<tile id="113" type="WALL"/>
|
|
||||||
<tile id="114" type="WALL"/>
|
|
||||||
<tile id="115" type="WALL"/>
|
|
||||||
<tile id="116" type="WALL"/>
|
|
||||||
<tile id="117" type="WALL"/>
|
|
||||||
<tile id="118" type="WALL"/>
|
|
||||||
<tile id="119" type="WALL"/>
|
|
||||||
<tile id="126" type="WALL"/>
|
|
||||||
<tile id="127" type="WALL"/>
|
|
||||||
<tile id="128" type="WALL"/>
|
|
||||||
<tile id="129" type="WALL"/>
|
|
||||||
<tile id="130" type="WALL"/>
|
|
||||||
<tile id="131" type="WALL"/>
|
|
||||||
<tile id="132" type="WALL"/>
|
|
||||||
<tile id="133" type="WALL"/>
|
|
||||||
<tile id="134" type="WALL"/>
|
|
||||||
<tile id="135" type="WALL"/>
|
|
||||||
<tile id="136" type="WALL"/>
|
|
||||||
<tile id="137" type="WALL"/>
|
|
||||||
<tile id="144" type="WALL"/>
|
|
||||||
<tile id="145" type="WALL"/>
|
|
||||||
<tile id="146" type="WALL"/>
|
|
||||||
<tile id="147" type="WALL"/>
|
|
||||||
<tile id="148" type="WALL"/>
|
|
||||||
<tile id="149" type="WALL"/>
|
|
||||||
<tile id="150" type="WALL"/>
|
|
||||||
<tile id="151" type="WALL"/>
|
|
||||||
<tile id="152" type="WALL"/>
|
|
||||||
<tile id="153" type="WALL"/>
|
|
||||||
<tile id="162" type="WALL"/>
|
|
||||||
<tile id="163" type="WALL"/>
|
|
||||||
<tile id="164" type="WALL"/>
|
|
||||||
<tile id="165" type="WALL"/>
|
|
||||||
<tile id="166" type="WALL"/>
|
|
||||||
<tile id="167" type="WALL"/>
|
|
||||||
<tile id="168" type="WALL"/>
|
|
||||||
<tile id="169" type="WALL"/>
|
|
||||||
<tile id="170" type="WALL"/>
|
|
||||||
<tile id="171" type="WALL"/>
|
|
||||||
<tile id="180" type="WALL"/>
|
|
||||||
<tile id="181" type="WALL"/>
|
|
||||||
<tile id="182" type="WALL"/>
|
|
||||||
<tile id="183" type="WALL"/>
|
|
||||||
<tile id="184" type="WALL"/>
|
|
||||||
<tile id="185" type="WALL"/>
|
|
||||||
<tile id="186" type="WALL"/>
|
|
||||||
<tile id="187" type="WALL"/>
|
|
||||||
<tile id="188" type="WALL"/>
|
|
||||||
<tile id="189" type="WALL"/>
|
|
||||||
<tile id="198" type="WALL"/>
|
|
||||||
<tile id="199" type="WALL"/>
|
|
||||||
<tile id="200" type="WALL"/>
|
|
||||||
<tile id="201" type="WALL"/>
|
|
||||||
<tile id="202" type="WALL"/>
|
|
||||||
<tile id="203" type="WALL"/>
|
|
||||||
<tile id="204" type="WALL"/>
|
|
||||||
<tile id="205" type="WALL"/>
|
|
||||||
<tile id="206" type="WALL"/>
|
|
||||||
<tile id="207" type="WALL"/>
|
|
||||||
</tileset>
|
|
96
examples/the-dungeon-puzzlers-lament/maps/level16.tsx
Normal file
96
examples/the-dungeon-puzzlers-lament/maps/level16.tsx
Normal file
|
@ -0,0 +1,96 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<tileset version="1.10" tiledversion="1.10.1" name="level16" tilewidth="16" tileheight="16" tilecount="81" columns="9">
|
||||||
|
<transformations hflip="1" vflip="1" rotate="0" preferuntransformed="1"/>
|
||||||
|
<image source="level.png" width="144" height="144"/>
|
||||||
|
<tile id="0" type="WALL"/>
|
||||||
|
<tile id="1" type="WALL"/>
|
||||||
|
<tile id="2" type="WALL"/>
|
||||||
|
<tile id="3" type="WALL"/>
|
||||||
|
<tile id="4" type="WALL"/>
|
||||||
|
<tile id="5" type="WALL"/>
|
||||||
|
<tile id="6" type="WALL"/>
|
||||||
|
<tile id="7" type="WALL"/>
|
||||||
|
<tile id="8" type="WALL"/>
|
||||||
|
<tile id="9" type="WALL"/>
|
||||||
|
<tile id="10" type="FLOOR"/>
|
||||||
|
<tile id="11" type="FLOOR"/>
|
||||||
|
<tile id="12" type="FLOOR"/>
|
||||||
|
<tile id="13" type="FLOOR"/>
|
||||||
|
<tile id="14" type="FLOOR"/>
|
||||||
|
<tile id="15" type="FLOOR"/>
|
||||||
|
<tile id="16" type="FLOOR"/>
|
||||||
|
<tile id="17" type="WALL"/>
|
||||||
|
<tile id="18" type="WALL"/>
|
||||||
|
<tile id="19" type="WALL"/>
|
||||||
|
<tile id="20" type="WALL"/>
|
||||||
|
<tile id="21" type="WALL"/>
|
||||||
|
<tile id="22" type="WALL"/>
|
||||||
|
<tile id="23" type="WALL"/>
|
||||||
|
<tile id="24" type="WALL"/>
|
||||||
|
<tile id="25" type="WALL"/>
|
||||||
|
<tile id="26" type="WALL"/>
|
||||||
|
<tile id="27" type="WALL"/>
|
||||||
|
<tile id="28" type="WALL"/>
|
||||||
|
<tile id="29" type="WALL"/>
|
||||||
|
<tile id="30" type="WALL"/>
|
||||||
|
<tile id="31" type="WALL"/>
|
||||||
|
<tile id="32" type="WALL"/>
|
||||||
|
<tile id="36" type="WALL"/>
|
||||||
|
<tile id="37" type="WALL"/>
|
||||||
|
<tile id="38" type="WALL"/>
|
||||||
|
<tile id="39" type="WALL"/>
|
||||||
|
<tile id="40" type="WALL"/>
|
||||||
|
<tile id="45" type="WALL"/>
|
||||||
|
<tile id="46" type="WALL"/>
|
||||||
|
<tile id="47" type="WALL"/>
|
||||||
|
<tile id="48" type="WALL"/>
|
||||||
|
<tile id="49" type="WALL"/>
|
||||||
|
<wangsets>
|
||||||
|
<wangset name="Ground" type="mixed" tile="-1">
|
||||||
|
<wangcolor name="Wall" color="#ff0000" tile="-1" probability="1"/>
|
||||||
|
<wangcolor name="Floor" color="#00ff00" tile="-1" probability="1"/>
|
||||||
|
<wangtile tileid="0" wangid="0,0,1,2,1,0,0,0"/>
|
||||||
|
<wangtile tileid="1" wangid="0,0,1,2,2,2,1,0"/>
|
||||||
|
<wangtile tileid="2" wangid="0,0,1,2,2,2,1,0"/>
|
||||||
|
<wangtile tileid="3" wangid="0,0,1,2,2,2,1,0"/>
|
||||||
|
<wangtile tileid="4" wangid="0,0,1,2,2,2,1,0"/>
|
||||||
|
<wangtile tileid="5" wangid="0,0,1,2,2,2,1,0"/>
|
||||||
|
<wangtile tileid="6" wangid="0,0,1,2,2,2,1,0"/>
|
||||||
|
<wangtile tileid="7" wangid="0,0,1,2,2,2,1,0"/>
|
||||||
|
<wangtile tileid="8" wangid="0,0,0,0,1,2,1,0"/>
|
||||||
|
<wangtile tileid="9" wangid="1,2,2,2,1,0,0,0"/>
|
||||||
|
<wangtile tileid="10" wangid="2,2,2,2,2,2,2,2"/>
|
||||||
|
<wangtile tileid="11" wangid="2,2,2,2,2,2,2,2"/>
|
||||||
|
<wangtile tileid="12" wangid="2,2,2,2,2,2,2,2"/>
|
||||||
|
<wangtile tileid="13" wangid="2,2,2,2,2,2,2,2"/>
|
||||||
|
<wangtile tileid="14" wangid="2,2,2,2,2,2,2,2"/>
|
||||||
|
<wangtile tileid="15" wangid="2,2,2,2,2,2,2,2"/>
|
||||||
|
<wangtile tileid="16" wangid="2,2,2,2,2,2,2,2"/>
|
||||||
|
<wangtile tileid="17" wangid="1,0,0,0,1,2,2,2"/>
|
||||||
|
<wangtile tileid="18" wangid="1,2,1,0,0,0,0,0"/>
|
||||||
|
<wangtile tileid="19" wangid="2,2,1,0,0,0,1,2"/>
|
||||||
|
<wangtile tileid="20" wangid="2,2,1,0,0,0,1,2"/>
|
||||||
|
<wangtile tileid="21" wangid="2,2,1,0,0,0,1,2"/>
|
||||||
|
<wangtile tileid="22" wangid="2,2,1,0,0,0,1,2"/>
|
||||||
|
<wangtile tileid="23" wangid="2,2,1,0,0,0,1,2"/>
|
||||||
|
<wangtile tileid="24" wangid="2,2,1,0,0,0,1,2"/>
|
||||||
|
<wangtile tileid="25" wangid="2,2,1,0,0,0,1,2"/>
|
||||||
|
<wangtile tileid="26" wangid="1,0,0,0,0,0,1,2"/>
|
||||||
|
<wangtile tileid="27" wangid="2,2,2,2,1,0,1,2"/>
|
||||||
|
<wangtile tileid="28" wangid="2,2,1,2,2,2,2,2"/>
|
||||||
|
<wangtile tileid="29" wangid="1,0,0,0,1,2,1,2"/>
|
||||||
|
<wangtile tileid="31" wangid="1,2,2,2,1,2,1,0"/>
|
||||||
|
<wangtile tileid="32" wangid="1,2,2,2,2,2,1,2"/>
|
||||||
|
<wangtile tileid="36" wangid="1,2,2,2,1,0,0,0"/>
|
||||||
|
<wangtile tileid="37" wangid="1,0,0,0,1,2,2,2"/>
|
||||||
|
<wangtile tileid="38" wangid="2,2,2,2,1,2,2,2"/>
|
||||||
|
<wangtile tileid="39" wangid="2,2,1,1,1,2,2,2"/>
|
||||||
|
<wangtile tileid="40" wangid="1,2,2,2,1,1,1,2"/>
|
||||||
|
<wangtile tileid="45" wangid="1,2,2,2,1,0,0,0"/>
|
||||||
|
<wangtile tileid="46" wangid="1,0,0,0,1,2,2,2"/>
|
||||||
|
<wangtile tileid="47" wangid="1,2,1,0,0,0,1,2"/>
|
||||||
|
<wangtile tileid="48" wangid="1,1,1,0,0,0,1,2"/>
|
||||||
|
<wangtile tileid="49" wangid="1,2,2,2,1,0,1,1"/>
|
||||||
|
</wangset>
|
||||||
|
</wangsets>
|
||||||
|
</tileset>
|
|
@ -1,43 +1,33 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="5">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="4">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="RRRRRR"/>
|
<property name="DIRECTIONS" value="RRRRRR"/>
|
||||||
<property name="ITEMS" value="KEY"/>
|
<property name="ITEMS" value="KEY"/>
|
||||||
<property name="NAME" value="Keys open doors"/>
|
<property name="NAME" value="Keys open doors"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Background" width="22" height="20" offsetx="0" offsety="0.181818">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,1,3,4,3,8,6,4,7,9,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,46,11,12,12,14,16,17,14,18,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,19,20,23,20,26,20,21,26,27,0,
|
||||||
0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,37,38,39,40,41,42,43,44,45,52,47,48,49,50,51,52,53,54,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,0,0,
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
0,0,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,0,0,
|
|
||||||
0,0,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Objects">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="1" name="STAIRS" x="135.932" y="73.1136">
|
<object id="1" name="STAIRS" x="134.443" y="72.9947">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="2" name="HERO" x="57.7273" y="72.1818">
|
<object id="2" name="HERO" x="56.2387" y="72.0629">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="4" name="DOOR" x="104.75" y="72.25">
|
<object id="3" name="DOOR" x="103.261" y="72.1311">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,40 +1,30 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="3">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="3">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="DDDL"/>
|
<property name="DIRECTIONS" value="DDDL"/>
|
||||||
<property name="ITEMS" value="DOOR"/>
|
<property name="ITEMS" value="DOOR"/>
|
||||||
<property name="NAME" value="You can't go through locked doors"/>
|
<property name="NAME" value="You can't go through locked doors"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Background" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,1,3,9,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,1,2,3,16,17,18,0,0,0,0,0,0,
|
0,0,0,0,10,16,38,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,19,20,21,34,35,36,0,0,0,0,0,0,
|
0,0,1,8,1073741852,11,18,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,37,38,39,52,53,54,0,0,0,0,0,0,
|
0,0,46,14,16,16,38,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,55,56,57,70,71,72,0,0,0,0,0,0,
|
0,0,19,22,28,17,47,0,0,0,0,
|
||||||
0,0,0,0,0,0,1,2,6,7,1073741951,1073741952,43,44,147,148,0,0,0,0,0,0,
|
0,0,0,0,46,12,38,0,0,0,0,
|
||||||
0,0,0,0,0,0,19,20,24,25,1073741933,1073741934,61,62,165,166,0,0,0,0,0,0,
|
0,0,0,0,19,26,27,0,0,0,0,
|
||||||
0,0,0,0,0,0,37,38,2147483694,2147483693,41,42,47,48,183,184,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,55,56,2147483712,2147483711,59,60,65,66,201,202,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
0,0,0,0,0,0,73,74,75,76,109,110,41,42,165,166,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,91,92,93,94,127,128,59,60,183,184,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,37,38,45,46,147,148,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,55,56,63,64,165,166,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,73,74,75,76,89,90,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,91,92,93,94,107,108,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Objects">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="1" name="HERO" x="104.789" y="38.731">
|
<object id="1" name="HERO" x="87.5735" y="42.2091">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="2" name="STAIRS" x="87.575" y="71.4371">
|
<object id="2" name="STAIRS" x="70.3595" y="74.9152">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,46 +1,36 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="5">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="5">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="RRDURRRRR"/>
|
<property name="DIRECTIONS" value="RRDURRRRR"/>
|
||||||
<property name="ITEMS" value="DOOR"/>
|
<property name="ITEMS" value="DOOR"/>
|
||||||
<property name="NAME" value="Keys open more than one door"/>
|
<property name="NAME" value="Keys open more than one door"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Tile Layer 1" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,1,5,3,5,5,5,9,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,10,17,12,12,16,11,47,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,19,28,14,2147483676,20,25,27,0,0,
|
||||||
0,0,0,0,1,2,3,4,5,6,7,8,9,10,15,16,17,18,0,0,0,0,
|
0,0,0,19,20,27,0,0,0,0,0,
|
||||||
0,0,0,0,19,20,21,22,23,24,25,26,27,28,33,34,35,36,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,37,38,39,40,41,42,43,44,45,46,51,52,53,54,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,55,56,57,58,59,60,61,62,63,64,69,70,71,72,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
0,0,0,0,73,74,109,110,1073741885,1073741886,2147483758,2147483757,81,82,87,88,89,90,0,0,0,0,
|
|
||||||
0,0,0,0,91,92,127,128,1073741867,1073741868,2147483776,2147483775,99,100,105,106,107,108,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,73,74,75,76,2147483722,2147483721,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,91,92,93,94,2147483740,2147483739,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Object Layer 1">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="1" name="HERO" x="56" y="72.375">
|
<object id="1" name="HERO" x="55.3188" y="74.784">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="2" name="KEY" x="72" y="87.375">
|
<object id="2" name="KEY" x="71.3188" y="89.784">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="3" name="DOOR" x="101.625" y="72.875">
|
<object id="3" name="DOOR" x="100.944" y="75.284">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="4" name="STAIRS" x="118.875" y="72">
|
<object id="4" name="STAIRS" x="118.194" y="74.409">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,43 +1,33 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="4" nextobjectid="4">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="4">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="LLLLLLL"/>
|
<property name="DIRECTIONS" value="LLLLLLL"/>
|
||||||
<property name="ITEMS" value="SWORD"/>
|
<property name="ITEMS" value="SWORD"/>
|
||||||
<property name="NAME" value="You need a sword to kill slimes"/>
|
<property name="NAME" value="You need a sword to kill slimes"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Tile Layer 1" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,1,8,3,8,5,2,4,6,9,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,10,13,16,13,12,13,17,14,38,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,19,21,26,24,25,21,24,25,27,0,
|
||||||
0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,0,0,
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
0,0,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,0,0,
|
|
||||||
0,0,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="3" name="Object Layer 1">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="1" name="HERO" x="136" y="72">
|
<object id="1" name="HERO" x="134.575" y="71.8102">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="2" name="SLIME" x="72" y="73.3333">
|
<object id="2" name="SLIME" x="70.5749" y="73.1435">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="3" name="STAIRS" x="41.6667" y="73.3333">
|
<object id="3" name="STAIRS" x="40.2416" y="73.1435">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,40 +1,30 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="4">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="3">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="LLRRRRR"/>
|
<property name="DIRECTIONS" value="LLRRRRR"/>
|
||||||
<property name="ITEMS" value="SLIME,SWORD"/>
|
<property name="ITEMS" value="SLIME,SWORD"/>
|
||||||
<property name="NAME" value="It takes time to kill slimes"/>
|
<property name="NAME" value="It takes time to kill slimes"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Background" width="22" height="20" offsetx="0" offsety="0.181818">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,1,6,5,2,2,6,4,8,9,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,10,17,17,12,15,13,17,17,38,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,19,20,20,20,25,20,22,21,27,0,
|
||||||
0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,37,38,39,40,41,42,43,44,45,52,47,48,49,50,51,52,53,54,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,0,0,
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
0,0,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,0,0,
|
|
||||||
0,0,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Objects">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="1" name="STAIRS" x="136.182" y="72.3636">
|
<object id="1" name="STAIRS" x="135.08" y="73.5784">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="2" name="HERO" x="72.7273" y="72.1818">
|
<object id="2" name="HERO" x="71.625" y="73.3966">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,49 +1,39 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="6">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="6">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="URULUUUUL"/>
|
<property name="DIRECTIONS" value="URULUUUUL"/>
|
||||||
<property name="ITEMS" value="DOOR"/>
|
<property name="ITEMS" value="DOOR"/>
|
||||||
<property name="NAME" value="You can only hold one item"/>
|
<property name="NAME" value="You can only hold one item"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Backgrounds" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,1,2,3,4,5,5,6,12,13,14,15,16,17,18,0,0,0,0,
|
0,0,1,5,6,4,7,3,9,0,0,
|
||||||
0,0,0,0,19,20,21,22,23,23,24,30,31,32,33,34,35,36,0,0,0,0,
|
0,0,10,15,13,12,17,11,38,0,0,
|
||||||
0,0,0,0,37,38,39,40,41,42,43,44,39,40,43,44,1073741989,1073741990,0,0,0,0,
|
0,0,19,23,23,28,16,29,30,0,0,
|
||||||
0,0,0,0,55,56,57,58,59,60,61,62,57,58,61,62,1073741971,1073741972,0,0,0,0,
|
0,0,0,0,0,37,11,11,47,0,0,
|
||||||
0,0,0,0,73,74,75,76,77,78,109,110,43,44,111,112,113,114,0,0,0,0,
|
0,0,0,0,0,46,14,12,18,0,0,
|
||||||
0,0,0,0,91,92,93,94,95,96,127,128,61,62,129,130,131,132,0,0,0,0,
|
0,0,0,0,0,37,17,17,38,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,145,146,45,46,47,48,147,148,0,0,0,0,
|
0,0,0,0,0,19,23,23,27,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,163,164,63,64,65,66,165,166,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
0,0,0,0,0,0,0,0,0,0,181,182,47,48,43,44,183,184,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,199,200,65,66,61,62,201,202,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,1073741987,1073741988,49,50,51,52,1073741989,1073741990,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,1073741969,1073741970,67,68,69,70,1073741971,1073741972,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,73,74,85,86,87,88,89,90,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,91,92,103,104,105,106,107,108,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Objects">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="1" name="HERO" x="103.918" y="105.197">
|
<object id="1" name="HERO" x="103.958" y="123.868">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="2" name="STAIRS" x="88" y="40.6774">
|
<object id="2" name="STAIRS" x="88.0399" y="59.3488">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="3" name="SLIME" x="103.749" y="40">
|
<object id="3" name="SLIME" x="103.789" y="58.6714">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="4" name="SWORD" x="103.749" y="89.11">
|
<object id="4" name="SWORD" x="103.789" y="107.781">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="5" name="KEY" x="121.191" y="75.7318">
|
<object id="5" name="KEY" x="121.231" y="94.4032">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,40 +1,30 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="8">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="3">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="RULDRULDRULD"/>
|
<property name="DIRECTIONS" value="RULDRULDRULD"/>
|
||||||
<property name="ITEMS" value="DOOR,SWORD,SLIME,SQUID_UP"/>
|
<property name="ITEMS" value="DOOR,SWORD,SLIME,SQUID_UP"/>
|
||||||
<property name="NAME" value="Now they're just going in circles"/>
|
<property name="NAME" value="Now they're just going in circles"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Backgrounds" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,1,2,7,8,3,4,13,7,8,9,10,11,12,13,14,15,3221225564,3221225563,
|
0,0,1,7,4,7,5,2,2,2,9,
|
||||||
0,0,0,0,19,20,25,26,21,22,31,25,26,27,28,29,30,31,32,33,3221225546,3221225545,
|
0,0,46,11,11,17,13,12,14,16,18,
|
||||||
0,0,0,0,37,38,41,42,45,46,47,48,49,50,51,52,41,42,41,42,147,148,
|
1,6,1073741852,13,16,11,12,12,13,12,18,
|
||||||
0,0,0,0,55,56,59,60,63,64,65,66,67,68,69,70,59,60,59,60,165,166,
|
46,16,13,13,15,14,13,16,15,13,47,
|
||||||
1,2,1073741917,1073741918,1073741951,1073741952,41,42,41,42,43,44,45,46,47,48,49,50,51,52,183,184,
|
37,17,12,14,12,13,17,11,2147483676,26,27,
|
||||||
19,20,1073741899,1073741900,1073741933,1073741934,59,60,59,60,61,62,63,64,65,66,67,68,69,70,201,202,
|
19,28,11,13,14,11,16,16,18,0,0,
|
||||||
145,146,41,42,41,42,45,46,41,42,41,42,41,42,45,46,41,42,49,50,147,148,
|
0,37,16,12,13,17,17,15,18,0,0,
|
||||||
163,164,59,60,59,60,63,64,59,60,59,60,59,60,63,64,57,58,59,60,165,166,
|
0,19,28,16,15,17,15,11,47,0,0,
|
||||||
181,182,39,40,41,42,43,44,45,46,47,48,49,50,45,46,2147483758,2147483757,77,78,2147483722,2147483721,
|
0,0,46,12,15,12,16,2147483676,27,0,0,
|
||||||
199,200,57,58,59,60,61,62,63,64,65,66,67,68,63,64,2147483776,2147483775,95,96,2147483740,2147483739,
|
0,0,19,21,25,23,22,27,0,0,0
|
||||||
73,74,109,110,49,50,39,40,41,42,43,44,45,46,47,48,147,148,0,0,0,0,
|
|
||||||
91,92,127,128,67,68,57,58,59,60,61,62,63,64,65,66,165,166,0,0,0,0,
|
|
||||||
0,0,37,38,41,42,39,40,41,42,43,44,45,46,47,48,183,184,0,0,0,0,
|
|
||||||
0,0,55,56,59,60,57,58,59,60,61,62,63,64,65,66,201,202,0,0,0,0,
|
|
||||||
0,0,73,74,109,110,43,44,45,46,47,48,49,50,51,52,147,148,0,0,0,0,
|
|
||||||
0,0,91,92,127,128,61,62,63,64,65,66,67,68,69,70,165,166,0,0,0,0,
|
|
||||||
0,0,0,0,181,182,41,42,43,44,45,46,47,48,2147483758,2147483757,2147483722,2147483721,0,0,0,0,
|
|
||||||
0,0,0,0,199,200,59,60,61,62,63,64,65,66,2147483776,2147483775,2147483740,2147483739,0,0,0,0,
|
|
||||||
0,0,0,0,73,74,83,84,77,78,79,80,81,82,2147483722,2147483721,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,91,92,101,102,95,96,97,98,99,100,2147483740,2147483739,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Objects">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="6" name="HERO" x="72" y="72">
|
<object id="1" name="HERO" x="72.9779" y="76.2911">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="7" name="STAIRS" x="120" y="40">
|
<object id="2" name="STAIRS" x="120.978" y="44.2911">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,49 +1,39 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="7">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="6">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="RRRRRRDDRR"/>
|
<property name="DIRECTIONS" value="RRRRRRDDRR"/>
|
||||||
<property name="ITEMS" value="DOOR_SWITCHED_OPEN,SWITCH"/>
|
<property name="ITEMS" value="DOOR_SWITCHED_OPEN,SWITCH"/>
|
||||||
<property name="NAME" value="Be careful of the spikes"/>
|
<property name="NAME" value="Be careful of the spikes"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Tile Layer 1" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,1,7,2,7,6,7,3,2,9,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,10,11,17,12,12,13,16,13,47,0,
|
||||||
0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,0,0,
|
0,37,15,15,17,11,11,17,12,18,0,
|
||||||
0,0,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,0,0,
|
0,46,11,16,17,12,13,16,16,47,0,
|
||||||
0,0,37,38,39,40,47,48,39,48,43,44,47,48,51,52,51,52,1073741895,1073741896,0,0,
|
0,37,13,11,14,12,14,11,17,38,0,
|
||||||
0,0,55,56,57,58,65,66,69,70,61,62,65,66,61,70,69,70,1073741877,1073741878,0,0,
|
0,19,23,25,22,21,26,21,20,27,0,
|
||||||
0,0,145,146,51,52,47,48,1073741881,1073741882,51,48,47,48,47,48,43,44,147,148,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,163,164,69,70,65,66,1073741863,1073741864,61,70,65,66,65,66,61,62,165,166,0,0,
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
0,0,181,182,39,52,47,48,43,44,51,52,39,50,51,52,51,50,183,184,0,0,
|
|
||||||
0,0,199,200,69,70,65,66,61,62,69,70,61,62,69,70,69,70,201,202,0,0,
|
|
||||||
0,0,1073741987,1073741988,51,52,43,48,51,52,39,50,51,52,51,52,39,50,53,54,0,0,
|
|
||||||
0,0,1073741969,1073741970,69,70,61,62,69,70,69,70,69,70,69,70,69,70,71,72,0,0,
|
|
||||||
0,0,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,0,0,
|
|
||||||
0,0,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Object Layer 1">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="1" name="HERO" x="38.0855" y="71.8675">
|
<object id="1" name="HERO" x="38.5701" y="73.6808">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="2" name="SPIKES_DOWN" x="120.066" y="90.8026">
|
<object id="2" name="SPIKES_DOWN" x="120.551" y="92.6159">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="3" name="SWITCH" x="86.284" y="89.7268">
|
<object id="3" name="SWITCH" x="86.7686" y="91.5401">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="4" name="STAIRS" x="120.496" y="108.447">
|
<object id="4" name="STAIRS" x="120.981" y="110.26">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="6" name="SPIKES" x="103.283" y="106.51">
|
<object id="5" name="SPIKES" x="103.768" y="108.323">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,52 +1,42 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="18">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="7">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="ULULULULULULULUL"/>
|
<property name="DIRECTIONS" value="ULULULULULULULUL"/>
|
||||||
<property name="ITEMS" value="DOOR_SWITCHED_OPEN,SWITCH,SWITCH,DOOR_SWITCHED"/>
|
<property name="ITEMS" value="DOOR_SWITCHED_OPEN,SWITCH,SWITCH,DOOR_SWITCHED"/>
|
||||||
<property name="NAME" value="Why do people leave things in awkward places?"/>
|
<property name="NAME" value="Why do people leave things in awkward places?"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Tile Layer 1" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,1,2,5,6,3,6,7,9,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,46,11,17,15,14,17,11,18,0,
|
||||||
0,0,0,0,1,2,3,4,5,6,9,10,11,12,13,14,15,16,17,18,0,0,
|
0,0,2147483678,2147483677,16,14,15,11,11,38,0,
|
||||||
0,0,0,0,19,20,21,22,23,24,27,28,29,30,31,32,33,34,35,36,0,0,
|
0,0,46,12,11,16,15,15,11,18,0,
|
||||||
0,0,0,0,37,38,39,40,51,52,51,52,41,42,45,46,39,40,53,54,0,0,
|
0,0,37,14,15,12,12,14,15,38,0,
|
||||||
0,0,0,0,55,56,57,58,69,70,69,70,59,60,63,64,57,58,71,72,0,0,
|
0,0,19,23,24,25,24,25,20,27,0,
|
||||||
0,0,0,0,2147483762,2147483761,2147483760,2147483759,51,52,39,40,39,40,51,52,45,46,147,148,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,2147483780,2147483779,2147483778,2147483777,69,70,57,58,57,58,69,70,63,64,165,166,0,0,
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
0,0,0,0,145,146,39,40,39,40,45,46,51,52,45,46,45,46,183,184,0,0,
|
|
||||||
0,0,0,0,163,164,57,58,57,58,63,64,69,70,63,64,63,64,201,202,0,0,
|
|
||||||
0,0,0,0,181,182,45,46,41,42,51,52,45,46,51,52,39,40,53,54,0,0,
|
|
||||||
0,0,0,0,199,200,63,64,59,60,69,70,63,64,69,70,57,58,71,72,0,0,
|
|
||||||
0,0,0,0,73,74,75,76,77,78,79,80,81,82,83,86,87,88,89,90,0,0,
|
|
||||||
0,0,0,0,91,92,93,94,95,96,97,98,99,100,101,104,105,106,107,108,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Object Layer 1">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="7" name="HERO" x="134.753" y="104.844">
|
<object id="1" name="HERO" x="133.224" y="106.213">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="8" name="STAIRS" x="56" y="57.7214">
|
<object id="2" name="STAIRS" x="54.4712" y="59.0903">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="10" name="SPIKES_DOWN" x="73.2137" y="71.2773">
|
<object id="3" name="SPIKES_DOWN" x="71.6849" y="72.6462">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="12" name="SLIME" x="71.4924" y="56">
|
<object id="4" name="SLIME" x="69.9636" y="57.3689">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="15" name="SPIKES" x="88.9213" y="56.8607">
|
<object id="5" name="SPIKES" x="87.3925" y="58.2296">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="17" name="SWORD" x="89.3516" y="89.9972">
|
<object id="6" name="SWORD" x="87.8228" y="91.3661">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,55 +1,45 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="15">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="8">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="RRRRRRRRRRRRRR"/>
|
<property name="DIRECTIONS" value="RRRRRRRRRRRRRR"/>
|
||||||
<property name="ITEMS" value="DOOR,SQUID_DOWN,DOOR_SWITCHED,DOOR_SWITCHED_OPEN"/>
|
<property name="ITEMS" value="DOOR,SQUID_DOWN,DOOR_SWITCHED,DOOR_SWITCHED_OPEN"/>
|
||||||
<property name="NAME" value="Why are they running right at it?"/>
|
<property name="NAME" value="Why are they running right at it?"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Tile Layer 1" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,14,3221225564,3221225563,0,0,0,0,
|
0,0,1,8,4,1073741872,2,7,9,0,0,
|
||||||
0,0,0,0,19,20,21,22,23,24,25,26,27,28,29,32,3221225546,3221225545,0,0,0,0,
|
0,0,37,15,15,1073741863,15,13,3221225500,3,9,
|
||||||
0,0,1,2,1073741951,1073741952,43,44,39,40,49,50,41,42,39,40,3221225600,3221225599,6,7,17,18,
|
0,0,19,28,12,12,14,17,12,13,47,
|
||||||
0,0,19,20,1073741933,1073741934,61,62,57,58,67,68,59,60,57,58,3221225582,3221225581,24,25,35,36,
|
0,1,2,1073741852,17,17,15,16,14,14,38,
|
||||||
0,0,145,146,43,44,49,50,39,40,41,42,39,40,41,42,43,44,39,40,53,54,
|
0,37,14,15,17,13,14,14,14,11,18,
|
||||||
0,0,163,164,61,62,67,68,57,58,59,60,57,58,59,60,61,62,57,58,71,72,
|
0,19,28,13,16,15,12,11,13,17,38,
|
||||||
0,0,181,182,39,40,43,44,39,40,43,44,41,42,39,40,41,42,39,40,147,148,
|
0,0,19,25,28,16,16,15,16,15,47,
|
||||||
0,0,199,200,57,58,61,62,57,58,61,62,59,60,57,58,59,60,57,58,165,166,
|
0,0,0,0,10,13,16,17,12,17,38,
|
||||||
0,0,37,38,43,44,41,42,41,42,49,50,39,40,49,50,39,40,39,40,183,184,
|
0,0,0,0,19,28,15,17,13,2147483676,27,
|
||||||
0,0,55,56,61,62,59,60,59,60,67,68,57,58,67,68,57,58,57,58,201,202,
|
0,0,0,0,0,19,21,22,23,27,0
|
||||||
0,0,1073741987,1073741988,43,44,39,40,41,42,41,42,39,40,41,42,41,42,49,50,147,148,
|
|
||||||
0,0,1073741969,1073741970,61,62,57,58,59,60,59,60,57,58,59,60,59,60,67,68,165,166,
|
|
||||||
0,0,145,146,39,40,39,40,39,40,39,40,39,40,39,40,41,42,39,40,183,184,
|
|
||||||
0,0,163,164,57,58,57,58,57,58,57,58,57,58,57,58,59,60,57,58,201,202,
|
|
||||||
0,0,37,38,43,44,41,42,39,40,41,42,41,42,43,44,39,40,39,40,147,148,
|
|
||||||
0,0,55,56,61,62,59,60,57,58,59,60,59,60,61,62,57,58,57,58,165,166,
|
|
||||||
0,0,3221225508,3221225507,75,76,77,78,79,80,109,110,39,40,39,40,39,40,2147483758,2147483757,89,90,
|
|
||||||
0,0,3221225490,3221225489,93,94,95,96,97,98,127,128,57,58,57,58,57,58,2147483776,2147483775,107,108,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,73,74,83,84,85,86,87,88,3221225492,3221225491,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,91,92,101,102,103,104,105,106,3221225474,3221225473,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Object Layer 1">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="7" name="HERO" x="39.3138" y="75.0303">
|
<object id="1" name="HERO" x="39.5158" y="73.1744">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="9" name="SPIKES_DOWN" x="103.552" y="74.7733">
|
<object id="2" name="SPIKES_DOWN" x="103.754" y="72.9174">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="10" name="SQUID_UP" x="103.295" y="141.324">
|
<object id="3" name="SQUID_UP" x="103.497" y="139.468">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="11" name="SWORD" x="103.552" y="122.31">
|
<object id="4" name="SWORD" x="103.754" y="120.454">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="12" name="SWITCH" x="135.414" y="75.5442">
|
<object id="5" name="SWITCH" x="135.616" y="73.6883">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="13" name="STAIRS" x="153.144" y="72.9747">
|
<object id="6" name="STAIRS" x="153.346" y="71.1188">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="14" name="SLIME" x="121.282" y="72.9747">
|
<object id="7" name="SLIME" x="121.484" y="71.1188">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,46 +1,36 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="7">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="5">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="RRRRRRRRR"/>
|
<property name="DIRECTIONS" value="RRRRRRRRR"/>
|
||||||
<property name="ITEMS" value="SWORD,SQUID_DOWN,HERO"/>
|
<property name="ITEMS" value="SWORD,SQUID_DOWN,HERO"/>
|
||||||
<property name="NAME" value="Squids keep stealing the treasure. Why did I put them here again?"/>
|
<property name="NAME" value="Squids keep stealing the treasure. Why did I put them here again?"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Tile Layer 1" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,17,18,0,0,0,0,
|
0,0,0,0,1,8,2,6,9,0,0,
|
||||||
0,0,0,0,0,0,0,0,19,20,21,22,23,24,25,26,35,36,0,0,0,0,
|
0,0,0,0,46,11,11,11,38,0,0,
|
||||||
0,0,0,0,0,0,0,0,145,146,45,46,47,48,49,50,147,148,0,0,0,0,
|
0,0,0,0,10,11,12,14,38,0,0,
|
||||||
0,0,0,0,0,0,0,0,163,164,63,64,65,66,67,68,165,166,0,0,0,0,
|
0,0,0,0,19,28,17,2147483676,27,0,0,
|
||||||
0,0,0,0,0,0,0,0,181,182,45,46,47,48,45,46,53,54,0,0,0,0,
|
0,1,4,8,8,1073741852,13,3221225500,2,9,0,
|
||||||
0,0,0,0,0,0,0,0,199,200,63,64,65,66,63,64,71,72,0,0,0,0,
|
0,46,17,17,17,12,13,11,12,47,0,
|
||||||
0,0,0,0,0,0,0,0,73,74,109,110,43,44,2147483758,2147483757,89,90,0,0,0,0,
|
0,19,26,26,21,28,12,2147483676,24,27,0,
|
||||||
0,0,0,0,0,0,0,0,91,92,127,128,61,62,2147483776,2147483775,107,108,0,0,0,0,
|
0,0,0,0,0,46,15,47,0,0,0,
|
||||||
0,0,1,2,3,4,5,6,7,8,1073741951,1073741952,45,46,3221225600,3221225599,14,15,17,18,0,0,
|
0,0,0,0,0,10,14,47,0,0,0,
|
||||||
0,0,19,20,21,22,23,24,25,26,1073741933,1073741934,63,64,3221225582,3221225581,32,33,35,36,0,0,
|
0,0,0,0,0,19,23,27,0,0,0
|
||||||
0,0,37,38,39,40,39,40,41,42,43,44,45,46,47,48,49,50,53,54,0,0,
|
|
||||||
0,0,55,56,57,58,57,58,59,60,61,62,63,64,65,66,67,68,71,72,0,0,
|
|
||||||
0,0,73,74,2147483729,75,76,77,78,79,109,110,47,48,2147483758,2147483757,86,87,89,90,0,0,
|
|
||||||
0,0,91,92,2147483747,93,94,95,96,97,127,128,65,66,2147483776,2147483775,104,105,107,108,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,145,146,43,44,147,148,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,163,164,61,62,165,166,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,181,182,45,46,183,184,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,199,200,63,64,201,202,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,73,74,75,76,3221225492,3221225491,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,91,92,93,94,3221225474,3221225473,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Object Layer 1">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="2" name="DOOR" x="120.114" y="92.7461">
|
<object id="1" name="DOOR" x="118.616" y="89.6423">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="3" name="SLIME" x="104.552" y="92.7253">
|
<object id="2" name="SLIME" x="103.054" y="89.6215">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="4" name="STAIRS" x="136.268" y="93.2461">
|
<object id="3" name="STAIRS" x="134.77" y="90.1423">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="6" name="KEY" x="104" y="56">
|
<object id="4" name="KEY" x="102.502" y="52.8962">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,49 +1,39 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="6">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="6">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="DDDRRRR"/>
|
<property name="DIRECTIONS" value="DDDRRRR"/>
|
||||||
<property name="ITEMS" value="SQUID_DOWN,DOOR_SWITCHED_OPEN,DOOR_SWITCHED,KEY"/>
|
<property name="ITEMS" value="SQUID_DOWN,DOOR_SWITCHED_OPEN,DOOR_SWITCHED,KEY"/>
|
||||||
<property name="NAME" value="I'm sorry squid"/>
|
<property name="NAME" value="I'm sorry squid"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Tile Layer 1" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,1,5,9,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,1,2,6,7,17,18,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,37,14,18,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,19,20,24,25,35,36,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,46,13,18,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,37,38,39,40,147,148,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,10,12,3221225500,6,6,9,0,0,
|
||||||
0,0,0,0,0,0,55,56,57,58,165,166,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,37,15,13,14,14,47,0,0,
|
||||||
0,0,0,0,0,0,145,146,41,42,183,184,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,46,12,2147483676,21,21,27,0,0,
|
||||||
0,0,0,0,0,0,163,164,59,60,201,202,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,37,16,47,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,181,182,43,44,3221225600,3221225599,13,14,15,16,17,18,0,0,0,0,
|
0,0,0,19,25,27,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,199,200,61,62,3221225582,3221225581,31,32,33,34,35,36,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
0,0,0,0,0,0,1073742023,1073742024,39,40,41,42,43,44,43,44,53,54,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,1073742005,1073742006,57,58,59,60,61,62,61,62,71,72,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,1073741987,1073741988,47,48,2147483758,2147483757,75,76,80,81,89,90,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,1073741969,1073741970,65,66,2147483776,2147483775,93,94,98,99,107,108,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,37,38,49,50,147,148,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,55,56,67,68,165,166,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,73,74,75,76,89,90,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,91,92,93,94,107,108,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Object Layer 1">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="1" name="HERO" x="73.4886" y="42.9112">
|
<object id="1" name="HERO" x="70.8948" y="41.3376">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="2" name="SWITCH" x="71.433" y="125.393">
|
<object id="2" name="SWITCH" x="68.8392" y="123.819">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="3" name="SPIKES" x="105.351" y="91.2183">
|
<object id="3" name="SPIKES" x="102.757" y="89.6447">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="4" name="STAIRS" x="120.511" y="89.6766">
|
<object id="4" name="STAIRS" x="117.917" y="88.103">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="5" name="DOOR" x="88.3919" y="87.8779">
|
<object id="5" name="DOOR" x="85.7981" y="86.3043">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,52 +1,42 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="8">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="7">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="RDRDRDRRRDDDRR"/>
|
<property name="DIRECTIONS" value="RDRDRDRRRDDDRR"/>
|
||||||
<property name="ITEMS" value="SWITCH,SWORD,DOOR,SLIME,SLIME"/>
|
<property name="ITEMS" value="SWITCH,SWORD,DOOR,SLIME,SLIME"/>
|
||||||
<property name="NAME" value="The key is right there!"/>
|
<property name="NAME" value="The key is right there!"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Tile Layer 1" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,1,2,9,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,1,2,5,6,1073741931,1073741932,0,0,0,0,0,0,
|
0,1,7,4,5,1073741852,16,3221225500,6,9,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,19,20,23,24,1073741913,1073741914,0,0,0,0,0,0,
|
0,37,15,14,11,11,11,12,17,18,0,
|
||||||
0,0,3221225580,3221225579,5,6,7,8,9,5,1073741951,1073741952,43,44,3221225600,3221225599,5,6,2147483650,2147483649,0,0,
|
0,46,14,17,16,11,15,11,13,18,0,
|
||||||
0,0,3221225562,3221225561,23,24,25,26,27,23,1073741933,1073741934,61,62,3221225582,3221225581,23,24,2147483668,2147483667,0,0,
|
0,46,13,12,11,14,16,11,16,18,0,
|
||||||
0,0,37,38,47,48,39,40,41,42,47,48,39,40,45,46,41,42,53,54,0,0,
|
0,10,14,16,13,13,13,14,29,30,0,
|
||||||
0,0,55,56,65,66,57,58,59,60,65,66,57,58,63,64,59,60,71,72,0,0,
|
0,37,15,11,14,14,39,16,13,38,0,
|
||||||
0,0,1073741987,1073741988,39,40,47,48,47,48,41,42,39,40,47,48,45,46,147,148,0,0,
|
0,19,24,26,22,22,48,20,25,27,0,
|
||||||
0,0,1073741969,1073741970,57,58,65,66,65,66,59,60,57,58,65,66,63,64,165,166,0,0,
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
0,0,37,38,39,40,39,40,41,42,39,40,39,40,47,48,41,42,183,184,0,0,
|
|
||||||
0,0,55,56,57,58,57,58,59,60,57,58,57,58,65,66,59,60,201,202,0,0,
|
|
||||||
0,0,145,146,47,48,47,48,47,48,47,48,41,42,45,46,111,112,113,114,0,0,
|
|
||||||
0,0,163,164,65,66,65,66,65,66,65,66,59,60,63,64,129,130,131,132,0,0,
|
|
||||||
0,0,37,38,47,48,43,44,47,48,41,42,149,150,39,40,39,40,53,54,0,0,
|
|
||||||
0,0,55,56,65,66,61,62,65,66,59,60,167,168,57,58,57,58,71,72,0,0,
|
|
||||||
0,0,73,74,75,76,77,78,79,80,81,82,185,186,85,86,87,88,89,90,0,0,
|
|
||||||
0,0,91,92,93,94,95,96,97,98,99,100,203,204,103,104,105,106,107,108,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Object Layer 1">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="1" name="HERO" x="40" y="88">
|
<object id="1" name="HERO" x="39.2614" y="90.2111">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="2" name="STAIRS" x="136" y="120">
|
<object id="2" name="STAIRS" x="135.261" y="122.211">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="3" name="DOOR" x="120" y="120">
|
<object id="3" name="DOOR" x="119.261" y="122.211">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="4" name="KEY" x="104" y="72">
|
<object id="4" name="KEY" x="103.261" y="74.2111">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="5" name="SQUID_DOWN" x="104" y="40">
|
<object id="5" name="SQUID_DOWN" x="103.261" y="42.2111">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="6" name="DOOR_SWITCHED" x="104" y="56">
|
<object id="6" name="DOOR_SWITCHED" x="103.261" y="58.2111">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,46 +1,36 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="22">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="5">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="DDDRRRRRRRRRRRRU"/>
|
<property name="DIRECTIONS" value="DDDRRRRRRRRRRRRU"/>
|
||||||
<property name="ITEMS" value="SQUID_UP,SQUID_DOWN,SWITCH,SPIKES,DOOR,KEY"/>
|
<property name="ITEMS" value="SQUID_UP,SQUID_DOWN,SWITCH,SPIKES,DOOR,KEY"/>
|
||||||
<property name="NAME" value="We used to have treasure in there"/>
|
<property name="NAME" value="We used to have treasure in there"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Backgrounds" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,12,2147483650,2147483649,0,0,
|
0,0,0,1,4,8,3,2,3,9,0,
|
||||||
0,0,0,0,0,0,19,20,21,22,23,24,25,26,27,28,29,30,2147483668,2147483667,0,0,
|
0,0,0,46,11,12,14,16,14,38,0,
|
||||||
0,0,0,0,0,0,2147483814,2147483813,45,46,49,50,45,46,51,52,45,46,2147483794,2147483793,0,0,
|
0,0,0,46,15,17,13,13,15,3221225500,9,
|
||||||
0,0,0,0,0,0,2147483832,2147483831,63,64,67,68,63,64,69,70,63,64,2147483812,2147483811,0,0,
|
1,6,1073741873,1073741874,13,15,17,17,11,13,38,
|
||||||
0,0,0,0,0,0,37,38,51,52,45,46,49,50,43,44,47,48,3221225600,3221225599,3221225564,3221225563,
|
46,13,1073741864,1073741865,17,14,16,15,13,13,47,
|
||||||
0,0,0,0,0,0,55,56,69,70,63,64,67,68,61,62,65,66,3221225582,3221225581,3221225546,3221225545,
|
10,11,13,1073741863,11,16,15,14,17,11,18,
|
||||||
1073741915,1073741916,5,6,1073742029,1073742030,153,154,45,46,45,46,43,44,47,48,51,52,39,40,147,148,
|
46,17,13,14,11,17,14,11,12,16,47,
|
||||||
1073741897,1073741898,23,24,1073742011,1073742012,171,172,63,64,63,64,61,62,65,66,69,70,57,58,165,166,
|
37,15,2147483676,20,23,28,12,12,16,15,18,
|
||||||
3221225638,3221225637,39,40,1073741993,1073741994,153,154,43,44,43,44,43,44,51,52,47,48,47,48,183,184,
|
19,21,27,0,0,19,25,20,26,22,27,
|
||||||
3221225620,3221225619,57,58,1073741975,1073741976,171,172,61,62,61,62,61,62,69,70,65,66,65,66,201,202,
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
3221225638,3221225637,39,40,39,40,1073741991,1073741992,45,46,51,52,41,42,47,48,47,48,51,52,147,148,
|
|
||||||
3221225620,3221225619,57,58,57,58,1073741973,1073741974,63,64,69,70,59,60,65,66,65,66,69,70,165,166,
|
|
||||||
145,146,45,46,39,40,39,40,39,40,45,46,51,52,41,42,51,52,49,50,147,148,
|
|
||||||
163,164,63,64,57,58,57,58,57,58,63,64,69,70,59,60,69,70,67,68,165,166,
|
|
||||||
145,146,47,48,2147483758,2147483757,79,80,81,82,109,110,45,46,47,48,49,50,47,48,183,184,
|
|
||||||
163,164,65,66,2147483776,2147483775,97,98,99,100,127,128,63,64,65,66,67,68,65,66,201,202,
|
|
||||||
1073741843,1073741844,79,80,2147483722,2147483721,0,0,0,0,73,74,1073741847,1073741848,1073741849,1073741850,1073741851,1073741852,1073741853,1073741854,2147483722,2147483721,
|
|
||||||
1073741825,1073741826,97,98,2147483740,2147483739,0,0,0,0,91,92,1073741829,1073741830,1073741831,1073741832,1073741833,1073741834,1073741835,1073741836,2147483740,2147483739,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Objects">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="12" name="HERO" x="24" y="72">
|
<object id="1" name="HERO" x="22.9531" y="73.3414">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="18" name="DOOR" x="24" y="104">
|
<object id="2" name="DOOR" x="22.9531" y="105.341">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="20" name="SWORD" x="88" y="56">
|
<object id="3" name="SWORD" x="86.9531" y="57.3414">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="21" name="STAIRS" x="120" y="88">
|
<object id="4" name="STAIRS" x="118.953" y="89.3414">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="6">
|
||||||
|
<properties>
|
||||||
|
<property name="DIRECTIONS" value="RDDL"/>
|
||||||
|
<property name="ITEMS" value="DOOR_SWITCHED,DOOR_SWITCHED_OPEN"/>
|
||||||
|
<property name="NAME" value="Squids, they have a mind of their own"/>
|
||||||
|
</properties>
|
||||||
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
|
<data encoding="csv">
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,1,7,9,0,0,0,0,0,0,0,
|
||||||
|
0,10,14,47,0,0,1,5,2,9,0,
|
||||||
|
0,46,11,18,0,1,1073741852,16,16,38,0,
|
||||||
|
0,10,17,47,0,10,13,11,15,47,0,
|
||||||
|
0,10,16,47,0,10,13,12,11,18,0,
|
||||||
|
0,10,13,18,0,19,28,13,2147483676,27,0,
|
||||||
|
0,10,11,38,0,0,19,23,27,0,0,
|
||||||
|
0,19,21,27,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
</data>
|
||||||
|
</layer>
|
||||||
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
|
<object id="1" name="SQUID_DOWN" x="39.9103" y="42.1559">
|
||||||
|
<point/>
|
||||||
|
</object>
|
||||||
|
<object id="2" name="SWITCH" x="39.9103" y="74.1559">
|
||||||
|
<point/>
|
||||||
|
</object>
|
||||||
|
<object id="3" name="HERO" x="119.91" y="58.1559">
|
||||||
|
<point/>
|
||||||
|
</object>
|
||||||
|
<object id="4" name="STAIRS" x="103.91" y="74.1559">
|
||||||
|
<point/>
|
||||||
|
</object>
|
||||||
|
<object id="5" name="SPIKES" x="135.91" y="74.1559">
|
||||||
|
<point/>
|
||||||
|
</object>
|
||||||
|
</objectgroup>
|
||||||
|
</map>
|
|
@ -1,52 +1,42 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="12">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="7">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="DDDRRRDDDLLL"/>
|
<property name="DIRECTIONS" value="DDDRRRDDDLLL"/>
|
||||||
<property name="ITEMS" value="SWITCH,DOOR"/>
|
<property name="ITEMS" value="SWITCH,DOOR"/>
|
||||||
<property name="NAME" value="Why did I put that door there?"/>
|
<property name="NAME" value="Why did I put that door there?"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Backgrounds" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,1,2,15,16,17,18,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,1,8,9,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,19,20,33,34,35,36,0,0,0,0,0,0,0,0,0,0,
|
1,7,2,32,16,3221225500,9,0,0,0,0,
|
||||||
1,2,6,7,8,9,117,118,43,44,3221225600,3221225599,17,18,0,0,0,0,0,0,0,0,
|
10,12,16,1073741863,12,13,47,0,0,0,0,
|
||||||
19,20,24,25,26,27,135,136,61,62,3221225582,3221225581,35,36,0,0,0,0,0,0,0,0,
|
10,13,17,15,15,12,3221225500,4,5,2,9,
|
||||||
145,146,39,40,45,46,1073741991,1073741992,45,46,51,52,53,54,0,0,0,0,0,0,0,0,
|
46,11,11,14,16,12,15,14,15,13,18,
|
||||||
163,164,57,58,63,64,1073741973,1073741974,63,64,69,70,71,72,0,0,0,0,0,0,0,0,
|
37,13,14,39,12,14,39,14,17,13,38,
|
||||||
181,182,45,46,45,46,47,48,49,50,39,40,3221225600,3221225599,11,12,13,14,15,16,17,18,
|
46,11,40,41,16,29,33,11,13,13,18,
|
||||||
199,200,63,64,63,64,65,66,67,68,57,58,3221225582,3221225581,29,30,31,32,33,34,35,36,
|
19,22,49,50,16,12,15,13,12,12,38,
|
||||||
145,146,45,46,47,48,45,46,45,46,39,40,43,44,47,48,39,40,45,46,147,148,
|
0,0,0,46,12,13,39,15,2147483676,21,27,
|
||||||
163,164,63,64,65,66,63,64,63,64,57,58,61,62,65,66,57,58,63,64,165,166,
|
0,0,0,19,23,25,48,22,27,0,0
|
||||||
181,182,47,48,39,40,149,150,47,48,47,48,149,150,39,40,45,46,47,48,183,184,
|
|
||||||
199,200,65,66,57,58,167,168,65,66,65,66,167,168,57,58,63,64,65,66,201,202,
|
|
||||||
37,38,45,46,151,152,153,154,39,40,111,112,119,120,47,48,51,52,47,48,165,166,
|
|
||||||
55,56,63,64,169,170,171,172,57,58,129,130,137,138,65,66,69,70,65,66,183,184,
|
|
||||||
73,74,75,76,187,188,189,190,47,48,39,40,47,48,51,52,51,52,39,40,147,148,
|
|
||||||
91,92,93,94,205,206,207,208,65,66,57,58,65,66,69,70,69,70,57,58,165,166,
|
|
||||||
0,0,0,0,0,0,145,146,47,48,39,40,149,150,51,52,2147483758,2147483757,77,78,2147483722,2147483721,
|
|
||||||
0,0,0,0,0,0,163,164,65,66,57,58,167,168,69,70,2147483776,2147483775,95,96,2147483740,2147483739,
|
|
||||||
0,0,0,0,0,0,73,74,75,76,77,78,185,186,79,80,2147483722,2147483721,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,91,92,93,94,95,96,203,204,97,98,2147483740,2147483739,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Objects">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="6" name="DOOR_SWITCHED" x="72" y="56">
|
<object id="1" name="DOOR_SWITCHED" x="70.8105" y="58.7495">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="7" name="DOOR_SWITCHED_OPEN" x="104" y="72">
|
<object id="2" name="DOOR_SWITCHED_OPEN" x="102.81" y="74.7495">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="8" name="HERO" x="72" y="24">
|
<object id="3" name="HERO" x="70.8105" y="26.7495">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="9" name="SQUID_DOWN" x="24" y="72">
|
<object id="4" name="SQUID_DOWN" x="22.8105" y="74.7495">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="10" name="SPIKES_DOWN" x="104" y="120">
|
<object id="5" name="SPIKES_DOWN" x="102.81" y="122.749">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="11" name="STAIRS" x="88" y="120">
|
<object id="6" name="STAIRS" x="86.8105" y="122.749">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,52 +1,42 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="18">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="7">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="RRDDRRRRRR"/>
|
<property name="DIRECTIONS" value="RRDDRRRRRR"/>
|
||||||
<property name="ITEMS" value="KEY,SQUID_DOWN,SQUID_DOWN"/>
|
<property name="ITEMS" value="KEY,SQUID_DOWN,SQUID_DOWN"/>
|
||||||
<property name="NAME" value="Why does no one look where they're going?"/>
|
<property name="NAME" value="Why does no one look where they're going?"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Backgrounds" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,1,3,7,6,9,0,0,
|
||||||
0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,2147483650,2147483649,0,0,0,0,
|
0,0,0,0,10,13,12,13,3221225500,9,0,
|
||||||
0,0,0,0,0,0,0,0,19,20,21,22,23,24,25,26,2147483668,2147483667,0,0,0,0,
|
0,0,0,0,37,16,12,11,11,38,0,
|
||||||
0,0,0,0,0,0,0,0,145,146,43,44,47,48,49,50,3221225600,3221225599,17,18,0,0,
|
0,1,2,5,1073741852,12,17,15,14,47,0,
|
||||||
0,0,0,0,0,0,0,0,163,164,61,62,65,66,67,68,3221225582,3221225581,35,36,0,0,
|
0,46,15,12,12,16,13,14,13,18,0,
|
||||||
0,0,0,0,0,0,0,0,37,38,51,52,39,40,49,50,45,46,53,54,0,0,
|
0,19,28,12,11,39,14,14,2147483676,27,0,
|
||||||
0,0,0,0,0,0,0,0,55,56,69,70,57,58,67,68,63,64,71,72,0,0,
|
0,0,19,20,25,48,25,21,27,0,0,
|
||||||
0,0,1,2,8,9,10,11,1073741951,1073741952,51,52,43,44,45,46,49,50,147,148,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,19,20,26,27,28,29,1073741933,1073741934,69,70,61,62,63,64,67,68,165,166,0,0,
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
0,0,37,38,43,44,39,40,45,46,47,48,47,48,47,48,43,44,183,184,0,0,
|
|
||||||
0,0,55,56,61,62,57,58,63,64,65,66,65,66,65,66,61,62,201,202,0,0,
|
|
||||||
0,0,73,74,109,110,49,50,47,48,149,150,43,44,47,48,2147483758,2147483757,89,90,0,0,
|
|
||||||
0,0,91,92,127,128,67,68,65,66,167,168,61,62,65,66,2147483776,2147483775,107,108,0,0,
|
|
||||||
0,0,0,0,73,74,84,85,86,87,185,186,83,79,79,80,2147483722,2147483721,0,0,0,0,
|
|
||||||
0,0,0,0,91,92,102,103,104,105,203,204,101,97,97,98,2147483740,2147483739,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Objects">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="12" name="HERO" x="40" y="88">
|
<object id="1" name="HERO" x="40.9779" y="91.8723">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="13" name="DOOR" x="72" y="104">
|
<object id="2" name="DOOR" x="72.9779" y="107.872">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="14" name="DOOR" x="88" y="88">
|
<object id="3" name="DOOR" x="88.9779" y="91.8723">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="15" name="SPIKES" x="88" y="72">
|
<object id="4" name="SPIKES" x="88.9779" y="75.8723">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="16" name="SWITCH" x="120" y="56">
|
<object id="5" name="SWITCH" x="120.978" y="59.8723">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="17" name="STAIRS" x="120" y="88">
|
<object id="6" name="STAIRS" x="120.978" y="91.8723">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,61 +1,51 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="10">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="10">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="RRRRRRRRRRRRRRR"/>
|
<property name="DIRECTIONS" value="RRRRRRRRRRRRRRR"/>
|
||||||
<property name="ITEMS" value="SWITCH,SWITCH,SWITCH,DOOR_SWITCHED,DOOR_SWITCHED_OPEN,SQUID_UP,SQUID_UP,SQUID_DOWN,SQUID_DOWN"/>
|
<property name="ITEMS" value="SWITCH,SWITCH,SWITCH,DOOR_SWITCHED,DOOR_SWITCHED_OPEN,SQUID_UP,SQUID_UP,SQUID_DOWN,SQUID_DOWN"/>
|
||||||
<property name="NAME" value="DO I HAVE TO DO EVERYTHING?"/>
|
<property name="NAME" value="DO I HAVE TO DO EVERYTHING?"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Tile Layer 1" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,0,0,
|
0,1,4,3221225492,7,2147483655,3,1073741844,1073741850,2147483649,0,
|
||||||
0,0,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,0,0,
|
0,37,2147483659,11,2147483659,2147483665,3221225486,3221225484,1073741839,3221225518,0,
|
||||||
0,0,37,38,41,42,43,44,45,46,47,48,49,50,51,52,49,50,53,54,0,0,
|
0,10,17,1073741836,11,1073741838,15,3221225485,3221225485,3221225509,0,
|
||||||
0,0,55,56,59,60,61,62,63,64,65,66,67,68,69,70,67,68,71,72,0,0,
|
0,37,14,14,15,12,12,3221225483,3221225486,2147483694,0,
|
||||||
0,0,37,38,49,50,39,40,41,42,43,44,45,46,47,48,49,50,53,54,0,0,
|
0,37,17,11,17,16,11,1073741836,1073741837,3221225509,0,
|
||||||
0,0,55,56,67,68,57,58,59,60,61,62,63,64,65,66,67,68,71,72,0,0,
|
0,46,15,17,13,12,16,2147483665,2147483662,1073741862,0,
|
||||||
0,0,145,146,41,42,43,44,45,46,47,48,49,50,51,52,49,50,147,148,0,0,
|
0,19,23,24,21,21,22,26,25,1073741833,0,
|
||||||
0,0,163,164,59,60,61,62,63,64,65,66,67,68,69,70,67,68,165,166,0,0,
|
1,1073741844,2147483651,1073741847,1073741846,1073741848,1073741847,7,3221225494,4,9,
|
||||||
0,0,37,38,49,50,39,40,41,42,43,44,45,46,47,48,49,50,183,184,0,0,
|
10,2147483664,1073741840,1073741837,1073741837,3221225486,1073741840,1073741836,12,16,18,
|
||||||
0,0,55,56,67,68,57,58,59,60,61,62,63,64,65,66,67,68,201,202,0,0,
|
19,2147483672,2147483673,1073741831,1073741832,1073741829,21,1073741826,22,22,27
|
||||||
0,0,37,38,41,42,43,44,45,46,47,48,49,50,51,52,49,50,53,54,0,0,
|
|
||||||
0,0,55,56,59,60,61,62,63,64,65,66,67,68,69,70,67,68,71,72,0,0,
|
|
||||||
0,0,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,0,0,
|
|
||||||
0,0,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,0,0,
|
|
||||||
1,2,3,4,3,4,5,6,7,8,9,10,11,12,13,14,15,16,15,16,17,18,
|
|
||||||
19,20,21,22,21,22,23,24,25,26,27,28,29,30,31,32,33,34,33,34,35,36,
|
|
||||||
37,38,39,40,39,40,41,42,43,44,45,46,47,48,49,50,51,52,51,52,53,54,
|
|
||||||
55,56,57,58,57,58,59,60,61,62,63,64,65,66,67,68,69,70,69,70,71,72,
|
|
||||||
73,74,75,76,75,76,77,78,79,80,81,82,83,84,85,86,87,88,87,88,89,90,
|
|
||||||
91,92,93,94,93,94,95,96,97,98,99,100,101,102,103,104,105,106,105,106,107,108
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Object Layer 1">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="1" name="STAIRS" x="151.349" y="138.188">
|
<object id="1" name="STAIRS" x="151.602" y="138.188">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="2" name="HERO" x="21.7659" y="137.682">
|
<object id="2" name="HERO" x="22.019" y="137.682">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="3" name="SPIKES" x="118.447" y="140.213">
|
<object id="3" name="SPIKES" x="118.7" y="140.213">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="4" name="SPIKES" x="102.755" y="142.744">
|
<object id="4" name="SPIKES" x="103.008" y="142.744">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="5" name="DOOR_SWITCHED_OPEN" x="55.6802" y="139.2">
|
<object id="5" name="DOOR_SWITCHED_OPEN" x="55.9333" y="139.2">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="6" name="SPIKES" x="39.7354" y="137.429">
|
<object id="6" name="SPIKES" x="39.9885" y="137.429">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="7" name="SPIKES_DOWN" x="71.3719" y="141.984">
|
<object id="7" name="SPIKES_DOWN" x="71.625" y="141.984">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="8" name="DOOR_SWITCHED" x="88.5821" y="134.645">
|
<object id="8" name="DOOR_SWITCHED" x="88.8352" y="134.645">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="9" name="SPIKES_DOWN" x="135.151" y="141.984">
|
<object id="9" name="SPIKES_DOWN" x="135.404" y="141.984">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,46 +1,36 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="14">
|
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="11" height="10" tilewidth="16" tileheight="16" infinite="0" nextlayerid="3" nextobjectid="5">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="DIRECTIONS" value="RLRRRD"/>
|
<property name="DIRECTIONS" value="RLRRRD"/>
|
||||||
<property name="ITEMS" value="DOOR_SWITCHED"/>
|
<property name="ITEMS" value="DOOR_SWITCHED"/>
|
||||||
<property name="NAME" value="Switches toggle things"/>
|
<property name="NAME" value="Switches toggle things"/>
|
||||||
</properties>
|
</properties>
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
<tileset firstgid="1" source="../level16.tsx"/>
|
||||||
<layer id="1" name="Backgrounds" width="22" height="20">
|
<layer id="1" name="Tile Layer 1" width="11" height="10">
|
||||||
<data encoding="csv">
|
<data encoding="csv">
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,1,6,2,5,8,6,9,0,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,37,12,13,16,11,13,38,0,0,
|
||||||
0,0,0,0,1,2,3,4,5,5,6,12,13,14,15,16,17,18,0,0,0,0,
|
0,0,19,24,23,28,13,29,30,0,0,
|
||||||
0,0,0,0,19,20,21,22,23,23,24,30,31,32,33,34,35,36,0,0,0,0,
|
0,0,0,0,0,10,16,14,18,0,0,
|
||||||
0,0,0,0,37,38,39,40,41,42,43,44,39,40,43,44,1073741989,1073741990,0,0,0,0,
|
0,0,0,0,0,19,22,21,27,0,0,
|
||||||
0,0,0,0,55,56,57,58,59,60,61,62,57,58,61,62,1073741971,1073741972,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,73,74,75,76,77,78,109,110,43,44,111,112,113,114,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0,
|
||||||
0,0,0,0,91,92,93,94,95,96,127,128,61,62,129,130,131,132,0,0,0,0,
|
0,0,0,0,0,0,0,0,0,0,0
|
||||||
0,0,0,0,0,0,0,0,0,0,37,38,49,50,51,52,183,184,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,55,56,67,68,69,70,201,202,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,73,74,75,76,81,82,89,90,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,91,92,93,94,99,100,107,108,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
</data>
|
||||||
</layer>
|
</layer>
|
||||||
<objectgroup id="2" name="Objects">
|
<objectgroup id="2" name="Object Layer 1">
|
||||||
<object id="1" name="HERO" x="72" y="56">
|
<object id="1" name="HERO" x="72.4717" y="58.9704">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="9" name="STAIRS" x="104" y="72">
|
<object id="2" name="STAIRS" x="104.472" y="74.9704">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="11" name="SWITCH" x="56" y="56">
|
<object id="3" name="SWITCH" x="56.4717" y="58.9704">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
<object id="13" name="SPIKES" x="120" y="56">
|
<object id="4" name="SPIKES" x="120.472" y="58.9704">
|
||||||
<point/>
|
<point/>
|
||||||
</object>
|
</object>
|
||||||
</objectgroup>
|
</objectgroup>
|
||||||
|
|
|
@ -1,50 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="22" height="20" tilewidth="8" tileheight="8" infinite="0" nextlayerid="3" nextobjectid="15">
|
|
||||||
<properties>
|
|
||||||
<property name="DIRECTIONS" value="RDDL"/>
|
|
||||||
<property name="ITEMS" value="DOOR_SWITCHED,DOOR_SWITCHED_OPEN"/>
|
|
||||||
<property name="NAME" value="Squids, they have a mind of their own"/>
|
|
||||||
</properties>
|
|
||||||
<tileset firstgid="1" source="../level.tsx"/>
|
|
||||||
<layer id="1" name="Backgrounds" width="22" height="20">
|
|
||||||
<data encoding="csv">
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,1,2,3,4,2147483650,2147483649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,19,20,21,22,2147483668,2147483667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,145,146,51,52,147,148,0,0,0,0,1,2,7,8,9,10,2147483650,2147483649,0,0,
|
|
||||||
0,0,163,164,69,70,165,166,0,0,0,0,19,20,25,26,27,28,2147483668,2147483667,0,0,
|
|
||||||
0,0,181,182,49,50,183,184,0,0,1,2,1073741951,1073741952,39,40,41,42,147,148,0,0,
|
|
||||||
0,0,199,200,67,68,201,202,0,0,19,20,1073741933,1073741934,57,58,59,60,165,166,0,0,
|
|
||||||
0,0,37,38,49,50,2147483794,2147483793,0,0,145,146,39,40,41,42,41,42,183,184,0,0,
|
|
||||||
0,0,55,56,67,68,2147483812,2147483811,0,0,163,164,57,58,59,60,59,60,201,202,0,0,
|
|
||||||
0,0,145,146,49,50,2147483830,2147483829,0,0,181,182,49,50,47,48,49,50,183,184,0,0,
|
|
||||||
0,0,163,164,67,68,2147483848,2147483847,0,0,199,200,67,68,65,66,67,68,201,202,0,0,
|
|
||||||
0,0,181,182,43,44,147,148,0,0,1073741843,1073741844,109,110,39,40,2147483758,2147483757,2147483722,2147483721,0,0,
|
|
||||||
0,0,199,200,61,62,165,166,0,0,1073741825,1073741826,127,128,57,58,2147483776,2147483775,2147483740,2147483739,0,0,
|
|
||||||
0,0,37,38,45,46,183,184,0,0,0,0,1073741843,1073741844,1073741847,1073741848,2147483722,2147483721,0,0,0,0,
|
|
||||||
0,0,55,56,63,64,201,202,0,0,0,0,1073741825,1073741826,1073741829,1073741830,2147483740,2147483739,0,0,0,0,
|
|
||||||
0,0,73,74,77,78,3221225492,3221225491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,91,92,95,96,3221225474,3221225473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
||||||
</data>
|
|
||||||
</layer>
|
|
||||||
<objectgroup id="2" name="Objects">
|
|
||||||
<object id="8" name="SQUID_DOWN" x="40" y="40">
|
|
||||||
<point/>
|
|
||||||
</object>
|
|
||||||
<object id="9" name="SWITCH" x="40" y="72">
|
|
||||||
<point/>
|
|
||||||
</object>
|
|
||||||
<object id="10" name="HERO" x="120" y="56">
|
|
||||||
<point/>
|
|
||||||
</object>
|
|
||||||
<object id="11" name="STAIRS" x="104" y="72">
|
|
||||||
<point/>
|
|
||||||
</object>
|
|
||||||
<object id="14" name="SPIKES" x="136" y="72">
|
|
||||||
<point/>
|
|
||||||
</object>
|
|
||||||
</objectgroup>
|
|
||||||
</map>
|
|
Loading…
Reference in a new issue