diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..4351bfcc3efb75bd5b59cdec87c1705f574f93f5 Binary files /dev/null and b/.DS_Store differ diff --git a/generate_sprite_metadata.py b/generate_sprite_metadata.py new file mode 100644 index 0000000000000000000000000000000000000000..a3c22af971c3eb1386d8afed35c5d3980559d560 --- /dev/null +++ b/generate_sprite_metadata.py @@ -0,0 +1,105 @@ +import json +import os + +def load_metadata(): + """Load metadata from metadata.jsonl""" + metadata_path = "metadata.jsonl" + metadata = {} + + if not os.path.exists(metadata_path): + print(f"Error: '{metadata_path}' file not found!") + return metadata + + # Parse JSONL file and map descriptions by sprite ID + try: + with open(metadata_path, 'r') as f: + for line in f: + if line.strip(): + entry = json.loads(line) + # Extract sprite ID from file_name (e.g., "images/23.png" -> "23") + sprite_id = entry["file_name"].split("/")[1].split(".")[0] + metadata[sprite_id] = entry["text"] + except Exception as e: + print(f"Error reading metadata file: {str(e)}") + + print(f"Loaded {len(metadata)} entries from metadata file") + return metadata + +def extract_info_safely(description): + """Extract information from description with error handling""" + info = { + "frames": "unknown", + "action": "unknown", + "direction": "unknown", + "character": "unknown" + } + + try: + # Standard format: "X-frame sprite animation of: CHARACTER, that: ACTION, facing: DIRECTION" + if "-frame sprite animation of:" in description: + # Extract frame count + info["frames"] = description.split("-frame")[0].strip() + + # Extract character + if "of:" in description and ", that:" in description: + character_part = description.split("of:")[1].split(", that:")[0].strip() + info["character"] = character_part + + # Extract action + if ", that:" in description and ", facing:" in description: + action_part = description.split(", that:")[1].split(", facing:")[0].strip() + info["action"] = action_part + elif ", that:" in description: + # Handle case where facing might not be present + action_part = description.split(", that:")[1].strip() + info["action"] = action_part + + # Extract direction + if ", facing:" in description: + direction_part = description.split(", facing:")[1].strip() + info["direction"] = direction_part + except Exception as e: + print(f"Warning: Error parsing description: '{description}'") + print(f"Error details: {str(e)}") + + return info + +def create_sprite_metadata(): + """Create proper sprite metadata from metadata.jsonl""" + # Load metadata + metadata = load_metadata() + if not metadata: + print("No metadata entries found. Check if metadata.jsonl exists and has content.") + return {} + + # Create metadata mapping + sprite_info = {} + + # Process each entry in the metadata + for sprite_id, description in metadata.items(): + # Extract information safely + info = extract_info_safely(description) + + # Create folder name using the sprite ID in the correct format + folder_name = f"spritesheet_{sprite_id}" + + # Create organized structure with folder name + sprite_info[sprite_id] = { + "frames": info["frames"], + "action": info["action"], + "direction": info["direction"], + "character": info["character"], + "folder_name": folder_name, + "full_description": description + } + + # Save metadata to JSON file + metadata_path = "sprite_metadata.json" + with open(metadata_path, "w") as f: + json.dump(sprite_info, f, indent=4) + + print(f"Created sprite metadata for {len(sprite_info)} sprites") + return sprite_info + +if __name__ == "__main__": + sprite_info = create_sprite_metadata() \ No newline at end of file diff --git a/metadata.jsonl b/metadata.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4a9edcbc81864da25627453991e000c9851b9e85 --- /dev/null +++ b/metadata.jsonl @@ -0,0 +1,560 @@ +{"file_name": "images/0.png", "text": "17-frame sprite animation of: red-haired hobbit in green cape, that: shoots with slingshot, facing: East"} +{"file_name": "images/1.png", "text": "13-frame sprite animation of: red-haired hobbit in green cape, that: blocks an attack with staff, facing: East"} +{"file_name": "images/2.png", "text": "12-frame sprite animation of: red-haired hobbit in green cape, that: is taking damage then is struck and dies, facing: East"} +{"file_name": "images/3.png", "text": "4-frame sprite animation of: red-haired hobbit in green cape, that: is taking damage after hit then is struck, facing: East"} +{"file_name": "images/4.png", "text": "4-frame sprite animation of: red-haired hobbit in green cape, that: is idle, facing: East"} +{"file_name": "images/5.png", "text": "10-frame sprite animation of: red-haired hobbit in green cape, that: jumps, facing: East"} +{"file_name": "images/6.png", "text": "8-frame sprite animation of: red-haired hobbit in green cape, that: is slowing down after run, facing: East"} +{"file_name": "images/7.png", "text": "7-frame sprite animation of: knight in silver armor with red pants, that: is making jumping sword attack, facing: East"} +{"file_name": "images/8.png", "text": "19-frame sprite animation of: knight in silver armor with red pants, that: is attacking with sword, facing: East"} +{"file_name": "images/9.png", "text": "6-frame sprite animation of: knight in silver armor with red pants, that: climbs, facing: North"} +{"file_name": "images/10.png", "text": "7-frame sprite animation of: knight in silver armor with red pants, that: is attacking with sword while crouching, facing: East"} +{"file_name": "images/11.png", "text": "8-frame sprite animation of: knight in silver armor with red pants, that: is idle while crouching, facing: East"} +{"file_name": "images/12.png", "text": "4-frame sprite animation of: knight in silver armor with red pants, that: faints, facing: East"} +{"file_name": "images/13.png", "text": "8-frame sprite animation of: knight in silver armor with red pants, that: is hanging with single hand in air, facing: East"} +{"file_name": "images/14.png", "text": "8-frame sprite animation of: knight in silver armor with red pants, that: is restoring a health using red crystal, facing: East"} +{"file_name": "images/15.png", "text": "3-frame sprite animation of: knight in silver armor with red pants, that: is getting struck, facing: East"} +{"file_name": "images/16.png", "text": "8-frame sprite animation of: knight in silver armor with red pants, that: is idle, facing: East"} +{"file_name": "images/17.png", "text": "8-frame sprite animation of: knight in silver armor with red pants, that: jumps, facing: East"} +{"file_name": "images/18.png", "text": "12-frame sprite animation of: knight in silver armor with red pants, that: is falling to his knees and begins to pray and then gets up, facing: East"} +{"file_name": "images/19.png", "text": "4-frame sprite animation of: knight in silver armor with red pants, that: is rolling, facing: East"} +{"file_name": "images/20.png", "text": "8-frame sprite animation of: knight in silver armor with red pants, that: is running, facing: East"} +{"file_name": "images/21.png", "text": "10-frame sprite animation of: knight in silver armor with red pants, that: is sliding, facing: East"} +{"file_name": "images/22.png", "text": "5-frame sprite animation of: brown treasure chest, that: is idle, facing: West"} +{"file_name": "images/23.png", "text": "5-frame sprite animation of: brown treasure chest, that: is opening, facing: West"} +{"file_name": "images/24.png", "text": "5-frame sprite animation of: black treasure chest, that: is idle, facing: West"} +{"file_name": "images/25.png", "text": "5-frame sprite animation of: black treasure chest, that: is opening, facing: West"} +{"file_name": "images/26.png", "text": "5-frame sprite animation of: red treasure chest, that: is idle, facing: West"} +{"file_name": "images/27.png", "text": "5-frame sprite animation of: red treasure chest, that: is opening, facing: West"} +{"file_name": "images/28.png", "text": "5-frame sprite animation of: white treasure chest, that: is idle, facing: West"} +{"file_name": "images/29.png", "text": "5-frame sprite animation of: white treasure chest, that: is opening, facing: West"} +{"file_name": "images/30.png", "text": "8-frame sprite animation of: arcane archer in pink hood with a magic bow, that: is running, facing: East"} +{"file_name": "images/31.png", "text": "8-frame sprite animation of: arcane archer in pink hood with a magic bow, that: is fainting, facing: East"} +{"file_name": "images/32.png", "text": "7-frame sprite animation of: arcane archer in pink hood with a magic bow, that: is rolling, facing: East"} +{"file_name": "images/33.png", "text": "7-frame sprite animation of: arcane archer in pink hood with a magic bow, that: shoots an arrow from a bow, facing: East"} +{"file_name": "images/34.png", "text": "6-frame sprite animation of: arcane archer in pink hood with a magic bow, that: does wall slide, facing: West"} +{"file_name": "images/35.png", "text": "4-frame sprite animation of: arcane archer in pink hood with a magic bow, that: is crouching idle, facing: East"} +{"file_name": "images/36.png", "text": "4-frame sprite animation of: arcane archer in pink hood with a magic bow, that: is jumping with a stomp, facing: East"} +{"file_name": "images/37.png", "text": "2-frame sprite animation of: arcane archer in pink hood with a magic bow, that: is slowing down after run, facing: East"} +{"file_name": "images/38.png", "text": "7-frame sprite animation of: ghost in brown sheet with steel ball on a chain, that: is swinging a ball to attack, facing: East"} +{"file_name": "images/39.png", "text": "4-frame sprite animation of: ghost in brown sheet with steel ball on a chain, that: is charging, facing: East"} +{"file_name": "images/40.png", "text": "5-frame sprite animation of: ghost in brown sheet with steel ball on a chain, that: faints, facing: East"} +{"file_name": "images/41.png", "text": "2-frame sprite animation of: ghost in brown sheet with steel ball on a chain, that: is getting struck, facing: East"} +{"file_name": "images/42.png", "text": "5-frame sprite animation of: ghost in brown sheet with steel ball on a chain, that: is idle, facing: East"} +{"file_name": "images/43.png", "text": "8-frame sprite animation of: ghost in brown sheet with steel ball on a chain, that: is running, facing: East"} +{"file_name": "images/44.png", "text": "11-frame sprite animation of: dark tower of red crystal moon, that: is idle with moon levitating up and down, facing: South"} +{"file_name": "images/45.png", "text": "10-frame sprite animation of: a cyclop with red eye in pink savage armor with a curved boline, that: swings his weapon to attack, facing: West"} +{"file_name": "images/46.png", "text": "9-frame sprite animation of: a cyclop with red eye in pink savage armor with a curved boline, that: is casting a portal spell, facing: West"} +{"file_name": "images/47.png", "text": "10-frame sprite animation of: a cyclop with red eye in pink savage armor with a curved boline, that: is transforming into fog, facing: West"} +{"file_name": "images/48.png", "text": "3-frame sprite animation of: a cyclop with red eye in pink savage armor with a curved boline, that: is getting struck, facing: West"} +{"file_name": "images/49.png", "text": "8-frame sprite animation of: a cyclop with red eye in pink savage armor with a curved boline, that: is idle, facing: West"} +{"file_name": "images/50.png", "text": "16-frame sprite animation of: pink portal, that: strikes a lighting in shape of a hand, facing: West"} +{"file_name": "images/51.png", "text": "8-frame sprite animation of: a cyclop with red eye in pink savage armor with a curved boline, that: walks, facing: West"} +{"file_name": "images/52.png", "text": "7-frame sprite animation of: a black canine, that: is biting, facing: West"} +{"file_name": "images/53.png", "text": "8-frame sprite animation of: a black canine, that: is laying down, facing: West"} +{"file_name": "images/54.png", "text": "4-frame sprite animation of: a black canine, that: is getting struck, facing: West"} +{"file_name": "images/55.png", "text": "4-frame sprite animation of: a black canine, that: is idle, facing: West"} +{"file_name": "images/56.png", "text": "6-frame sprite animation of: a black canine, that: is running, facing: West"} +{"file_name": "images/57.png", "text": "7-frame sprite animation of: a brown canine, that: is biting, facing: West"} +{"file_name": "images/58.png", "text": "8-frame sprite animation of: a brown canine, that: is laying down, facing: West"} +{"file_name": "images/59.png", "text": "4-frame sprite animation of: a brown canine, that: is getting struck, facing: West"} +{"file_name": "images/60.png", "text": "4-frame sprite animation of: a brown canine, that: is idle, facing: West"} +{"file_name": "images/61.png", "text": "6-frame sprite animation of: a brown canine, that: is running, facing: West"} +{"file_name": "images/62.png", "text": "7-frame sprite animation of: a gray canine, that: is biting, facing: West"} +{"file_name": "images/63.png", "text": "8-frame sprite animation of: a gray canine, that: is laying down, facing: West"} +{"file_name": "images/64.png", "text": "4-frame sprite animation of: a gray canine, that: is getting struck, facing: West"} +{"file_name": "images/65.png", "text": "4-frame sprite animation of: a gray canine, that: is idle, facing: West"} +{"file_name": "images/66.png", "text": "6-frame sprite animation of: a gray canine, that: is running, facing: West"} +{"file_name": "images/67.png", "text": "7-frame sprite animation of: a white canine, that: is biting, facing: West"} +{"file_name": "images/68.png", "text": "8-frame sprite animation of: a white canine, that: is laying down, facing: West"} +{"file_name": "images/69.png", "text": "4-frame sprite animation of: a white canine, that: is getting struck, facing: West"} +{"file_name": "images/70.png", "text": "4-frame sprite animation of: a white canine, that: is idle, facing: West"} +{"file_name": "images/71.png", "text": "6-frame sprite animation of: a white canine, that: is running, facing: West"} +{"file_name": "images/72.png", "text": "6-frame sprite animation of: blue haired muscular fighter, that: is flexing, facing: East"} +{"file_name": "images/73.png", "text": "2-frame sprite animation of: blue haired muscular fighter, that: is levitating, facing: East"} +{"file_name": "images/74.png", "text": "3-frame sprite animation of: blue haired muscular fighter, that: is idle, facing: East"} +{"file_name": "images/75.png", "text": "1-frame sprite animation of: blue haired muscular fighter, that: is standing, facing: East"} +{"file_name": "images/76.png", "text": "4-frame sprite animation of: blue haired muscular fighter, that: is sliding, facing: East"} +{"file_name": "images/77.png", "text": "2-frame sprite animation of: blue haired muscular fighter, that: is sitting down cross-legged, facing: East"} +{"file_name": "images/78.png", "text": "3-frame sprite animation of: blue haired muscular fighter, that: is flying horizontally, facing: East"} +{"file_name": "images/79.png", "text": "6-frame sprite animation of: bald fighter, that: is walking, facing: East"} +{"file_name": "images/80.png", "text": "8-frame sprite animation of: blue haired muscular fighter, that: is making punch combo attack with both hands, facing: East"} +{"file_name": "images/81.png", "text": "6-frame sprite animation of: blue haired muscular fighter, that: is making multiple fast kicks in air, facing: East"} +{"file_name": "images/82.png", "text": "3-frame sprite animation of: blue haired muscular fighter, that: is punching down from the air, facing: East"} +{"file_name": "images/83.png", "text": "2-frame sprite animation of: blue haired muscular fighter, that: is blocking incoming attack, facing: East"} +{"file_name": "images/84.png", "text": "3-frame sprite animation of: blue haired muscular fighter, that: is getting struck, facing: East"} +{"file_name": "images/85.png", "text": "1-frame sprite animation of: blue haired muscular fighter, that: taking damage, facing: East"} +{"file_name": "images/86.png", "text": "1-frame sprite animation of: blue haired muscular fighter, that: is getting hit, facing: East"} +{"file_name": "images/87.png", "text": "1-frame sprite animation of: blue haired muscular fighter, that: is getting hit, facing: East"} +{"file_name": "images/88.png", "text": "1-frame sprite animation of: blue haired muscular fighter, that: is laying down, facing: East"} +{"file_name": "images/89.png", "text": "2-frame sprite animation of: blue haired muscular fighter, that: is screaming on his knees, facing: East"} +{"file_name": "images/90.png", "text": "4-frame sprite animation of: blue haired muscular fighter, that: is punching fast with both hands, facing: East"} +{"file_name": "images/91.png", "text": "3-frame sprite animation of: blue haired muscular fighter, that: is casting a magic beam from both hands, facing: East"} +{"file_name": "images/92.png", "text": "4-frame sprite animation of: blue haired muscular fighter, that: casting a magic beam from right hand, facing: East"} +{"file_name": "images/93.png", "text": "1-frame sprite animation of: blue haired muscular fighter, that: is screaming with left hand in air, facing: East"} +{"file_name": "images/94.png", "text": "4-frame sprite animation of: blue haired muscular fighter, that: is holding hands in air, facing: East"} +{"file_name": "images/95.png", "text": "2-frame sprite animation of: blue haired muscular fighter, that: is getting knock out after hit, facing: East"} +{"file_name": "images/96.png", "text": "3-frame sprite animation of: blue haired muscular fighter, that: is casting a magic beam from both hands while running, facing: East"} +{"file_name": "images/97.png", "text": "4-frame sprite animation of: energy shield, that: is idle, facing: East"} +{"file_name": "images/98.png", "text": "8-frame sprite animation of: woman in green dress with red hair, that: is dancing, facing: West"} +{"file_name": "images/99.png", "text": "8-frame sprite animation of: woman in green dress with red hair, that: is dancing, facing: South"} +{"file_name": "images/100.png", "text": "8-frame sprite animation of: woman in green dress with red hair, that: is dancing, facing: West"} +{"file_name": "images/101.png", "text": "8-frame sprite animation of: woman in green dress with red hair, that: is dancing, facing: South"} +{"file_name": "images/102.png", "text": "8-frame sprite animation of: woman in green dress with red hair, that: is dancing, facing: South"} +{"file_name": "images/103.png", "text": "10-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: thrusts his arrow like a sword to melee attack, facing: East"} +{"file_name": "images/104.png", "text": "15-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: shots magic arrow, facing: East"} +{"file_name": "images/105.png", "text": "12-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: shoots multiple arrows at once, facing: East"} +{"file_name": "images/106.png", "text": "10-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: shots magic arrow while in air, facing: East"} +{"file_name": "images/107.png", "text": "19-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: falls to his knees and faints on the floor, facing: East"} +{"file_name": "images/108.png", "text": "19-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: defends himself by transforming his bow into shield made of roots, facing: East"} +{"file_name": "images/109.png", "text": "12-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: is idle, facing: East"} +{"file_name": "images/110.png", "text": "3-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: falls down, facing: East"} +{"file_name": "images/111.png", "text": "22-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: jumps up then falls down, facing: East"} +{"file_name": "images/112.png", "text": "3-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: jumps up, facing: East"} +{"file_name": "images/113.png", "text": "8-frame sprite animation of: magic arrow, that: grows roots from the arrowhead, facing: East"} +{"file_name": "images/114.png", "text": "8-frame sprite animation of: magic arrow, that: releases poison from the tip, facing: East"} +{"file_name": "images/115.png", "text": "6-frame sprite animation of: arrow, that: hits the target and wiggles, facing: East"} +{"file_name": "images/116.png", "text": "18-frame sprite animation of: arrows, that: hits the ground creating entangling roots, facing: East"} +{"file_name": "images/117.png", "text": "5-frame sprite animation of: arrow, that: makes the laser beam, facing: East"} +{"file_name": "images/118.png", "text": "8-frame sprite animation of: diagonal arrow, that: hits the target and sprouts thorns, facing: East"} +{"file_name": "images/119.png", "text": "6-frame sprite animation of: diagonal arrow, that: hits the target and wiggles, facing: East"} +{"file_name": "images/120.png", "text": "8-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: rolls, facing: East"} +{"file_name": "images/121.png", "text": "10-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: runs, facing: East"} +{"file_name": "images/122.png", "text": "4-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: slides, facing: East"} +{"file_name": "images/123.png", "text": "13-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: slides and then gets up, facing: East"} +{"file_name": "images/124.png", "text": "17-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: fires laser beam from his bow to make a special attack, facing: East"} +{"file_name": "images/125.png", "text": "6-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: is getting struck, facing: East"} +{"file_name": "images/126.png", "text": "1-frame sprite animation of: a face of long-haired elf archer the leaf ranger , that: is idle, facing: South"} +{"file_name": "images/127.png", "text": "8-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: is idle, facing: East"} +{"file_name": "images/128.png", "text": "8-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: is running, facing: East"} +{"file_name": "images/129.png", "text": "20-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: jumps up then falls down, facing: East"} +{"file_name": "images/130.png", "text": "3-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: falls down, facing: East"} +{"file_name": "images/131.png", "text": "3-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: jumps up, facing: East"} +{"file_name": "images/132.png", "text": "8-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: rolls on the ground, facing: East"} +{"file_name": "images/133.png", "text": "11-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: swings his sword overhead to attack, facing: East"} +{"file_name": "images/134.png", "text": "19-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: swings his sword overhead then spins around to make combo attack, facing: East"} +{"file_name": "images/135.png", "text": "28-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: swings his sword overhead then spins around and shoots a fire ball from edge of his sword, facing: East"} +{"file_name": "images/136.png", "text": "18-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: ignites his magic sword to make flame attack, facing: East"} +{"file_name": "images/137.png", "text": "10-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: defends himself with a sword, facing: East"} +{"file_name": "images/138.png", "text": "3-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: is getting struck, facing: East"} +{"file_name": "images/139.png", "text": "3-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: falls to his knees and faints on the floor, facing: East"} +{"file_name": "images/140.png", "text": "3-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: swings his sword to attack while in air, facing: East"} +{"file_name": "images/141.png", "text": "1-frame sprite animation of: a face of fire knight with short spiky hair and beard, that: is idle, facing: South"} +{"file_name": "images/142.png", "text": "8-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: is idle, facing: East"} +{"file_name": "images/143.png", "text": "10-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: walks, facing: East"} +{"file_name": "images/144.png", "text": "8-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: surfs on wave, facing: East"} +{"file_name": "images/145.png", "text": "3-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: jumps up, facing: East"} +{"file_name": "images/146.png", "text": "3-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: falls down, facing: East"} +{"file_name": "images/147.png", "text": "6-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: tumbles around, facing: East"} +{"file_name": "images/148.png", "text": "7-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: is thrusting her sword to attack, facing: East"} +{"file_name": "images/149.png", "text": "21-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: is thrusting her sword double to make combo attack, facing: East"} +{"file_name": "images/150.png", "text": "27-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: is thrusting her sword double and shoots a water splash from it, facing: East"} +{"file_name": "images/151.png", "text": "32-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: creates water blob that shortly after splashes on ground and creates icy spikes, facing: East"} +{"file_name": "images/152.png", "text": "12-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: heals herself, facing: East"} +{"file_name": "images/153.png", "text": "12-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: defends herself by creating ice wall, facing: East"} +{"file_name": "images/154.png", "text": "7-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: getting struck, facing: East"} +{"file_name": "images/155.png", "text": "16-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: stays still, facing: East"} +{"file_name": "images/156.png", "text": "8-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: is thrusting her sword in air, facing: East"} +{"file_name": "images/157.png", "text": "1-frame sprite animation of: a face of water priestess with long, dark-blue hair and a light-blue dress, that: has crown q, facing: South"} +{"file_name": "images/158.png", "text": "8-frame sprite animation of: a bald fire wizzard with long staff in red robe, that: creates pillar of flames from his hands, facing: East"} +{"file_name": "images/159.png", "text": "5-frame sprite animation of: a bald fire wizzard with long staff in red robe, that: falls on his knees, facing: East"} +{"file_name": "images/160.png", "text": "8-frame sprite animation of: a bald fire wizzard with long staff in red robe, that: is idle, facing: East"} +{"file_name": "images/161.png", "text": "8-frame sprite animation of: a bald fire wizzard with long staff in red robe, that: is walking, facing: East"} +{"file_name": "images/162.png", "text": "4-frame sprite animation of: a bald fire wizzard with long staff in red robe, that: is getting struck, facing: East"} +{"file_name": "images/163.png", "text": "9-frame sprite animation of: eye-ball monster, that: is idle, facing: East"} +{"file_name": "images/164.png", "text": "4-frame sprite animation of: eye-ball monster, that: walks, facing: East"} +{"file_name": "images/165.png", "text": "12-frame sprite animation of: eye-ball monster, that: is making beam from his eye, facing: East"} +{"file_name": "images/166.png", "text": "9-frame sprite animation of: eye-ball monster, that: rolls, facing: East"} +{"file_name": "images/167.png", "text": "12-frame sprite animation of: eye-ball monster, that: faints and disappears, facing: East"} +{"file_name": "images/168.png", "text": "8-frame sprite animation of: brown meteorite, that: explodes into small pieces"} +{"file_name": "images/169.png", "text": "77-frame sprite animation of: planet earth, that: is rotating"} +{"file_name": "images/170.png", "text": "60-frame sprite animation of: two yellow fireballs with tails, that: intersect with each other to create a ribbon-like pattern"} +{"file_name": "images/171.png", "text": "60-frame sprite animation of: two blue fireballs with tails, that: intersect with each other to create a ribbon-like pattern"} +{"file_name": "images/172.png", "text": "60-frame sprite animation of: two green fireballs with tails, that: intersect with each other to create a ribbon-like pattern"} +{"file_name": "images/173.png", "text": "60-frame sprite animation of: two pink fireballs with tails, that: intersect with each other to create a ribbon-like pattern"} +{"file_name": "images/174.png", "text": "60-frame sprite animation of: two red fireballs with tails, that: intersect with each other to create a ribbon-like pattern"} +{"file_name": "images/175.png", "text": "60-frame sprite animation of: two white fireballs with tails, that: intersect with each other to create a ribbon-like pattern"} +{"file_name": "images/176.png", "text": "6-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: swings his sword to make an attack, facing: East"} +{"file_name": "images/177.png", "text": "4-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: dashes forward, facing: East"} +{"file_name": "images/178.png", "text": "9-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: faints and lays on the floor, facing: East"} +{"file_name": "images/179.png", "text": "4-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: falls down, facing: East"} +{"file_name": "images/180.png", "text": "11-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: is idle, facing: East"} +{"file_name": "images/181.png", "text": "4-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: jumps up, facing: East"} +{"file_name": "images/182.png", "text": "8-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: runs, facing: East"} +{"file_name": "images/183.png", "text": "4-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: is getting struck, facing: East"} +{"file_name": "images/184.png", "text": "7-frame sprite animation of: knight with sword in full armor with helmet, that: swings his sword to make an attack, facing: East"} +{"file_name": "images/185.png", "text": "7-frame sprite animation of: knight with sword in full armor with helmet, that: swings his sword after jump to make an attack, facing: East"} +{"file_name": "images/186.png", "text": "11-frame sprite animation of: knight with sword in full armor with helmet, that: faints and lays on the floor, facing: East"} +{"file_name": "images/187.png", "text": "3-frame sprite animation of: knight with sword in full armor with helmet, that: falls down, facing: East"} +{"file_name": "images/188.png", "text": "11-frame sprite animation of: knight with sword in full armor with helmet, that: is idle, facing: East"} +{"file_name": "images/189.png", "text": "3-frame sprite animation of: knight with sword in full armor with helmet, that: jumps up, facing: East"} +{"file_name": "images/190.png", "text": "8-frame sprite animation of: knight with sword in full armor with helmet, that: runs, facing: East"} +{"file_name": "images/191.png", "text": "4-frame sprite animation of: knight with sword in full armor with helmet, that: is getting struck, facing: East"} +{"file_name": "images/192.png", "text": "6-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: shots arrow from bow, facing: East"} +{"file_name": "images/193.png", "text": "10-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: faints and lays on the floor, facing: East"} +{"file_name": "images/194.png", "text": "2-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: falls down, facing: East"} +{"file_name": "images/195.png", "text": "10-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: is idle, facing: East"} +{"file_name": "images/196.png", "text": "2-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: jumps up, facing: East"} +{"file_name": "images/197.png", "text": "8-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: runs, facing: East"} +{"file_name": "images/198.png", "text": "3-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: is getting struck, facing: East"} +{"file_name": "images/199.png", "text": "5-frame sprite animation of: huntress with a spear in green leather armor with hood, that: swings her spear above head to make an attack, facing: East"} +{"file_name": "images/200.png", "text": "5-frame sprite animation of: huntress with a spear in green leather armor with hood, that: swings her spear from the head to make an attack, facing: East"} +{"file_name": "images/201.png", "text": "7-frame sprite animation of: huntress with a spear in green leather armor with hood, that: throws her spear, facing: East"} +{"file_name": "images/202.png", "text": "8-frame sprite animation of: huntress with a spear in green leather armor with hood, that: faints and lays on the floor, facing: East"} +{"file_name": "images/203.png", "text": "2-frame sprite animation of: huntress with a spear in green leather armor with hood, that: falls down, facing: East"} +{"file_name": "images/204.png", "text": "8-frame sprite animation of: huntress with a spear in green leather armor with hood, that: is idle, facing: East"} +{"file_name": "images/205.png", "text": "2-frame sprite animation of: huntress with a spear in green leather armor with hood, that: jumps up, facing: East"} +{"file_name": "images/206.png", "text": "8-frame sprite animation of: huntress with a spear in green leather armor with hood, that: runs, facing: East"} +{"file_name": "images/207.png", "text": "3-frame sprite animation of: huntress with a spear in green leather armor with hood, that: is getting struck, facing: East"} +{"file_name": "images/208.png", "text": "4-frame sprite animation of: spear, that: rotates, facing: East"} +{"file_name": "images/209.png", "text": "4-frame sprite animation of: a ninja in blue armor and red scarf, that: swing his katana to attack, facing: East"} +{"file_name": "images/210.png", "text": "4-frame sprite animation of: a ninja in blue armor and red scarf, that: perform an overhead katana attack, facing: East"} +{"file_name": "images/211.png", "text": "7-frame sprite animation of: a ninja in blue armor and red scarf, that: is falling to his knees then faints on the floor, facing: East"} +{"file_name": "images/212.png", "text": "2-frame sprite animation of: a ninja in blue armor and red scarf, that: falls down, facing: East"} +{"file_name": "images/213.png", "text": "4-frame sprite animation of: a ninja in blue armor and red scarf, that: is idle, facing: East"} +{"file_name": "images/214.png", "text": "2-frame sprite animation of: a ninja in blue armor and red scarf, that: jumps up, facing: East"} +{"file_name": "images/215.png", "text": "8-frame sprite animation of: a ninja in blue armor and red scarf, that: runs, facing: East"} +{"file_name": "images/216.png", "text": "3-frame sprite animation of: a ninja in blue armor and red scarf, that: is getting struck, facing: East"} +{"file_name": "images/217.png", "text": "7-frame sprite animation of: a native american warrior with machete in naked torso, that: perform an overhead machete attack, facing: East"} +{"file_name": "images/218.png", "text": "6-frame sprite animation of: a native american warrior with machete in naked torso, that: swings machete from below to make an attack, facing: East"} +{"file_name": "images/219.png", "text": "9-frame sprite animation of: a native american warrior with machete in naked torso, that: swings machete to make an attack, facing: East"} +{"file_name": "images/220.png", "text": "11-frame sprite animation of: a native american warrior with machete in naked torso, that: is falling to his knees then faints on the floor, facing: East"} +{"file_name": "images/221.png", "text": "3-frame sprite animation of: a native american warrior with machete in naked torso, that: falls down, facing: East"} +{"file_name": "images/222.png", "text": "3-frame sprite animation of: a native american warrior with machete in naked torso, that: jumps up, facing: East"} +{"file_name": "images/223.png", "text": "10-frame sprite animation of: a native american warrior with machete in naked torso, that: is idle, facing: East"} +{"file_name": "images/224.png", "text": "8-frame sprite animation of: a native american warrior with machete in naked torso, that: runs, facing: East"} +{"file_name": "images/225.png", "text": "3-frame sprite animation of: a native american warrior with machete in naked torso, that: is getting struck, facing: East"} +{"file_name": "images/226.png", "text": "6-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: swing his sword to attack, facing: East"} +{"file_name": "images/227.png", "text": "6-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: attack with his sword, facing: East"} +{"file_name": "images/228.png", "text": "6-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: is falling to his knees, facing: East"} +{"file_name": "images/229.png", "text": "2-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: falls down, facing: East"} +{"file_name": "images/230.png", "text": "8-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: is idle, facing: East"} +{"file_name": "images/231.png", "text": "2-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: jumps up, facing: East"} +{"file_name": "images/232.png", "text": "8-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: runs, facing: East"} +{"file_name": "images/233.png", "text": "4-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: is getting struck, facing: East"} +{"file_name": "images/234.png", "text": "4-frame sprite animation of: a king in crown with a sword and blue cape, that: perform an sword attack, facing: East"} +{"file_name": "images/235.png", "text": "4-frame sprite animation of: a king in crown with a sword and blue cape, that: swings his sword to make an attack, facing: East"} +{"file_name": "images/236.png", "text": "4-frame sprite animation of: a king in crown with a sword and blue cape, that: perform an overhead sword attack, facing: East"} +{"file_name": "images/237.png", "text": "6-frame sprite animation of: a king in crown with a sword and blue cape, that: faints on the floor, facing: East"} +{"file_name": "images/238.png", "text": "2-frame sprite animation of: a king in crown with a sword and blue cape, that: falls down, facing: East"} +{"file_name": "images/239.png", "text": "8-frame sprite animation of: a king in crown with a sword and blue cape, that: is idle, facing: East"} +{"file_name": "images/240.png", "text": "2-frame sprite animation of: a king in crown with a sword and blue cape, that: jumps up, facing: East"} +{"file_name": "images/241.png", "text": "8-frame sprite animation of: a king in crown with a sword and blue cape, that: runs, facing: East"} +{"file_name": "images/242.png", "text": "4-frame sprite animation of: a king in crown with a sword and blue cape, that: is getting struck, facing: East"} +{"file_name": "images/243.png", "text": "4-frame sprite animation of: a medieval peasant in red armor, that: perform an sword attack, facing: East"} +{"file_name": "images/244.png", "text": "4-frame sprite animation of: a medieval peasant in red armor, that: perform an overhead sword attack, facing: East"} +{"file_name": "images/245.png", "text": "4-frame sprite animation of: a medieval peasant in red armor, that: perform an overhead pike attack, facing: East"} +{"file_name": "images/246.png", "text": "4-frame sprite animation of: a medieval peasant in red armor, that: perform an overhead mace attack, facing: East"} +{"file_name": "images/247.png", "text": "6-frame sprite animation of: a medieval peasant in red armor, that: faints on the floor, facing: East"} +{"file_name": "images/248.png", "text": "2-frame sprite animation of: a medieval peasant in red armor, that: falls down, facing: East"} +{"file_name": "images/249.png", "text": "8-frame sprite animation of: a medieval peasant in red armor, that: is idle, facing: East"} +{"file_name": "images/250.png", "text": "2-frame sprite animation of: a medieval peasant in red armor, that: jumps up, facing: East"} +{"file_name": "images/251.png", "text": "8-frame sprite animation of: a medieval peasant in red armor, that: runs, facing: East"} +{"file_name": "images/252.png", "text": "4-frame sprite animation of: a medieval peasant in red armor, that: is getting struck, facing: East"} +{"file_name": "images/253.png", "text": "4-frame sprite animation of: a medieval warrior in blue armor, that: swing sword to make an attack, facing: East"} +{"file_name": "images/254.png", "text": "4-frame sprite animation of: a medieval warrior in blue armor, that: attacks with his sword , facing: East"} +{"file_name": "images/255.png", "text": "4-frame sprite animation of: a medieval warrior in blue armor, that: perform an overhead pike attack, facing: East"} +{"file_name": "images/256.png", "text": "9-frame sprite animation of: a medieval warrior in blue armor, that: faints on the floor, facing: East"} +{"file_name": "images/257.png", "text": "2-frame sprite animation of: a medieval warrior in blue armor, that: falls down, facing: East"} +{"file_name": "images/258.png", "text": "10-frame sprite animation of: a medieval warrior in blue armor, that: is idle, facing: East"} +{"file_name": "images/259.png", "text": "2-frame sprite animation of: a medieval warrior in blue armor, that: jumps up, facing: East"} +{"file_name": "images/260.png", "text": "6-frame sprite animation of: a medieval warrior in blue armor, that: runs, facing: East"} +{"file_name": "images/261.png", "text": "3-frame sprite animation of: a medieval warrior in blue armor, that: is getting struck, facing: East"} +{"file_name": "images/262.png", "text": "5-frame sprite animation of: a black horse with brown armor, that: is idle, facing: East"} +{"file_name": "images/263.png", "text": "6-frame sprite animation of: a black horse with brown armor, that: stays still, facing: East"} +{"file_name": "images/264.png", "text": "6-frame sprite animation of: a black horse with brown armor, that: waits, facing: East"} +{"file_name": "images/265.png", "text": "10-frame sprite animation of: a black horse with brown armor, that: is rearing, facing: East"} +{"file_name": "images/266.png", "text": "6-frame sprite animation of: a black horse with brown armor, that: runs, facing: East"} +{"file_name": "images/267.png", "text": "6-frame sprite animation of: a black horse with brown armor, that: stops, facing: East"} +{"file_name": "images/268.png", "text": "5-frame sprite animation of: horse rider, that: is idle, facing: East"} +{"file_name": "images/269.png", "text": "6-frame sprite animation of: horse rider, that: mounts off, facing: East"} +{"file_name": "images/270.png", "text": "5-frame sprite animation of: horse leash, that: is idle, facing: East"} +{"file_name": "images/271.png", "text": "6-frame sprite animation of: horse rider, that: mounts on, facing: East"} +{"file_name": "images/272.png", "text": "10-frame sprite animation of: horse rider, that: holds on, facing: East"} +{"file_name": "images/273.png", "text": "6-frame sprite animation of: a rider on black horse with brown armor, that: Mounts on horse, facing: East"} +{"file_name": "images/274.png", "text": "5-frame sprite animation of: a rider on black horse with brown armor, that: is idle, facing: East"} +{"file_name": "images/275.png", "text": "6-frame sprite animation of: a rider on black horse with brown armor, that: runs, facing: East"} +{"file_name": "images/276.png", "text": "6-frame sprite animation of: a rider on black horse with brown armor, that: stops, facing: East"} +{"file_name": "images/277.png", "text": "10-frame sprite animation of: a rider on black horse with brown armor, that: is rearing, facing: East"} +{"file_name": "images/278.png", "text": "6-frame sprite animation of: a rider on black horse with brown armor, that: mounts off, facing: East"} +{"file_name": "images/279.png", "text": "11-frame sprite animation of: fireball, that: explodes"} +{"file_name": "images/280.png", "text": "5-frame sprite animation of: pink ball, that: explodes"} +{"file_name": "images/281.png", "text": "5-frame sprite animation of: red haired tiny elf, that: swings pink dagger in air, facing: East"} +{"file_name": "images/282.png", "text": "27-frame sprite animation of: red haired tiny elf, that: makes multiple special attacks with pink dagger, facing: East"} +{"file_name": "images/283.png", "text": "5-frame sprite animation of: red haired tiny elf, that: faints, facing: East"} +{"file_name": "images/284.png", "text": "3-frame sprite animation of: red haired tiny elf, that: is getting struck, facing: East"} +{"file_name": "images/285.png", "text": "9-frame sprite animation of: red haired tiny elf with pink dagger, that: is idle, facing: East"} +{"file_name": "images/286.png", "text": "6-frame sprite animation of: red haired tiny elf with pink dagger, that: jumps, facing: East"} +{"file_name": "images/287.png", "text": "8-frame sprite animation of: red haired tiny elf with pink dagger, that: runs, facing: East"} +{"file_name": "images/288.png", "text": "5-frame sprite animation of: red haired tiny elf with pink dagger, that: slides, facing: East"} +{"file_name": "images/289.png", "text": "5-frame sprite animation of: red haired tiny elf, that: throws a pink dagger, facing: East"} +{"file_name": "images/290.png", "text": "5-frame sprite animation of: red haired tiny elf, that: holds on a ledge, facing: East"} +{"file_name": "images/291.png", "text": "8-frame sprite animation of: plant monster with big teeth, that: is idle, facing: South"} +{"file_name": "images/292.png", "text": "3-frame sprite animation of: plant monster with big teeth, that: is getting struck, facing: South"} +{"file_name": "images/293.png", "text": "8-frame sprite animation of: plant monster with big teeth, that: bites from right side, facing: South"} +{"file_name": "images/294.png", "text": "8-frame sprite animation of: plant monster with big teeth, that: bites from left side, facing: South"} +{"file_name": "images/295.png", "text": "29-frame sprite animation of: masked warrior aka Spirit Boxer in winged helmet and gray cape, that: makes various attacks, facing: East"} +{"file_name": "images/296.png", "text": "12-frame sprite animation of: masked warrior aka Spirit Boxer in winged helmet and gray cape, that: is getting struct and disintegrates, facing: East"} +{"file_name": "images/297.png", "text": "4-frame sprite animation of: masked warrior aka Spirit Boxer in winged helmet and gray cape, that: is idle, facing: East"} +{"file_name": "images/298.png", "text": "6-frame sprite animation of: masked warrior aka Spirit Boxer in winged helmet and gray cape, that: runs, facing: East"} +{"file_name": "images/299.png", "text": "6-frame sprite animation of: Monster made of trash and dirt, that: jumps, facing: West"} +{"file_name": "images/300.png", "text": "6-frame sprite animation of: Monster made of trash and dirt, that: is idle in form trash pile, facing: West"} +{"file_name": "images/301.png", "text": "11-frame sprite animation of: Monster made of trash and dirt, that: is idle in form trash pile, facing: West"} +{"file_name": "images/302.png", "text": "10-frame sprite animation of: Monster made of trash and dirt, that: dashes, facing: West"} +{"file_name": "images/303.png", "text": "13-frame sprite animation of: black ghost looking like death with a scythe, that: swings a scythe to perform an attack, facing: East"} +{"file_name": "images/304.png", "text": "18-frame sprite animation of: black ghost looking like death with a scythe, that: destroys his weapon and transforms into ball, facing: East"} +{"file_name": "images/305.png", "text": "4-frame sprite animation of: black ghost looking like death with a scythe, that: is idle, facing: East"} +{"file_name": "images/306.png", "text": "8-frame sprite animation of: black ghost looking like death with a scythe, that: waits, facing: East"} +{"file_name": "images/307.png", "text": "12-frame sprite animation of: black ghost looking like death with a scythe, that: transforms his body to look like a music wave, facing: East"} +{"file_name": "images/308.png", "text": "5-frame sprite animation of: black ghost looking like death with a scythe, that: swings his scythe, facing: East"} +{"file_name": "images/309.png", "text": "6-frame sprite animation of: small black ghost, that: appears, facing: East"} +{"file_name": "images/310.png", "text": "5-frame sprite animation of: small black ghost, that: disappears, facing: East"} +{"file_name": "images/311.png", "text": "4-frame sprite animation of: small black ghost, that: is idle, facing: East"} +{"file_name": "images/312.png", "text": "8-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: cast a spell that creates magic orb, facing: East"} +{"file_name": "images/313.png", "text": "8-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: makes arcane spell from his staff, facing: East"} +{"file_name": "images/314.png", "text": "7-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: falls on knees and his staff breaks, facing: East"} +{"file_name": "images/315.png", "text": "2-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: falls down, facing: East"} +{"file_name": "images/316.png", "text": "6-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: is idle, facing: East"} +{"file_name": "images/317.png", "text": "2-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: jumps up, facing: East"} +{"file_name": "images/318.png", "text": "8-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: runs, facing: East"} +{"file_name": "images/319.png", "text": "4-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: is getting struck, facing: East"} +{"file_name": "images/320.png", "text": "6-frame sprite animation of: a horned fire demon with large bloody cleaver, that: is idle, facing: West"} +{"file_name": "images/321.png", "text": "12-frame sprite animation of: a horned fire demon with large bloody cleaver, that: is walking, facing: West"} +{"file_name": "images/322.png", "text": "15-frame sprite animation of: a horned fire demon with large bloody cleaver, that: swings his cleaver to attack, facing: West"} +{"file_name": "images/323.png", "text": "5-frame sprite animation of: a horned fire demon with large bloody cleaver, that: is taking damage after hit, facing: West"} +{"file_name": "images/324.png", "text": "22-frame sprite animation of: a horned fire demon with large bloody cleaver, that: is disintegrating to ash in flames, facing: West"} +{"file_name": "images/325.png", "text": "25-frame sprite animation of: badger, that: digs a hole and burrows himself into ground tunnel, facing: North-East"} +{"file_name": "images/326.png", "text": "22-frame sprite animation of: badger, that: is idle, facing: North-East"} +{"file_name": "images/327.png", "text": "5-frame sprite animation of: pile of dirt, that: is moving, facing: North-East"} +{"file_name": "images/328.png", "text": "13-frame sprite animation of: badger, that: unborrows himself out the underground tunnel, facing: North-East"} +{"file_name": "images/329.png", "text": "9-frame sprite animation of: badger, that: is walking, facing: North-East"} +{"file_name": "images/330.png", "text": "25-frame sprite animation of: badger, that: digs a hole and burrows himself into ground tunnel, facing: North-West"} +{"file_name": "images/331.png", "text": "22-frame sprite animation of: badger, that: is idle, facing: North-West"} +{"file_name": "images/332.png", "text": "5-frame sprite animation of: pile of dirt, that: is moving, facing: North-West"} +{"file_name": "images/333.png", "text": "13-frame sprite animation of: badger, that: unburrows himself out the underground tunnel, facing: North-West"} +{"file_name": "images/334.png", "text": "9-frame sprite animation of: badger, that: is walking, facing: North-West"} +{"file_name": "images/335.png", "text": "25-frame sprite animation of: badger, that: digs a hole and burrows himself into ground tunnel, facing: South-East"} +{"file_name": "images/336.png", "text": "22-frame sprite animation of: badger, that: is idle, facing: South-East"} +{"file_name": "images/337.png", "text": "5-frame sprite animation of: pile of dirt, that: is moving, facing: South-East"} +{"file_name": "images/338.png", "text": "13-frame sprite animation of: badger, that: unburrows himself out the underground tunnel, facing: South-East"} +{"file_name": "images/339.png", "text": "9-frame sprite animation of: badger, that: is walking, facing: South-East"} +{"file_name": "images/340.png", "text": "25-frame sprite animation of: badger, that: digs a hole and burrows himself into ground tunnel, facing: South-West"} +{"file_name": "images/341.png", "text": "22-frame sprite animation of: badger, that: is idle, facing: South-West"} +{"file_name": "images/342.png", "text": "5-frame sprite animation of: pile of dirt, that: is moving, facing: South-West"} +{"file_name": "images/343.png", "text": "13-frame sprite animation of: badger, that: unburrows himself out the underground tunnel, facing: South-West"} +{"file_name": "images/344.png", "text": "9-frame sprite animation of: badger, that: is walking, facing: South-West"} +{"file_name": "images/345.png", "text": "7-frame sprite animation of: a boar, that: is idle, facing: North-East"} +{"file_name": "images/346.png", "text": "4-frame sprite animation of: a boar, that: is running, facing: North-East"} +{"file_name": "images/347.png", "text": "7-frame sprite animation of: a boar, that: is idle, facing: North-West"} +{"file_name": "images/348.png", "text": "4-frame sprite animation of: a boar, that: is running, facing: North-West"} +{"file_name": "images/349.png", "text": "7-frame sprite animation of: a boar, that: is idle, facing: South-East"} +{"file_name": "images/350.png", "text": "4-frame sprite animation of: a boar, that: is running, facing: South-East"} +{"file_name": "images/351.png", "text": "7-frame sprite animation of: a boar, that: is idle, facing: South-West"} +{"file_name": "images/352.png", "text": "4-frame sprite animation of: a boar, that: is running, facing: South-West"} +{"file_name": "images/353.png", "text": "24-frame sprite animation of: a stag, that: is idle, facing: North-East"} +{"file_name": "images/354.png", "text": "10-frame sprite animation of: a stag, that: runs, facing: North-East"} +{"file_name": "images/355.png", "text": "11-frame sprite animation of: a stag, that: walks, facing: North-East"} +{"file_name": "images/356.png", "text": "24-frame sprite animation of: a stag, that: is idle, facing: North-West"} +{"file_name": "images/357.png", "text": "10-frame sprite animation of: a stag, that: runs, facing: North-West"} +{"file_name": "images/358.png", "text": "11-frame sprite animation of: a stag, that: walks, facing: North-West"} +{"file_name": "images/359.png", "text": "24-frame sprite animation of: a stag, that: is idle, facing: South-East"} +{"file_name": "images/360.png", "text": "10-frame sprite animation of: a stag, that: runs, facing: South-East"} +{"file_name": "images/361.png", "text": "11-frame sprite animation of: a stag, that: walks, facing: South-East"} +{"file_name": "images/362.png", "text": "24-frame sprite animation of: a stag, that: is idle, facing: South-West"} +{"file_name": "images/363.png", "text": "10-frame sprite animation of: a stag, that: runs, facing: South-West"} +{"file_name": "images/364.png", "text": "11-frame sprite animation of: a stag, that: walks, facing: South-West"} +{"file_name": "images/365.png", "text": "15-frame sprite animation of: wolf, that: is biting, facing: South-West"} +{"file_name": "images/366.png", "text": "15-frame sprite animation of: wolf, that: is biting, facing: South-East"} +{"file_name": "images/367.png", "text": "15-frame sprite animation of: wolf, that: is biting, facing: North-West"} +{"file_name": "images/368.png", "text": "15-frame sprite animation of: wolf, that: is biting, facing: North-East"} +{"file_name": "images/369.png", "text": "12-frame sprite animation of: wolf, that: is getting struck and dies, facing: South-West"} +{"file_name": "images/370.png", "text": "12-frame sprite animation of: wolf, that: is getting struck and dies, facing: South-East"} +{"file_name": "images/371.png", "text": "12-frame sprite animation of: wolf, that: is getting struck and dies, facing: North-West"} +{"file_name": "images/372.png", "text": "12-frame sprite animation of: wolf, that: is getting struck and dies, facing: North-East"} +{"file_name": "images/373.png", "text": "9-frame sprite animation of: wolf, that: is howling, facing: South-West"} +{"file_name": "images/374.png", "text": "9-frame sprite animation of: wolf, that: is howling, facing: South-East"} +{"file_name": "images/375.png", "text": "9-frame sprite animation of: wolf, that: is howling, facing: North-West"} +{"file_name": "images/376.png", "text": "9-frame sprite animation of: wolf, that: is howling, facing: North-East"} +{"file_name": "images/377.png", "text": "4-frame sprite animation of: wolf, that: is idle, facing: South-West"} +{"file_name": "images/378.png", "text": "4-frame sprite animation of: wolf, that: is idle, facing: South-East"} +{"file_name": "images/379.png", "text": "4-frame sprite animation of: wolf, that: is idle, facing: North-West"} +{"file_name": "images/380.png", "text": "4-frame sprite animation of: wolf, that: is idle, facing: North-East"} +{"file_name": "images/381.png", "text": "8-frame sprite animation of: wolf, that: is running, facing: South-West"} +{"file_name": "images/382.png", "text": "8-frame sprite animation of: wolf, that: is running, facing: South-East"} +{"file_name": "images/383.png", "text": "8-frame sprite animation of: wolf, that: is running, facing: North-West"} +{"file_name": "images/384.png", "text": "8-frame sprite animation of: wolf, that: is running, facing: North-East"} +{"file_name": "images/385.png", "text": "5-frame sprite animation of: cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets, that: swings his both gauntlets over head to make an attack, facing: East"} +{"file_name": "images/386.png", "text": "6-frame sprite animation of: cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets, that: falls on the ground and dies, facing: East"} +{"file_name": "images/387.png", "text": "5-frame sprite animation of: cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets, that: is idle, facing: East"} +{"file_name": "images/388.png", "text": "4-frame sprite animation of: cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets, that: is getting struck, facing: East"} +{"file_name": "images/389.png", "text": "6-frame sprite animation of: cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets, that: is walking, facing: East"} +{"file_name": "images/390.png", "text": "4-frame sprite animation of: tiny baby blue dino with big head, that: is idle, facing: East"} +{"file_name": "images/391.png", "text": "10-frame sprite animation of: tiny baby blue dino with big head, that: is walking, facing: East"} +{"file_name": "images/392.png", "text": "3-frame sprite animation of: tiny baby blue dino with big head, that: is getting struck, facing: East"} +{"file_name": "images/393.png", "text": "7-frame sprite animation of: tiny baby blue dino with big head, that: is running, facing: East"} +{"file_name": "images/394.png", "text": "4-frame sprite animation of: tiny baby red dino with big head, that: is idle, facing: East"} +{"file_name": "images/395.png", "text": "10-frame sprite animation of: tiny baby red dino with big head, that: is walking, facing: East"} +{"file_name": "images/396.png", "text": "3-frame sprite animation of: tiny baby red dino with big head, that: is getting struck, facing: East"} +{"file_name": "images/397.png", "text": "7-frame sprite animation of: tiny baby red dino with big head, that: is running, facing: East"} +{"file_name": "images/398.png", "text": "4-frame sprite animation of: tiny baby yellow dino with big head, that: is idle, facing: East"} +{"file_name": "images/399.png", "text": "10-frame sprite animation of: tiny baby yellow dino with big head, that: is walking, facing: East"} +{"file_name": "images/400.png", "text": "3-frame sprite animation of: tiny baby yellow dino with big head, that: is getting struck, facing: East"} +{"file_name": "images/401.png", "text": "7-frame sprite animation of: tiny baby yellow dino with big head, that: is running, facing: East"} +{"file_name": "images/402.png", "text": "4-frame sprite animation of: tiny baby green dino with big head, that: is idle, facing: East"} +{"file_name": "images/403.png", "text": "10-frame sprite animation of: tiny baby green dino with big head, that: is walking, facing: East"} +{"file_name": "images/404.png", "text": "3-frame sprite animation of: tiny baby green dino with big head, that: is getting struck, facing: East"} +{"file_name": "images/405.png", "text": "7-frame sprite animation of: tiny baby green dino with big head, that: is running, facing: East"} +{"file_name": "images/406.png", "text": "8-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: is idle, facing: East"} +{"file_name": "images/407.png", "text": "8-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: runs, facing: East"} +{"file_name": "images/408.png", "text": "6-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: rolls, facing: East"} +{"file_name": "images/409.png", "text": "3-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: jumps up, facing: East"} +{"file_name": "images/410.png", "text": "3-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: falls down, facing: East"} +{"file_name": "images/411.png", "text": "8-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: defends himself by crossing his swords, facing: East"} +{"file_name": "images/412.png", "text": "8-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: is swinging his sword to attack, facing: East"} +{"file_name": "images/413.png", "text": "18-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: is fast swinging his swords in combo attack, facing: East"} +{"file_name": "images/414.png", "text": "26-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: is fast swinging his swords then makes whirlwind, facing: East"} +{"file_name": "images/415.png", "text": "26-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: teleports to different locations to deal damage with his swords in large area, facing: East"} +{"file_name": "images/416.png", "text": "6-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: getting struck, facing: East"} +{"file_name": "images/417.png", "text": "19-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: disappears in whirlwind, facing: East"} +{"file_name": "images/418.png", "text": "7-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: is thrusting his swords in air, facing: East"} +{"file_name": "images/419.png", "text": "1-frame sprite animation of: a face of wind hashashin in white scarf with a sword on his back, that: is idle, facing: South"} +{"file_name": "images/420.png", "text": "9-frame sprite animation of: a gray devil with three horns on head, that: walks, facing: North"} +{"file_name": "images/421.png", "text": "9-frame sprite animation of: a gray devil with three horns on head, that: walks, facing: West"} +{"file_name": "images/422.png", "text": "9-frame sprite animation of: a gray devil with three horns on head, that: walks, facing: South"} +{"file_name": "images/423.png", "text": "9-frame sprite animation of: a gray devil with three horns on head, that: walks, facing: East"} +{"file_name": "images/424.png", "text": "6-frame sprite animation of: tooth walker monster without hands with big tongue, that: walks, facing: East"} +{"file_name": "images/425.png", "text": "4-frame sprite animation of: tooth walker monster without hands with big tongue, that: is idle, facing: East"} +{"file_name": "images/426.png", "text": "4-frame sprite animation of: tooth walker monster without hands with big tongue, that: is getting struct, facing: East"} +{"file_name": "images/427.png", "text": "7-frame sprite animation of: tooth walker monster without hands with big tongue, that: explodes with blood, facing: East"} +{"file_name": "images/428.png", "text": "6-frame sprite animation of: tooth walker monster without hands with big tongue, that: bites with splashing effect, facing: East"} +{"file_name": "images/429.png", "text": "8-frame sprite animation of: shuriken, that: rolls"} +{"file_name": "images/430.png", "text": "8-frame sprite animation of: brick, that: is shattered"} +{"file_name": "images/431.png", "text": "8-frame sprite animation of: rock, that: is shattered and falls down"} +{"file_name": "images/432.png", "text": "13-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/433.png", "text": "13-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/434.png", "text": "13-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/435.png", "text": "13-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/436.png", "text": "9-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: walks, facing: North"} +{"file_name": "images/437.png", "text": "9-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: walks, facing: West"} +{"file_name": "images/438.png", "text": "9-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: walks, facing: South"} +{"file_name": "images/439.png", "text": "9-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: walks, facing: East"} +{"file_name": "images/440.png", "text": "13-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/441.png", "text": "13-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/442.png", "text": "13-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/443.png", "text": "13-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/444.png", "text": "9-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: walks, facing: North"} +{"file_name": "images/445.png", "text": "9-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: walks, facing: West"} +{"file_name": "images/446.png", "text": "9-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: walks, facing: South"} +{"file_name": "images/447.png", "text": "9-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: walks, facing: East"} +{"file_name": "images/448.png", "text": "13-frame sprite animation of: a man with short gray hair in white pants without hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/449.png", "text": "13-frame sprite animation of: a man with short gray hair in white pants without hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/450.png", "text": "13-frame sprite animation of: a man with short gray hair in white pants without hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/451.png", "text": "13-frame sprite animation of: a man with short gray hair in white pants without hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/452.png", "text": "9-frame sprite animation of: a man with short gray hair in white pants without hair, that: walks, facing: North"} +{"file_name": "images/453.png", "text": "9-frame sprite animation of: a man with short gray hair in white pants without hair, that: walks, facing: West"} +{"file_name": "images/454.png", "text": "9-frame sprite animation of: a man with short gray hair in white pants without hair, that: walks, facing: South"} +{"file_name": "images/455.png", "text": "9-frame sprite animation of: a man with short gray hair in white pants without hair, that: walks, facing: East"} +{"file_name": "images/456.png", "text": "13-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/457.png", "text": "13-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/458.png", "text": "13-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/459.png", "text": "13-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/460.png", "text": "9-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: walks, facing: North"} +{"file_name": "images/461.png", "text": "9-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: walks, facing: West"} +{"file_name": "images/462.png", "text": "9-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: walks, facing: South"} +{"file_name": "images/463.png", "text": "9-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: walks, facing: East"} +{"file_name": "images/464.png", "text": "13-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/465.png", "text": "13-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/466.png", "text": "13-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/467.png", "text": "13-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/468.png", "text": "9-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: walks, facing: North"} +{"file_name": "images/469.png", "text": "9-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: walks, facing: West"} +{"file_name": "images/470.png", "text": "9-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: walks, facing: South"} +{"file_name": "images/471.png", "text": "9-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: walks, facing: East"} +{"file_name": "images/472.png", "text": "13-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/473.png", "text": "13-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/474.png", "text": "13-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/475.png", "text": "13-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/476.png", "text": "9-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: walks, facing: North"} +{"file_name": "images/477.png", "text": "9-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: walks, facing: West"} +{"file_name": "images/478.png", "text": "9-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: walks, facing: South"} +{"file_name": "images/479.png", "text": "9-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: walks, facing: East"} +{"file_name": "images/480.png", "text": "13-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/481.png", "text": "13-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/482.png", "text": "13-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/483.png", "text": "13-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/484.png", "text": "9-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: walks, facing: North"} +{"file_name": "images/485.png", "text": "9-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: walks, facing: West"} +{"file_name": "images/486.png", "text": "9-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: walks, facing: South"} +{"file_name": "images/487.png", "text": "9-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: walks, facing: East"} +{"file_name": "images/488.png", "text": "13-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/489.png", "text": "13-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/490.png", "text": "13-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/491.png", "text": "13-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/492.png", "text": "9-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: walks, facing: North"} +{"file_name": "images/493.png", "text": "9-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: walks, facing: West"} +{"file_name": "images/494.png", "text": "9-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: walks, facing: South"} +{"file_name": "images/495.png", "text": "9-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: walks, facing: East"} +{"file_name": "images/496.png", "text": "13-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/497.png", "text": "13-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/498.png", "text": "13-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/499.png", "text": "13-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/500.png", "text": "9-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: walks, facing: North"} +{"file_name": "images/501.png", "text": "9-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: walks, facing: West"} +{"file_name": "images/502.png", "text": "9-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: walks, facing: South"} +{"file_name": "images/503.png", "text": "9-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: walks, facing: East"} +{"file_name": "images/504.png", "text": "13-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/505.png", "text": "13-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/506.png", "text": "13-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/507.png", "text": "13-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/508.png", "text": "9-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: walks, facing: North"} +{"file_name": "images/509.png", "text": "9-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: walks, facing: West"} +{"file_name": "images/510.png", "text": "9-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: walks, facing: South"} +{"file_name": "images/511.png", "text": "9-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: walks, facing: East"} +{"file_name": "images/512.png", "text": "13-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/513.png", "text": "13-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/514.png", "text": "13-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/515.png", "text": "13-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/516.png", "text": "9-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: walks, facing: North"} +{"file_name": "images/517.png", "text": "9-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: walks, facing: West"} +{"file_name": "images/518.png", "text": "9-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: walks, facing: South"} +{"file_name": "images/519.png", "text": "9-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: walks, facing: East"} +{"file_name": "images/520.png", "text": "13-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/521.png", "text": "13-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/522.png", "text": "13-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/523.png", "text": "13-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/524.png", "text": "9-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: walks, facing: North"} +{"file_name": "images/525.png", "text": "9-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: walks, facing: West"} +{"file_name": "images/526.png", "text": "9-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: walks, facing: South"} +{"file_name": "images/527.png", "text": "9-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: walks, facing: East"} +{"file_name": "images/528.png", "text": "13-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/529.png", "text": "13-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/530.png", "text": "13-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/531.png", "text": "13-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/532.png", "text": "9-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: walks, facing: North"} +{"file_name": "images/533.png", "text": "9-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: walks, facing: West"} +{"file_name": "images/534.png", "text": "9-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: walks, facing: South"} +{"file_name": "images/535.png", "text": "9-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: walks, facing: East"} +{"file_name": "images/536.png", "text": "13-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: shoots from invisible bow, facing: North"} +{"file_name": "images/537.png", "text": "13-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: shoots from invisible bow, facing: West"} +{"file_name": "images/538.png", "text": "13-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: shoots from invisible bow, facing: South"} +{"file_name": "images/539.png", "text": "13-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: shoots from invisible bow, facing: East"} +{"file_name": "images/540.png", "text": "9-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: walks, facing: North"} +{"file_name": "images/541.png", "text": "9-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: walks, facing: West"} +{"file_name": "images/542.png", "text": "9-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: walks, facing: South"} +{"file_name": "images/543.png", "text": "9-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: walks, facing: East"} +{"file_name": "images/544.png", "text": "13-frame sprite animation of: an orc in white pants, that: shoots from invisible bow, facing: North"} +{"file_name": "images/545.png", "text": "13-frame sprite animation of: an orc in white pants, that: shoots from invisible bow, facing: West"} +{"file_name": "images/546.png", "text": "13-frame sprite animation of: an orc in white pants, that: shoots from invisible bow, facing: South"} +{"file_name": "images/547.png", "text": "13-frame sprite animation of: an orc in white pants, that: shoots from invisible bow, facing: East"} +{"file_name": "images/548.png", "text": "9-frame sprite animation of: an orc in white pants, that: walks, facing: North"} +{"file_name": "images/549.png", "text": "9-frame sprite animation of: an orc in white pants, that: walks, facing: West"} +{"file_name": "images/550.png", "text": "9-frame sprite animation of: an orc in white pants, that: walks, facing: South"} +{"file_name": "images/551.png", "text": "9-frame sprite animation of: an orc in white pants, that: walks, facing: East"} +{"file_name": "images/552.png", "text": "13-frame sprite animation of: an orc in red shorts, that: shoots from invisible bow, facing: North"} +{"file_name": "images/553.png", "text": "13-frame sprite animation of: an orc in red shorts, that: shoots from invisible bow, facing: West"} +{"file_name": "images/554.png", "text": "13-frame sprite animation of: an orc in red shorts, that: shoots from invisible bow, facing: South"} +{"file_name": "images/555.png", "text": "13-frame sprite animation of: an orc in red shorts, that: shoots from invisible bow, facing: East"} +{"file_name": "images/556.png", "text": "9-frame sprite animation of: an orc in red shorts, that: walks, facing: North"} +{"file_name": "images/557.png", "text": "9-frame sprite animation of: an orc in red shorts, that: walks, facing: West"} +{"file_name": "images/558.png", "text": "9-frame sprite animation of: an orc in red shorts, that: walks, facing: South"} +{"file_name": "images/559.png", "text": "9-frame sprite animation of: an orc in red shorts, that: walks, facing: East"} diff --git a/reorganize_sprite_dataset.py b/reorganize_sprite_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..626f8b323da8cf348111e096ec70965128454e5b --- /dev/null +++ b/reorganize_sprite_dataset.py @@ -0,0 +1,59 @@ +import os +from datasets import Dataset, DatasetDict, Image, Features, Value +import glob + +# Define the path to your dataset (where the folders like 0_frames, 1_frames, etc., are located) +dataset_path = "/Users/lorenzo/Documents/GitHub/sprite-animation/train" # Replace with the actual path + +# Define the features for the dataset +features = Features({ + "image": Image(), + "label": Value("string"), # The folder name (e.g., "12_frames") + "sprite_id": Value("string"), # The sprite ID (e.g., "12") +}) + +# Initialize lists to hold the consolidated data +images = [] +labels = [] +sprite_ids = [] + +# Iterate over each folder (0_frames, 1_frames, etc.) +for folder_name in os.listdir(dataset_path): + folder_path = os.path.join(dataset_path, folder_name) + + # Skip non-directory files and hidden directories (e.g., .git) + if not os.path.isdir(folder_path) or folder_name.startswith("."): + continue + + print(f"Processing folder: {folder_name}") # Debug: Print folder being processed + + # Extract the sprite ID from the folder name (e.g., "12" from "12_frames") + sprite_id = folder_name.split("_")[0] + + # Load all images in the folder + image_paths = glob.glob(os.path.join(folder_path, "sprite_*.png")) + print(f"Found {len(image_paths)} images in folder '{folder_name}'") # Debug: Print number of images found + + for image_path in image_paths: + # Append data to the consolidated lists + images.append(image_path) + labels.append(folder_name) # Use the folder name as the label + sprite_ids.append(sprite_id) # Use the sprite ID as an additional field + +# Create a single dataset with all the data +dataset = Dataset.from_dict( + { + "image": images, + "label": labels, + "sprite_id": sprite_ids, + }, + features=features +) + +# Create a DatasetDict with a single split (e.g., "train") +final_dataset = DatasetDict({"train": dataset}) + +# Push the dataset to Hugging Face +final_dataset.push_to_hub("Lod34/sprite-animation", private=False) # Set private=True if you want it private + +print("Dataset successfully uploaded!") \ No newline at end of file diff --git a/sprite_metadata.json b/sprite_metadata.json index 6d6d5a4717c587b1bf1f19f796d53e9f304f47f1..539d22ec16f49507401348e0d5bfc36292f07719 100644 --- a/sprite_metadata.json +++ b/sprite_metadata.json @@ -1,994 +1,4482 @@ { + "0": { + "frames": "17", + "action": "shoots with slingshot", + "direction": "East", + "character": "red-haired hobbit in green cape", + "folder_name": "spritesheet_0", + "full_description": "17-frame sprite animation of: red-haired hobbit in green cape, that: shoots with slingshot, facing: East" + }, + "1": { + "frames": "13", + "action": "blocks an attack with staff", + "direction": "East", + "character": "red-haired hobbit in green cape", + "folder_name": "spritesheet_1", + "full_description": "13-frame sprite animation of: red-haired hobbit in green cape, that: blocks an attack with staff, facing: East" + }, + "2": { + "frames": "12", + "action": "is taking damage then is struck and dies", + "direction": "East", + "character": "red-haired hobbit in green cape", + "folder_name": "spritesheet_2", + "full_description": "12-frame sprite animation of: red-haired hobbit in green cape, that: is taking damage then is struck and dies, facing: East" + }, + "3": { + "frames": "4", + "action": "is taking damage after hit then is struck", + "direction": "East", + "character": "red-haired hobbit in green cape", + "folder_name": "spritesheet_3", + "full_description": "4-frame sprite animation of: red-haired hobbit in green cape, that: is taking damage after hit then is struck, facing: East" + }, + "4": { + "frames": "4", + "action": "is idle", + "direction": "East", + "character": "red-haired hobbit in green cape", + "folder_name": "spritesheet_4", + "full_description": "4-frame sprite animation of: red-haired hobbit in green cape, that: is idle, facing: East" + }, + "5": { + "frames": "10", + "action": "jumps", + "direction": "East", + "character": "red-haired hobbit in green cape", + "folder_name": "spritesheet_5", + "full_description": "10-frame sprite animation of: red-haired hobbit in green cape, that: jumps, facing: East" + }, + "6": { + "frames": "8", + "action": "is slowing down after run", + "direction": "East", + "character": "red-haired hobbit in green cape", + "folder_name": "spritesheet_6", + "full_description": "8-frame sprite animation of: red-haired hobbit in green cape, that: is slowing down after run, facing: East" + }, + "7": { + "frames": "7", + "action": "is making jumping sword attack", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_7", + "full_description": "7-frame sprite animation of: knight in silver armor with red pants, that: is making jumping sword attack, facing: East" + }, + "8": { + "frames": "19", + "action": "is attacking with sword", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_8", + "full_description": "19-frame sprite animation of: knight in silver armor with red pants, that: is attacking with sword, facing: East" + }, + "9": { + "frames": "6", + "action": "climbs", + "direction": "North", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_9", + "full_description": "6-frame sprite animation of: knight in silver armor with red pants, that: climbs, facing: North" + }, + "10": { + "frames": "7", + "action": "is attacking with sword while crouching", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_10", + "full_description": "7-frame sprite animation of: knight in silver armor with red pants, that: is attacking with sword while crouching, facing: East" + }, + "11": { + "frames": "8", + "action": "is idle while crouching", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_11", + "full_description": "8-frame sprite animation of: knight in silver armor with red pants, that: is idle while crouching, facing: East" + }, "12": { - "frames": "unknown", - "action": "unknown", + "frames": "4", + "action": "faints", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_12", + "full_description": "4-frame sprite animation of: knight in silver armor with red pants, that: faints, facing: East" + }, + "13": { + "frames": "8", + "action": "is hanging with single hand in air", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_13", + "full_description": "8-frame sprite animation of: knight in silver armor with red pants, that: is hanging with single hand in air, facing: East" + }, + "14": { + "frames": "8", + "action": "is restoring a health using red crystal", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_14", + "full_description": "8-frame sprite animation of: knight in silver armor with red pants, that: is restoring a health using red crystal, facing: East" + }, + "15": { + "frames": "3", + "action": "is getting struck", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_15", + "full_description": "3-frame sprite animation of: knight in silver armor with red pants, that: is getting struck, facing: East" + }, + "16": { + "frames": "8", + "action": "is idle", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_16", + "full_description": "8-frame sprite animation of: knight in silver armor with red pants, that: is idle, facing: East" + }, + "17": { + "frames": "8", + "action": "jumps", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_17", + "full_description": "8-frame sprite animation of: knight in silver armor with red pants, that: jumps, facing: East" + }, + "18": { + "frames": "12", + "action": "is falling to his knees and begins to pray and then gets up", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_18", + "full_description": "12-frame sprite animation of: knight in silver armor with red pants, that: is falling to his knees and begins to pray and then gets up, facing: East" + }, + "19": { + "frames": "4", + "action": "is rolling", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_19", + "full_description": "4-frame sprite animation of: knight in silver armor with red pants, that: is rolling, facing: East" + }, + "20": { + "frames": "8", + "action": "is running", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_20", + "full_description": "8-frame sprite animation of: knight in silver armor with red pants, that: is running, facing: East" + }, + "21": { + "frames": "10", + "action": "is sliding", + "direction": "East", + "character": "knight in silver armor with red pants", + "folder_name": "spritesheet_21", + "full_description": "10-frame sprite animation of: knight in silver armor with red pants, that: is sliding, facing: East" + }, + "22": { + "frames": "5", + "action": "is idle", + "direction": "West", + "character": "brown treasure chest", + "folder_name": "spritesheet_22", + "full_description": "5-frame sprite animation of: brown treasure chest, that: is idle, facing: West" + }, + "23": { + "frames": "5", + "action": "is opening", + "direction": "West", + "character": "brown treasure chest", + "folder_name": "spritesheet_23", + "full_description": "5-frame sprite animation of: brown treasure chest, that: is opening, facing: West" + }, + "24": { + "frames": "5", + "action": "is idle", + "direction": "West", + "character": "black treasure chest", + "folder_name": "spritesheet_24", + "full_description": "5-frame sprite animation of: black treasure chest, that: is idle, facing: West" + }, + "25": { + "frames": "5", + "action": "is opening", + "direction": "West", + "character": "black treasure chest", + "folder_name": "spritesheet_25", + "full_description": "5-frame sprite animation of: black treasure chest, that: is opening, facing: West" + }, + "26": { + "frames": "5", + "action": "is idle", + "direction": "West", + "character": "red treasure chest", + "folder_name": "spritesheet_26", + "full_description": "5-frame sprite animation of: red treasure chest, that: is idle, facing: West" + }, + "27": { + "frames": "5", + "action": "is opening", + "direction": "West", + "character": "red treasure chest", + "folder_name": "spritesheet_27", + "full_description": "5-frame sprite animation of: red treasure chest, that: is opening, facing: West" + }, + "28": { + "frames": "5", + "action": "is idle", + "direction": "West", + "character": "white treasure chest", + "folder_name": "spritesheet_28", + "full_description": "5-frame sprite animation of: white treasure chest, that: is idle, facing: West" + }, + "29": { + "frames": "5", + "action": "is opening", + "direction": "West", + "character": "white treasure chest", + "folder_name": "spritesheet_29", + "full_description": "5-frame sprite animation of: white treasure chest, that: is opening, facing: West" + }, + "30": { + "frames": "8", + "action": "is running", + "direction": "East", + "character": "arcane archer in pink hood with a magic bow", + "folder_name": "spritesheet_30", + "full_description": "8-frame sprite animation of: arcane archer in pink hood with a magic bow, that: is running, facing: East" + }, + "31": { + "frames": "8", + "action": "is fainting", + "direction": "East", + "character": "arcane archer in pink hood with a magic bow", + "folder_name": "spritesheet_31", + "full_description": "8-frame sprite animation of: arcane archer in pink hood with a magic bow, that: is fainting, facing: East" + }, + "32": { + "frames": "7", + "action": "is rolling", + "direction": "East", + "character": "arcane archer in pink hood with a magic bow", + "folder_name": "spritesheet_32", + "full_description": "7-frame sprite animation of: arcane archer in pink hood with a magic bow, that: is rolling, facing: East" + }, + "33": { + "frames": "7", + "action": "shoots an arrow from a bow", + "direction": "East", + "character": "arcane archer in pink hood with a magic bow", + "folder_name": "spritesheet_33", + "full_description": "7-frame sprite animation of: arcane archer in pink hood with a magic bow, that: shoots an arrow from a bow, facing: East" + }, + "34": { + "frames": "6", + "action": "does wall slide", + "direction": "West", + "character": "arcane archer in pink hood with a magic bow", + "folder_name": "spritesheet_34", + "full_description": "6-frame sprite animation of: arcane archer in pink hood with a magic bow, that: does wall slide, facing: West" + }, + "35": { + "frames": "4", + "action": "is crouching idle", + "direction": "East", + "character": "arcane archer in pink hood with a magic bow", + "folder_name": "spritesheet_35", + "full_description": "4-frame sprite animation of: arcane archer in pink hood with a magic bow, that: is crouching idle, facing: East" + }, + "36": { + "frames": "4", + "action": "is jumping with a stomp", + "direction": "East", + "character": "arcane archer in pink hood with a magic bow", + "folder_name": "spritesheet_36", + "full_description": "4-frame sprite animation of: arcane archer in pink hood with a magic bow, that: is jumping with a stomp, facing: East" + }, + "37": { + "frames": "2", + "action": "is slowing down after run", + "direction": "East", + "character": "arcane archer in pink hood with a magic bow", + "folder_name": "spritesheet_37", + "full_description": "2-frame sprite animation of: arcane archer in pink hood with a magic bow, that: is slowing down after run, facing: East" + }, + "38": { + "frames": "7", + "action": "is swinging a ball to attack", + "direction": "East", + "character": "ghost in brown sheet with steel ball on a chain", + "folder_name": "spritesheet_38", + "full_description": "7-frame sprite animation of: ghost in brown sheet with steel ball on a chain, that: is swinging a ball to attack, facing: East" + }, + "39": { + "frames": "4", + "action": "is charging", + "direction": "East", + "character": "ghost in brown sheet with steel ball on a chain", + "folder_name": "spritesheet_39", + "full_description": "4-frame sprite animation of: ghost in brown sheet with steel ball on a chain, that: is charging, facing: East" + }, + "40": { + "frames": "5", + "action": "faints", + "direction": "East", + "character": "ghost in brown sheet with steel ball on a chain", + "folder_name": "spritesheet_40", + "full_description": "5-frame sprite animation of: ghost in brown sheet with steel ball on a chain, that: faints, facing: East" + }, + "41": { + "frames": "2", + "action": "is getting struck", + "direction": "East", + "character": "ghost in brown sheet with steel ball on a chain", + "folder_name": "spritesheet_41", + "full_description": "2-frame sprite animation of: ghost in brown sheet with steel ball on a chain, that: is getting struck, facing: East" + }, + "42": { + "frames": "5", + "action": "is idle", + "direction": "East", + "character": "ghost in brown sheet with steel ball on a chain", + "folder_name": "spritesheet_42", + "full_description": "5-frame sprite animation of: ghost in brown sheet with steel ball on a chain, that: is idle, facing: East" + }, + "43": { + "frames": "8", + "action": "is running", + "direction": "East", + "character": "ghost in brown sheet with steel ball on a chain", + "folder_name": "spritesheet_43", + "full_description": "8-frame sprite animation of: ghost in brown sheet with steel ball on a chain, that: is running, facing: East" + }, + "44": { + "frames": "11", + "action": "is idle with moon levitating up and down", + "direction": "South", + "character": "dark tower of red crystal moon", + "folder_name": "spritesheet_44", + "full_description": "11-frame sprite animation of: dark tower of red crystal moon, that: is idle with moon levitating up and down, facing: South" + }, + "45": { + "frames": "10", + "action": "swings his weapon to attack", + "direction": "West", + "character": "a cyclop with red eye in pink savage armor with a curved boline", + "folder_name": "spritesheet_45", + "full_description": "10-frame sprite animation of: a cyclop with red eye in pink savage armor with a curved boline, that: swings his weapon to attack, facing: West" + }, + "46": { + "frames": "9", + "action": "is casting a portal spell", + "direction": "West", + "character": "a cyclop with red eye in pink savage armor with a curved boline", + "folder_name": "spritesheet_46", + "full_description": "9-frame sprite animation of: a cyclop with red eye in pink savage armor with a curved boline, that: is casting a portal spell, facing: West" + }, + "47": { + "frames": "10", + "action": "is transforming into fog", + "direction": "West", + "character": "a cyclop with red eye in pink savage armor with a curved boline", + "folder_name": "spritesheet_47", + "full_description": "10-frame sprite animation of: a cyclop with red eye in pink savage armor with a curved boline, that: is transforming into fog, facing: West" + }, + "48": { + "frames": "3", + "action": "is getting struck", + "direction": "West", + "character": "a cyclop with red eye in pink savage armor with a curved boline", + "folder_name": "spritesheet_48", + "full_description": "3-frame sprite animation of: a cyclop with red eye in pink savage armor with a curved boline, that: is getting struck, facing: West" + }, + "49": { + "frames": "8", + "action": "is idle", + "direction": "West", + "character": "a cyclop with red eye in pink savage armor with a curved boline", + "folder_name": "spritesheet_49", + "full_description": "8-frame sprite animation of: a cyclop with red eye in pink savage armor with a curved boline, that: is idle, facing: West" + }, + "50": { + "frames": "16", + "action": "strikes a lighting in shape of a hand", + "direction": "West", + "character": "pink portal", + "folder_name": "spritesheet_50", + "full_description": "16-frame sprite animation of: pink portal, that: strikes a lighting in shape of a hand, facing: West" + }, + "51": { + "frames": "8", + "action": "walks", + "direction": "West", + "character": "a cyclop with red eye in pink savage armor with a curved boline", + "folder_name": "spritesheet_51", + "full_description": "8-frame sprite animation of: a cyclop with red eye in pink savage armor with a curved boline, that: walks, facing: West" + }, + "52": { + "frames": "7", + "action": "is biting", + "direction": "West", + "character": "a black canine", + "folder_name": "spritesheet_52", + "full_description": "7-frame sprite animation of: a black canine, that: is biting, facing: West" + }, + "53": { + "frames": "8", + "action": "is laying down", + "direction": "West", + "character": "a black canine", + "folder_name": "spritesheet_53", + "full_description": "8-frame sprite animation of: a black canine, that: is laying down, facing: West" + }, + "54": { + "frames": "4", + "action": "is getting struck", + "direction": "West", + "character": "a black canine", + "folder_name": "spritesheet_54", + "full_description": "4-frame sprite animation of: a black canine, that: is getting struck, facing: West" + }, + "55": { + "frames": "4", + "action": "is idle", + "direction": "West", + "character": "a black canine", + "folder_name": "spritesheet_55", + "full_description": "4-frame sprite animation of: a black canine, that: is idle, facing: West" + }, + "56": { + "frames": "6", + "action": "is running", + "direction": "West", + "character": "a black canine", + "folder_name": "spritesheet_56", + "full_description": "6-frame sprite animation of: a black canine, that: is running, facing: West" + }, + "57": { + "frames": "7", + "action": "is biting", + "direction": "West", + "character": "a brown canine", + "folder_name": "spritesheet_57", + "full_description": "7-frame sprite animation of: a brown canine, that: is biting, facing: West" + }, + "58": { + "frames": "8", + "action": "is laying down", + "direction": "West", + "character": "a brown canine", + "folder_name": "spritesheet_58", + "full_description": "8-frame sprite animation of: a brown canine, that: is laying down, facing: West" + }, + "59": { + "frames": "4", + "action": "is getting struck", + "direction": "West", + "character": "a brown canine", + "folder_name": "spritesheet_59", + "full_description": "4-frame sprite animation of: a brown canine, that: is getting struck, facing: West" + }, + "60": { + "frames": "4", + "action": "is idle", + "direction": "West", + "character": "a brown canine", + "folder_name": "spritesheet_60", + "full_description": "4-frame sprite animation of: a brown canine, that: is idle, facing: West" + }, + "61": { + "frames": "6", + "action": "is running", + "direction": "West", + "character": "a brown canine", + "folder_name": "spritesheet_61", + "full_description": "6-frame sprite animation of: a brown canine, that: is running, facing: West" + }, + "62": { + "frames": "7", + "action": "is biting", + "direction": "West", + "character": "a gray canine", + "folder_name": "spritesheet_62", + "full_description": "7-frame sprite animation of: a gray canine, that: is biting, facing: West" + }, + "63": { + "frames": "8", + "action": "is laying down", + "direction": "West", + "character": "a gray canine", + "folder_name": "spritesheet_63", + "full_description": "8-frame sprite animation of: a gray canine, that: is laying down, facing: West" + }, + "64": { + "frames": "4", + "action": "is getting struck", + "direction": "West", + "character": "a gray canine", + "folder_name": "spritesheet_64", + "full_description": "4-frame sprite animation of: a gray canine, that: is getting struck, facing: West" + }, + "65": { + "frames": "4", + "action": "is idle", + "direction": "West", + "character": "a gray canine", + "folder_name": "spritesheet_65", + "full_description": "4-frame sprite animation of: a gray canine, that: is idle, facing: West" + }, + "66": { + "frames": "6", + "action": "is running", + "direction": "West", + "character": "a gray canine", + "folder_name": "spritesheet_66", + "full_description": "6-frame sprite animation of: a gray canine, that: is running, facing: West" + }, + "67": { + "frames": "7", + "action": "is biting", + "direction": "West", + "character": "a white canine", + "folder_name": "spritesheet_67", + "full_description": "7-frame sprite animation of: a white canine, that: is biting, facing: West" + }, + "68": { + "frames": "8", + "action": "is laying down", + "direction": "West", + "character": "a white canine", + "folder_name": "spritesheet_68", + "full_description": "8-frame sprite animation of: a white canine, that: is laying down, facing: West" + }, + "69": { + "frames": "4", + "action": "is getting struck", + "direction": "West", + "character": "a white canine", + "folder_name": "spritesheet_69", + "full_description": "4-frame sprite animation of: a white canine, that: is getting struck, facing: West" + }, + "70": { + "frames": "4", + "action": "is idle", + "direction": "West", + "character": "a white canine", + "folder_name": "spritesheet_70", + "full_description": "4-frame sprite animation of: a white canine, that: is idle, facing: West" + }, + "71": { + "frames": "6", + "action": "is running", + "direction": "West", + "character": "a white canine", + "folder_name": "spritesheet_71", + "full_description": "6-frame sprite animation of: a white canine, that: is running, facing: West" + }, + "72": { + "frames": "6", + "action": "is flexing", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_72", + "full_description": "6-frame sprite animation of: blue haired muscular fighter, that: is flexing, facing: East" + }, + "73": { + "frames": "2", + "action": "is levitating", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_73", + "full_description": "2-frame sprite animation of: blue haired muscular fighter, that: is levitating, facing: East" + }, + "74": { + "frames": "3", + "action": "is idle", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_74", + "full_description": "3-frame sprite animation of: blue haired muscular fighter, that: is idle, facing: East" + }, + "75": { + "frames": "1", + "action": "is standing", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_75", + "full_description": "1-frame sprite animation of: blue haired muscular fighter, that: is standing, facing: East" + }, + "76": { + "frames": "4", + "action": "is sliding", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_76", + "full_description": "4-frame sprite animation of: blue haired muscular fighter, that: is sliding, facing: East" + }, + "77": { + "frames": "2", + "action": "is sitting down cross-legged", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_77", + "full_description": "2-frame sprite animation of: blue haired muscular fighter, that: is sitting down cross-legged, facing: East" + }, + "78": { + "frames": "3", + "action": "is flying horizontally", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_78", + "full_description": "3-frame sprite animation of: blue haired muscular fighter, that: is flying horizontally, facing: East" + }, + "79": { + "frames": "6", + "action": "is walking", + "direction": "East", + "character": "bald fighter", + "folder_name": "spritesheet_79", + "full_description": "6-frame sprite animation of: bald fighter, that: is walking, facing: East" + }, + "80": { + "frames": "8", + "action": "is making punch combo attack with both hands", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_80", + "full_description": "8-frame sprite animation of: blue haired muscular fighter, that: is making punch combo attack with both hands, facing: East" + }, + "81": { + "frames": "6", + "action": "is making multiple fast kicks in air", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_81", + "full_description": "6-frame sprite animation of: blue haired muscular fighter, that: is making multiple fast kicks in air, facing: East" + }, + "82": { + "frames": "3", + "action": "is punching down from the air", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_82", + "full_description": "3-frame sprite animation of: blue haired muscular fighter, that: is punching down from the air, facing: East" + }, + "83": { + "frames": "2", + "action": "is blocking incoming attack", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_83", + "full_description": "2-frame sprite animation of: blue haired muscular fighter, that: is blocking incoming attack, facing: East" + }, + "84": { + "frames": "3", + "action": "is getting struck", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_84", + "full_description": "3-frame sprite animation of: blue haired muscular fighter, that: is getting struck, facing: East" + }, + "85": { + "frames": "1", + "action": "taking damage", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_85", + "full_description": "1-frame sprite animation of: blue haired muscular fighter, that: taking damage, facing: East" + }, + "86": { + "frames": "1", + "action": "is getting hit", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_86", + "full_description": "1-frame sprite animation of: blue haired muscular fighter, that: is getting hit, facing: East" + }, + "87": { + "frames": "1", + "action": "is getting hit", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_87", + "full_description": "1-frame sprite animation of: blue haired muscular fighter, that: is getting hit, facing: East" + }, + "88": { + "frames": "1", + "action": "is laying down", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_88", + "full_description": "1-frame sprite animation of: blue haired muscular fighter, that: is laying down, facing: East" + }, + "89": { + "frames": "2", + "action": "is screaming on his knees", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_89", + "full_description": "2-frame sprite animation of: blue haired muscular fighter, that: is screaming on his knees, facing: East" + }, + "90": { + "frames": "4", + "action": "is punching fast with both hands", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_90", + "full_description": "4-frame sprite animation of: blue haired muscular fighter, that: is punching fast with both hands, facing: East" + }, + "91": { + "frames": "3", + "action": "is casting a magic beam from both hands", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_91", + "full_description": "3-frame sprite animation of: blue haired muscular fighter, that: is casting a magic beam from both hands, facing: East" + }, + "92": { + "frames": "4", + "action": "casting a magic beam from right hand", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_92", + "full_description": "4-frame sprite animation of: blue haired muscular fighter, that: casting a magic beam from right hand, facing: East" + }, + "93": { + "frames": "1", + "action": "is screaming with left hand in air", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_93", + "full_description": "1-frame sprite animation of: blue haired muscular fighter, that: is screaming with left hand in air, facing: East" + }, + "94": { + "frames": "4", + "action": "is holding hands in air", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_94", + "full_description": "4-frame sprite animation of: blue haired muscular fighter, that: is holding hands in air, facing: East" + }, + "95": { + "frames": "2", + "action": "is getting knock out after hit", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_95", + "full_description": "2-frame sprite animation of: blue haired muscular fighter, that: is getting knock out after hit, facing: East" + }, + "96": { + "frames": "3", + "action": "is casting a magic beam from both hands while running", + "direction": "East", + "character": "blue haired muscular fighter", + "folder_name": "spritesheet_96", + "full_description": "3-frame sprite animation of: blue haired muscular fighter, that: is casting a magic beam from both hands while running, facing: East" + }, + "97": { + "frames": "4", + "action": "is idle", + "direction": "East", + "character": "energy shield", + "folder_name": "spritesheet_97", + "full_description": "4-frame sprite animation of: energy shield, that: is idle, facing: East" + }, + "98": { + "frames": "8", + "action": "is dancing", + "direction": "West", + "character": "woman in green dress with red hair", + "folder_name": "spritesheet_98", + "full_description": "8-frame sprite animation of: woman in green dress with red hair, that: is dancing, facing: West" + }, + "99": { + "frames": "8", + "action": "is dancing", + "direction": "South", + "character": "woman in green dress with red hair", + "folder_name": "spritesheet_99", + "full_description": "8-frame sprite animation of: woman in green dress with red hair, that: is dancing, facing: South" + }, + "100": { + "frames": "8", + "action": "is dancing", + "direction": "West", + "character": "woman in green dress with red hair", + "folder_name": "spritesheet_100", + "full_description": "8-frame sprite animation of: woman in green dress with red hair, that: is dancing, facing: West" + }, + "101": { + "frames": "8", + "action": "is dancing", + "direction": "South", + "character": "woman in green dress with red hair", + "folder_name": "spritesheet_101", + "full_description": "8-frame sprite animation of: woman in green dress with red hair, that: is dancing, facing: South" + }, + "102": { + "frames": "8", + "action": "is dancing", + "direction": "South", + "character": "woman in green dress with red hair", + "folder_name": "spritesheet_102", + "full_description": "8-frame sprite animation of: woman in green dress with red hair, that: is dancing, facing: South" + }, + "103": { + "frames": "10", + "action": "thrusts his arrow like a sword to melee attack", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_103", + "full_description": "10-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: thrusts his arrow like a sword to melee attack, facing: East" + }, + "104": { + "frames": "15", + "action": "shots magic arrow", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_104", + "full_description": "15-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: shots magic arrow, facing: East" + }, + "105": { + "frames": "12", + "action": "shoots multiple arrows at once", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_105", + "full_description": "12-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: shoots multiple arrows at once, facing: East" + }, + "106": { + "frames": "10", + "action": "shots magic arrow while in air", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_106", + "full_description": "10-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: shots magic arrow while in air, facing: East" + }, + "107": { + "frames": "19", + "action": "falls to his knees and faints on the floor", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_107", + "full_description": "19-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: falls to his knees and faints on the floor, facing: East" + }, + "108": { + "frames": "19", + "action": "defends himself by transforming his bow into shield made of roots", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_108", + "full_description": "19-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: defends himself by transforming his bow into shield made of roots, facing: East" + }, + "109": { + "frames": "12", + "action": "is idle", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_109", + "full_description": "12-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: is idle, facing: East" + }, + "110": { + "frames": "3", + "action": "falls down", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_110", + "full_description": "3-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: falls down, facing: East" + }, + "111": { + "frames": "22", + "action": "jumps up then falls down", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_111", + "full_description": "22-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: jumps up then falls down, facing: East" + }, + "112": { + "frames": "3", + "action": "jumps up", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_112", + "full_description": "3-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: jumps up, facing: East" + }, + "113": { + "frames": "8", + "action": "grows roots from the arrowhead", + "direction": "East", + "character": "magic arrow", + "folder_name": "spritesheet_113", + "full_description": "8-frame sprite animation of: magic arrow, that: grows roots from the arrowhead, facing: East" + }, + "114": { + "frames": "8", + "action": "releases poison from the tip", + "direction": "East", + "character": "magic arrow", + "folder_name": "spritesheet_114", + "full_description": "8-frame sprite animation of: magic arrow, that: releases poison from the tip, facing: East" + }, + "115": { + "frames": "6", + "action": "hits the target and wiggles", + "direction": "East", + "character": "arrow", + "folder_name": "spritesheet_115", + "full_description": "6-frame sprite animation of: arrow, that: hits the target and wiggles, facing: East" + }, + "116": { + "frames": "18", + "action": "hits the ground creating entangling roots", + "direction": "East", + "character": "arrows", + "folder_name": "spritesheet_116", + "full_description": "18-frame sprite animation of: arrows, that: hits the ground creating entangling roots, facing: East" + }, + "117": { + "frames": "5", + "action": "makes the laser beam", + "direction": "East", + "character": "arrow", + "folder_name": "spritesheet_117", + "full_description": "5-frame sprite animation of: arrow, that: makes the laser beam, facing: East" + }, + "118": { + "frames": "8", + "action": "hits the target and sprouts thorns", + "direction": "East", + "character": "diagonal arrow", + "folder_name": "spritesheet_118", + "full_description": "8-frame sprite animation of: diagonal arrow, that: hits the target and sprouts thorns, facing: East" + }, + "119": { + "frames": "6", + "action": "hits the target and wiggles", + "direction": "East", + "character": "diagonal arrow", + "folder_name": "spritesheet_119", + "full_description": "6-frame sprite animation of: diagonal arrow, that: hits the target and wiggles, facing: East" + }, + "120": { + "frames": "8", + "action": "rolls", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_120", + "full_description": "8-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: rolls, facing: East" + }, + "121": { + "frames": "10", + "action": "runs", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_121", + "full_description": "10-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: runs, facing: East" + }, + "122": { + "frames": "4", + "action": "slides", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_122", + "full_description": "4-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: slides, facing: East" + }, + "123": { + "frames": "13", + "action": "slides and then gets up", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_123", + "full_description": "13-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: slides and then gets up, facing: East" + }, + "124": { + "frames": "17", + "action": "fires laser beam from his bow to make a special attack", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_124", + "full_description": "17-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: fires laser beam from his bow to make a special attack, facing: East" + }, + "125": { + "frames": "6", + "action": "is getting struck", + "direction": "East", + "character": "long-haired elf archer wearing a green cloak with a white wooden bow", + "folder_name": "spritesheet_125", + "full_description": "6-frame sprite animation of: long-haired elf archer wearing a green cloak with a white wooden bow, that: is getting struck, facing: East" + }, + "126": { + "frames": "1", + "action": "is idle", + "direction": "South", + "character": "a face of long-haired elf archer the leaf ranger", + "folder_name": "spritesheet_126", + "full_description": "1-frame sprite animation of: a face of long-haired elf archer the leaf ranger , that: is idle, facing: South" + }, + "127": { + "frames": "8", + "action": "is idle", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_127", + "full_description": "8-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: is idle, facing: East" + }, + "128": { + "frames": "8", + "action": "is running", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_128", + "full_description": "8-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: is running, facing: East" + }, + "129": { + "frames": "20", + "action": "jumps up then falls down", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_129", + "full_description": "20-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: jumps up then falls down, facing: East" + }, + "130": { + "frames": "3", + "action": "falls down", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_130", + "full_description": "3-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: falls down, facing: East" + }, + "131": { + "frames": "3", + "action": "jumps up", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_131", + "full_description": "3-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: jumps up, facing: East" + }, + "132": { + "frames": "8", + "action": "rolls on the ground", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_132", + "full_description": "8-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: rolls on the ground, facing: East" + }, + "133": { + "frames": "11", + "action": "swings his sword overhead to attack", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_133", + "full_description": "11-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: swings his sword overhead to attack, facing: East" + }, + "134": { + "frames": "19", + "action": "swings his sword overhead then spins around to make combo attack", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_134", + "full_description": "19-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: swings his sword overhead then spins around to make combo attack, facing: East" + }, + "135": { + "frames": "28", + "action": "swings his sword overhead then spins around and shoots a fire ball from edge of his sword", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_135", + "full_description": "28-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: swings his sword overhead then spins around and shoots a fire ball from edge of his sword, facing: East" + }, + "136": { + "frames": "18", + "action": "ignites his magic sword to make flame attack", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_136", + "full_description": "18-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: ignites his magic sword to make flame attack, facing: East" + }, + "137": { + "frames": "10", + "action": "defends himself with a sword", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_137", + "full_description": "10-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: defends himself with a sword, facing: East" + }, + "138": { + "frames": "3", + "action": "is getting struck", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_138", + "full_description": "3-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: is getting struck, facing: East" + }, + "139": { + "frames": "3", + "action": "falls to his knees and faints on the floor", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_139", + "full_description": "3-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: falls to his knees and faints on the floor, facing: East" + }, + "140": { + "frames": "3", + "action": "swings his sword to attack while in air", + "direction": "East", + "character": "a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword", + "folder_name": "spritesheet_140", + "full_description": "3-frame sprite animation of: a fire knight with short spiky hair wearing red and yellow armor wielding a large two-handed sword, that: swings his sword to attack while in air, facing: East" + }, + "141": { + "frames": "1", + "action": "is idle", + "direction": "South", + "character": "a face of fire knight with short spiky hair and beard", + "folder_name": "spritesheet_141", + "full_description": "1-frame sprite animation of: a face of fire knight with short spiky hair and beard, that: is idle, facing: South" + }, + "142": { + "frames": "8", + "action": "is idle", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_142", + "full_description": "8-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: is idle, facing: East" + }, + "143": { + "frames": "10", + "action": "walks", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_143", + "full_description": "10-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: walks, facing: East" + }, + "144": { + "frames": "8", + "action": "surfs on wave", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_144", + "full_description": "8-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: surfs on wave, facing: East" + }, + "145": { + "frames": "3", + "action": "jumps up", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_145", + "full_description": "3-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: jumps up, facing: East" + }, + "146": { + "frames": "3", + "action": "falls down", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_146", + "full_description": "3-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: falls down, facing: East" + }, + "147": { + "frames": "6", + "action": "tumbles around", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_147", + "full_description": "6-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: tumbles around, facing: East" + }, + "148": { + "frames": "7", + "action": "is thrusting her sword to attack", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_148", + "full_description": "7-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: is thrusting her sword to attack, facing: East" + }, + "149": { + "frames": "21", + "action": "is thrusting her sword double to make combo attack", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_149", + "full_description": "21-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: is thrusting her sword double to make combo attack, facing: East" + }, + "150": { + "frames": "27", + "action": "is thrusting her sword double and shoots a water splash from it", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_150", + "full_description": "27-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: is thrusting her sword double and shoots a water splash from it, facing: East" + }, + "151": { + "frames": "32", + "action": "creates water blob that shortly after splashes on ground and creates icy spikes", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_151", + "full_description": "32-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: creates water blob that shortly after splashes on ground and creates icy spikes, facing: East" + }, + "152": { + "frames": "12", + "action": "heals herself", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_152", + "full_description": "12-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: heals herself, facing: East" + }, + "153": { + "frames": "12", + "action": "defends herself by creating ice wall", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_153", + "full_description": "12-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: defends herself by creating ice wall, facing: East" + }, + "154": { + "frames": "7", + "action": "getting struck", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_154", + "full_description": "7-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: getting struck, facing: East" + }, + "155": { + "frames": "16", + "action": "stays still", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_155", + "full_description": "16-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: stays still, facing: East" + }, + "156": { + "frames": "8", + "action": "is thrusting her sword in air", + "direction": "East", + "character": "a water priestess with crystal long sword in a long blue robe", + "folder_name": "spritesheet_156", + "full_description": "8-frame sprite animation of: a water priestess with crystal long sword in a long blue robe, that: is thrusting her sword in air, facing: East" + }, + "157": { + "frames": "1", + "action": "has crown q", + "direction": "South", + "character": "a face of water priestess with long, dark-blue hair and a light-blue dress", + "folder_name": "spritesheet_157", + "full_description": "1-frame sprite animation of: a face of water priestess with long, dark-blue hair and a light-blue dress, that: has crown q, facing: South" + }, + "158": { + "frames": "8", + "action": "creates pillar of flames from his hands", + "direction": "East", + "character": "a bald fire wizzard with long staff in red robe", + "folder_name": "spritesheet_158", + "full_description": "8-frame sprite animation of: a bald fire wizzard with long staff in red robe, that: creates pillar of flames from his hands, facing: East" + }, + "159": { + "frames": "5", + "action": "falls on his knees", + "direction": "East", + "character": "a bald fire wizzard with long staff in red robe", + "folder_name": "spritesheet_159", + "full_description": "5-frame sprite animation of: a bald fire wizzard with long staff in red robe, that: falls on his knees, facing: East" + }, + "160": { + "frames": "8", + "action": "is idle", + "direction": "East", + "character": "a bald fire wizzard with long staff in red robe", + "folder_name": "spritesheet_160", + "full_description": "8-frame sprite animation of: a bald fire wizzard with long staff in red robe, that: is idle, facing: East" + }, + "161": { + "frames": "8", + "action": "is walking", + "direction": "East", + "character": "a bald fire wizzard with long staff in red robe", + "folder_name": "spritesheet_161", + "full_description": "8-frame sprite animation of: a bald fire wizzard with long staff in red robe, that: is walking, facing: East" + }, + "162": { + "frames": "4", + "action": "is getting struck", + "direction": "East", + "character": "a bald fire wizzard with long staff in red robe", + "folder_name": "spritesheet_162", + "full_description": "4-frame sprite animation of: a bald fire wizzard with long staff in red robe, that: is getting struck, facing: East" + }, + "163": { + "frames": "9", + "action": "is idle", + "direction": "East", + "character": "eye-ball monster", + "folder_name": "spritesheet_163", + "full_description": "9-frame sprite animation of: eye-ball monster, that: is idle, facing: East" + }, + "164": { + "frames": "4", + "action": "walks", + "direction": "East", + "character": "eye-ball monster", + "folder_name": "spritesheet_164", + "full_description": "4-frame sprite animation of: eye-ball monster, that: walks, facing: East" + }, + "165": { + "frames": "12", + "action": "is making beam from his eye", + "direction": "East", + "character": "eye-ball monster", + "folder_name": "spritesheet_165", + "full_description": "12-frame sprite animation of: eye-ball monster, that: is making beam from his eye, facing: East" + }, + "166": { + "frames": "9", + "action": "rolls", + "direction": "East", + "character": "eye-ball monster", + "folder_name": "spritesheet_166", + "full_description": "9-frame sprite animation of: eye-ball monster, that: rolls, facing: East" + }, + "167": { + "frames": "12", + "action": "faints and disappears", + "direction": "East", + "character": "eye-ball monster", + "folder_name": "spritesheet_167", + "full_description": "12-frame sprite animation of: eye-ball monster, that: faints and disappears, facing: East" + }, + "168": { + "frames": "8", + "action": "explodes into small pieces", + "direction": "unknown", + "character": "brown meteorite", + "folder_name": "spritesheet_168", + "full_description": "8-frame sprite animation of: brown meteorite, that: explodes into small pieces" + }, + "169": { + "frames": "77", + "action": "is rotating", + "direction": "unknown", + "character": "planet earth", + "folder_name": "spritesheet_169", + "full_description": "77-frame sprite animation of: planet earth, that: is rotating" + }, + "170": { + "frames": "60", + "action": "intersect with each other to create a ribbon-like pattern", + "direction": "unknown", + "character": "two yellow fireballs with tails", + "folder_name": "spritesheet_170", + "full_description": "60-frame sprite animation of: two yellow fireballs with tails, that: intersect with each other to create a ribbon-like pattern" + }, + "171": { + "frames": "60", + "action": "intersect with each other to create a ribbon-like pattern", + "direction": "unknown", + "character": "two blue fireballs with tails", + "folder_name": "spritesheet_171", + "full_description": "60-frame sprite animation of: two blue fireballs with tails, that: intersect with each other to create a ribbon-like pattern" + }, + "172": { + "frames": "60", + "action": "intersect with each other to create a ribbon-like pattern", "direction": "unknown", - "character": "unknown", - "folder_name": "12_frames", - "full_description": "No description available" + "character": "two green fireballs with tails", + "folder_name": "spritesheet_172", + "full_description": "60-frame sprite animation of: two green fireballs with tails, that: intersect with each other to create a ribbon-like pattern" + }, + "173": { + "frames": "60", + "action": "intersect with each other to create a ribbon-like pattern", + "direction": "unknown", + "character": "two pink fireballs with tails", + "folder_name": "spritesheet_173", + "full_description": "60-frame sprite animation of: two pink fireballs with tails, that: intersect with each other to create a ribbon-like pattern" + }, + "174": { + "frames": "60", + "action": "intersect with each other to create a ribbon-like pattern", + "direction": "unknown", + "character": "two red fireballs with tails", + "folder_name": "spritesheet_174", + "full_description": "60-frame sprite animation of: two red fireballs with tails, that: intersect with each other to create a ribbon-like pattern" + }, + "175": { + "frames": "60", + "action": "intersect with each other to create a ribbon-like pattern", + "direction": "unknown", + "character": "two white fireballs with tails", + "folder_name": "spritesheet_175", + "full_description": "60-frame sprite animation of: two white fireballs with tails, that: intersect with each other to create a ribbon-like pattern" + }, + "176": { + "frames": "6", + "action": "swings his sword to make an attack", + "direction": "East", + "character": "knight with a sword in helmet and silver armor under red tabard", + "folder_name": "spritesheet_176", + "full_description": "6-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: swings his sword to make an attack, facing: East" + }, + "177": { + "frames": "4", + "action": "dashes forward", + "direction": "East", + "character": "knight with a sword in helmet and silver armor under red tabard", + "folder_name": "spritesheet_177", + "full_description": "4-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: dashes forward, facing: East" + }, + "178": { + "frames": "9", + "action": "faints and lays on the floor", + "direction": "East", + "character": "knight with a sword in helmet and silver armor under red tabard", + "folder_name": "spritesheet_178", + "full_description": "9-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: faints and lays on the floor, facing: East" + }, + "179": { + "frames": "4", + "action": "falls down", + "direction": "East", + "character": "knight with a sword in helmet and silver armor under red tabard", + "folder_name": "spritesheet_179", + "full_description": "4-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: falls down, facing: East" + }, + "180": { + "frames": "11", + "action": "is idle", + "direction": "East", + "character": "knight with a sword in helmet and silver armor under red tabard", + "folder_name": "spritesheet_180", + "full_description": "11-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: is idle, facing: East" + }, + "181": { + "frames": "4", + "action": "jumps up", + "direction": "East", + "character": "knight with a sword in helmet and silver armor under red tabard", + "folder_name": "spritesheet_181", + "full_description": "4-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: jumps up, facing: East" + }, + "182": { + "frames": "8", + "action": "runs", + "direction": "East", + "character": "knight with a sword in helmet and silver armor under red tabard", + "folder_name": "spritesheet_182", + "full_description": "8-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: runs, facing: East" + }, + "183": { + "frames": "4", + "action": "is getting struck", + "direction": "East", + "character": "knight with a sword in helmet and silver armor under red tabard", + "folder_name": "spritesheet_183", + "full_description": "4-frame sprite animation of: knight with a sword in helmet and silver armor under red tabard, that: is getting struck, facing: East" + }, + "184": { + "frames": "7", + "action": "swings his sword to make an attack", + "direction": "East", + "character": "knight with sword in full armor with helmet", + "folder_name": "spritesheet_184", + "full_description": "7-frame sprite animation of: knight with sword in full armor with helmet, that: swings his sword to make an attack, facing: East" + }, + "185": { + "frames": "7", + "action": "swings his sword after jump to make an attack", + "direction": "East", + "character": "knight with sword in full armor with helmet", + "folder_name": "spritesheet_185", + "full_description": "7-frame sprite animation of: knight with sword in full armor with helmet, that: swings his sword after jump to make an attack, facing: East" + }, + "186": { + "frames": "11", + "action": "faints and lays on the floor", + "direction": "East", + "character": "knight with sword in full armor with helmet", + "folder_name": "spritesheet_186", + "full_description": "11-frame sprite animation of: knight with sword in full armor with helmet, that: faints and lays on the floor, facing: East" + }, + "187": { + "frames": "3", + "action": "falls down", + "direction": "East", + "character": "knight with sword in full armor with helmet", + "folder_name": "spritesheet_187", + "full_description": "3-frame sprite animation of: knight with sword in full armor with helmet, that: falls down, facing: East" + }, + "188": { + "frames": "11", + "action": "is idle", + "direction": "East", + "character": "knight with sword in full armor with helmet", + "folder_name": "spritesheet_188", + "full_description": "11-frame sprite animation of: knight with sword in full armor with helmet, that: is idle, facing: East" + }, + "189": { + "frames": "3", + "action": "jumps up", + "direction": "East", + "character": "knight with sword in full armor with helmet", + "folder_name": "spritesheet_189", + "full_description": "3-frame sprite animation of: knight with sword in full armor with helmet, that: jumps up, facing: East" + }, + "190": { + "frames": "8", + "action": "runs", + "direction": "East", + "character": "knight with sword in full armor with helmet", + "folder_name": "spritesheet_190", + "full_description": "8-frame sprite animation of: knight with sword in full armor with helmet, that: runs, facing: East" + }, + "191": { + "frames": "4", + "action": "is getting struck", + "direction": "East", + "character": "knight with sword in full armor with helmet", + "folder_name": "spritesheet_191", + "full_description": "4-frame sprite animation of: knight with sword in full armor with helmet, that: is getting struck, facing: East" + }, + "192": { + "frames": "6", + "action": "shots arrow from bow", + "direction": "East", + "character": "white haired huntress with a wooden bow in green armor", + "folder_name": "spritesheet_192", + "full_description": "6-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: shots arrow from bow, facing: East" + }, + "193": { + "frames": "10", + "action": "faints and lays on the floor", + "direction": "East", + "character": "white haired huntress with a wooden bow in green armor", + "folder_name": "spritesheet_193", + "full_description": "10-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: faints and lays on the floor, facing: East" + }, + "194": { + "frames": "2", + "action": "falls down", + "direction": "East", + "character": "white haired huntress with a wooden bow in green armor", + "folder_name": "spritesheet_194", + "full_description": "2-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: falls down, facing: East" + }, + "195": { + "frames": "10", + "action": "is idle", + "direction": "East", + "character": "white haired huntress with a wooden bow in green armor", + "folder_name": "spritesheet_195", + "full_description": "10-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: is idle, facing: East" + }, + "196": { + "frames": "2", + "action": "jumps up", + "direction": "East", + "character": "white haired huntress with a wooden bow in green armor", + "folder_name": "spritesheet_196", + "full_description": "2-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: jumps up, facing: East" + }, + "197": { + "frames": "8", + "action": "runs", + "direction": "East", + "character": "white haired huntress with a wooden bow in green armor", + "folder_name": "spritesheet_197", + "full_description": "8-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: runs, facing: East" + }, + "198": { + "frames": "3", + "action": "is getting struck", + "direction": "East", + "character": "white haired huntress with a wooden bow in green armor", + "folder_name": "spritesheet_198", + "full_description": "3-frame sprite animation of: white haired huntress with a wooden bow in green armor, that: is getting struck, facing: East" + }, + "199": { + "frames": "5", + "action": "swings her spear above head to make an attack", + "direction": "East", + "character": "huntress with a spear in green leather armor with hood", + "folder_name": "spritesheet_199", + "full_description": "5-frame sprite animation of: huntress with a spear in green leather armor with hood, that: swings her spear above head to make an attack, facing: East" + }, + "200": { + "frames": "5", + "action": "swings her spear from the head to make an attack", + "direction": "East", + "character": "huntress with a spear in green leather armor with hood", + "folder_name": "spritesheet_200", + "full_description": "5-frame sprite animation of: huntress with a spear in green leather armor with hood, that: swings her spear from the head to make an attack, facing: East" + }, + "201": { + "frames": "7", + "action": "throws her spear", + "direction": "East", + "character": "huntress with a spear in green leather armor with hood", + "folder_name": "spritesheet_201", + "full_description": "7-frame sprite animation of: huntress with a spear in green leather armor with hood, that: throws her spear, facing: East" + }, + "202": { + "frames": "8", + "action": "faints and lays on the floor", + "direction": "East", + "character": "huntress with a spear in green leather armor with hood", + "folder_name": "spritesheet_202", + "full_description": "8-frame sprite animation of: huntress with a spear in green leather armor with hood, that: faints and lays on the floor, facing: East" + }, + "203": { + "frames": "2", + "action": "falls down", + "direction": "East", + "character": "huntress with a spear in green leather armor with hood", + "folder_name": "spritesheet_203", + "full_description": "2-frame sprite animation of: huntress with a spear in green leather armor with hood, that: falls down, facing: East" + }, + "204": { + "frames": "8", + "action": "is idle", + "direction": "East", + "character": "huntress with a spear in green leather armor with hood", + "folder_name": "spritesheet_204", + "full_description": "8-frame sprite animation of: huntress with a spear in green leather armor with hood, that: is idle, facing: East" + }, + "205": { + "frames": "2", + "action": "jumps up", + "direction": "East", + "character": "huntress with a spear in green leather armor with hood", + "folder_name": "spritesheet_205", + "full_description": "2-frame sprite animation of: huntress with a spear in green leather armor with hood, that: jumps up, facing: East" + }, + "206": { + "frames": "8", + "action": "runs", + "direction": "East", + "character": "huntress with a spear in green leather armor with hood", + "folder_name": "spritesheet_206", + "full_description": "8-frame sprite animation of: huntress with a spear in green leather armor with hood, that: runs, facing: East" + }, + "207": { + "frames": "3", + "action": "is getting struck", + "direction": "East", + "character": "huntress with a spear in green leather armor with hood", + "folder_name": "spritesheet_207", + "full_description": "3-frame sprite animation of: huntress with a spear in green leather armor with hood, that: is getting struck, facing: East" + }, + "208": { + "frames": "4", + "action": "rotates", + "direction": "East", + "character": "spear", + "folder_name": "spritesheet_208", + "full_description": "4-frame sprite animation of: spear, that: rotates, facing: East" + }, + "209": { + "frames": "4", + "action": "swing his katana to attack", + "direction": "East", + "character": "a ninja in blue armor and red scarf", + "folder_name": "spritesheet_209", + "full_description": "4-frame sprite animation of: a ninja in blue armor and red scarf, that: swing his katana to attack, facing: East" + }, + "210": { + "frames": "4", + "action": "perform an overhead katana attack", + "direction": "East", + "character": "a ninja in blue armor and red scarf", + "folder_name": "spritesheet_210", + "full_description": "4-frame sprite animation of: a ninja in blue armor and red scarf, that: perform an overhead katana attack, facing: East" + }, + "211": { + "frames": "7", + "action": "is falling to his knees then faints on the floor", + "direction": "East", + "character": "a ninja in blue armor and red scarf", + "folder_name": "spritesheet_211", + "full_description": "7-frame sprite animation of: a ninja in blue armor and red scarf, that: is falling to his knees then faints on the floor, facing: East" + }, + "212": { + "frames": "2", + "action": "falls down", + "direction": "East", + "character": "a ninja in blue armor and red scarf", + "folder_name": "spritesheet_212", + "full_description": "2-frame sprite animation of: a ninja in blue armor and red scarf, that: falls down, facing: East" + }, + "213": { + "frames": "4", + "action": "is idle", + "direction": "East", + "character": "a ninja in blue armor and red scarf", + "folder_name": "spritesheet_213", + "full_description": "4-frame sprite animation of: a ninja in blue armor and red scarf, that: is idle, facing: East" + }, + "214": { + "frames": "2", + "action": "jumps up", + "direction": "East", + "character": "a ninja in blue armor and red scarf", + "folder_name": "spritesheet_214", + "full_description": "2-frame sprite animation of: a ninja in blue armor and red scarf, that: jumps up, facing: East" + }, + "215": { + "frames": "8", + "action": "runs", + "direction": "East", + "character": "a ninja in blue armor and red scarf", + "folder_name": "spritesheet_215", + "full_description": "8-frame sprite animation of: a ninja in blue armor and red scarf, that: runs, facing: East" + }, + "216": { + "frames": "3", + "action": "is getting struck", + "direction": "East", + "character": "a ninja in blue armor and red scarf", + "folder_name": "spritesheet_216", + "full_description": "3-frame sprite animation of: a ninja in blue armor and red scarf, that: is getting struck, facing: East" + }, + "217": { + "frames": "7", + "action": "perform an overhead machete attack", + "direction": "East", + "character": "a native american warrior with machete in naked torso", + "folder_name": "spritesheet_217", + "full_description": "7-frame sprite animation of: a native american warrior with machete in naked torso, that: perform an overhead machete attack, facing: East" + }, + "218": { + "frames": "6", + "action": "swings machete from below to make an attack", + "direction": "East", + "character": "a native american warrior with machete in naked torso", + "folder_name": "spritesheet_218", + "full_description": "6-frame sprite animation of: a native american warrior with machete in naked torso, that: swings machete from below to make an attack, facing: East" + }, + "219": { + "frames": "9", + "action": "swings machete to make an attack", + "direction": "East", + "character": "a native american warrior with machete in naked torso", + "folder_name": "spritesheet_219", + "full_description": "9-frame sprite animation of: a native american warrior with machete in naked torso, that: swings machete to make an attack, facing: East" + }, + "220": { + "frames": "11", + "action": "is falling to his knees then faints on the floor", + "direction": "East", + "character": "a native american warrior with machete in naked torso", + "folder_name": "spritesheet_220", + "full_description": "11-frame sprite animation of: a native american warrior with machete in naked torso, that: is falling to his knees then faints on the floor, facing: East" + }, + "221": { + "frames": "3", + "action": "falls down", + "direction": "East", + "character": "a native american warrior with machete in naked torso", + "folder_name": "spritesheet_221", + "full_description": "3-frame sprite animation of: a native american warrior with machete in naked torso, that: falls down, facing: East" + }, + "222": { + "frames": "3", + "action": "jumps up", + "direction": "East", + "character": "a native american warrior with machete in naked torso", + "folder_name": "spritesheet_222", + "full_description": "3-frame sprite animation of: a native american warrior with machete in naked torso, that: jumps up, facing: East" + }, + "223": { + "frames": "10", + "action": "is idle", + "direction": "East", + "character": "a native american warrior with machete in naked torso", + "folder_name": "spritesheet_223", + "full_description": "10-frame sprite animation of: a native american warrior with machete in naked torso, that: is idle, facing: East" + }, + "224": { + "frames": "8", + "action": "runs", + "direction": "East", + "character": "a native american warrior with machete in naked torso", + "folder_name": "spritesheet_224", + "full_description": "8-frame sprite animation of: a native american warrior with machete in naked torso, that: runs, facing: East" + }, + "225": { + "frames": "3", + "action": "is getting struck", + "direction": "East", + "character": "a native american warrior with machete in naked torso", + "folder_name": "spritesheet_225", + "full_description": "3-frame sprite animation of: a native american warrior with machete in naked torso, that: is getting struck, facing: East" + }, + "226": { + "frames": "6", + "action": "swing his sword to attack", + "direction": "East", + "character": "martial hero samurai with the katana in big traditional hat and red scarf", + "folder_name": "spritesheet_226", + "full_description": "6-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: swing his sword to attack, facing: East" + }, + "227": { + "frames": "6", + "action": "attack with his sword", + "direction": "East", + "character": "martial hero samurai with the katana in big traditional hat and red scarf", + "folder_name": "spritesheet_227", + "full_description": "6-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: attack with his sword, facing: East" + }, + "228": { + "frames": "6", + "action": "is falling to his knees", + "direction": "East", + "character": "martial hero samurai with the katana in big traditional hat and red scarf", + "folder_name": "spritesheet_228", + "full_description": "6-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: is falling to his knees, facing: East" + }, + "229": { + "frames": "2", + "action": "falls down", + "direction": "East", + "character": "martial hero samurai with the katana in big traditional hat and red scarf", + "folder_name": "spritesheet_229", + "full_description": "2-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: falls down, facing: East" + }, + "230": { + "frames": "8", + "action": "is idle", + "direction": "East", + "character": "martial hero samurai with the katana in big traditional hat and red scarf", + "folder_name": "spritesheet_230", + "full_description": "8-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: is idle, facing: East" + }, + "231": { + "frames": "2", + "action": "jumps up", + "direction": "East", + "character": "martial hero samurai with the katana in big traditional hat and red scarf", + "folder_name": "spritesheet_231", + "full_description": "2-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: jumps up, facing: East" + }, + "232": { + "frames": "8", + "action": "runs", + "direction": "East", + "character": "martial hero samurai with the katana in big traditional hat and red scarf", + "folder_name": "spritesheet_232", + "full_description": "8-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: runs, facing: East" + }, + "233": { + "frames": "4", + "action": "is getting struck", + "direction": "East", + "character": "martial hero samurai with the katana in big traditional hat and red scarf", + "folder_name": "spritesheet_233", + "full_description": "4-frame sprite animation of: martial hero samurai with the katana in big traditional hat and red scarf, that: is getting struck, facing: East" + }, + "234": { + "frames": "4", + "action": "perform an sword attack", + "direction": "East", + "character": "a king in crown with a sword and blue cape", + "folder_name": "spritesheet_234", + "full_description": "4-frame sprite animation of: a king in crown with a sword and blue cape, that: perform an sword attack, facing: East" + }, + "235": { + "frames": "4", + "action": "swings his sword to make an attack", + "direction": "East", + "character": "a king in crown with a sword and blue cape", + "folder_name": "spritesheet_235", + "full_description": "4-frame sprite animation of: a king in crown with a sword and blue cape, that: swings his sword to make an attack, facing: East" + }, + "236": { + "frames": "4", + "action": "perform an overhead sword attack", + "direction": "East", + "character": "a king in crown with a sword and blue cape", + "folder_name": "spritesheet_236", + "full_description": "4-frame sprite animation of: a king in crown with a sword and blue cape, that: perform an overhead sword attack, facing: East" + }, + "237": { + "frames": "6", + "action": "faints on the floor", + "direction": "East", + "character": "a king in crown with a sword and blue cape", + "folder_name": "spritesheet_237", + "full_description": "6-frame sprite animation of: a king in crown with a sword and blue cape, that: faints on the floor, facing: East" + }, + "238": { + "frames": "2", + "action": "falls down", + "direction": "East", + "character": "a king in crown with a sword and blue cape", + "folder_name": "spritesheet_238", + "full_description": "2-frame sprite animation of: a king in crown with a sword and blue cape, that: falls down, facing: East" + }, + "239": { + "frames": "8", + "action": "is idle", + "direction": "East", + "character": "a king in crown with a sword and blue cape", + "folder_name": "spritesheet_239", + "full_description": "8-frame sprite animation of: a king in crown with a sword and blue cape, that: is idle, facing: East" + }, + "240": { + "frames": "2", + "action": "jumps up", + "direction": "East", + "character": "a king in crown with a sword and blue cape", + "folder_name": "spritesheet_240", + "full_description": "2-frame sprite animation of: a king in crown with a sword and blue cape, that: jumps up, facing: East" + }, + "241": { + "frames": "8", + "action": "runs", + "direction": "East", + "character": "a king in crown with a sword and blue cape", + "folder_name": "spritesheet_241", + "full_description": "8-frame sprite animation of: a king in crown with a sword and blue cape, that: runs, facing: East" + }, + "242": { + "frames": "4", + "action": "is getting struck", + "direction": "East", + "character": "a king in crown with a sword and blue cape", + "folder_name": "spritesheet_242", + "full_description": "4-frame sprite animation of: a king in crown with a sword and blue cape, that: is getting struck, facing: East" + }, + "243": { + "frames": "4", + "action": "perform an sword attack", + "direction": "East", + "character": "a medieval peasant in red armor", + "folder_name": "spritesheet_243", + "full_description": "4-frame sprite animation of: a medieval peasant in red armor, that: perform an sword attack, facing: East" + }, + "244": { + "frames": "4", + "action": "perform an overhead sword attack", + "direction": "East", + "character": "a medieval peasant in red armor", + "folder_name": "spritesheet_244", + "full_description": "4-frame sprite animation of: a medieval peasant in red armor, that: perform an overhead sword attack, facing: East" + }, + "245": { + "frames": "4", + "action": "perform an overhead pike attack", + "direction": "East", + "character": "a medieval peasant in red armor", + "folder_name": "spritesheet_245", + "full_description": "4-frame sprite animation of: a medieval peasant in red armor, that: perform an overhead pike attack, facing: East" + }, + "246": { + "frames": "4", + "action": "perform an overhead mace attack", + "direction": "East", + "character": "a medieval peasant in red armor", + "folder_name": "spritesheet_246", + "full_description": "4-frame sprite animation of: a medieval peasant in red armor, that: perform an overhead mace attack, facing: East" + }, + "247": { + "frames": "6", + "action": "faints on the floor", + "direction": "East", + "character": "a medieval peasant in red armor", + "folder_name": "spritesheet_247", + "full_description": "6-frame sprite animation of: a medieval peasant in red armor, that: faints on the floor, facing: East" + }, + "248": { + "frames": "2", + "action": "falls down", + "direction": "East", + "character": "a medieval peasant in red armor", + "folder_name": "spritesheet_248", + "full_description": "2-frame sprite animation of: a medieval peasant in red armor, that: falls down, facing: East" + }, + "249": { + "frames": "8", + "action": "is idle", + "direction": "East", + "character": "a medieval peasant in red armor", + "folder_name": "spritesheet_249", + "full_description": "8-frame sprite animation of: a medieval peasant in red armor, that: is idle, facing: East" + }, + "250": { + "frames": "2", + "action": "jumps up", + "direction": "East", + "character": "a medieval peasant in red armor", + "folder_name": "spritesheet_250", + "full_description": "2-frame sprite animation of: a medieval peasant in red armor, that: jumps up, facing: East" + }, + "251": { + "frames": "8", + "action": "runs", + "direction": "East", + "character": "a medieval peasant in red armor", + "folder_name": "spritesheet_251", + "full_description": "8-frame sprite animation of: a medieval peasant in red armor, that: runs, facing: East" + }, + "252": { + "frames": "4", + "action": "is getting struck", + "direction": "East", + "character": "a medieval peasant in red armor", + "folder_name": "spritesheet_252", + "full_description": "4-frame sprite animation of: a medieval peasant in red armor, that: is getting struck, facing: East" + }, + "253": { + "frames": "4", + "action": "swing sword to make an attack", + "direction": "East", + "character": "a medieval warrior in blue armor", + "folder_name": "spritesheet_253", + "full_description": "4-frame sprite animation of: a medieval warrior in blue armor, that: swing sword to make an attack, facing: East" + }, + "254": { + "frames": "4", + "action": "attacks with his sword", + "direction": "East", + "character": "a medieval warrior in blue armor", + "folder_name": "spritesheet_254", + "full_description": "4-frame sprite animation of: a medieval warrior in blue armor, that: attacks with his sword , facing: East" + }, + "255": { + "frames": "4", + "action": "perform an overhead pike attack", + "direction": "East", + "character": "a medieval warrior in blue armor", + "folder_name": "spritesheet_255", + "full_description": "4-frame sprite animation of: a medieval warrior in blue armor, that: perform an overhead pike attack, facing: East" + }, + "256": { + "frames": "9", + "action": "faints on the floor", + "direction": "East", + "character": "a medieval warrior in blue armor", + "folder_name": "spritesheet_256", + "full_description": "9-frame sprite animation of: a medieval warrior in blue armor, that: faints on the floor, facing: East" + }, + "257": { + "frames": "2", + "action": "falls down", + "direction": "East", + "character": "a medieval warrior in blue armor", + "folder_name": "spritesheet_257", + "full_description": "2-frame sprite animation of: a medieval warrior in blue armor, that: falls down, facing: East" + }, + "258": { + "frames": "10", + "action": "is idle", + "direction": "East", + "character": "a medieval warrior in blue armor", + "folder_name": "spritesheet_258", + "full_description": "10-frame sprite animation of: a medieval warrior in blue armor, that: is idle, facing: East" + }, + "259": { + "frames": "2", + "action": "jumps up", + "direction": "East", + "character": "a medieval warrior in blue armor", + "folder_name": "spritesheet_259", + "full_description": "2-frame sprite animation of: a medieval warrior in blue armor, that: jumps up, facing: East" + }, + "260": { + "frames": "6", + "action": "runs", + "direction": "East", + "character": "a medieval warrior in blue armor", + "folder_name": "spritesheet_260", + "full_description": "6-frame sprite animation of: a medieval warrior in blue armor, that: runs, facing: East" + }, + "261": { + "frames": "3", + "action": "is getting struck", + "direction": "East", + "character": "a medieval warrior in blue armor", + "folder_name": "spritesheet_261", + "full_description": "3-frame sprite animation of: a medieval warrior in blue armor, that: is getting struck, facing: East" + }, + "262": { + "frames": "5", + "action": "is idle", + "direction": "East", + "character": "a black horse with brown armor", + "folder_name": "spritesheet_262", + "full_description": "5-frame sprite animation of: a black horse with brown armor, that: is idle, facing: East" + }, + "263": { + "frames": "6", + "action": "stays still", + "direction": "East", + "character": "a black horse with brown armor", + "folder_name": "spritesheet_263", + "full_description": "6-frame sprite animation of: a black horse with brown armor, that: stays still, facing: East" + }, + "264": { + "frames": "6", + "action": "waits", + "direction": "East", + "character": "a black horse with brown armor", + "folder_name": "spritesheet_264", + "full_description": "6-frame sprite animation of: a black horse with brown armor, that: waits, facing: East" + }, + "265": { + "frames": "10", + "action": "is rearing", + "direction": "East", + "character": "a black horse with brown armor", + "folder_name": "spritesheet_265", + "full_description": "10-frame sprite animation of: a black horse with brown armor, that: is rearing, facing: East" + }, + "266": { + "frames": "6", + "action": "runs", + "direction": "East", + "character": "a black horse with brown armor", + "folder_name": "spritesheet_266", + "full_description": "6-frame sprite animation of: a black horse with brown armor, that: runs, facing: East" + }, + "267": { + "frames": "6", + "action": "stops", + "direction": "East", + "character": "a black horse with brown armor", + "folder_name": "spritesheet_267", + "full_description": "6-frame sprite animation of: a black horse with brown armor, that: stops, facing: East" + }, + "268": { + "frames": "5", + "action": "is idle", + "direction": "East", + "character": "horse rider", + "folder_name": "spritesheet_268", + "full_description": "5-frame sprite animation of: horse rider, that: is idle, facing: East" + }, + "269": { + "frames": "6", + "action": "mounts off", + "direction": "East", + "character": "horse rider", + "folder_name": "spritesheet_269", + "full_description": "6-frame sprite animation of: horse rider, that: mounts off, facing: East" + }, + "270": { + "frames": "5", + "action": "is idle", + "direction": "East", + "character": "horse leash", + "folder_name": "spritesheet_270", + "full_description": "5-frame sprite animation of: horse leash, that: is idle, facing: East" + }, + "271": { + "frames": "6", + "action": "mounts on", + "direction": "East", + "character": "horse rider", + "folder_name": "spritesheet_271", + "full_description": "6-frame sprite animation of: horse rider, that: mounts on, facing: East" + }, + "272": { + "frames": "10", + "action": "holds on", + "direction": "East", + "character": "horse rider", + "folder_name": "spritesheet_272", + "full_description": "10-frame sprite animation of: horse rider, that: holds on, facing: East" + }, + "273": { + "frames": "6", + "action": "Mounts on horse", + "direction": "East", + "character": "a rider on black horse with brown armor", + "folder_name": "spritesheet_273", + "full_description": "6-frame sprite animation of: a rider on black horse with brown armor, that: Mounts on horse, facing: East" + }, + "274": { + "frames": "5", + "action": "is idle", + "direction": "East", + "character": "a rider on black horse with brown armor", + "folder_name": "spritesheet_274", + "full_description": "5-frame sprite animation of: a rider on black horse with brown armor, that: is idle, facing: East" + }, + "275": { + "frames": "6", + "action": "runs", + "direction": "East", + "character": "a rider on black horse with brown armor", + "folder_name": "spritesheet_275", + "full_description": "6-frame sprite animation of: a rider on black horse with brown armor, that: runs, facing: East" + }, + "276": { + "frames": "6", + "action": "stops", + "direction": "East", + "character": "a rider on black horse with brown armor", + "folder_name": "spritesheet_276", + "full_description": "6-frame sprite animation of: a rider on black horse with brown armor, that: stops, facing: East" + }, + "277": { + "frames": "10", + "action": "is rearing", + "direction": "East", + "character": "a rider on black horse with brown armor", + "folder_name": "spritesheet_277", + "full_description": "10-frame sprite animation of: a rider on black horse with brown armor, that: is rearing, facing: East" + }, + "278": { + "frames": "6", + "action": "mounts off", + "direction": "East", + "character": "a rider on black horse with brown armor", + "folder_name": "spritesheet_278", + "full_description": "6-frame sprite animation of: a rider on black horse with brown armor, that: mounts off, facing: East" + }, + "279": { + "frames": "11", + "action": "explodes", + "direction": "unknown", + "character": "fireball", + "folder_name": "spritesheet_279", + "full_description": "11-frame sprite animation of: fireball, that: explodes" + }, + "280": { + "frames": "5", + "action": "explodes", + "direction": "unknown", + "character": "pink ball", + "folder_name": "spritesheet_280", + "full_description": "5-frame sprite animation of: pink ball, that: explodes" + }, + "281": { + "frames": "5", + "action": "swings pink dagger in air", + "direction": "East", + "character": "red haired tiny elf", + "folder_name": "spritesheet_281", + "full_description": "5-frame sprite animation of: red haired tiny elf, that: swings pink dagger in air, facing: East" + }, + "282": { + "frames": "27", + "action": "makes multiple special attacks with pink dagger", + "direction": "East", + "character": "red haired tiny elf", + "folder_name": "spritesheet_282", + "full_description": "27-frame sprite animation of: red haired tiny elf, that: makes multiple special attacks with pink dagger, facing: East" + }, + "283": { + "frames": "5", + "action": "faints", + "direction": "East", + "character": "red haired tiny elf", + "folder_name": "spritesheet_283", + "full_description": "5-frame sprite animation of: red haired tiny elf, that: faints, facing: East" + }, + "284": { + "frames": "3", + "action": "is getting struck", + "direction": "East", + "character": "red haired tiny elf", + "folder_name": "spritesheet_284", + "full_description": "3-frame sprite animation of: red haired tiny elf, that: is getting struck, facing: East" + }, + "285": { + "frames": "9", + "action": "is idle", + "direction": "East", + "character": "red haired tiny elf with pink dagger", + "folder_name": "spritesheet_285", + "full_description": "9-frame sprite animation of: red haired tiny elf with pink dagger, that: is idle, facing: East" + }, + "286": { + "frames": "6", + "action": "jumps", + "direction": "East", + "character": "red haired tiny elf with pink dagger", + "folder_name": "spritesheet_286", + "full_description": "6-frame sprite animation of: red haired tiny elf with pink dagger, that: jumps, facing: East" + }, + "287": { + "frames": "8", + "action": "runs", + "direction": "East", + "character": "red haired tiny elf with pink dagger", + "folder_name": "spritesheet_287", + "full_description": "8-frame sprite animation of: red haired tiny elf with pink dagger, that: runs, facing: East" + }, + "288": { + "frames": "5", + "action": "slides", + "direction": "East", + "character": "red haired tiny elf with pink dagger", + "folder_name": "spritesheet_288", + "full_description": "5-frame sprite animation of: red haired tiny elf with pink dagger, that: slides, facing: East" + }, + "289": { + "frames": "5", + "action": "throws a pink dagger", + "direction": "East", + "character": "red haired tiny elf", + "folder_name": "spritesheet_289", + "full_description": "5-frame sprite animation of: red haired tiny elf, that: throws a pink dagger, facing: East" + }, + "290": { + "frames": "5", + "action": "holds on a ledge", + "direction": "East", + "character": "red haired tiny elf", + "folder_name": "spritesheet_290", + "full_description": "5-frame sprite animation of: red haired tiny elf, that: holds on a ledge, facing: East" + }, + "291": { + "frames": "8", + "action": "is idle", + "direction": "South", + "character": "plant monster with big teeth", + "folder_name": "spritesheet_291", + "full_description": "8-frame sprite animation of: plant monster with big teeth, that: is idle, facing: South" + }, + "292": { + "frames": "3", + "action": "is getting struck", + "direction": "South", + "character": "plant monster with big teeth", + "folder_name": "spritesheet_292", + "full_description": "3-frame sprite animation of: plant monster with big teeth, that: is getting struck, facing: South" + }, + "293": { + "frames": "8", + "action": "bites from right side", + "direction": "South", + "character": "plant monster with big teeth", + "folder_name": "spritesheet_293", + "full_description": "8-frame sprite animation of: plant monster with big teeth, that: bites from right side, facing: South" + }, + "294": { + "frames": "8", + "action": "bites from left side", + "direction": "South", + "character": "plant monster with big teeth", + "folder_name": "spritesheet_294", + "full_description": "8-frame sprite animation of: plant monster with big teeth, that: bites from left side, facing: South" + }, + "295": { + "frames": "29", + "action": "makes various attacks", + "direction": "East", + "character": "masked warrior aka Spirit Boxer in winged helmet and gray cape", + "folder_name": "spritesheet_295", + "full_description": "29-frame sprite animation of: masked warrior aka Spirit Boxer in winged helmet and gray cape, that: makes various attacks, facing: East" + }, + "296": { + "frames": "12", + "action": "is getting struct and disintegrates", + "direction": "East", + "character": "masked warrior aka Spirit Boxer in winged helmet and gray cape", + "folder_name": "spritesheet_296", + "full_description": "12-frame sprite animation of: masked warrior aka Spirit Boxer in winged helmet and gray cape, that: is getting struct and disintegrates, facing: East" + }, + "297": { + "frames": "4", + "action": "is idle", + "direction": "East", + "character": "masked warrior aka Spirit Boxer in winged helmet and gray cape", + "folder_name": "spritesheet_297", + "full_description": "4-frame sprite animation of: masked warrior aka Spirit Boxer in winged helmet and gray cape, that: is idle, facing: East" + }, + "298": { + "frames": "6", + "action": "runs", + "direction": "East", + "character": "masked warrior aka Spirit Boxer in winged helmet and gray cape", + "folder_name": "spritesheet_298", + "full_description": "6-frame sprite animation of: masked warrior aka Spirit Boxer in winged helmet and gray cape, that: runs, facing: East" + }, + "299": { + "frames": "6", + "action": "jumps", + "direction": "West", + "character": "Monster made of trash and dirt", + "folder_name": "spritesheet_299", + "full_description": "6-frame sprite animation of: Monster made of trash and dirt, that: jumps, facing: West" + }, + "300": { + "frames": "6", + "action": "is idle in form trash pile", + "direction": "West", + "character": "Monster made of trash and dirt", + "folder_name": "spritesheet_300", + "full_description": "6-frame sprite animation of: Monster made of trash and dirt, that: is idle in form trash pile, facing: West" + }, + "301": { + "frames": "11", + "action": "is idle in form trash pile", + "direction": "West", + "character": "Monster made of trash and dirt", + "folder_name": "spritesheet_301", + "full_description": "11-frame sprite animation of: Monster made of trash and dirt, that: is idle in form trash pile, facing: West" + }, + "302": { + "frames": "10", + "action": "dashes", + "direction": "West", + "character": "Monster made of trash and dirt", + "folder_name": "spritesheet_302", + "full_description": "10-frame sprite animation of: Monster made of trash and dirt, that: dashes, facing: West" + }, + "303": { + "frames": "13", + "action": "swings a scythe to perform an attack", + "direction": "East", + "character": "black ghost looking like death with a scythe", + "folder_name": "spritesheet_303", + "full_description": "13-frame sprite animation of: black ghost looking like death with a scythe, that: swings a scythe to perform an attack, facing: East" + }, + "304": { + "frames": "18", + "action": "destroys his weapon and transforms into ball", + "direction": "East", + "character": "black ghost looking like death with a scythe", + "folder_name": "spritesheet_304", + "full_description": "18-frame sprite animation of: black ghost looking like death with a scythe, that: destroys his weapon and transforms into ball, facing: East" + }, + "305": { + "frames": "4", + "action": "is idle", + "direction": "East", + "character": "black ghost looking like death with a scythe", + "folder_name": "spritesheet_305", + "full_description": "4-frame sprite animation of: black ghost looking like death with a scythe, that: is idle, facing: East" + }, + "306": { + "frames": "8", + "action": "waits", + "direction": "East", + "character": "black ghost looking like death with a scythe", + "folder_name": "spritesheet_306", + "full_description": "8-frame sprite animation of: black ghost looking like death with a scythe, that: waits, facing: East" + }, + "307": { + "frames": "12", + "action": "transforms his body to look like a music wave", + "direction": "East", + "character": "black ghost looking like death with a scythe", + "folder_name": "spritesheet_307", + "full_description": "12-frame sprite animation of: black ghost looking like death with a scythe, that: transforms his body to look like a music wave, facing: East" + }, + "308": { + "frames": "5", + "action": "swings his scythe", + "direction": "East", + "character": "black ghost looking like death with a scythe", + "folder_name": "spritesheet_308", + "full_description": "5-frame sprite animation of: black ghost looking like death with a scythe, that: swings his scythe, facing: East" + }, + "309": { + "frames": "6", + "action": "appears", + "direction": "East", + "character": "small black ghost", + "folder_name": "spritesheet_309", + "full_description": "6-frame sprite animation of: small black ghost, that: appears, facing: East" + }, + "310": { + "frames": "5", + "action": "disappears", + "direction": "East", + "character": "small black ghost", + "folder_name": "spritesheet_310", + "full_description": "5-frame sprite animation of: small black ghost, that: disappears, facing: East" + }, + "311": { + "frames": "4", + "action": "is idle", + "direction": "East", + "character": "small black ghost", + "folder_name": "spritesheet_311", + "full_description": "4-frame sprite animation of: small black ghost, that: is idle, facing: East" + }, + "312": { + "frames": "8", + "action": "cast a spell that creates magic orb", + "direction": "East", + "character": "wizard with white beard and crystal staff in pink robe", + "folder_name": "spritesheet_312", + "full_description": "8-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: cast a spell that creates magic orb, facing: East" + }, + "313": { + "frames": "8", + "action": "makes arcane spell from his staff", + "direction": "East", + "character": "wizard with white beard and crystal staff in pink robe", + "folder_name": "spritesheet_313", + "full_description": "8-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: makes arcane spell from his staff, facing: East" + }, + "314": { + "frames": "7", + "action": "falls on knees and his staff breaks", + "direction": "East", + "character": "wizard with white beard and crystal staff in pink robe", + "folder_name": "spritesheet_314", + "full_description": "7-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: falls on knees and his staff breaks, facing: East" + }, + "315": { + "frames": "2", + "action": "falls down", + "direction": "East", + "character": "wizard with white beard and crystal staff in pink robe", + "folder_name": "spritesheet_315", + "full_description": "2-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: falls down, facing: East" + }, + "316": { + "frames": "6", + "action": "is idle", + "direction": "East", + "character": "wizard with white beard and crystal staff in pink robe", + "folder_name": "spritesheet_316", + "full_description": "6-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: is idle, facing: East" + }, + "317": { + "frames": "2", + "action": "jumps up", + "direction": "East", + "character": "wizard with white beard and crystal staff in pink robe", + "folder_name": "spritesheet_317", + "full_description": "2-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: jumps up, facing: East" + }, + "318": { + "frames": "8", + "action": "runs", + "direction": "East", + "character": "wizard with white beard and crystal staff in pink robe", + "folder_name": "spritesheet_318", + "full_description": "8-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: runs, facing: East" + }, + "319": { + "frames": "4", + "action": "is getting struck", + "direction": "East", + "character": "wizard with white beard and crystal staff in pink robe", + "folder_name": "spritesheet_319", + "full_description": "4-frame sprite animation of: wizard with white beard and crystal staff in pink robe , that: is getting struck, facing: East" + }, + "320": { + "frames": "6", + "action": "is idle", + "direction": "West", + "character": "a horned fire demon with large bloody cleaver", + "folder_name": "spritesheet_320", + "full_description": "6-frame sprite animation of: a horned fire demon with large bloody cleaver, that: is idle, facing: West" + }, + "321": { + "frames": "12", + "action": "is walking", + "direction": "West", + "character": "a horned fire demon with large bloody cleaver", + "folder_name": "spritesheet_321", + "full_description": "12-frame sprite animation of: a horned fire demon with large bloody cleaver, that: is walking, facing: West" + }, + "322": { + "frames": "15", + "action": "swings his cleaver to attack", + "direction": "West", + "character": "a horned fire demon with large bloody cleaver", + "folder_name": "spritesheet_322", + "full_description": "15-frame sprite animation of: a horned fire demon with large bloody cleaver, that: swings his cleaver to attack, facing: West" + }, + "323": { + "frames": "5", + "action": "is taking damage after hit", + "direction": "West", + "character": "a horned fire demon with large bloody cleaver", + "folder_name": "spritesheet_323", + "full_description": "5-frame sprite animation of: a horned fire demon with large bloody cleaver, that: is taking damage after hit, facing: West" + }, + "324": { + "frames": "22", + "action": "is disintegrating to ash in flames", + "direction": "West", + "character": "a horned fire demon with large bloody cleaver", + "folder_name": "spritesheet_324", + "full_description": "22-frame sprite animation of: a horned fire demon with large bloody cleaver, that: is disintegrating to ash in flames, facing: West" + }, + "325": { + "frames": "25", + "action": "digs a hole and burrows himself into ground tunnel", + "direction": "North-East", + "character": "badger", + "folder_name": "spritesheet_325", + "full_description": "25-frame sprite animation of: badger, that: digs a hole and burrows himself into ground tunnel, facing: North-East" + }, + "326": { + "frames": "22", + "action": "is idle", + "direction": "North-East", + "character": "badger", + "folder_name": "spritesheet_326", + "full_description": "22-frame sprite animation of: badger, that: is idle, facing: North-East" + }, + "327": { + "frames": "5", + "action": "is moving", + "direction": "North-East", + "character": "pile of dirt", + "folder_name": "spritesheet_327", + "full_description": "5-frame sprite animation of: pile of dirt, that: is moving, facing: North-East" + }, + "328": { + "frames": "13", + "action": "unborrows himself out the underground tunnel", + "direction": "North-East", + "character": "badger", + "folder_name": "spritesheet_328", + "full_description": "13-frame sprite animation of: badger, that: unborrows himself out the underground tunnel, facing: North-East" + }, + "329": { + "frames": "9", + "action": "is walking", + "direction": "North-East", + "character": "badger", + "folder_name": "spritesheet_329", + "full_description": "9-frame sprite animation of: badger, that: is walking, facing: North-East" + }, + "330": { + "frames": "25", + "action": "digs a hole and burrows himself into ground tunnel", + "direction": "North-West", + "character": "badger", + "folder_name": "spritesheet_330", + "full_description": "25-frame sprite animation of: badger, that: digs a hole and burrows himself into ground tunnel, facing: North-West" + }, + "331": { + "frames": "22", + "action": "is idle", + "direction": "North-West", + "character": "badger", + "folder_name": "spritesheet_331", + "full_description": "22-frame sprite animation of: badger, that: is idle, facing: North-West" + }, + "332": { + "frames": "5", + "action": "is moving", + "direction": "North-West", + "character": "pile of dirt", + "folder_name": "spritesheet_332", + "full_description": "5-frame sprite animation of: pile of dirt, that: is moving, facing: North-West" + }, + "333": { + "frames": "13", + "action": "unburrows himself out the underground tunnel", + "direction": "North-West", + "character": "badger", + "folder_name": "spritesheet_333", + "full_description": "13-frame sprite animation of: badger, that: unburrows himself out the underground tunnel, facing: North-West" + }, + "334": { + "frames": "9", + "action": "is walking", + "direction": "North-West", + "character": "badger", + "folder_name": "spritesheet_334", + "full_description": "9-frame sprite animation of: badger, that: is walking, facing: North-West" + }, + "335": { + "frames": "25", + "action": "digs a hole and burrows himself into ground tunnel", + "direction": "South-East", + "character": "badger", + "folder_name": "spritesheet_335", + "full_description": "25-frame sprite animation of: badger, that: digs a hole and burrows himself into ground tunnel, facing: South-East" + }, + "336": { + "frames": "22", + "action": "is idle", + "direction": "South-East", + "character": "badger", + "folder_name": "spritesheet_336", + "full_description": "22-frame sprite animation of: badger, that: is idle, facing: South-East" + }, + "337": { + "frames": "5", + "action": "is moving", + "direction": "South-East", + "character": "pile of dirt", + "folder_name": "spritesheet_337", + "full_description": "5-frame sprite animation of: pile of dirt, that: is moving, facing: South-East" + }, + "338": { + "frames": "13", + "action": "unburrows himself out the underground tunnel", + "direction": "South-East", + "character": "badger", + "folder_name": "spritesheet_338", + "full_description": "13-frame sprite animation of: badger, that: unburrows himself out the underground tunnel, facing: South-East" + }, + "339": { + "frames": "9", + "action": "is walking", + "direction": "South-East", + "character": "badger", + "folder_name": "spritesheet_339", + "full_description": "9-frame sprite animation of: badger, that: is walking, facing: South-East" + }, + "340": { + "frames": "25", + "action": "digs a hole and burrows himself into ground tunnel", + "direction": "South-West", + "character": "badger", + "folder_name": "spritesheet_340", + "full_description": "25-frame sprite animation of: badger, that: digs a hole and burrows himself into ground tunnel, facing: South-West" + }, + "341": { + "frames": "22", + "action": "is idle", + "direction": "South-West", + "character": "badger", + "folder_name": "spritesheet_341", + "full_description": "22-frame sprite animation of: badger, that: is idle, facing: South-West" + }, + "342": { + "frames": "5", + "action": "is moving", + "direction": "South-West", + "character": "pile of dirt", + "folder_name": "spritesheet_342", + "full_description": "5-frame sprite animation of: pile of dirt, that: is moving, facing: South-West" + }, + "343": { + "frames": "13", + "action": "unburrows himself out the underground tunnel", + "direction": "South-West", + "character": "badger", + "folder_name": "spritesheet_343", + "full_description": "13-frame sprite animation of: badger, that: unburrows himself out the underground tunnel, facing: South-West" + }, + "344": { + "frames": "9", + "action": "is walking", + "direction": "South-West", + "character": "badger", + "folder_name": "spritesheet_344", + "full_description": "9-frame sprite animation of: badger, that: is walking, facing: South-West" + }, + "345": { + "frames": "7", + "action": "is idle", + "direction": "North-East", + "character": "a boar", + "folder_name": "spritesheet_345", + "full_description": "7-frame sprite animation of: a boar, that: is idle, facing: North-East" + }, + "346": { + "frames": "4", + "action": "is running", + "direction": "North-East", + "character": "a boar", + "folder_name": "spritesheet_346", + "full_description": "4-frame sprite animation of: a boar, that: is running, facing: North-East" + }, + "347": { + "frames": "7", + "action": "is idle", + "direction": "North-West", + "character": "a boar", + "folder_name": "spritesheet_347", + "full_description": "7-frame sprite animation of: a boar, that: is idle, facing: North-West" + }, + "348": { + "frames": "4", + "action": "is running", + "direction": "North-West", + "character": "a boar", + "folder_name": "spritesheet_348", + "full_description": "4-frame sprite animation of: a boar, that: is running, facing: North-West" + }, + "349": { + "frames": "7", + "action": "is idle", + "direction": "South-East", + "character": "a boar", + "folder_name": "spritesheet_349", + "full_description": "7-frame sprite animation of: a boar, that: is idle, facing: South-East" + }, + "350": { + "frames": "4", + "action": "is running", + "direction": "South-East", + "character": "a boar", + "folder_name": "spritesheet_350", + "full_description": "4-frame sprite animation of: a boar, that: is running, facing: South-East" + }, + "351": { + "frames": "7", + "action": "is idle", + "direction": "South-West", + "character": "a boar", + "folder_name": "spritesheet_351", + "full_description": "7-frame sprite animation of: a boar, that: is idle, facing: South-West" + }, + "352": { + "frames": "4", + "action": "is running", + "direction": "South-West", + "character": "a boar", + "folder_name": "spritesheet_352", + "full_description": "4-frame sprite animation of: a boar, that: is running, facing: South-West" + }, + "353": { + "frames": "24", + "action": "is idle", + "direction": "North-East", + "character": "a stag", + "folder_name": "spritesheet_353", + "full_description": "24-frame sprite animation of: a stag, that: is idle, facing: North-East" + }, + "354": { + "frames": "10", + "action": "runs", + "direction": "North-East", + "character": "a stag", + "folder_name": "spritesheet_354", + "full_description": "10-frame sprite animation of: a stag, that: runs, facing: North-East" + }, + "355": { + "frames": "11", + "action": "walks", + "direction": "North-East", + "character": "a stag", + "folder_name": "spritesheet_355", + "full_description": "11-frame sprite animation of: a stag, that: walks, facing: North-East" + }, + "356": { + "frames": "24", + "action": "is idle", + "direction": "North-West", + "character": "a stag", + "folder_name": "spritesheet_356", + "full_description": "24-frame sprite animation of: a stag, that: is idle, facing: North-West" + }, + "357": { + "frames": "10", + "action": "runs", + "direction": "North-West", + "character": "a stag", + "folder_name": "spritesheet_357", + "full_description": "10-frame sprite animation of: a stag, that: runs, facing: North-West" + }, + "358": { + "frames": "11", + "action": "walks", + "direction": "North-West", + "character": "a stag", + "folder_name": "spritesheet_358", + "full_description": "11-frame sprite animation of: a stag, that: walks, facing: North-West" + }, + "359": { + "frames": "24", + "action": "is idle", + "direction": "South-East", + "character": "a stag", + "folder_name": "spritesheet_359", + "full_description": "24-frame sprite animation of: a stag, that: is idle, facing: South-East" + }, + "360": { + "frames": "10", + "action": "runs", + "direction": "South-East", + "character": "a stag", + "folder_name": "spritesheet_360", + "full_description": "10-frame sprite animation of: a stag, that: runs, facing: South-East" + }, + "361": { + "frames": "11", + "action": "walks", + "direction": "South-East", + "character": "a stag", + "folder_name": "spritesheet_361", + "full_description": "11-frame sprite animation of: a stag, that: walks, facing: South-East" + }, + "362": { + "frames": "24", + "action": "is idle", + "direction": "South-West", + "character": "a stag", + "folder_name": "spritesheet_362", + "full_description": "24-frame sprite animation of: a stag, that: is idle, facing: South-West" + }, + "363": { + "frames": "10", + "action": "runs", + "direction": "South-West", + "character": "a stag", + "folder_name": "spritesheet_363", + "full_description": "10-frame sprite animation of: a stag, that: runs, facing: South-West" + }, + "364": { + "frames": "11", + "action": "walks", + "direction": "South-West", + "character": "a stag", + "folder_name": "spritesheet_364", + "full_description": "11-frame sprite animation of: a stag, that: walks, facing: South-West" + }, + "365": { + "frames": "15", + "action": "is biting", + "direction": "South-West", + "character": "wolf", + "folder_name": "spritesheet_365", + "full_description": "15-frame sprite animation of: wolf, that: is biting, facing: South-West" + }, + "366": { + "frames": "15", + "action": "is biting", + "direction": "South-East", + "character": "wolf", + "folder_name": "spritesheet_366", + "full_description": "15-frame sprite animation of: wolf, that: is biting, facing: South-East" + }, + "367": { + "frames": "15", + "action": "is biting", + "direction": "North-West", + "character": "wolf", + "folder_name": "spritesheet_367", + "full_description": "15-frame sprite animation of: wolf, that: is biting, facing: North-West" + }, + "368": { + "frames": "15", + "action": "is biting", + "direction": "North-East", + "character": "wolf", + "folder_name": "spritesheet_368", + "full_description": "15-frame sprite animation of: wolf, that: is biting, facing: North-East" + }, + "369": { + "frames": "12", + "action": "is getting struck and dies", + "direction": "South-West", + "character": "wolf", + "folder_name": "spritesheet_369", + "full_description": "12-frame sprite animation of: wolf, that: is getting struck and dies, facing: South-West" + }, + "370": { + "frames": "12", + "action": "is getting struck and dies", + "direction": "South-East", + "character": "wolf", + "folder_name": "spritesheet_370", + "full_description": "12-frame sprite animation of: wolf, that: is getting struck and dies, facing: South-East" + }, + "371": { + "frames": "12", + "action": "is getting struck and dies", + "direction": "North-West", + "character": "wolf", + "folder_name": "spritesheet_371", + "full_description": "12-frame sprite animation of: wolf, that: is getting struck and dies, facing: North-West" + }, + "372": { + "frames": "12", + "action": "is getting struck and dies", + "direction": "North-East", + "character": "wolf", + "folder_name": "spritesheet_372", + "full_description": "12-frame sprite animation of: wolf, that: is getting struck and dies, facing: North-East" + }, + "373": { + "frames": "9", + "action": "is howling", + "direction": "South-West", + "character": "wolf", + "folder_name": "spritesheet_373", + "full_description": "9-frame sprite animation of: wolf, that: is howling, facing: South-West" + }, + "374": { + "frames": "9", + "action": "is howling", + "direction": "South-East", + "character": "wolf", + "folder_name": "spritesheet_374", + "full_description": "9-frame sprite animation of: wolf, that: is howling, facing: South-East" + }, + "375": { + "frames": "9", + "action": "is howling", + "direction": "North-West", + "character": "wolf", + "folder_name": "spritesheet_375", + "full_description": "9-frame sprite animation of: wolf, that: is howling, facing: North-West" + }, + "376": { + "frames": "9", + "action": "is howling", + "direction": "North-East", + "character": "wolf", + "folder_name": "spritesheet_376", + "full_description": "9-frame sprite animation of: wolf, that: is howling, facing: North-East" + }, + "377": { + "frames": "4", + "action": "is idle", + "direction": "South-West", + "character": "wolf", + "folder_name": "spritesheet_377", + "full_description": "4-frame sprite animation of: wolf, that: is idle, facing: South-West" + }, + "378": { + "frames": "4", + "action": "is idle", + "direction": "South-East", + "character": "wolf", + "folder_name": "spritesheet_378", + "full_description": "4-frame sprite animation of: wolf, that: is idle, facing: South-East" + }, + "379": { + "frames": "4", + "action": "is idle", + "direction": "North-West", + "character": "wolf", + "folder_name": "spritesheet_379", + "full_description": "4-frame sprite animation of: wolf, that: is idle, facing: North-West" + }, + "380": { + "frames": "4", + "action": "is idle", + "direction": "North-East", + "character": "wolf", + "folder_name": "spritesheet_380", + "full_description": "4-frame sprite animation of: wolf, that: is idle, facing: North-East" + }, + "381": { + "frames": "8", + "action": "is running", + "direction": "South-West", + "character": "wolf", + "folder_name": "spritesheet_381", + "full_description": "8-frame sprite animation of: wolf, that: is running, facing: South-West" + }, + "382": { + "frames": "8", + "action": "is running", + "direction": "South-East", + "character": "wolf", + "folder_name": "spritesheet_382", + "full_description": "8-frame sprite animation of: wolf, that: is running, facing: South-East" + }, + "383": { + "frames": "8", + "action": "is running", + "direction": "North-West", + "character": "wolf", + "folder_name": "spritesheet_383", + "full_description": "8-frame sprite animation of: wolf, that: is running, facing: North-West" + }, + "384": { + "frames": "8", + "action": "is running", + "direction": "North-East", + "character": "wolf", + "folder_name": "spritesheet_384", + "full_description": "8-frame sprite animation of: wolf, that: is running, facing: North-East" + }, + "385": { + "frames": "5", + "action": "swings his both gauntlets over head to make an attack", + "direction": "East", + "character": "cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets", + "folder_name": "spritesheet_385", + "full_description": "5-frame sprite animation of: cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets, that: swings his both gauntlets over head to make an attack, facing: East" + }, + "386": { + "frames": "6", + "action": "falls on the ground and dies", + "direction": "East", + "character": "cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets", + "folder_name": "spritesheet_386", + "full_description": "6-frame sprite animation of: cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets, that: falls on the ground and dies, facing: East" + }, + "387": { + "frames": "5", + "action": "is idle", + "direction": "East", + "character": "cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets", + "folder_name": "spritesheet_387", + "full_description": "5-frame sprite animation of: cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets, that: is idle, facing: East" + }, + "388": { + "frames": "4", + "action": "is getting struck", + "direction": "East", + "character": "cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets", + "folder_name": "spritesheet_388", + "full_description": "4-frame sprite animation of: cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets, that: is getting struck, facing: East" + }, + "389": { + "frames": "6", + "action": "is walking", + "direction": "East", + "character": "cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets", + "folder_name": "spritesheet_389", + "full_description": "6-frame sprite animation of: cultist priest in green hooded cloak with big gold cross on his neck, skulls on his shoulders and massive golden gauntlets, that: is walking, facing: East" + }, + "390": { + "frames": "4", + "action": "is idle", + "direction": "East", + "character": "tiny baby blue dino with big head", + "folder_name": "spritesheet_390", + "full_description": "4-frame sprite animation of: tiny baby blue dino with big head, that: is idle, facing: East" + }, + "391": { + "frames": "10", + "action": "is walking", + "direction": "East", + "character": "tiny baby blue dino with big head", + "folder_name": "spritesheet_391", + "full_description": "10-frame sprite animation of: tiny baby blue dino with big head, that: is walking, facing: East" + }, + "392": { + "frames": "3", + "action": "is getting struck", + "direction": "East", + "character": "tiny baby blue dino with big head", + "folder_name": "spritesheet_392", + "full_description": "3-frame sprite animation of: tiny baby blue dino with big head, that: is getting struck, facing: East" + }, + "393": { + "frames": "7", + "action": "is running", + "direction": "East", + "character": "tiny baby blue dino with big head", + "folder_name": "spritesheet_393", + "full_description": "7-frame sprite animation of: tiny baby blue dino with big head, that: is running, facing: East" + }, + "394": { + "frames": "4", + "action": "is idle", + "direction": "East", + "character": "tiny baby red dino with big head", + "folder_name": "spritesheet_394", + "full_description": "4-frame sprite animation of: tiny baby red dino with big head, that: is idle, facing: East" + }, + "395": { + "frames": "10", + "action": "is walking", + "direction": "East", + "character": "tiny baby red dino with big head", + "folder_name": "spritesheet_395", + "full_description": "10-frame sprite animation of: tiny baby red dino with big head, that: is walking, facing: East" + }, + "396": { + "frames": "3", + "action": "is getting struck", + "direction": "East", + "character": "tiny baby red dino with big head", + "folder_name": "spritesheet_396", + "full_description": "3-frame sprite animation of: tiny baby red dino with big head, that: is getting struck, facing: East" + }, + "397": { + "frames": "7", + "action": "is running", + "direction": "East", + "character": "tiny baby red dino with big head", + "folder_name": "spritesheet_397", + "full_description": "7-frame sprite animation of: tiny baby red dino with big head, that: is running, facing: East" + }, + "398": { + "frames": "4", + "action": "is idle", + "direction": "East", + "character": "tiny baby yellow dino with big head", + "folder_name": "spritesheet_398", + "full_description": "4-frame sprite animation of: tiny baby yellow dino with big head, that: is idle, facing: East" + }, + "399": { + "frames": "10", + "action": "is walking", + "direction": "East", + "character": "tiny baby yellow dino with big head", + "folder_name": "spritesheet_399", + "full_description": "10-frame sprite animation of: tiny baby yellow dino with big head, that: is walking, facing: East" + }, + "400": { + "frames": "3", + "action": "is getting struck", + "direction": "East", + "character": "tiny baby yellow dino with big head", + "folder_name": "spritesheet_400", + "full_description": "3-frame sprite animation of: tiny baby yellow dino with big head, that: is getting struck, facing: East" + }, + "401": { + "frames": "7", + "action": "is running", + "direction": "East", + "character": "tiny baby yellow dino with big head", + "folder_name": "spritesheet_401", + "full_description": "7-frame sprite animation of: tiny baby yellow dino with big head, that: is running, facing: East" + }, + "402": { + "frames": "4", + "action": "is idle", + "direction": "East", + "character": "tiny baby green dino with big head", + "folder_name": "spritesheet_402", + "full_description": "4-frame sprite animation of: tiny baby green dino with big head, that: is idle, facing: East" + }, + "403": { + "frames": "10", + "action": "is walking", + "direction": "East", + "character": "tiny baby green dino with big head", + "folder_name": "spritesheet_403", + "full_description": "10-frame sprite animation of: tiny baby green dino with big head, that: is walking, facing: East" + }, + "404": { + "frames": "3", + "action": "is getting struck", + "direction": "East", + "character": "tiny baby green dino with big head", + "folder_name": "spritesheet_404", + "full_description": "3-frame sprite animation of: tiny baby green dino with big head, that: is getting struck, facing: East" + }, + "405": { + "frames": "7", + "action": "is running", + "direction": "East", + "character": "tiny baby green dino with big head", + "folder_name": "spritesheet_405", + "full_description": "7-frame sprite animation of: tiny baby green dino with big head, that: is running, facing: East" + }, + "406": { + "frames": "8", + "action": "is idle", + "direction": "East", + "character": "a wind hashashin with a swords in white shalvar pants and scarf", + "folder_name": "spritesheet_406", + "full_description": "8-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: is idle, facing: East" + }, + "407": { + "frames": "8", + "action": "runs", + "direction": "East", + "character": "a wind hashashin with a swords in white shalvar pants and scarf", + "folder_name": "spritesheet_407", + "full_description": "8-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: runs, facing: East" + }, + "408": { + "frames": "6", + "action": "rolls", + "direction": "East", + "character": "a wind hashashin with a swords in white shalvar pants and scarf", + "folder_name": "spritesheet_408", + "full_description": "6-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: rolls, facing: East" + }, + "409": { + "frames": "3", + "action": "jumps up", + "direction": "East", + "character": "a wind hashashin with a swords in white shalvar pants and scarf", + "folder_name": "spritesheet_409", + "full_description": "3-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: jumps up, facing: East" + }, + "410": { + "frames": "3", + "action": "falls down", + "direction": "East", + "character": "a wind hashashin with a swords in white shalvar pants and scarf", + "folder_name": "spritesheet_410", + "full_description": "3-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: falls down, facing: East" + }, + "411": { + "frames": "8", + "action": "defends himself by crossing his swords", + "direction": "East", + "character": "a wind hashashin with a swords in white shalvar pants and scarf", + "folder_name": "spritesheet_411", + "full_description": "8-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: defends himself by crossing his swords, facing: East" + }, + "412": { + "frames": "8", + "action": "is swinging his sword to attack", + "direction": "East", + "character": "a wind hashashin with a swords in white shalvar pants and scarf", + "folder_name": "spritesheet_412", + "full_description": "8-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: is swinging his sword to attack, facing: East" + }, + "413": { + "frames": "18", + "action": "is fast swinging his swords in combo attack", + "direction": "East", + "character": "a wind hashashin with a swords in white shalvar pants and scarf", + "folder_name": "spritesheet_413", + "full_description": "18-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: is fast swinging his swords in combo attack, facing: East" + }, + "414": { + "frames": "26", + "action": "is fast swinging his swords then makes whirlwind", + "direction": "East", + "character": "a wind hashashin with a swords in white shalvar pants and scarf", + "folder_name": "spritesheet_414", + "full_description": "26-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: is fast swinging his swords then makes whirlwind, facing: East" + }, + "415": { + "frames": "26", + "action": "teleports to different locations to deal damage with his swords in large area", + "direction": "East", + "character": "a wind hashashin with a swords in white shalvar pants and scarf", + "folder_name": "spritesheet_415", + "full_description": "26-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: teleports to different locations to deal damage with his swords in large area, facing: East" + }, + "416": { + "frames": "6", + "action": "getting struck", + "direction": "East", + "character": "a wind hashashin with a swords in white shalvar pants and scarf", + "folder_name": "spritesheet_416", + "full_description": "6-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: getting struck, facing: East" + }, + "417": { + "frames": "19", + "action": "disappears in whirlwind", + "direction": "East", + "character": "a wind hashashin with a swords in white shalvar pants and scarf", + "folder_name": "spritesheet_417", + "full_description": "19-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: disappears in whirlwind, facing: East" + }, + "418": { + "frames": "7", + "action": "is thrusting his swords in air", + "direction": "East", + "character": "a wind hashashin with a swords in white shalvar pants and scarf", + "folder_name": "spritesheet_418", + "full_description": "7-frame sprite animation of: a wind hashashin with a swords in white shalvar pants and scarf, that: is thrusting his swords in air, facing: East" + }, + "419": { + "frames": "1", + "action": "is idle", + "direction": "South", + "character": "a face of wind hashashin in white scarf with a sword on his back", + "folder_name": "spritesheet_419", + "full_description": "1-frame sprite animation of: a face of wind hashashin in white scarf with a sword on his back, that: is idle, facing: South" + }, + "420": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a gray devil with three horns on head", + "folder_name": "spritesheet_420", + "full_description": "9-frame sprite animation of: a gray devil with three horns on head, that: walks, facing: North" + }, + "421": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a gray devil with three horns on head", + "folder_name": "spritesheet_421", + "full_description": "9-frame sprite animation of: a gray devil with three horns on head, that: walks, facing: West" + }, + "422": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a gray devil with three horns on head", + "folder_name": "spritesheet_422", + "full_description": "9-frame sprite animation of: a gray devil with three horns on head, that: walks, facing: South" + }, + "423": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a gray devil with three horns on head", + "folder_name": "spritesheet_423", + "full_description": "9-frame sprite animation of: a gray devil with three horns on head, that: walks, facing: East" }, - "153": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "153_frames", - "full_description": "No description available" + "424": { + "frames": "6", + "action": "walks", + "direction": "East", + "character": "tooth walker monster without hands with big tongue", + "folder_name": "spritesheet_424", + "full_description": "6-frame sprite animation of: tooth walker monster without hands with big tongue, that: walks, facing: East" }, - "71": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "71_frames", - "full_description": "No description available" + "425": { + "frames": "4", + "action": "is idle", + "direction": "East", + "character": "tooth walker monster without hands with big tongue", + "folder_name": "spritesheet_425", + "full_description": "4-frame sprite animation of: tooth walker monster without hands with big tongue, that: is idle, facing: East" }, - "130": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "130_frames", - "full_description": "No description available" + "426": { + "frames": "4", + "action": "is getting struct", + "direction": "East", + "character": "tooth walker monster without hands with big tongue", + "folder_name": "spritesheet_426", + "full_description": "4-frame sprite animation of: tooth walker monster without hands with big tongue, that: is getting struct, facing: East" }, - "141": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "141_frames", - "full_description": "No description available" + "427": { + "frames": "7", + "action": "explodes with blood", + "direction": "East", + "character": "tooth walker monster without hands with big tongue", + "folder_name": "spritesheet_427", + "full_description": "7-frame sprite animation of: tooth walker monster without hands with big tongue, that: explodes with blood, facing: East" }, - "36": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "36_frames", - "full_description": "No description available" + "428": { + "frames": "6", + "action": "bites with splashing effect", + "direction": "East", + "character": "tooth walker monster without hands with big tongue", + "folder_name": "spritesheet_428", + "full_description": "6-frame sprite animation of: tooth walker monster without hands with big tongue, that: bites with splashing effect, facing: East" }, - "169": { - "frames": "unknown", - "action": "unknown", + "429": { + "frames": "8", + "action": "rolls", "direction": "unknown", - "character": "unknown", - "folder_name": "169_frames", - "full_description": "No description available" + "character": "shuriken", + "folder_name": "spritesheet_429", + "full_description": "8-frame sprite animation of: shuriken, that: rolls" }, - "28": { - "frames": "unknown", - "action": "unknown", + "430": { + "frames": "8", + "action": "is shattered", "direction": "unknown", - "character": "unknown", - "folder_name": "28_frames", - "full_description": "No description available" + "character": "brick", + "folder_name": "spritesheet_430", + "full_description": "8-frame sprite animation of: brick, that: is shattered" }, - "114": { - "frames": "unknown", - "action": "unknown", + "431": { + "frames": "8", + "action": "is shattered and falls down", "direction": "unknown", - "character": "unknown", - "folder_name": "114_frames", - "full_description": "No description available" + "character": "rock", + "folder_name": "spritesheet_431", + "full_description": "8-frame sprite animation of: rock, that: is shattered and falls down" }, - "55": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "55_frames", - "full_description": "No description available" + "432": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with short green hair in leather pants with short pinkish-red hair", + "folder_name": "spritesheet_432", + "full_description": "13-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: shoots from invisible bow, facing: North" }, - "24": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "24_frames", - "full_description": "No description available" + "433": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with short green hair in leather pants with short pinkish-red hair", + "folder_name": "spritesheet_433", + "full_description": "13-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: shoots from invisible bow, facing: West" }, - "59": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "59_frames", - "full_description": "No description available" + "434": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with short green hair in leather pants with short pinkish-red hair", + "folder_name": "spritesheet_434", + "full_description": "13-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: shoots from invisible bow, facing: South" }, - "118": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "118_frames", - "full_description": "No description available" + "435": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with short green hair in leather pants with short pinkish-red hair", + "folder_name": "spritesheet_435", + "full_description": "13-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: shoots from invisible bow, facing: East" }, - "90": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "90_frames", - "full_description": "No description available" + "436": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with short green hair in leather pants with short pinkish-red hair", + "folder_name": "spritesheet_436", + "full_description": "9-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: walks, facing: North" }, - "82": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "82_frames", - "full_description": "No description available" + "437": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with short green hair in leather pants with short pinkish-red hair", + "folder_name": "spritesheet_437", + "full_description": "9-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: walks, facing: West" }, - "7": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "7_frames", - "full_description": "No description available" + "438": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with short green hair in leather pants with short pinkish-red hair", + "folder_name": "spritesheet_438", + "full_description": "9-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: walks, facing: South" }, - "80": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "80_frames", - "full_description": "No description available" + "439": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with short green hair in leather pants with short pinkish-red hair", + "folder_name": "spritesheet_439", + "full_description": "9-frame sprite animation of: a man with short green hair in leather pants with short pinkish-red hair, that: walks, facing: East" }, - "92": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "92_frames", - "full_description": "No description available" + "440": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with purple man bun hair in red shorts with half-shaven gray hair", + "folder_name": "spritesheet_440", + "full_description": "13-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: shoots from invisible bow, facing: North" }, - "5": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "5_frames", - "full_description": "No description available" + "441": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with purple man bun hair in red shorts with half-shaven gray hair", + "folder_name": "spritesheet_441", + "full_description": "13-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: shoots from invisible bow, facing: West" }, - "9": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "9_frames", - "full_description": "No description available" + "442": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with purple man bun hair in red shorts with half-shaven gray hair", + "folder_name": "spritesheet_442", + "full_description": "13-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: shoots from invisible bow, facing: South" }, - "61": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "61_frames", - "full_description": "No description available" + "443": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with purple man bun hair in red shorts with half-shaven gray hair", + "folder_name": "spritesheet_443", + "full_description": "13-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: shoots from invisible bow, facing: East" }, - "143": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "143_frames", - "full_description": "No description available" + "444": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with purple man bun hair in red shorts with half-shaven gray hair", + "folder_name": "spritesheet_444", + "full_description": "9-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: walks, facing: North" }, - "73": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "73_frames", - "full_description": "No description available" + "445": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with purple man bun hair in red shorts with half-shaven gray hair", + "folder_name": "spritesheet_445", + "full_description": "9-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: walks, facing: West" }, - "132": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "132_frames", - "full_description": "No description available" + "446": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with purple man bun hair in red shorts with half-shaven gray hair", + "folder_name": "spritesheet_446", + "full_description": "9-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: walks, facing: South" }, - "10": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "10_frames", - "full_description": "No description available" + "447": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with purple man bun hair in red shorts with half-shaven gray hair", + "folder_name": "spritesheet_447", + "full_description": "9-frame sprite animation of: a man with purple man bun hair in red shorts with half-shaven gray hair, that: walks, facing: East" }, - "151": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "151_frames", - "full_description": "No description available" + "448": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with short gray hair in white pants without hair", + "folder_name": "spritesheet_448", + "full_description": "13-frame sprite animation of: a man with short gray hair in white pants without hair, that: shoots from invisible bow, facing: North" }, - "26": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "26_frames", - "full_description": "No description available" + "449": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with short gray hair in white pants without hair", + "folder_name": "spritesheet_449", + "full_description": "13-frame sprite animation of: a man with short gray hair in white pants without hair, that: shoots from invisible bow, facing: West" }, - "116": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "116_frames", - "full_description": "No description available" + "450": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with short gray hair in white pants without hair", + "folder_name": "spritesheet_450", + "full_description": "13-frame sprite animation of: a man with short gray hair in white pants without hair, that: shoots from invisible bow, facing: South" }, - "34": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "34_frames", - "full_description": "No description available" + "451": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with short gray hair in white pants without hair", + "folder_name": "spritesheet_451", + "full_description": "13-frame sprite animation of: a man with short gray hair in white pants without hair, that: shoots from invisible bow, facing: East" }, - "108": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "108_frames", - "full_description": "No description available" + "452": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with short gray hair in white pants without hair", + "folder_name": "spritesheet_452", + "full_description": "9-frame sprite animation of: a man with short gray hair in white pants without hair, that: walks, facing: North" }, - "1": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "1_frames", - "full_description": "No description available" + "453": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with short gray hair in white pants without hair", + "folder_name": "spritesheet_453", + "full_description": "9-frame sprite animation of: a man with short gray hair in white pants without hair, that: walks, facing: West" }, - "96": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "96_frames", - "full_description": "No description available" + "454": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with short gray hair in white pants without hair", + "folder_name": "spritesheet_454", + "full_description": "9-frame sprite animation of: a man with short gray hair in white pants without hair, that: walks, facing: South" }, - "84": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "84_frames", - "full_description": "No description available" + "455": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with short gray hair in white pants without hair", + "folder_name": "spritesheet_455", + "full_description": "9-frame sprite animation of: a man with short gray hair in white pants without hair, that: walks, facing: East" }, - "30": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "30_frames", - "full_description": "No description available" + "456": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair", + "folder_name": "spritesheet_456", + "full_description": "13-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: shoots from invisible bow, facing: North" }, - "22": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "22_frames", - "full_description": "No description available" + "457": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair", + "folder_name": "spritesheet_457", + "full_description": "13-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: shoots from invisible bow, facing: West" }, - "163": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "163_frames", - "full_description": "No description available" + "458": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair", + "folder_name": "spritesheet_458", + "full_description": "13-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: shoots from invisible bow, facing: South" }, - "77": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "77_frames", - "full_description": "No description available" + "459": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair", + "folder_name": "spritesheet_459", + "full_description": "13-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: shoots from invisible bow, facing: East" }, - "136": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "136_frames", - "full_description": "No description available" + "460": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair", + "folder_name": "spritesheet_460", + "full_description": "9-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: walks, facing: North" }, - "69": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "69_frames", - "full_description": "No description available" + "461": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair", + "folder_name": "spritesheet_461", + "full_description": "9-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: walks, facing: West" }, - "128": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "128_frames", - "full_description": "No description available" + "462": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair", + "folder_name": "spritesheet_462", + "full_description": "9-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: walks, facing: South" }, - "14": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "14_frames", - "full_description": "No description available" + "463": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair", + "folder_name": "spritesheet_463", + "full_description": "9-frame sprite animation of: a man with skin of yellowish-orange color with curly pinkish-purple hair in red shorts with short green hair, that: walks, facing: East" }, - "155": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "155_frames", - "full_description": "No description available" + "464": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair", + "folder_name": "spritesheet_464", + "full_description": "13-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: shoots from invisible bow, facing: North" }, - "65": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "65_frames", - "full_description": "No description available" + "465": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair", + "folder_name": "spritesheet_465", + "full_description": "13-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: shoots from invisible bow, facing: West" }, - "159": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "159_frames", - "full_description": "No description available" + "466": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair", + "folder_name": "spritesheet_466", + "full_description": "13-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: shoots from invisible bow, facing: South" }, - "18": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "18_frames", - "full_description": "No description available" + "467": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair", + "folder_name": "spritesheet_467", + "full_description": "13-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: shoots from invisible bow, facing: East" }, - "147": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "147_frames", - "full_description": "No description available" + "468": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair", + "folder_name": "spritesheet_468", + "full_description": "9-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: walks, facing: North" }, - "20": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "20_frames", - "full_description": "No description available" + "469": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair", + "folder_name": "spritesheet_469", + "full_description": "9-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: walks, facing: West" }, - "161": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "161_frames", - "full_description": "No description available" + "470": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair", + "folder_name": "spritesheet_470", + "full_description": "9-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: walks, facing: South" }, - "32": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "32_frames", - "full_description": "No description available" + "471": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair", + "folder_name": "spritesheet_471", + "full_description": "9-frame sprite animation of: a man with skin of yellowish-orange color with half-shaven gray hair in white pants with purple man bun hair, that: walks, facing: East" }, - "138": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "138_frames", - "full_description": "No description available" + "472": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair", + "folder_name": "spritesheet_472", + "full_description": "13-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: shoots from invisible bow, facing: North" }, - "79": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "79_frames", - "full_description": "No description available" + "473": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair", + "folder_name": "spritesheet_473", + "full_description": "13-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: shoots from invisible bow, facing: West" }, - "145": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "145_frames", - "full_description": "No description available" + "474": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair", + "folder_name": "spritesheet_474", + "full_description": "13-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: shoots from invisible bow, facing: South" }, - "126": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "126_frames", - "full_description": "No description available" + "475": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair", + "folder_name": "spritesheet_475", + "full_description": "13-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: shoots from invisible bow, facing: East" }, - "16": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "16_frames", - "full_description": "No description available" + "476": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair", + "folder_name": "spritesheet_476", + "full_description": "9-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: walks, facing: North" }, - "157": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "157_frames", - "full_description": "No description available" + "477": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair", + "folder_name": "spritesheet_477", + "full_description": "9-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: walks, facing: West" }, - "75": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "75_frames", - "full_description": "No description available" + "478": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair", + "folder_name": "spritesheet_478", + "full_description": "9-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: walks, facing: South" }, - "134": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "134_frames", - "full_description": "No description available" + "479": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair", + "folder_name": "spritesheet_479", + "full_description": "9-frame sprite animation of: a man with skin of yellowish-orange color with short red hair in green shorts with short yellow hair, that: walks, facing: East" }, - "149": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "149_frames", - "full_description": "No description available" + "480": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with skin of teal-blue color with curly orange hair in white pants with short gray hair", + "folder_name": "spritesheet_480", + "full_description": "13-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: shoots from invisible bow, facing: North" }, - "3": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "3_frames", - "full_description": "No description available" + "481": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with skin of teal-blue color with curly orange hair in white pants with short gray hair", + "folder_name": "spritesheet_481", + "full_description": "13-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: shoots from invisible bow, facing: West" }, - "86": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "86_frames", - "full_description": "No description available" + "482": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with skin of teal-blue color with curly orange hair in white pants with short gray hair", + "folder_name": "spritesheet_482", + "full_description": "13-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: shoots from invisible bow, facing: South" }, - "94": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "94_frames", - "full_description": "No description available" + "483": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with skin of teal-blue color with curly orange hair in white pants with short gray hair", + "folder_name": "spritesheet_483", + "full_description": "13-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: shoots from invisible bow, facing: East" }, - "6": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "6_frames", - "full_description": "No description available" + "484": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with skin of teal-blue color with curly orange hair in white pants with short gray hair", + "folder_name": "spritesheet_484", + "full_description": "9-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: walks, facing: North" }, - "91": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "91_frames", - "full_description": "No description available" + "485": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with skin of teal-blue color with curly orange hair in white pants with short gray hair", + "folder_name": "spritesheet_485", + "full_description": "9-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: walks, facing: West" }, - "83": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "83_frames", - "full_description": "No description available" + "486": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with skin of teal-blue color with curly orange hair in white pants with short gray hair", + "folder_name": "spritesheet_486", + "full_description": "9-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: walks, facing: South" }, - "54": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "54_frames", - "full_description": "No description available" + "487": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with skin of teal-blue color with curly orange hair in white pants with short gray hair", + "folder_name": "spritesheet_487", + "full_description": "9-frame sprite animation of: a man with skin of teal-blue color with curly orange hair in white pants with short gray hair, that: walks, facing: East" }, - "115": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "115_frames", - "full_description": "No description available" + "488": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with pale white skin without hair in white shorts with short pinkish-red hair", + "folder_name": "spritesheet_488", + "full_description": "13-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: shoots from invisible bow, facing: North" }, - "29": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "29_frames", - "full_description": "No description available" + "489": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with pale white skin without hair in white shorts with short pinkish-red hair", + "folder_name": "spritesheet_489", + "full_description": "13-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: shoots from invisible bow, facing: West" }, - "37": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "37_frames", - "full_description": "No description available" + "490": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with pale white skin without hair in white shorts with short pinkish-red hair", + "folder_name": "spritesheet_490", + "full_description": "13-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: shoots from invisible bow, facing: South" }, - "107": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "107_frames", - "full_description": "No description available" + "491": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with pale white skin without hair in white shorts with short pinkish-red hair", + "folder_name": "spritesheet_491", + "full_description": "13-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: shoots from invisible bow, facing: East" }, - "119": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "119_frames", - "full_description": "No description available" + "492": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with pale white skin without hair in white shorts with short pinkish-red hair", + "folder_name": "spritesheet_492", + "full_description": "9-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: walks, facing: North" }, - "164": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "164_frames", - "full_description": "No description available" + "493": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with pale white skin without hair in white shorts with short pinkish-red hair", + "folder_name": "spritesheet_493", + "full_description": "9-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: walks, facing: West" }, - "25": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "25_frames", - "full_description": "No description available" + "494": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with pale white skin without hair in white shorts with short pinkish-red hair", + "folder_name": "spritesheet_494", + "full_description": "9-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: walks, facing: South" }, - "131": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "131_frames", - "full_description": "No description available" + "495": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with pale white skin without hair in white shorts with short pinkish-red hair", + "folder_name": "spritesheet_495", + "full_description": "9-frame sprite animation of: a man with pale white skin without hair in white shorts with short pinkish-red hair, that: walks, facing: East" }, - "70": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "70_frames", - "full_description": "No description available" + "496": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with pale white skin with short green hair in leather sash with half-shaven gray hair", + "folder_name": "spritesheet_496", + "full_description": "13-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: shoots from invisible bow, facing: North" }, - "152": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "152_frames", - "full_description": "No description available" + "497": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with pale white skin with short green hair in leather sash with half-shaven gray hair", + "folder_name": "spritesheet_497", + "full_description": "13-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: shoots from invisible bow, facing: West" }, - "13": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "13_frames", - "full_description": "No description available" + "498": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with pale white skin with short green hair in leather sash with half-shaven gray hair", + "folder_name": "spritesheet_498", + "full_description": "13-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: shoots from invisible bow, facing: South" }, - "140": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "140_frames", - "full_description": "No description available" + "499": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with pale white skin with short green hair in leather sash with half-shaven gray hair", + "folder_name": "spritesheet_499", + "full_description": "13-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: shoots from invisible bow, facing: East" }, - "27": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "27_frames", - "full_description": "No description available" + "500": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with pale white skin with short green hair in leather sash with half-shaven gray hair", + "folder_name": "spritesheet_500", + "full_description": "9-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: walks, facing: North" }, - "35": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "35_frames", - "full_description": "No description available" + "501": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with pale white skin with short green hair in leather sash with half-shaven gray hair", + "folder_name": "spritesheet_501", + "full_description": "9-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: walks, facing: West" }, - "56": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "56_frames", - "full_description": "No description available" + "502": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with pale white skin with short green hair in leather sash with half-shaven gray hair", + "folder_name": "spritesheet_502", + "full_description": "9-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: walks, facing: South" }, - "117": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "117_frames", - "full_description": "No description available" + "503": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with pale white skin with short green hair in leather sash with half-shaven gray hair", + "folder_name": "spritesheet_503", + "full_description": "9-frame sprite animation of: a man with pale white skin with short green hair in leather sash with half-shaven gray hair, that: walks, facing: East" }, - "142": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "142_frames", - "full_description": "No description available" + "504": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with pale white skin with purple man bun hair in green shorts without hair", + "folder_name": "spritesheet_504", + "full_description": "13-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: shoots from invisible bow, facing: North" }, - "60": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "60_frames", - "full_description": "No description available" + "505": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with pale white skin with purple man bun hair in green shorts without hair", + "folder_name": "spritesheet_505", + "full_description": "13-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: shoots from invisible bow, facing: West" }, - "150": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "150_frames", - "full_description": "No description available" + "506": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with pale white skin with purple man bun hair in green shorts without hair", + "folder_name": "spritesheet_506", + "full_description": "13-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: shoots from invisible bow, facing: South" }, - "11": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "11_frames", - "full_description": "No description available" + "507": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with pale white skin with purple man bun hair in green shorts without hair", + "folder_name": "spritesheet_507", + "full_description": "13-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: shoots from invisible bow, facing: East" }, - "133": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "133_frames", - "full_description": "No description available" + "508": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with pale white skin with purple man bun hair in green shorts without hair", + "folder_name": "spritesheet_508", + "full_description": "9-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: walks, facing: North" }, - "72": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "72_frames", - "full_description": "No description available" + "509": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with pale white skin with purple man bun hair in green shorts without hair", + "folder_name": "spritesheet_509", + "full_description": "9-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: walks, facing: West" }, - "4": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "4_frames", - "full_description": "No description available" + "510": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with pale white skin with purple man bun hair in green shorts without hair", + "folder_name": "spritesheet_510", + "full_description": "9-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: walks, facing: South" }, - "8": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "8_frames", - "full_description": "No description available" + "511": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with pale white skin with purple man bun hair in green shorts without hair", + "folder_name": "spritesheet_511", + "full_description": "9-frame sprite animation of: a man with pale white skin with purple man bun hair in green shorts without hair, that: walks, facing: East" }, - "81": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "81_frames", - "full_description": "No description available" + "512": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with skin of dark-orange color with short gray hair in leather sash with short green hair", + "folder_name": "spritesheet_512", + "full_description": "13-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: shoots from invisible bow, facing: North" }, - "93": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "93_frames", - "full_description": "No description available" + "513": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with skin of dark-orange color with short gray hair in leather sash with short green hair", + "folder_name": "spritesheet_513", + "full_description": "13-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: shoots from invisible bow, facing: West" }, - "154": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "154_frames", - "full_description": "No description available" + "514": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with skin of dark-orange color with short gray hair in leather sash with short green hair", + "folder_name": "spritesheet_514", + "full_description": "13-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: shoots from invisible bow, facing: South" }, - "15": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "15_frames", - "full_description": "No description available" + "515": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with skin of dark-orange color with short gray hair in leather sash with short green hair", + "folder_name": "spritesheet_515", + "full_description": "13-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: shoots from invisible bow, facing: East" }, - "129": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "129_frames", - "full_description": "No description available" + "516": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with skin of dark-orange color with short gray hair in leather sash with short green hair", + "folder_name": "spritesheet_516", + "full_description": "9-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: walks, facing: North" }, - "137": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "137_frames", - "full_description": "No description available" + "517": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with skin of dark-orange color with short gray hair in leather sash with short green hair", + "folder_name": "spritesheet_517", + "full_description": "9-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: walks, facing: West" }, - "76": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "76_frames", - "full_description": "No description available" + "518": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with skin of dark-orange color with short gray hair in leather sash with short green hair", + "folder_name": "spritesheet_518", + "full_description": "9-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: walks, facing: South" }, - "146": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "146_frames", - "full_description": "No description available" + "519": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with skin of dark-orange color with short gray hair in leather sash with short green hair", + "folder_name": "spritesheet_519", + "full_description": "9-frame sprite animation of: a man with skin of dark-orange color with short gray hair in leather sash with short green hair, that: walks, facing: East" }, - "19": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "19_frames", - "full_description": "No description available" + "520": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair", + "folder_name": "spritesheet_520", + "full_description": "13-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: shoots from invisible bow, facing: North" }, - "158": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "158_frames", - "full_description": "No description available" + "521": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair", + "folder_name": "spritesheet_521", + "full_description": "13-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: shoots from invisible bow, facing: West" }, - "64": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "64_frames", - "full_description": "No description available" + "522": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair", + "folder_name": "spritesheet_522", + "full_description": "13-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: shoots from invisible bow, facing: South" }, - "31": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "31_frames", - "full_description": "No description available" + "523": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair", + "folder_name": "spritesheet_523", + "full_description": "13-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: shoots from invisible bow, facing: East" }, - "113": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "113_frames", - "full_description": "No description available" + "524": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair", + "folder_name": "spritesheet_524", + "full_description": "9-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: walks, facing: North" }, - "162": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "162_frames", - "full_description": "No description available" + "525": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair", + "folder_name": "spritesheet_525", + "full_description": "9-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: walks, facing: West" }, - "23": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "23_frames", - "full_description": "No description available" + "526": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair", + "folder_name": "spritesheet_526", + "full_description": "9-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: walks, facing: South" }, - "89": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "89_frames", - "full_description": "No description available" + "527": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair", + "folder_name": "spritesheet_527", + "full_description": "9-frame sprite animation of: a man with brown skin with curly pinkish-purple hair in leather pants with purple man bun hair, that: walks, facing: East" }, - "85": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "85_frames", - "full_description": "No description available" + "528": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with brown skin with half-shaven gray hair in leather sash with short yellow hair", + "folder_name": "spritesheet_528", + "full_description": "13-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: shoots from invisible bow, facing: North" }, - "0": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "0_frames", - "full_description": "No description available" + "529": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with brown skin with half-shaven gray hair in leather sash with short yellow hair", + "folder_name": "spritesheet_529", + "full_description": "13-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: shoots from invisible bow, facing: West" }, - "87": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "87_frames", - "full_description": "No description available" + "530": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with brown skin with half-shaven gray hair in leather sash with short yellow hair", + "folder_name": "spritesheet_530", + "full_description": "13-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: shoots from invisible bow, facing: South" }, - "95": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "95_frames", - "full_description": "No description available" + "531": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with brown skin with half-shaven gray hair in leather sash with short yellow hair", + "folder_name": "spritesheet_531", + "full_description": "13-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: shoots from invisible bow, facing: East" }, - "2": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "2_frames", - "full_description": "No description available" + "532": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with brown skin with half-shaven gray hair in leather sash with short yellow hair", + "folder_name": "spritesheet_532", + "full_description": "9-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: walks, facing: North" }, - "66": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "66_frames", - "full_description": "No description available" + "533": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with brown skin with half-shaven gray hair in leather sash with short yellow hair", + "folder_name": "spritesheet_533", + "full_description": "9-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: walks, facing: West" }, - "127": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "127_frames", - "full_description": "No description available" + "534": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with brown skin with half-shaven gray hair in leather sash with short yellow hair", + "folder_name": "spritesheet_534", + "full_description": "9-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: walks, facing: South" }, - "144": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "144_frames", - "full_description": "No description available" + "535": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with brown skin with half-shaven gray hair in leather sash with short yellow hair", + "folder_name": "spritesheet_535", + "full_description": "9-frame sprite animation of: a man with brown skin with half-shaven gray hair in leather sash with short yellow hair, that: walks, facing: East" }, - "78": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "78_frames", - "full_description": "No description available" + "536": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "a man with brown skin with short red hair in leather pants with short gray hair", + "folder_name": "spritesheet_536", + "full_description": "13-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: shoots from invisible bow, facing: North" }, - "139": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "139_frames", - "full_description": "No description available" + "537": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "a man with brown skin with short red hair in leather pants with short gray hair", + "folder_name": "spritesheet_537", + "full_description": "13-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: shoots from invisible bow, facing: West" }, - "148": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "148_frames", - "full_description": "No description available" + "538": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "a man with brown skin with short red hair in leather pants with short gray hair", + "folder_name": "spritesheet_538", + "full_description": "13-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: shoots from invisible bow, facing: South" }, - "135": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "135_frames", - "full_description": "No description available" + "539": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "a man with brown skin with short red hair in leather pants with short gray hair", + "folder_name": "spritesheet_539", + "full_description": "13-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: shoots from invisible bow, facing: East" }, - "74": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "74_frames", - "full_description": "No description available" + "540": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "a man with brown skin with short red hair in leather pants with short gray hair", + "folder_name": "spritesheet_540", + "full_description": "9-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: walks, facing: North" }, - "156": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "156_frames", - "full_description": "No description available" + "541": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "a man with brown skin with short red hair in leather pants with short gray hair", + "folder_name": "spritesheet_541", + "full_description": "9-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: walks, facing: West" }, - "17": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "17_frames", - "full_description": "No description available" + "542": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "a man with brown skin with short red hair in leather pants with short gray hair", + "folder_name": "spritesheet_542", + "full_description": "9-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: walks, facing: South" }, - "160": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "160_frames", - "full_description": "No description available" + "543": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "a man with brown skin with short red hair in leather pants with short gray hair", + "folder_name": "spritesheet_543", + "full_description": "9-frame sprite animation of: a man with brown skin with short red hair in leather pants with short gray hair, that: walks, facing: East" }, - "21": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "21_frames", - "full_description": "No description available" + "544": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "an orc in white pants", + "folder_name": "spritesheet_544", + "full_description": "13-frame sprite animation of: an orc in white pants, that: shoots from invisible bow, facing: North" }, - "50": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "50_frames", - "full_description": "No description available" + "545": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "an orc in white pants", + "folder_name": "spritesheet_545", + "full_description": "13-frame sprite animation of: an orc in white pants, that: shoots from invisible bow, facing: West" }, - "33": { - "frames": "unknown", - "action": "unknown", - "direction": "unknown", - "character": "unknown", - "folder_name": "33_frames", - "full_description": "No description available" + "546": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "an orc in white pants", + "folder_name": "spritesheet_546", + "full_description": "13-frame sprite animation of: an orc in white pants, that: shoots from invisible bow, facing: South" + }, + "547": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "an orc in white pants", + "folder_name": "spritesheet_547", + "full_description": "13-frame sprite animation of: an orc in white pants, that: shoots from invisible bow, facing: East" + }, + "548": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "an orc in white pants", + "folder_name": "spritesheet_548", + "full_description": "9-frame sprite animation of: an orc in white pants, that: walks, facing: North" + }, + "549": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "an orc in white pants", + "folder_name": "spritesheet_549", + "full_description": "9-frame sprite animation of: an orc in white pants, that: walks, facing: West" + }, + "550": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "an orc in white pants", + "folder_name": "spritesheet_550", + "full_description": "9-frame sprite animation of: an orc in white pants, that: walks, facing: South" + }, + "551": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "an orc in white pants", + "folder_name": "spritesheet_551", + "full_description": "9-frame sprite animation of: an orc in white pants, that: walks, facing: East" + }, + "552": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "North", + "character": "an orc in red shorts", + "folder_name": "spritesheet_552", + "full_description": "13-frame sprite animation of: an orc in red shorts, that: shoots from invisible bow, facing: North" + }, + "553": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "West", + "character": "an orc in red shorts", + "folder_name": "spritesheet_553", + "full_description": "13-frame sprite animation of: an orc in red shorts, that: shoots from invisible bow, facing: West" + }, + "554": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "South", + "character": "an orc in red shorts", + "folder_name": "spritesheet_554", + "full_description": "13-frame sprite animation of: an orc in red shorts, that: shoots from invisible bow, facing: South" + }, + "555": { + "frames": "13", + "action": "shoots from invisible bow", + "direction": "East", + "character": "an orc in red shorts", + "folder_name": "spritesheet_555", + "full_description": "13-frame sprite animation of: an orc in red shorts, that: shoots from invisible bow, facing: East" + }, + "556": { + "frames": "9", + "action": "walks", + "direction": "North", + "character": "an orc in red shorts", + "folder_name": "spritesheet_556", + "full_description": "9-frame sprite animation of: an orc in red shorts, that: walks, facing: North" + }, + "557": { + "frames": "9", + "action": "walks", + "direction": "West", + "character": "an orc in red shorts", + "folder_name": "spritesheet_557", + "full_description": "9-frame sprite animation of: an orc in red shorts, that: walks, facing: West" + }, + "558": { + "frames": "9", + "action": "walks", + "direction": "South", + "character": "an orc in red shorts", + "folder_name": "spritesheet_558", + "full_description": "9-frame sprite animation of: an orc in red shorts, that: walks, facing: South" + }, + "559": { + "frames": "9", + "action": "walks", + "direction": "East", + "character": "an orc in red shorts", + "folder_name": "spritesheet_559", + "full_description": "9-frame sprite animation of: an orc in red shorts, that: walks, facing: East" } } \ No newline at end of file diff --git a/train/.DS_Store b/train/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..fa49b6bb1de5541aea6b04bdc3f1182624c76212 Binary files /dev/null and b/train/.DS_Store differ diff --git a/train/0_frames/sprite_0.png b/train/spritesheet_0/frame_0.png similarity index 100% rename from train/0_frames/sprite_0.png rename to train/spritesheet_0/frame_0.png diff --git a/train/0_frames/sprite_1.png b/train/spritesheet_0/frame_1.png similarity index 100% rename from train/0_frames/sprite_1.png rename to train/spritesheet_0/frame_1.png diff --git a/train/0_frames/sprite_10.png b/train/spritesheet_0/frame_10.png similarity index 100% rename from train/0_frames/sprite_10.png rename to train/spritesheet_0/frame_10.png diff --git a/train/0_frames/sprite_11.png b/train/spritesheet_0/frame_11.png similarity index 100% rename from train/0_frames/sprite_11.png rename to train/spritesheet_0/frame_11.png diff --git a/train/0_frames/sprite_12.png b/train/spritesheet_0/frame_12.png similarity index 100% rename from train/0_frames/sprite_12.png rename to train/spritesheet_0/frame_12.png diff --git a/train/0_frames/sprite_13.png b/train/spritesheet_0/frame_13.png similarity index 100% rename from train/0_frames/sprite_13.png rename to train/spritesheet_0/frame_13.png diff --git a/train/0_frames/sprite_14.png b/train/spritesheet_0/frame_14.png similarity index 100% rename from train/0_frames/sprite_14.png rename to train/spritesheet_0/frame_14.png diff --git a/train/0_frames/sprite_15.png b/train/spritesheet_0/frame_15.png similarity index 100% rename from train/0_frames/sprite_15.png rename to train/spritesheet_0/frame_15.png diff --git a/train/0_frames/sprite_16.png b/train/spritesheet_0/frame_16.png similarity index 100% rename from train/0_frames/sprite_16.png rename to train/spritesheet_0/frame_16.png diff --git a/train/0_frames/sprite_17.png b/train/spritesheet_0/frame_17.png similarity index 100% rename from train/0_frames/sprite_17.png rename to train/spritesheet_0/frame_17.png diff --git a/train/0_frames/sprite_18.png b/train/spritesheet_0/frame_18.png similarity index 100% rename from train/0_frames/sprite_18.png rename to train/spritesheet_0/frame_18.png diff --git a/train/0_frames/sprite_19.png b/train/spritesheet_0/frame_19.png similarity index 100% rename from train/0_frames/sprite_19.png rename to train/spritesheet_0/frame_19.png diff --git a/train/0_frames/sprite_2.png b/train/spritesheet_0/frame_2.png similarity index 100% rename from train/0_frames/sprite_2.png rename to train/spritesheet_0/frame_2.png diff --git a/train/0_frames/sprite_20.png b/train/spritesheet_0/frame_20.png similarity index 100% rename from train/0_frames/sprite_20.png rename to train/spritesheet_0/frame_20.png diff --git a/train/0_frames/sprite_21.png b/train/spritesheet_0/frame_21.png similarity index 100% rename from train/0_frames/sprite_21.png rename to train/spritesheet_0/frame_21.png diff --git a/train/0_frames/sprite_22.png b/train/spritesheet_0/frame_22.png similarity index 100% rename from train/0_frames/sprite_22.png rename to train/spritesheet_0/frame_22.png diff --git a/train/0_frames/sprite_23.png b/train/spritesheet_0/frame_23.png similarity index 100% rename from train/0_frames/sprite_23.png rename to train/spritesheet_0/frame_23.png diff --git a/train/0_frames/sprite_24.png b/train/spritesheet_0/frame_24.png similarity index 100% rename from train/0_frames/sprite_24.png rename to train/spritesheet_0/frame_24.png diff --git a/train/0_frames/sprite_3.png b/train/spritesheet_0/frame_3.png similarity index 100% rename from train/0_frames/sprite_3.png rename to train/spritesheet_0/frame_3.png diff --git a/train/0_frames/sprite_4.png b/train/spritesheet_0/frame_4.png similarity index 100% rename from train/0_frames/sprite_4.png rename to train/spritesheet_0/frame_4.png diff --git a/train/0_frames/sprite_5.png b/train/spritesheet_0/frame_5.png similarity index 100% rename from train/0_frames/sprite_5.png rename to train/spritesheet_0/frame_5.png diff --git a/train/0_frames/sprite_6.png b/train/spritesheet_0/frame_6.png similarity index 100% rename from train/0_frames/sprite_6.png rename to train/spritesheet_0/frame_6.png diff --git a/train/0_frames/sprite_7.png b/train/spritesheet_0/frame_7.png similarity index 100% rename from train/0_frames/sprite_7.png rename to train/spritesheet_0/frame_7.png diff --git a/train/0_frames/sprite_8.png b/train/spritesheet_0/frame_8.png similarity index 100% rename from train/0_frames/sprite_8.png rename to train/spritesheet_0/frame_8.png diff --git a/train/0_frames/sprite_9.png b/train/spritesheet_0/frame_9.png similarity index 100% rename from train/0_frames/sprite_9.png rename to train/spritesheet_0/frame_9.png diff --git a/train/1_frames/sprite_0.png b/train/spritesheet_1/frame_0.png similarity index 100% rename from train/1_frames/sprite_0.png rename to train/spritesheet_1/frame_0.png diff --git a/train/1_frames/sprite_1.png b/train/spritesheet_1/frame_1.png similarity index 100% rename from train/1_frames/sprite_1.png rename to train/spritesheet_1/frame_1.png diff --git a/train/1_frames/sprite_10.png b/train/spritesheet_1/frame_10.png similarity index 100% rename from train/1_frames/sprite_10.png rename to train/spritesheet_1/frame_10.png diff --git a/train/1_frames/sprite_11.png b/train/spritesheet_1/frame_11.png similarity index 100% rename from train/1_frames/sprite_11.png rename to train/spritesheet_1/frame_11.png diff --git a/train/1_frames/sprite_12.png b/train/spritesheet_1/frame_12.png similarity index 100% rename from train/1_frames/sprite_12.png rename to train/spritesheet_1/frame_12.png diff --git a/train/117_frames/sprite_10.png b/train/spritesheet_1/frame_13.png similarity index 100% rename from train/117_frames/sprite_10.png rename to train/spritesheet_1/frame_13.png diff --git a/train/117_frames/sprite_11.png b/train/spritesheet_1/frame_14.png similarity index 100% rename from train/117_frames/sprite_11.png rename to train/spritesheet_1/frame_14.png diff --git a/train/117_frames/sprite_12.png b/train/spritesheet_1/frame_15.png similarity index 100% rename from train/117_frames/sprite_12.png rename to train/spritesheet_1/frame_15.png diff --git a/train/1_frames/sprite_2.png b/train/spritesheet_1/frame_2.png similarity index 100% rename from train/1_frames/sprite_2.png rename to train/spritesheet_1/frame_2.png diff --git a/train/1_frames/sprite_3.png b/train/spritesheet_1/frame_3.png similarity index 100% rename from train/1_frames/sprite_3.png rename to train/spritesheet_1/frame_3.png diff --git a/train/1_frames/sprite_4.png b/train/spritesheet_1/frame_4.png similarity index 100% rename from train/1_frames/sprite_4.png rename to train/spritesheet_1/frame_4.png diff --git a/train/1_frames/sprite_5.png b/train/spritesheet_1/frame_5.png similarity index 100% rename from train/1_frames/sprite_5.png rename to train/spritesheet_1/frame_5.png diff --git a/train/1_frames/sprite_6.png b/train/spritesheet_1/frame_6.png similarity index 100% rename from train/1_frames/sprite_6.png rename to train/spritesheet_1/frame_6.png diff --git a/train/1_frames/sprite_7.png b/train/spritesheet_1/frame_7.png similarity index 100% rename from train/1_frames/sprite_7.png rename to train/spritesheet_1/frame_7.png diff --git a/train/1_frames/sprite_8.png b/train/spritesheet_1/frame_8.png similarity index 100% rename from train/1_frames/sprite_8.png rename to train/spritesheet_1/frame_8.png diff --git a/train/1_frames/sprite_9.png b/train/spritesheet_1/frame_9.png similarity index 100% rename from train/1_frames/sprite_9.png rename to train/spritesheet_1/frame_9.png diff --git a/train/10_frames/sprite_0.png b/train/spritesheet_10/frame_0.png similarity index 100% rename from train/10_frames/sprite_0.png rename to train/spritesheet_10/frame_0.png diff --git a/train/10_frames/sprite_1.png b/train/spritesheet_10/frame_1.png similarity index 100% rename from train/10_frames/sprite_1.png rename to train/spritesheet_10/frame_1.png diff --git a/train/10_frames/sprite_2.png b/train/spritesheet_10/frame_2.png similarity index 100% rename from train/10_frames/sprite_2.png rename to train/spritesheet_10/frame_2.png diff --git a/train/10_frames/sprite_3.png b/train/spritesheet_10/frame_3.png similarity index 100% rename from train/10_frames/sprite_3.png rename to train/spritesheet_10/frame_3.png diff --git a/train/10_frames/sprite_4.png b/train/spritesheet_10/frame_4.png similarity index 100% rename from train/10_frames/sprite_4.png rename to train/spritesheet_10/frame_4.png diff --git a/train/10_frames/sprite_5.png b/train/spritesheet_10/frame_5.png similarity index 100% rename from train/10_frames/sprite_5.png rename to train/spritesheet_10/frame_5.png diff --git a/train/10_frames/sprite_6.png b/train/spritesheet_10/frame_6.png similarity index 100% rename from train/10_frames/sprite_6.png rename to train/spritesheet_10/frame_6.png diff --git a/train/10_frames/sprite_7.png b/train/spritesheet_10/frame_7.png similarity index 100% rename from train/10_frames/sprite_7.png rename to train/spritesheet_10/frame_7.png diff --git a/train/107_frames/sprite_0.png b/train/spritesheet_107/frame_0.png similarity index 100% rename from train/107_frames/sprite_0.png rename to train/spritesheet_107/frame_0.png diff --git a/train/107_frames/sprite_1.png b/train/spritesheet_107/frame_1.png similarity index 100% rename from train/107_frames/sprite_1.png rename to train/spritesheet_107/frame_1.png diff --git a/train/107_frames/sprite_10.png b/train/spritesheet_107/frame_10.png similarity index 100% rename from train/107_frames/sprite_10.png rename to train/spritesheet_107/frame_10.png diff --git a/train/107_frames/sprite_11.png b/train/spritesheet_107/frame_11.png similarity index 100% rename from train/107_frames/sprite_11.png rename to train/spritesheet_107/frame_11.png diff --git a/train/107_frames/sprite_12.png b/train/spritesheet_107/frame_12.png similarity index 100% rename from train/107_frames/sprite_12.png rename to train/spritesheet_107/frame_12.png diff --git a/train/107_frames/sprite_13.png b/train/spritesheet_107/frame_13.png similarity index 100% rename from train/107_frames/sprite_13.png rename to train/spritesheet_107/frame_13.png diff --git a/train/107_frames/sprite_14.png b/train/spritesheet_107/frame_14.png similarity index 100% rename from train/107_frames/sprite_14.png rename to train/spritesheet_107/frame_14.png diff --git a/train/107_frames/sprite_15.png b/train/spritesheet_107/frame_15.png similarity index 100% rename from train/107_frames/sprite_15.png rename to train/spritesheet_107/frame_15.png diff --git a/train/107_frames/sprite_16.png b/train/spritesheet_107/frame_16.png similarity index 100% rename from train/107_frames/sprite_16.png rename to train/spritesheet_107/frame_16.png diff --git a/train/107_frames/sprite_17.png b/train/spritesheet_107/frame_17.png similarity index 100% rename from train/107_frames/sprite_17.png rename to train/spritesheet_107/frame_17.png diff --git a/train/107_frames/sprite_18.png b/train/spritesheet_107/frame_18.png similarity index 100% rename from train/107_frames/sprite_18.png rename to train/spritesheet_107/frame_18.png diff --git a/train/107_frames/sprite_19.png b/train/spritesheet_107/frame_19.png similarity index 100% rename from train/107_frames/sprite_19.png rename to train/spritesheet_107/frame_19.png diff --git a/train/107_frames/sprite_2.png b/train/spritesheet_107/frame_2.png similarity index 100% rename from train/107_frames/sprite_2.png rename to train/spritesheet_107/frame_2.png diff --git a/train/107_frames/sprite_20.png b/train/spritesheet_107/frame_20.png similarity index 100% rename from train/107_frames/sprite_20.png rename to train/spritesheet_107/frame_20.png diff --git a/train/107_frames/sprite_3.png b/train/spritesheet_107/frame_3.png similarity index 100% rename from train/107_frames/sprite_3.png rename to train/spritesheet_107/frame_3.png diff --git a/train/107_frames/sprite_4.png b/train/spritesheet_107/frame_4.png similarity index 100% rename from train/107_frames/sprite_4.png rename to train/spritesheet_107/frame_4.png diff --git a/train/107_frames/sprite_5.png b/train/spritesheet_107/frame_5.png similarity index 100% rename from train/107_frames/sprite_5.png rename to train/spritesheet_107/frame_5.png diff --git a/train/107_frames/sprite_6.png b/train/spritesheet_107/frame_6.png similarity index 100% rename from train/107_frames/sprite_6.png rename to train/spritesheet_107/frame_6.png diff --git a/train/107_frames/sprite_7.png b/train/spritesheet_107/frame_7.png similarity index 100% rename from train/107_frames/sprite_7.png rename to train/spritesheet_107/frame_7.png diff --git a/train/107_frames/sprite_8.png b/train/spritesheet_107/frame_8.png similarity index 100% rename from train/107_frames/sprite_8.png rename to train/spritesheet_107/frame_8.png diff --git a/train/107_frames/sprite_9.png b/train/spritesheet_107/frame_9.png similarity index 100% rename from train/107_frames/sprite_9.png rename to train/spritesheet_107/frame_9.png diff --git a/train/108_frames/sprite_0.png b/train/spritesheet_108/frame_0.png similarity index 100% rename from train/108_frames/sprite_0.png rename to train/spritesheet_108/frame_0.png diff --git a/train/108_frames/sprite_1.png b/train/spritesheet_108/frame_1.png similarity index 100% rename from train/108_frames/sprite_1.png rename to train/spritesheet_108/frame_1.png diff --git a/train/108_frames/sprite_10.png b/train/spritesheet_108/frame_10.png similarity index 100% rename from train/108_frames/sprite_10.png rename to train/spritesheet_108/frame_10.png diff --git a/train/108_frames/sprite_11.png b/train/spritesheet_108/frame_11.png similarity index 100% rename from train/108_frames/sprite_11.png rename to train/spritesheet_108/frame_11.png diff --git a/train/108_frames/sprite_12.png b/train/spritesheet_108/frame_12.png similarity index 100% rename from train/108_frames/sprite_12.png rename to train/spritesheet_108/frame_12.png diff --git a/train/108_frames/sprite_13.png b/train/spritesheet_108/frame_13.png similarity index 100% rename from train/108_frames/sprite_13.png rename to train/spritesheet_108/frame_13.png diff --git a/train/108_frames/sprite_14.png b/train/spritesheet_108/frame_14.png similarity index 100% rename from train/108_frames/sprite_14.png rename to train/spritesheet_108/frame_14.png diff --git a/train/108_frames/sprite_15.png b/train/spritesheet_108/frame_15.png similarity index 100% rename from train/108_frames/sprite_15.png rename to train/spritesheet_108/frame_15.png diff --git a/train/108_frames/sprite_16.png b/train/spritesheet_108/frame_16.png similarity index 100% rename from train/108_frames/sprite_16.png rename to train/spritesheet_108/frame_16.png diff --git a/train/108_frames/sprite_17.png b/train/spritesheet_108/frame_17.png similarity index 100% rename from train/108_frames/sprite_17.png rename to train/spritesheet_108/frame_17.png diff --git a/train/108_frames/sprite_18.png b/train/spritesheet_108/frame_18.png similarity index 100% rename from train/108_frames/sprite_18.png rename to train/spritesheet_108/frame_18.png diff --git a/train/108_frames/sprite_19.png b/train/spritesheet_108/frame_19.png similarity index 100% rename from train/108_frames/sprite_19.png rename to train/spritesheet_108/frame_19.png diff --git a/train/108_frames/sprite_2.png b/train/spritesheet_108/frame_2.png similarity index 100% rename from train/108_frames/sprite_2.png rename to train/spritesheet_108/frame_2.png diff --git a/train/108_frames/sprite_20.png b/train/spritesheet_108/frame_20.png similarity index 100% rename from train/108_frames/sprite_20.png rename to train/spritesheet_108/frame_20.png diff --git a/train/108_frames/sprite_3.png b/train/spritesheet_108/frame_3.png similarity index 100% rename from train/108_frames/sprite_3.png rename to train/spritesheet_108/frame_3.png diff --git a/train/108_frames/sprite_4.png b/train/spritesheet_108/frame_4.png similarity index 100% rename from train/108_frames/sprite_4.png rename to train/spritesheet_108/frame_4.png diff --git a/train/108_frames/sprite_5.png b/train/spritesheet_108/frame_5.png similarity index 100% rename from train/108_frames/sprite_5.png rename to train/spritesheet_108/frame_5.png diff --git a/train/108_frames/sprite_6.png b/train/spritesheet_108/frame_6.png similarity index 100% rename from train/108_frames/sprite_6.png rename to train/spritesheet_108/frame_6.png diff --git a/train/108_frames/sprite_7.png b/train/spritesheet_108/frame_7.png similarity index 100% rename from train/108_frames/sprite_7.png rename to train/spritesheet_108/frame_7.png diff --git a/train/108_frames/sprite_8.png b/train/spritesheet_108/frame_8.png similarity index 100% rename from train/108_frames/sprite_8.png rename to train/spritesheet_108/frame_8.png diff --git a/train/108_frames/sprite_9.png b/train/spritesheet_108/frame_9.png similarity index 100% rename from train/108_frames/sprite_9.png rename to train/spritesheet_108/frame_9.png diff --git a/train/11_frames/sprite_0.png b/train/spritesheet_11/frame_0.png similarity index 100% rename from train/11_frames/sprite_0.png rename to train/spritesheet_11/frame_0.png diff --git a/train/11_frames/sprite_1.png b/train/spritesheet_11/frame_1.png similarity index 100% rename from train/11_frames/sprite_1.png rename to train/spritesheet_11/frame_1.png diff --git a/train/11_frames/sprite_2.png b/train/spritesheet_11/frame_2.png similarity index 100% rename from train/11_frames/sprite_2.png rename to train/spritesheet_11/frame_2.png diff --git a/train/11_frames/sprite_3.png b/train/spritesheet_11/frame_3.png similarity index 100% rename from train/11_frames/sprite_3.png rename to train/spritesheet_11/frame_3.png diff --git a/train/11_frames/sprite_4.png b/train/spritesheet_11/frame_4.png similarity index 100% rename from train/11_frames/sprite_4.png rename to train/spritesheet_11/frame_4.png diff --git a/train/11_frames/sprite_5.png b/train/spritesheet_11/frame_5.png similarity index 100% rename from train/11_frames/sprite_5.png rename to train/spritesheet_11/frame_5.png diff --git a/train/11_frames/sprite_6.png b/train/spritesheet_11/frame_6.png similarity index 100% rename from train/11_frames/sprite_6.png rename to train/spritesheet_11/frame_6.png diff --git a/train/11_frames/sprite_7.png b/train/spritesheet_11/frame_7.png similarity index 100% rename from train/11_frames/sprite_7.png rename to train/spritesheet_11/frame_7.png diff --git a/train/113_frames/sprite_0.png b/train/spritesheet_113/frame_0.png similarity index 100% rename from train/113_frames/sprite_0.png rename to train/spritesheet_113/frame_0.png diff --git a/train/113_frames/sprite_1.png b/train/spritesheet_113/frame_1.png similarity index 100% rename from train/113_frames/sprite_1.png rename to train/spritesheet_113/frame_1.png diff --git a/train/113_frames/sprite_2.png b/train/spritesheet_113/frame_2.png similarity index 100% rename from train/113_frames/sprite_2.png rename to train/spritesheet_113/frame_2.png diff --git a/train/113_frames/sprite_3.png b/train/spritesheet_113/frame_3.png similarity index 100% rename from train/113_frames/sprite_3.png rename to train/spritesheet_113/frame_3.png diff --git a/train/113_frames/sprite_4.png b/train/spritesheet_113/frame_4.png similarity index 100% rename from train/113_frames/sprite_4.png rename to train/spritesheet_113/frame_4.png diff --git a/train/113_frames/sprite_5.png b/train/spritesheet_113/frame_5.png similarity index 100% rename from train/113_frames/sprite_5.png rename to train/spritesheet_113/frame_5.png diff --git a/train/113_frames/sprite_6.png b/train/spritesheet_113/frame_6.png similarity index 100% rename from train/113_frames/sprite_6.png rename to train/spritesheet_113/frame_6.png diff --git a/train/113_frames/sprite_7.png b/train/spritesheet_113/frame_7.png similarity index 100% rename from train/113_frames/sprite_7.png rename to train/spritesheet_113/frame_7.png diff --git a/train/114_frames/sprite_0.png b/train/spritesheet_114/frame_0.png similarity index 100% rename from train/114_frames/sprite_0.png rename to train/spritesheet_114/frame_0.png diff --git a/train/114_frames/sprite_1.png b/train/spritesheet_114/frame_1.png similarity index 100% rename from train/114_frames/sprite_1.png rename to train/spritesheet_114/frame_1.png diff --git a/train/114_frames/sprite_2.png b/train/spritesheet_114/frame_2.png similarity index 100% rename from train/114_frames/sprite_2.png rename to train/spritesheet_114/frame_2.png diff --git a/train/114_frames/sprite_3.png b/train/spritesheet_114/frame_3.png similarity index 100% rename from train/114_frames/sprite_3.png rename to train/spritesheet_114/frame_3.png diff --git a/train/114_frames/sprite_4.png b/train/spritesheet_114/frame_4.png similarity index 100% rename from train/114_frames/sprite_4.png rename to train/spritesheet_114/frame_4.png diff --git a/train/114_frames/sprite_5.png b/train/spritesheet_114/frame_5.png similarity index 100% rename from train/114_frames/sprite_5.png rename to train/spritesheet_114/frame_5.png diff --git a/train/114_frames/sprite_6.png b/train/spritesheet_114/frame_6.png similarity index 100% rename from train/114_frames/sprite_6.png rename to train/spritesheet_114/frame_6.png diff --git a/train/114_frames/sprite_7.png b/train/spritesheet_114/frame_7.png similarity index 100% rename from train/114_frames/sprite_7.png rename to train/spritesheet_114/frame_7.png diff --git a/train/115_frames/sprite_0.png b/train/spritesheet_115/frame_0.png similarity index 100% rename from train/115_frames/sprite_0.png rename to train/spritesheet_115/frame_0.png diff --git a/train/115_frames/sprite_1.png b/train/spritesheet_115/frame_1.png similarity index 100% rename from train/115_frames/sprite_1.png rename to train/spritesheet_115/frame_1.png diff --git a/train/115_frames/sprite_2.png b/train/spritesheet_115/frame_2.png similarity index 100% rename from train/115_frames/sprite_2.png rename to train/spritesheet_115/frame_2.png diff --git a/train/115_frames/sprite_3.png b/train/spritesheet_115/frame_3.png similarity index 100% rename from train/115_frames/sprite_3.png rename to train/spritesheet_115/frame_3.png diff --git a/train/115_frames/sprite_4.png b/train/spritesheet_115/frame_4.png similarity index 100% rename from train/115_frames/sprite_4.png rename to train/spritesheet_115/frame_4.png diff --git a/train/115_frames/sprite_5.png b/train/spritesheet_115/frame_5.png similarity index 100% rename from train/115_frames/sprite_5.png rename to train/spritesheet_115/frame_5.png diff --git a/train/115_frames/sprite_6.png b/train/spritesheet_115/frame_6.png similarity index 100% rename from train/115_frames/sprite_6.png rename to train/spritesheet_115/frame_6.png diff --git a/train/115_frames/sprite_7.png b/train/spritesheet_115/frame_7.png similarity index 100% rename from train/115_frames/sprite_7.png rename to train/spritesheet_115/frame_7.png diff --git a/train/116_frames/sprite_0.png b/train/spritesheet_116/frame_0.png similarity index 100% rename from train/116_frames/sprite_0.png rename to train/spritesheet_116/frame_0.png diff --git a/train/116_frames/sprite_1.png b/train/spritesheet_116/frame_1.png similarity index 100% rename from train/116_frames/sprite_1.png rename to train/spritesheet_116/frame_1.png diff --git a/train/116_frames/sprite_10.png b/train/spritesheet_116/frame_10.png similarity index 100% rename from train/116_frames/sprite_10.png rename to train/spritesheet_116/frame_10.png diff --git a/train/116_frames/sprite_11.png b/train/spritesheet_116/frame_11.png similarity index 100% rename from train/116_frames/sprite_11.png rename to train/spritesheet_116/frame_11.png diff --git a/train/116_frames/sprite_12.png b/train/spritesheet_116/frame_12.png similarity index 100% rename from train/116_frames/sprite_12.png rename to train/spritesheet_116/frame_12.png diff --git a/train/116_frames/sprite_13.png b/train/spritesheet_116/frame_13.png similarity index 100% rename from train/116_frames/sprite_13.png rename to train/spritesheet_116/frame_13.png diff --git a/train/116_frames/sprite_14.png b/train/spritesheet_116/frame_14.png similarity index 100% rename from train/116_frames/sprite_14.png rename to train/spritesheet_116/frame_14.png diff --git a/train/116_frames/sprite_15.png b/train/spritesheet_116/frame_15.png similarity index 100% rename from train/116_frames/sprite_15.png rename to train/spritesheet_116/frame_15.png diff --git a/train/116_frames/sprite_16.png b/train/spritesheet_116/frame_16.png similarity index 100% rename from train/116_frames/sprite_16.png rename to train/spritesheet_116/frame_16.png diff --git a/train/116_frames/sprite_17.png b/train/spritesheet_116/frame_17.png similarity index 100% rename from train/116_frames/sprite_17.png rename to train/spritesheet_116/frame_17.png diff --git a/train/116_frames/sprite_18.png b/train/spritesheet_116/frame_18.png similarity index 100% rename from train/116_frames/sprite_18.png rename to train/spritesheet_116/frame_18.png diff --git a/train/116_frames/sprite_19.png b/train/spritesheet_116/frame_19.png similarity index 100% rename from train/116_frames/sprite_19.png rename to train/spritesheet_116/frame_19.png diff --git a/train/116_frames/sprite_2.png b/train/spritesheet_116/frame_2.png similarity index 100% rename from train/116_frames/sprite_2.png rename to train/spritesheet_116/frame_2.png diff --git a/train/116_frames/sprite_20.png b/train/spritesheet_116/frame_20.png similarity index 100% rename from train/116_frames/sprite_20.png rename to train/spritesheet_116/frame_20.png diff --git a/train/116_frames/sprite_21.png b/train/spritesheet_116/frame_21.png similarity index 100% rename from train/116_frames/sprite_21.png rename to train/spritesheet_116/frame_21.png diff --git a/train/116_frames/sprite_22.png b/train/spritesheet_116/frame_22.png similarity index 100% rename from train/116_frames/sprite_22.png rename to train/spritesheet_116/frame_22.png diff --git a/train/116_frames/sprite_23.png b/train/spritesheet_116/frame_23.png similarity index 100% rename from train/116_frames/sprite_23.png rename to train/spritesheet_116/frame_23.png diff --git a/train/116_frames/sprite_24.png b/train/spritesheet_116/frame_24.png similarity index 100% rename from train/116_frames/sprite_24.png rename to train/spritesheet_116/frame_24.png diff --git a/train/116_frames/sprite_25.png b/train/spritesheet_116/frame_25.png similarity index 100% rename from train/116_frames/sprite_25.png rename to train/spritesheet_116/frame_25.png diff --git a/train/116_frames/sprite_26.png b/train/spritesheet_116/frame_26.png similarity index 100% rename from train/116_frames/sprite_26.png rename to train/spritesheet_116/frame_26.png diff --git a/train/116_frames/sprite_27.png b/train/spritesheet_116/frame_27.png similarity index 100% rename from train/116_frames/sprite_27.png rename to train/spritesheet_116/frame_27.png diff --git a/train/116_frames/sprite_28.png b/train/spritesheet_116/frame_28.png similarity index 100% rename from train/116_frames/sprite_28.png rename to train/spritesheet_116/frame_28.png diff --git a/train/116_frames/sprite_29.png b/train/spritesheet_116/frame_29.png similarity index 100% rename from train/116_frames/sprite_29.png rename to train/spritesheet_116/frame_29.png diff --git a/train/116_frames/sprite_3.png b/train/spritesheet_116/frame_3.png similarity index 100% rename from train/116_frames/sprite_3.png rename to train/spritesheet_116/frame_3.png diff --git a/train/116_frames/sprite_30.png b/train/spritesheet_116/frame_30.png similarity index 100% rename from train/116_frames/sprite_30.png rename to train/spritesheet_116/frame_30.png diff --git a/train/116_frames/sprite_31.png b/train/spritesheet_116/frame_31.png similarity index 100% rename from train/116_frames/sprite_31.png rename to train/spritesheet_116/frame_31.png diff --git a/train/116_frames/sprite_4.png b/train/spritesheet_116/frame_4.png similarity index 100% rename from train/116_frames/sprite_4.png rename to train/spritesheet_116/frame_4.png diff --git a/train/116_frames/sprite_5.png b/train/spritesheet_116/frame_5.png similarity index 100% rename from train/116_frames/sprite_5.png rename to train/spritesheet_116/frame_5.png diff --git a/train/116_frames/sprite_6.png b/train/spritesheet_116/frame_6.png similarity index 100% rename from train/116_frames/sprite_6.png rename to train/spritesheet_116/frame_6.png diff --git a/train/116_frames/sprite_7.png b/train/spritesheet_116/frame_7.png similarity index 100% rename from train/116_frames/sprite_7.png rename to train/spritesheet_116/frame_7.png diff --git a/train/116_frames/sprite_8.png b/train/spritesheet_116/frame_8.png similarity index 100% rename from train/116_frames/sprite_8.png rename to train/spritesheet_116/frame_8.png diff --git a/train/116_frames/sprite_9.png b/train/spritesheet_116/frame_9.png similarity index 100% rename from train/116_frames/sprite_9.png rename to train/spritesheet_116/frame_9.png diff --git a/train/117_frames/sprite_0.png b/train/spritesheet_117/frame_0.png similarity index 100% rename from train/117_frames/sprite_0.png rename to train/spritesheet_117/frame_0.png diff --git a/train/117_frames/sprite_1.png b/train/spritesheet_117/frame_1.png similarity index 100% rename from train/117_frames/sprite_1.png rename to train/spritesheet_117/frame_1.png diff --git a/train/117_frames/sprite_13.png b/train/spritesheet_117/frame_10.png similarity index 100% rename from train/117_frames/sprite_13.png rename to train/spritesheet_117/frame_10.png diff --git a/train/117_frames/sprite_14.png b/train/spritesheet_117/frame_11.png similarity index 100% rename from train/117_frames/sprite_14.png rename to train/spritesheet_117/frame_11.png diff --git a/train/117_frames/sprite_15.png b/train/spritesheet_117/frame_12.png similarity index 100% rename from train/117_frames/sprite_15.png rename to train/spritesheet_117/frame_12.png diff --git a/train/117_frames/sprite_8.png b/train/spritesheet_117/frame_13.png similarity index 100% rename from train/117_frames/sprite_8.png rename to train/spritesheet_117/frame_13.png diff --git a/train/117_frames/sprite_9.png b/train/spritesheet_117/frame_14.png similarity index 100% rename from train/117_frames/sprite_9.png rename to train/spritesheet_117/frame_14.png diff --git a/train/1_frames/sprite_13.png b/train/spritesheet_117/frame_15.png similarity index 100% rename from train/1_frames/sprite_13.png rename to train/spritesheet_117/frame_15.png diff --git a/train/117_frames/sprite_2.png b/train/spritesheet_117/frame_2.png similarity index 100% rename from train/117_frames/sprite_2.png rename to train/spritesheet_117/frame_2.png diff --git a/train/117_frames/sprite_3.png b/train/spritesheet_117/frame_3.png similarity index 100% rename from train/117_frames/sprite_3.png rename to train/spritesheet_117/frame_3.png diff --git a/train/117_frames/sprite_4.png b/train/spritesheet_117/frame_4.png similarity index 100% rename from train/117_frames/sprite_4.png rename to train/spritesheet_117/frame_4.png diff --git a/train/117_frames/sprite_5.png b/train/spritesheet_117/frame_5.png similarity index 100% rename from train/117_frames/sprite_5.png rename to train/spritesheet_117/frame_5.png diff --git a/train/117_frames/sprite_6.png b/train/spritesheet_117/frame_6.png similarity index 100% rename from train/117_frames/sprite_6.png rename to train/spritesheet_117/frame_6.png diff --git a/train/117_frames/sprite_7.png b/train/spritesheet_117/frame_7.png similarity index 100% rename from train/117_frames/sprite_7.png rename to train/spritesheet_117/frame_7.png diff --git a/train/1_frames/sprite_14.png b/train/spritesheet_117/frame_8.png similarity index 100% rename from train/1_frames/sprite_14.png rename to train/spritesheet_117/frame_8.png diff --git a/train/1_frames/sprite_15.png b/train/spritesheet_117/frame_9.png similarity index 100% rename from train/1_frames/sprite_15.png rename to train/spritesheet_117/frame_9.png diff --git a/train/118_frames/sprite_0.png b/train/spritesheet_118/frame_0.png similarity index 100% rename from train/118_frames/sprite_0.png rename to train/spritesheet_118/frame_0.png diff --git a/train/118_frames/sprite_1.png b/train/spritesheet_118/frame_1.png similarity index 100% rename from train/118_frames/sprite_1.png rename to train/spritesheet_118/frame_1.png diff --git a/train/118_frames/sprite_2.png b/train/spritesheet_118/frame_2.png similarity index 100% rename from train/118_frames/sprite_2.png rename to train/spritesheet_118/frame_2.png diff --git a/train/118_frames/sprite_3.png b/train/spritesheet_118/frame_3.png similarity index 100% rename from train/118_frames/sprite_3.png rename to train/spritesheet_118/frame_3.png diff --git a/train/118_frames/sprite_4.png b/train/spritesheet_118/frame_4.png similarity index 100% rename from train/118_frames/sprite_4.png rename to train/spritesheet_118/frame_4.png diff --git a/train/118_frames/sprite_5.png b/train/spritesheet_118/frame_5.png similarity index 100% rename from train/118_frames/sprite_5.png rename to train/spritesheet_118/frame_5.png diff --git a/train/118_frames/sprite_6.png b/train/spritesheet_118/frame_6.png similarity index 100% rename from train/118_frames/sprite_6.png rename to train/spritesheet_118/frame_6.png diff --git a/train/118_frames/sprite_7.png b/train/spritesheet_118/frame_7.png similarity index 100% rename from train/118_frames/sprite_7.png rename to train/spritesheet_118/frame_7.png diff --git a/train/119_frames/sprite_0.png b/train/spritesheet_119/frame_0.png similarity index 100% rename from train/119_frames/sprite_0.png rename to train/spritesheet_119/frame_0.png diff --git a/train/119_frames/sprite_1.png b/train/spritesheet_119/frame_1.png similarity index 100% rename from train/119_frames/sprite_1.png rename to train/spritesheet_119/frame_1.png diff --git a/train/119_frames/sprite_2.png b/train/spritesheet_119/frame_2.png similarity index 100% rename from train/119_frames/sprite_2.png rename to train/spritesheet_119/frame_2.png diff --git a/train/119_frames/sprite_3.png b/train/spritesheet_119/frame_3.png similarity index 100% rename from train/119_frames/sprite_3.png rename to train/spritesheet_119/frame_3.png diff --git a/train/119_frames/sprite_4.png b/train/spritesheet_119/frame_4.png similarity index 100% rename from train/119_frames/sprite_4.png rename to train/spritesheet_119/frame_4.png diff --git a/train/119_frames/sprite_5.png b/train/spritesheet_119/frame_5.png similarity index 100% rename from train/119_frames/sprite_5.png rename to train/spritesheet_119/frame_5.png diff --git a/train/119_frames/sprite_6.png b/train/spritesheet_119/frame_6.png similarity index 100% rename from train/119_frames/sprite_6.png rename to train/spritesheet_119/frame_6.png diff --git a/train/119_frames/sprite_7.png b/train/spritesheet_119/frame_7.png similarity index 100% rename from train/119_frames/sprite_7.png rename to train/spritesheet_119/frame_7.png diff --git a/train/12_frames/sprite_0.png b/train/spritesheet_12/frame_0.png similarity index 100% rename from train/12_frames/sprite_0.png rename to train/spritesheet_12/frame_0.png diff --git a/train/12_frames/sprite_1.png b/train/spritesheet_12/frame_1.png similarity index 100% rename from train/12_frames/sprite_1.png rename to train/spritesheet_12/frame_1.png diff --git a/train/12_frames/sprite_2.png b/train/spritesheet_12/frame_2.png similarity index 100% rename from train/12_frames/sprite_2.png rename to train/spritesheet_12/frame_2.png diff --git a/train/12_frames/sprite_3.png b/train/spritesheet_12/frame_3.png similarity index 100% rename from train/12_frames/sprite_3.png rename to train/spritesheet_12/frame_3.png diff --git a/train/12_frames/sprite_4.png b/train/spritesheet_12/frame_4.png similarity index 100% rename from train/12_frames/sprite_4.png rename to train/spritesheet_12/frame_4.png diff --git a/train/12_frames/sprite_5.png b/train/spritesheet_12/frame_5.png similarity index 100% rename from train/12_frames/sprite_5.png rename to train/spritesheet_12/frame_5.png diff --git a/train/12_frames/sprite_6.png b/train/spritesheet_12/frame_6.png similarity index 100% rename from train/12_frames/sprite_6.png rename to train/spritesheet_12/frame_6.png diff --git a/train/12_frames/sprite_7.png b/train/spritesheet_12/frame_7.png similarity index 100% rename from train/12_frames/sprite_7.png rename to train/spritesheet_12/frame_7.png diff --git a/train/126_frames/sprite_0.png b/train/spritesheet_126/frame_0.png similarity index 100% rename from train/126_frames/sprite_0.png rename to train/spritesheet_126/frame_0.png diff --git a/train/127_frames/sprite_0.png b/train/spritesheet_127/frame_0.png similarity index 100% rename from train/127_frames/sprite_0.png rename to train/spritesheet_127/frame_0.png diff --git a/train/127_frames/sprite_1.png b/train/spritesheet_127/frame_1.png similarity index 100% rename from train/127_frames/sprite_1.png rename to train/spritesheet_127/frame_1.png diff --git a/train/127_frames/sprite_2.png b/train/spritesheet_127/frame_2.png similarity index 100% rename from train/127_frames/sprite_2.png rename to train/spritesheet_127/frame_2.png diff --git a/train/127_frames/sprite_3.png b/train/spritesheet_127/frame_3.png similarity index 100% rename from train/127_frames/sprite_3.png rename to train/spritesheet_127/frame_3.png diff --git a/train/127_frames/sprite_4.png b/train/spritesheet_127/frame_4.png similarity index 100% rename from train/127_frames/sprite_4.png rename to train/spritesheet_127/frame_4.png diff --git a/train/127_frames/sprite_5.png b/train/spritesheet_127/frame_5.png similarity index 100% rename from train/127_frames/sprite_5.png rename to train/spritesheet_127/frame_5.png diff --git a/train/127_frames/sprite_6.png b/train/spritesheet_127/frame_6.png similarity index 100% rename from train/127_frames/sprite_6.png rename to train/spritesheet_127/frame_6.png diff --git a/train/127_frames/sprite_7.png b/train/spritesheet_127/frame_7.png similarity index 100% rename from train/127_frames/sprite_7.png rename to train/spritesheet_127/frame_7.png diff --git a/train/128_frames/sprite_0.png b/train/spritesheet_128/frame_0.png similarity index 100% rename from train/128_frames/sprite_0.png rename to train/spritesheet_128/frame_0.png diff --git a/train/128_frames/sprite_1.png b/train/spritesheet_128/frame_1.png similarity index 100% rename from train/128_frames/sprite_1.png rename to train/spritesheet_128/frame_1.png diff --git a/train/128_frames/sprite_2.png b/train/spritesheet_128/frame_2.png similarity index 100% rename from train/128_frames/sprite_2.png rename to train/spritesheet_128/frame_2.png diff --git a/train/128_frames/sprite_3.png b/train/spritesheet_128/frame_3.png similarity index 100% rename from train/128_frames/sprite_3.png rename to train/spritesheet_128/frame_3.png diff --git a/train/128_frames/sprite_4.png b/train/spritesheet_128/frame_4.png similarity index 100% rename from train/128_frames/sprite_4.png rename to train/spritesheet_128/frame_4.png diff --git a/train/128_frames/sprite_5.png b/train/spritesheet_128/frame_5.png similarity index 100% rename from train/128_frames/sprite_5.png rename to train/spritesheet_128/frame_5.png diff --git a/train/128_frames/sprite_6.png b/train/spritesheet_128/frame_6.png similarity index 100% rename from train/128_frames/sprite_6.png rename to train/spritesheet_128/frame_6.png diff --git a/train/128_frames/sprite_7.png b/train/spritesheet_128/frame_7.png similarity index 100% rename from train/128_frames/sprite_7.png rename to train/spritesheet_128/frame_7.png diff --git a/train/129_frames/sprite_0.png b/train/spritesheet_129/frame_0.png similarity index 100% rename from train/129_frames/sprite_0.png rename to train/spritesheet_129/frame_0.png diff --git a/train/129_frames/sprite_1.png b/train/spritesheet_129/frame_1.png similarity index 100% rename from train/129_frames/sprite_1.png rename to train/spritesheet_129/frame_1.png diff --git a/train/129_frames/sprite_10.png b/train/spritesheet_129/frame_10.png similarity index 100% rename from train/129_frames/sprite_10.png rename to train/spritesheet_129/frame_10.png diff --git a/train/129_frames/sprite_11.png b/train/spritesheet_129/frame_11.png similarity index 100% rename from train/129_frames/sprite_11.png rename to train/spritesheet_129/frame_11.png diff --git a/train/129_frames/sprite_12.png b/train/spritesheet_129/frame_12.png similarity index 100% rename from train/129_frames/sprite_12.png rename to train/spritesheet_129/frame_12.png diff --git a/train/129_frames/sprite_13.png b/train/spritesheet_129/frame_13.png similarity index 100% rename from train/129_frames/sprite_13.png rename to train/spritesheet_129/frame_13.png diff --git a/train/129_frames/sprite_14.png b/train/spritesheet_129/frame_14.png similarity index 100% rename from train/129_frames/sprite_14.png rename to train/spritesheet_129/frame_14.png diff --git a/train/129_frames/sprite_15.png b/train/spritesheet_129/frame_15.png similarity index 100% rename from train/129_frames/sprite_15.png rename to train/spritesheet_129/frame_15.png diff --git a/train/129_frames/sprite_16.png b/train/spritesheet_129/frame_16.png similarity index 100% rename from train/129_frames/sprite_16.png rename to train/spritesheet_129/frame_16.png diff --git a/train/129_frames/sprite_17.png b/train/spritesheet_129/frame_17.png similarity index 100% rename from train/129_frames/sprite_17.png rename to train/spritesheet_129/frame_17.png diff --git a/train/129_frames/sprite_18.png b/train/spritesheet_129/frame_18.png similarity index 100% rename from train/129_frames/sprite_18.png rename to train/spritesheet_129/frame_18.png diff --git a/train/129_frames/sprite_19.png b/train/spritesheet_129/frame_19.png similarity index 100% rename from train/129_frames/sprite_19.png rename to train/spritesheet_129/frame_19.png diff --git a/train/129_frames/sprite_2.png b/train/spritesheet_129/frame_2.png similarity index 100% rename from train/129_frames/sprite_2.png rename to train/spritesheet_129/frame_2.png diff --git a/train/129_frames/sprite_20.png b/train/spritesheet_129/frame_20.png similarity index 100% rename from train/129_frames/sprite_20.png rename to train/spritesheet_129/frame_20.png diff --git a/train/129_frames/sprite_3.png b/train/spritesheet_129/frame_3.png similarity index 100% rename from train/129_frames/sprite_3.png rename to train/spritesheet_129/frame_3.png diff --git a/train/129_frames/sprite_4.png b/train/spritesheet_129/frame_4.png similarity index 100% rename from train/129_frames/sprite_4.png rename to train/spritesheet_129/frame_4.png diff --git a/train/129_frames/sprite_5.png b/train/spritesheet_129/frame_5.png similarity index 100% rename from train/129_frames/sprite_5.png rename to train/spritesheet_129/frame_5.png diff --git a/train/129_frames/sprite_6.png b/train/spritesheet_129/frame_6.png similarity index 100% rename from train/129_frames/sprite_6.png rename to train/spritesheet_129/frame_6.png diff --git a/train/129_frames/sprite_7.png b/train/spritesheet_129/frame_7.png similarity index 100% rename from train/129_frames/sprite_7.png rename to train/spritesheet_129/frame_7.png diff --git a/train/129_frames/sprite_8.png b/train/spritesheet_129/frame_8.png similarity index 100% rename from train/129_frames/sprite_8.png rename to train/spritesheet_129/frame_8.png diff --git a/train/129_frames/sprite_9.png b/train/spritesheet_129/frame_9.png similarity index 100% rename from train/129_frames/sprite_9.png rename to train/spritesheet_129/frame_9.png diff --git a/train/13_frames/sprite_0.png b/train/spritesheet_13/frame_0.png similarity index 100% rename from train/13_frames/sprite_0.png rename to train/spritesheet_13/frame_0.png diff --git a/train/13_frames/sprite_1.png b/train/spritesheet_13/frame_1.png similarity index 100% rename from train/13_frames/sprite_1.png rename to train/spritesheet_13/frame_1.png diff --git a/train/13_frames/sprite_2.png b/train/spritesheet_13/frame_2.png similarity index 100% rename from train/13_frames/sprite_2.png rename to train/spritesheet_13/frame_2.png diff --git a/train/13_frames/sprite_3.png b/train/spritesheet_13/frame_3.png similarity index 100% rename from train/13_frames/sprite_3.png rename to train/spritesheet_13/frame_3.png diff --git a/train/13_frames/sprite_4.png b/train/spritesheet_13/frame_4.png similarity index 100% rename from train/13_frames/sprite_4.png rename to train/spritesheet_13/frame_4.png diff --git a/train/13_frames/sprite_5.png b/train/spritesheet_13/frame_5.png similarity index 100% rename from train/13_frames/sprite_5.png rename to train/spritesheet_13/frame_5.png diff --git a/train/13_frames/sprite_6.png b/train/spritesheet_13/frame_6.png similarity index 100% rename from train/13_frames/sprite_6.png rename to train/spritesheet_13/frame_6.png diff --git a/train/13_frames/sprite_7.png b/train/spritesheet_13/frame_7.png similarity index 100% rename from train/13_frames/sprite_7.png rename to train/spritesheet_13/frame_7.png diff --git a/train/130_frames/sprite_0.png b/train/spritesheet_130/frame_0.png similarity index 100% rename from train/130_frames/sprite_0.png rename to train/spritesheet_130/frame_0.png diff --git a/train/130_frames/sprite_1.png b/train/spritesheet_130/frame_1.png similarity index 100% rename from train/130_frames/sprite_1.png rename to train/spritesheet_130/frame_1.png diff --git a/train/130_frames/sprite_2.png b/train/spritesheet_130/frame_2.png similarity index 100% rename from train/130_frames/sprite_2.png rename to train/spritesheet_130/frame_2.png diff --git a/train/130_frames/sprite_3.png b/train/spritesheet_130/frame_3.png similarity index 100% rename from train/130_frames/sprite_3.png rename to train/spritesheet_130/frame_3.png diff --git a/train/130_frames/sprite_4.png b/train/spritesheet_130/frame_4.png similarity index 100% rename from train/130_frames/sprite_4.png rename to train/spritesheet_130/frame_4.png diff --git a/train/130_frames/sprite_5.png b/train/spritesheet_130/frame_5.png similarity index 100% rename from train/130_frames/sprite_5.png rename to train/spritesheet_130/frame_5.png diff --git a/train/130_frames/sprite_6.png b/train/spritesheet_130/frame_6.png similarity index 100% rename from train/130_frames/sprite_6.png rename to train/spritesheet_130/frame_6.png diff --git a/train/130_frames/sprite_7.png b/train/spritesheet_130/frame_7.png similarity index 100% rename from train/130_frames/sprite_7.png rename to train/spritesheet_130/frame_7.png diff --git a/train/131_frames/sprite_0.png b/train/spritesheet_131/frame_0.png similarity index 100% rename from train/131_frames/sprite_0.png rename to train/spritesheet_131/frame_0.png diff --git a/train/131_frames/sprite_1.png b/train/spritesheet_131/frame_1.png similarity index 100% rename from train/131_frames/sprite_1.png rename to train/spritesheet_131/frame_1.png diff --git a/train/131_frames/sprite_2.png b/train/spritesheet_131/frame_2.png similarity index 100% rename from train/131_frames/sprite_2.png rename to train/spritesheet_131/frame_2.png diff --git a/train/131_frames/sprite_3.png b/train/spritesheet_131/frame_3.png similarity index 100% rename from train/131_frames/sprite_3.png rename to train/spritesheet_131/frame_3.png diff --git a/train/131_frames/sprite_4.png b/train/spritesheet_131/frame_4.png similarity index 100% rename from train/131_frames/sprite_4.png rename to train/spritesheet_131/frame_4.png diff --git a/train/131_frames/sprite_5.png b/train/spritesheet_131/frame_5.png similarity index 100% rename from train/131_frames/sprite_5.png rename to train/spritesheet_131/frame_5.png diff --git a/train/131_frames/sprite_6.png b/train/spritesheet_131/frame_6.png similarity index 100% rename from train/131_frames/sprite_6.png rename to train/spritesheet_131/frame_6.png diff --git a/train/131_frames/sprite_7.png b/train/spritesheet_131/frame_7.png similarity index 100% rename from train/131_frames/sprite_7.png rename to train/spritesheet_131/frame_7.png diff --git a/train/132_frames/sprite_0.png b/train/spritesheet_132/frame_0.png similarity index 100% rename from train/132_frames/sprite_0.png rename to train/spritesheet_132/frame_0.png diff --git a/train/132_frames/sprite_1.png b/train/spritesheet_132/frame_1.png similarity index 100% rename from train/132_frames/sprite_1.png rename to train/spritesheet_132/frame_1.png diff --git a/train/132_frames/sprite_2.png b/train/spritesheet_132/frame_2.png similarity index 100% rename from train/132_frames/sprite_2.png rename to train/spritesheet_132/frame_2.png diff --git a/train/132_frames/sprite_3.png b/train/spritesheet_132/frame_3.png similarity index 100% rename from train/132_frames/sprite_3.png rename to train/spritesheet_132/frame_3.png diff --git a/train/132_frames/sprite_4.png b/train/spritesheet_132/frame_4.png similarity index 100% rename from train/132_frames/sprite_4.png rename to train/spritesheet_132/frame_4.png diff --git a/train/132_frames/sprite_5.png b/train/spritesheet_132/frame_5.png similarity index 100% rename from train/132_frames/sprite_5.png rename to train/spritesheet_132/frame_5.png diff --git a/train/132_frames/sprite_6.png b/train/spritesheet_132/frame_6.png similarity index 100% rename from train/132_frames/sprite_6.png rename to train/spritesheet_132/frame_6.png diff --git a/train/132_frames/sprite_7.png b/train/spritesheet_132/frame_7.png similarity index 100% rename from train/132_frames/sprite_7.png rename to train/spritesheet_132/frame_7.png diff --git a/train/133_frames/sprite_0.png b/train/spritesheet_133/frame_0.png similarity index 100% rename from train/133_frames/sprite_0.png rename to train/spritesheet_133/frame_0.png diff --git a/train/133_frames/sprite_1.png b/train/spritesheet_133/frame_1.png similarity index 100% rename from train/133_frames/sprite_1.png rename to train/spritesheet_133/frame_1.png diff --git a/train/133_frames/sprite_10.png b/train/spritesheet_133/frame_10.png similarity index 100% rename from train/133_frames/sprite_10.png rename to train/spritesheet_133/frame_10.png diff --git a/train/133_frames/sprite_11.png b/train/spritesheet_133/frame_11.png similarity index 100% rename from train/133_frames/sprite_11.png rename to train/spritesheet_133/frame_11.png diff --git a/train/133_frames/sprite_12.png b/train/spritesheet_133/frame_12.png similarity index 100% rename from train/133_frames/sprite_12.png rename to train/spritesheet_133/frame_12.png diff --git a/train/133_frames/sprite_13.png b/train/spritesheet_133/frame_13.png similarity index 100% rename from train/133_frames/sprite_13.png rename to train/spritesheet_133/frame_13.png diff --git a/train/133_frames/sprite_14.png b/train/spritesheet_133/frame_14.png similarity index 100% rename from train/133_frames/sprite_14.png rename to train/spritesheet_133/frame_14.png diff --git a/train/133_frames/sprite_15.png b/train/spritesheet_133/frame_15.png similarity index 100% rename from train/133_frames/sprite_15.png rename to train/spritesheet_133/frame_15.png diff --git a/train/133_frames/sprite_16.png b/train/spritesheet_133/frame_16.png similarity index 100% rename from train/133_frames/sprite_16.png rename to train/spritesheet_133/frame_16.png diff --git a/train/133_frames/sprite_17.png b/train/spritesheet_133/frame_17.png similarity index 100% rename from train/133_frames/sprite_17.png rename to train/spritesheet_133/frame_17.png diff --git a/train/133_frames/sprite_2.png b/train/spritesheet_133/frame_2.png similarity index 100% rename from train/133_frames/sprite_2.png rename to train/spritesheet_133/frame_2.png diff --git a/train/133_frames/sprite_3.png b/train/spritesheet_133/frame_3.png similarity index 100% rename from train/133_frames/sprite_3.png rename to train/spritesheet_133/frame_3.png diff --git a/train/133_frames/sprite_4.png b/train/spritesheet_133/frame_4.png similarity index 100% rename from train/133_frames/sprite_4.png rename to train/spritesheet_133/frame_4.png diff --git a/train/133_frames/sprite_5.png b/train/spritesheet_133/frame_5.png similarity index 100% rename from train/133_frames/sprite_5.png rename to train/spritesheet_133/frame_5.png diff --git a/train/133_frames/sprite_6.png b/train/spritesheet_133/frame_6.png similarity index 100% rename from train/133_frames/sprite_6.png rename to train/spritesheet_133/frame_6.png diff --git a/train/133_frames/sprite_7.png b/train/spritesheet_133/frame_7.png similarity index 100% rename from train/133_frames/sprite_7.png rename to train/spritesheet_133/frame_7.png diff --git a/train/133_frames/sprite_8.png b/train/spritesheet_133/frame_8.png similarity index 100% rename from train/133_frames/sprite_8.png rename to train/spritesheet_133/frame_8.png diff --git a/train/133_frames/sprite_9.png b/train/spritesheet_133/frame_9.png similarity index 100% rename from train/133_frames/sprite_9.png rename to train/spritesheet_133/frame_9.png diff --git a/train/134_frames/sprite_0.png b/train/spritesheet_134/frame_0.png similarity index 100% rename from train/134_frames/sprite_0.png rename to train/spritesheet_134/frame_0.png diff --git a/train/134_frames/sprite_1.png b/train/spritesheet_134/frame_1.png similarity index 100% rename from train/134_frames/sprite_1.png rename to train/spritesheet_134/frame_1.png diff --git a/train/134_frames/sprite_10.png b/train/spritesheet_134/frame_10.png similarity index 100% rename from train/134_frames/sprite_10.png rename to train/spritesheet_134/frame_10.png diff --git a/train/134_frames/sprite_11.png b/train/spritesheet_134/frame_11.png similarity index 100% rename from train/134_frames/sprite_11.png rename to train/spritesheet_134/frame_11.png diff --git a/train/134_frames/sprite_12.png b/train/spritesheet_134/frame_12.png similarity index 100% rename from train/134_frames/sprite_12.png rename to train/spritesheet_134/frame_12.png diff --git a/train/134_frames/sprite_13.png b/train/spritesheet_134/frame_13.png similarity index 100% rename from train/134_frames/sprite_13.png rename to train/spritesheet_134/frame_13.png diff --git a/train/134_frames/sprite_14.png b/train/spritesheet_134/frame_14.png similarity index 100% rename from train/134_frames/sprite_14.png rename to train/spritesheet_134/frame_14.png diff --git a/train/134_frames/sprite_15.png b/train/spritesheet_134/frame_15.png similarity index 100% rename from train/134_frames/sprite_15.png rename to train/spritesheet_134/frame_15.png diff --git a/train/134_frames/sprite_16.png b/train/spritesheet_134/frame_16.png similarity index 100% rename from train/134_frames/sprite_16.png rename to train/spritesheet_134/frame_16.png diff --git a/train/134_frames/sprite_17.png b/train/spritesheet_134/frame_17.png similarity index 100% rename from train/134_frames/sprite_17.png rename to train/spritesheet_134/frame_17.png diff --git a/train/134_frames/sprite_18.png b/train/spritesheet_134/frame_18.png similarity index 100% rename from train/134_frames/sprite_18.png rename to train/spritesheet_134/frame_18.png diff --git a/train/134_frames/sprite_19.png b/train/spritesheet_134/frame_19.png similarity index 100% rename from train/134_frames/sprite_19.png rename to train/spritesheet_134/frame_19.png diff --git a/train/134_frames/sprite_2.png b/train/spritesheet_134/frame_2.png similarity index 100% rename from train/134_frames/sprite_2.png rename to train/spritesheet_134/frame_2.png diff --git a/train/134_frames/sprite_20.png b/train/spritesheet_134/frame_20.png similarity index 100% rename from train/134_frames/sprite_20.png rename to train/spritesheet_134/frame_20.png diff --git a/train/134_frames/sprite_3.png b/train/spritesheet_134/frame_3.png similarity index 100% rename from train/134_frames/sprite_3.png rename to train/spritesheet_134/frame_3.png diff --git a/train/134_frames/sprite_4.png b/train/spritesheet_134/frame_4.png similarity index 100% rename from train/134_frames/sprite_4.png rename to train/spritesheet_134/frame_4.png diff --git a/train/134_frames/sprite_5.png b/train/spritesheet_134/frame_5.png similarity index 100% rename from train/134_frames/sprite_5.png rename to train/spritesheet_134/frame_5.png diff --git a/train/134_frames/sprite_6.png b/train/spritesheet_134/frame_6.png similarity index 100% rename from train/134_frames/sprite_6.png rename to train/spritesheet_134/frame_6.png diff --git a/train/134_frames/sprite_7.png b/train/spritesheet_134/frame_7.png similarity index 100% rename from train/134_frames/sprite_7.png rename to train/spritesheet_134/frame_7.png diff --git a/train/134_frames/sprite_8.png b/train/spritesheet_134/frame_8.png similarity index 100% rename from train/134_frames/sprite_8.png rename to train/spritesheet_134/frame_8.png diff --git a/train/134_frames/sprite_9.png b/train/spritesheet_134/frame_9.png similarity index 100% rename from train/134_frames/sprite_9.png rename to train/spritesheet_134/frame_9.png diff --git a/train/135_frames/sprite_0.png b/train/spritesheet_135/frame_0.png similarity index 100% rename from train/135_frames/sprite_0.png rename to train/spritesheet_135/frame_0.png diff --git a/train/135_frames/sprite_1.png b/train/spritesheet_135/frame_1.png similarity index 100% rename from train/135_frames/sprite_1.png rename to train/spritesheet_135/frame_1.png diff --git a/train/135_frames/sprite_10.png b/train/spritesheet_135/frame_10.png similarity index 100% rename from train/135_frames/sprite_10.png rename to train/spritesheet_135/frame_10.png diff --git a/train/135_frames/sprite_11.png b/train/spritesheet_135/frame_11.png similarity index 100% rename from train/135_frames/sprite_11.png rename to train/spritesheet_135/frame_11.png diff --git a/train/135_frames/sprite_12.png b/train/spritesheet_135/frame_12.png similarity index 100% rename from train/135_frames/sprite_12.png rename to train/spritesheet_135/frame_12.png diff --git a/train/135_frames/sprite_13.png b/train/spritesheet_135/frame_13.png similarity index 100% rename from train/135_frames/sprite_13.png rename to train/spritesheet_135/frame_13.png diff --git a/train/135_frames/sprite_14.png b/train/spritesheet_135/frame_14.png similarity index 100% rename from train/135_frames/sprite_14.png rename to train/spritesheet_135/frame_14.png diff --git a/train/135_frames/sprite_15.png b/train/spritesheet_135/frame_15.png similarity index 100% rename from train/135_frames/sprite_15.png rename to train/spritesheet_135/frame_15.png diff --git a/train/135_frames/sprite_16.png b/train/spritesheet_135/frame_16.png similarity index 100% rename from train/135_frames/sprite_16.png rename to train/spritesheet_135/frame_16.png diff --git a/train/135_frames/sprite_17.png b/train/spritesheet_135/frame_17.png similarity index 100% rename from train/135_frames/sprite_17.png rename to train/spritesheet_135/frame_17.png diff --git a/train/135_frames/sprite_18.png b/train/spritesheet_135/frame_18.png similarity index 100% rename from train/135_frames/sprite_18.png rename to train/spritesheet_135/frame_18.png diff --git a/train/135_frames/sprite_19.png b/train/spritesheet_135/frame_19.png similarity index 100% rename from train/135_frames/sprite_19.png rename to train/spritesheet_135/frame_19.png diff --git a/train/135_frames/sprite_2.png b/train/spritesheet_135/frame_2.png similarity index 100% rename from train/135_frames/sprite_2.png rename to train/spritesheet_135/frame_2.png diff --git a/train/135_frames/sprite_20.png b/train/spritesheet_135/frame_20.png similarity index 100% rename from train/135_frames/sprite_20.png rename to train/spritesheet_135/frame_20.png diff --git a/train/135_frames/sprite_21.png b/train/spritesheet_135/frame_21.png similarity index 100% rename from train/135_frames/sprite_21.png rename to train/spritesheet_135/frame_21.png diff --git a/train/135_frames/sprite_22.png b/train/spritesheet_135/frame_22.png similarity index 100% rename from train/135_frames/sprite_22.png rename to train/spritesheet_135/frame_22.png diff --git a/train/135_frames/sprite_23.png b/train/spritesheet_135/frame_23.png similarity index 100% rename from train/135_frames/sprite_23.png rename to train/spritesheet_135/frame_23.png diff --git a/train/135_frames/sprite_24.png b/train/spritesheet_135/frame_24.png similarity index 100% rename from train/135_frames/sprite_24.png rename to train/spritesheet_135/frame_24.png diff --git a/train/135_frames/sprite_25.png b/train/spritesheet_135/frame_25.png similarity index 100% rename from train/135_frames/sprite_25.png rename to train/spritesheet_135/frame_25.png diff --git a/train/135_frames/sprite_26.png b/train/spritesheet_135/frame_26.png similarity index 100% rename from train/135_frames/sprite_26.png rename to train/spritesheet_135/frame_26.png diff --git a/train/135_frames/sprite_27.png b/train/spritesheet_135/frame_27.png similarity index 100% rename from train/135_frames/sprite_27.png rename to train/spritesheet_135/frame_27.png diff --git a/train/135_frames/sprite_28.png b/train/spritesheet_135/frame_28.png similarity index 100% rename from train/135_frames/sprite_28.png rename to train/spritesheet_135/frame_28.png diff --git a/train/135_frames/sprite_29.png b/train/spritesheet_135/frame_29.png similarity index 100% rename from train/135_frames/sprite_29.png rename to train/spritesheet_135/frame_29.png diff --git a/train/135_frames/sprite_3.png b/train/spritesheet_135/frame_3.png similarity index 100% rename from train/135_frames/sprite_3.png rename to train/spritesheet_135/frame_3.png diff --git a/train/135_frames/sprite_30.png b/train/spritesheet_135/frame_30.png similarity index 100% rename from train/135_frames/sprite_30.png rename to train/spritesheet_135/frame_30.png diff --git a/train/135_frames/sprite_31.png b/train/spritesheet_135/frame_31.png similarity index 100% rename from train/135_frames/sprite_31.png rename to train/spritesheet_135/frame_31.png diff --git a/train/135_frames/sprite_32.png b/train/spritesheet_135/frame_32.png similarity index 100% rename from train/135_frames/sprite_32.png rename to train/spritesheet_135/frame_32.png diff --git a/train/135_frames/sprite_33.png b/train/spritesheet_135/frame_33.png similarity index 100% rename from train/135_frames/sprite_33.png rename to train/spritesheet_135/frame_33.png diff --git a/train/135_frames/sprite_34.png b/train/spritesheet_135/frame_34.png similarity index 100% rename from train/135_frames/sprite_34.png rename to train/spritesheet_135/frame_34.png diff --git a/train/135_frames/sprite_35.png b/train/spritesheet_135/frame_35.png similarity index 100% rename from train/135_frames/sprite_35.png rename to train/spritesheet_135/frame_35.png diff --git a/train/135_frames/sprite_4.png b/train/spritesheet_135/frame_4.png similarity index 100% rename from train/135_frames/sprite_4.png rename to train/spritesheet_135/frame_4.png diff --git a/train/135_frames/sprite_5.png b/train/spritesheet_135/frame_5.png similarity index 100% rename from train/135_frames/sprite_5.png rename to train/spritesheet_135/frame_5.png diff --git a/train/135_frames/sprite_6.png b/train/spritesheet_135/frame_6.png similarity index 100% rename from train/135_frames/sprite_6.png rename to train/spritesheet_135/frame_6.png diff --git a/train/135_frames/sprite_7.png b/train/spritesheet_135/frame_7.png similarity index 100% rename from train/135_frames/sprite_7.png rename to train/spritesheet_135/frame_7.png diff --git a/train/135_frames/sprite_8.png b/train/spritesheet_135/frame_8.png similarity index 100% rename from train/135_frames/sprite_8.png rename to train/spritesheet_135/frame_8.png diff --git a/train/135_frames/sprite_9.png b/train/spritesheet_135/frame_9.png similarity index 100% rename from train/135_frames/sprite_9.png rename to train/spritesheet_135/frame_9.png diff --git a/train/136_frames/sprite_0.png b/train/spritesheet_136/frame_0.png similarity index 100% rename from train/136_frames/sprite_0.png rename to train/spritesheet_136/frame_0.png diff --git a/train/136_frames/sprite_1.png b/train/spritesheet_136/frame_1.png similarity index 100% rename from train/136_frames/sprite_1.png rename to train/spritesheet_136/frame_1.png diff --git a/train/136_frames/sprite_10.png b/train/spritesheet_136/frame_10.png similarity index 100% rename from train/136_frames/sprite_10.png rename to train/spritesheet_136/frame_10.png diff --git a/train/136_frames/sprite_11.png b/train/spritesheet_136/frame_11.png similarity index 100% rename from train/136_frames/sprite_11.png rename to train/spritesheet_136/frame_11.png diff --git a/train/136_frames/sprite_12.png b/train/spritesheet_136/frame_12.png similarity index 100% rename from train/136_frames/sprite_12.png rename to train/spritesheet_136/frame_12.png diff --git a/train/136_frames/sprite_13.png b/train/spritesheet_136/frame_13.png similarity index 100% rename from train/136_frames/sprite_13.png rename to train/spritesheet_136/frame_13.png diff --git a/train/136_frames/sprite_14.png b/train/spritesheet_136/frame_14.png similarity index 100% rename from train/136_frames/sprite_14.png rename to train/spritesheet_136/frame_14.png diff --git a/train/136_frames/sprite_15.png b/train/spritesheet_136/frame_15.png similarity index 100% rename from train/136_frames/sprite_15.png rename to train/spritesheet_136/frame_15.png diff --git a/train/136_frames/sprite_16.png b/train/spritesheet_136/frame_16.png similarity index 100% rename from train/136_frames/sprite_16.png rename to train/spritesheet_136/frame_16.png diff --git a/train/136_frames/sprite_17.png b/train/spritesheet_136/frame_17.png similarity index 100% rename from train/136_frames/sprite_17.png rename to train/spritesheet_136/frame_17.png diff --git a/train/136_frames/sprite_2.png b/train/spritesheet_136/frame_2.png similarity index 100% rename from train/136_frames/sprite_2.png rename to train/spritesheet_136/frame_2.png diff --git a/train/136_frames/sprite_3.png b/train/spritesheet_136/frame_3.png similarity index 100% rename from train/136_frames/sprite_3.png rename to train/spritesheet_136/frame_3.png diff --git a/train/136_frames/sprite_4.png b/train/spritesheet_136/frame_4.png similarity index 100% rename from train/136_frames/sprite_4.png rename to train/spritesheet_136/frame_4.png diff --git a/train/136_frames/sprite_5.png b/train/spritesheet_136/frame_5.png similarity index 100% rename from train/136_frames/sprite_5.png rename to train/spritesheet_136/frame_5.png diff --git a/train/136_frames/sprite_6.png b/train/spritesheet_136/frame_6.png similarity index 100% rename from train/136_frames/sprite_6.png rename to train/spritesheet_136/frame_6.png diff --git a/train/136_frames/sprite_7.png b/train/spritesheet_136/frame_7.png similarity index 100% rename from train/136_frames/sprite_7.png rename to train/spritesheet_136/frame_7.png diff --git a/train/136_frames/sprite_8.png b/train/spritesheet_136/frame_8.png similarity index 100% rename from train/136_frames/sprite_8.png rename to train/spritesheet_136/frame_8.png diff --git a/train/136_frames/sprite_9.png b/train/spritesheet_136/frame_9.png similarity index 100% rename from train/136_frames/sprite_9.png rename to train/spritesheet_136/frame_9.png diff --git a/train/137_frames/sprite_0.png b/train/spritesheet_137/frame_0.png similarity index 100% rename from train/137_frames/sprite_0.png rename to train/spritesheet_137/frame_0.png diff --git a/train/137_frames/sprite_1.png b/train/spritesheet_137/frame_1.png similarity index 100% rename from train/137_frames/sprite_1.png rename to train/spritesheet_137/frame_1.png diff --git a/train/137_frames/sprite_10.png b/train/spritesheet_137/frame_10.png similarity index 100% rename from train/137_frames/sprite_10.png rename to train/spritesheet_137/frame_10.png diff --git a/train/137_frames/sprite_11.png b/train/spritesheet_137/frame_11.png similarity index 100% rename from train/137_frames/sprite_11.png rename to train/spritesheet_137/frame_11.png diff --git a/train/137_frames/sprite_12.png b/train/spritesheet_137/frame_12.png similarity index 100% rename from train/137_frames/sprite_12.png rename to train/spritesheet_137/frame_12.png diff --git a/train/137_frames/sprite_13.png b/train/spritesheet_137/frame_13.png similarity index 100% rename from train/137_frames/sprite_13.png rename to train/spritesheet_137/frame_13.png diff --git a/train/137_frames/sprite_14.png b/train/spritesheet_137/frame_14.png similarity index 100% rename from train/137_frames/sprite_14.png rename to train/spritesheet_137/frame_14.png diff --git a/train/137_frames/sprite_15.png b/train/spritesheet_137/frame_15.png similarity index 100% rename from train/137_frames/sprite_15.png rename to train/spritesheet_137/frame_15.png diff --git a/train/137_frames/sprite_16.png b/train/spritesheet_137/frame_16.png similarity index 100% rename from train/137_frames/sprite_16.png rename to train/spritesheet_137/frame_16.png diff --git a/train/137_frames/sprite_17.png b/train/spritesheet_137/frame_17.png similarity index 100% rename from train/137_frames/sprite_17.png rename to train/spritesheet_137/frame_17.png diff --git a/train/137_frames/sprite_2.png b/train/spritesheet_137/frame_2.png similarity index 100% rename from train/137_frames/sprite_2.png rename to train/spritesheet_137/frame_2.png diff --git a/train/137_frames/sprite_3.png b/train/spritesheet_137/frame_3.png similarity index 100% rename from train/137_frames/sprite_3.png rename to train/spritesheet_137/frame_3.png diff --git a/train/137_frames/sprite_4.png b/train/spritesheet_137/frame_4.png similarity index 100% rename from train/137_frames/sprite_4.png rename to train/spritesheet_137/frame_4.png diff --git a/train/137_frames/sprite_5.png b/train/spritesheet_137/frame_5.png similarity index 100% rename from train/137_frames/sprite_5.png rename to train/spritesheet_137/frame_5.png diff --git a/train/137_frames/sprite_6.png b/train/spritesheet_137/frame_6.png similarity index 100% rename from train/137_frames/sprite_6.png rename to train/spritesheet_137/frame_6.png diff --git a/train/137_frames/sprite_7.png b/train/spritesheet_137/frame_7.png similarity index 100% rename from train/137_frames/sprite_7.png rename to train/spritesheet_137/frame_7.png diff --git a/train/137_frames/sprite_8.png b/train/spritesheet_137/frame_8.png similarity index 100% rename from train/137_frames/sprite_8.png rename to train/spritesheet_137/frame_8.png diff --git a/train/137_frames/sprite_9.png b/train/spritesheet_137/frame_9.png similarity index 100% rename from train/137_frames/sprite_9.png rename to train/spritesheet_137/frame_9.png diff --git a/train/138_frames/sprite_0.png b/train/spritesheet_138/frame_0.png similarity index 100% rename from train/138_frames/sprite_0.png rename to train/spritesheet_138/frame_0.png diff --git a/train/138_frames/sprite_1.png b/train/spritesheet_138/frame_1.png similarity index 100% rename from train/138_frames/sprite_1.png rename to train/spritesheet_138/frame_1.png diff --git a/train/138_frames/sprite_2.png b/train/spritesheet_138/frame_2.png similarity index 100% rename from train/138_frames/sprite_2.png rename to train/spritesheet_138/frame_2.png diff --git a/train/138_frames/sprite_3.png b/train/spritesheet_138/frame_3.png similarity index 100% rename from train/138_frames/sprite_3.png rename to train/spritesheet_138/frame_3.png diff --git a/train/138_frames/sprite_4.png b/train/spritesheet_138/frame_4.png similarity index 100% rename from train/138_frames/sprite_4.png rename to train/spritesheet_138/frame_4.png diff --git a/train/138_frames/sprite_5.png b/train/spritesheet_138/frame_5.png similarity index 100% rename from train/138_frames/sprite_5.png rename to train/spritesheet_138/frame_5.png diff --git a/train/138_frames/sprite_6.png b/train/spritesheet_138/frame_6.png similarity index 100% rename from train/138_frames/sprite_6.png rename to train/spritesheet_138/frame_6.png diff --git a/train/138_frames/sprite_7.png b/train/spritesheet_138/frame_7.png similarity index 100% rename from train/138_frames/sprite_7.png rename to train/spritesheet_138/frame_7.png diff --git a/train/139_frames/sprite_0.png b/train/spritesheet_139/frame_0.png similarity index 100% rename from train/139_frames/sprite_0.png rename to train/spritesheet_139/frame_0.png diff --git a/train/139_frames/sprite_1.png b/train/spritesheet_139/frame_1.png similarity index 100% rename from train/139_frames/sprite_1.png rename to train/spritesheet_139/frame_1.png diff --git a/train/139_frames/sprite_2.png b/train/spritesheet_139/frame_2.png similarity index 100% rename from train/139_frames/sprite_2.png rename to train/spritesheet_139/frame_2.png diff --git a/train/139_frames/sprite_3.png b/train/spritesheet_139/frame_3.png similarity index 100% rename from train/139_frames/sprite_3.png rename to train/spritesheet_139/frame_3.png diff --git a/train/139_frames/sprite_4.png b/train/spritesheet_139/frame_4.png similarity index 100% rename from train/139_frames/sprite_4.png rename to train/spritesheet_139/frame_4.png diff --git a/train/139_frames/sprite_5.png b/train/spritesheet_139/frame_5.png similarity index 100% rename from train/139_frames/sprite_5.png rename to train/spritesheet_139/frame_5.png diff --git a/train/139_frames/sprite_6.png b/train/spritesheet_139/frame_6.png similarity index 100% rename from train/139_frames/sprite_6.png rename to train/spritesheet_139/frame_6.png diff --git a/train/139_frames/sprite_7.png b/train/spritesheet_139/frame_7.png similarity index 100% rename from train/139_frames/sprite_7.png rename to train/spritesheet_139/frame_7.png diff --git a/train/14_frames/sprite_0.png b/train/spritesheet_14/frame_0.png similarity index 100% rename from train/14_frames/sprite_0.png rename to train/spritesheet_14/frame_0.png diff --git a/train/14_frames/sprite_1.png b/train/spritesheet_14/frame_1.png similarity index 100% rename from train/14_frames/sprite_1.png rename to train/spritesheet_14/frame_1.png diff --git a/train/14_frames/sprite_2.png b/train/spritesheet_14/frame_2.png similarity index 100% rename from train/14_frames/sprite_2.png rename to train/spritesheet_14/frame_2.png diff --git a/train/14_frames/sprite_3.png b/train/spritesheet_14/frame_3.png similarity index 100% rename from train/14_frames/sprite_3.png rename to train/spritesheet_14/frame_3.png diff --git a/train/14_frames/sprite_4.png b/train/spritesheet_14/frame_4.png similarity index 100% rename from train/14_frames/sprite_4.png rename to train/spritesheet_14/frame_4.png diff --git a/train/14_frames/sprite_5.png b/train/spritesheet_14/frame_5.png similarity index 100% rename from train/14_frames/sprite_5.png rename to train/spritesheet_14/frame_5.png diff --git a/train/14_frames/sprite_6.png b/train/spritesheet_14/frame_6.png similarity index 100% rename from train/14_frames/sprite_6.png rename to train/spritesheet_14/frame_6.png diff --git a/train/14_frames/sprite_7.png b/train/spritesheet_14/frame_7.png similarity index 100% rename from train/14_frames/sprite_7.png rename to train/spritesheet_14/frame_7.png diff --git a/train/140_frames/sprite_0.png b/train/spritesheet_140/frame_0.png similarity index 100% rename from train/140_frames/sprite_0.png rename to train/spritesheet_140/frame_0.png diff --git a/train/140_frames/sprite_1.png b/train/spritesheet_140/frame_1.png similarity index 100% rename from train/140_frames/sprite_1.png rename to train/spritesheet_140/frame_1.png diff --git a/train/140_frames/sprite_2.png b/train/spritesheet_140/frame_2.png similarity index 100% rename from train/140_frames/sprite_2.png rename to train/spritesheet_140/frame_2.png diff --git a/train/140_frames/sprite_3.png b/train/spritesheet_140/frame_3.png similarity index 100% rename from train/140_frames/sprite_3.png rename to train/spritesheet_140/frame_3.png diff --git a/train/140_frames/sprite_4.png b/train/spritesheet_140/frame_4.png similarity index 100% rename from train/140_frames/sprite_4.png rename to train/spritesheet_140/frame_4.png diff --git a/train/140_frames/sprite_5.png b/train/spritesheet_140/frame_5.png similarity index 100% rename from train/140_frames/sprite_5.png rename to train/spritesheet_140/frame_5.png diff --git a/train/140_frames/sprite_6.png b/train/spritesheet_140/frame_6.png similarity index 100% rename from train/140_frames/sprite_6.png rename to train/spritesheet_140/frame_6.png diff --git a/train/140_frames/sprite_7.png b/train/spritesheet_140/frame_7.png similarity index 100% rename from train/140_frames/sprite_7.png rename to train/spritesheet_140/frame_7.png diff --git a/train/141_frames/sprite_0.png b/train/spritesheet_141/frame_0.png similarity index 100% rename from train/141_frames/sprite_0.png rename to train/spritesheet_141/frame_0.png diff --git a/train/142_frames/sprite_0.png b/train/spritesheet_142/frame_0.png similarity index 100% rename from train/142_frames/sprite_0.png rename to train/spritesheet_142/frame_0.png diff --git a/train/142_frames/sprite_1.png b/train/spritesheet_142/frame_1.png similarity index 100% rename from train/142_frames/sprite_1.png rename to train/spritesheet_142/frame_1.png diff --git a/train/142_frames/sprite_2.png b/train/spritesheet_142/frame_2.png similarity index 100% rename from train/142_frames/sprite_2.png rename to train/spritesheet_142/frame_2.png diff --git a/train/142_frames/sprite_3.png b/train/spritesheet_142/frame_3.png similarity index 100% rename from train/142_frames/sprite_3.png rename to train/spritesheet_142/frame_3.png diff --git a/train/142_frames/sprite_4.png b/train/spritesheet_142/frame_4.png similarity index 100% rename from train/142_frames/sprite_4.png rename to train/spritesheet_142/frame_4.png diff --git a/train/142_frames/sprite_5.png b/train/spritesheet_142/frame_5.png similarity index 100% rename from train/142_frames/sprite_5.png rename to train/spritesheet_142/frame_5.png diff --git a/train/142_frames/sprite_6.png b/train/spritesheet_142/frame_6.png similarity index 100% rename from train/142_frames/sprite_6.png rename to train/spritesheet_142/frame_6.png diff --git a/train/142_frames/sprite_7.png b/train/spritesheet_142/frame_7.png similarity index 100% rename from train/142_frames/sprite_7.png rename to train/spritesheet_142/frame_7.png diff --git a/train/143_frames/sprite_0.png b/train/spritesheet_143/frame_0.png similarity index 100% rename from train/143_frames/sprite_0.png rename to train/spritesheet_143/frame_0.png diff --git a/train/143_frames/sprite_1.png b/train/spritesheet_143/frame_1.png similarity index 100% rename from train/143_frames/sprite_1.png rename to train/spritesheet_143/frame_1.png diff --git a/train/143_frames/sprite_10.png b/train/spritesheet_143/frame_10.png similarity index 100% rename from train/143_frames/sprite_10.png rename to train/spritesheet_143/frame_10.png diff --git a/train/143_frames/sprite_11.png b/train/spritesheet_143/frame_11.png similarity index 100% rename from train/143_frames/sprite_11.png rename to train/spritesheet_143/frame_11.png diff --git a/train/143_frames/sprite_2.png b/train/spritesheet_143/frame_2.png similarity index 100% rename from train/143_frames/sprite_2.png rename to train/spritesheet_143/frame_2.png diff --git a/train/143_frames/sprite_3.png b/train/spritesheet_143/frame_3.png similarity index 100% rename from train/143_frames/sprite_3.png rename to train/spritesheet_143/frame_3.png diff --git a/train/143_frames/sprite_4.png b/train/spritesheet_143/frame_4.png similarity index 100% rename from train/143_frames/sprite_4.png rename to train/spritesheet_143/frame_4.png diff --git a/train/143_frames/sprite_5.png b/train/spritesheet_143/frame_5.png similarity index 100% rename from train/143_frames/sprite_5.png rename to train/spritesheet_143/frame_5.png diff --git a/train/143_frames/sprite_6.png b/train/spritesheet_143/frame_6.png similarity index 100% rename from train/143_frames/sprite_6.png rename to train/spritesheet_143/frame_6.png diff --git a/train/143_frames/sprite_7.png b/train/spritesheet_143/frame_7.png similarity index 100% rename from train/143_frames/sprite_7.png rename to train/spritesheet_143/frame_7.png diff --git a/train/143_frames/sprite_8.png b/train/spritesheet_143/frame_8.png similarity index 100% rename from train/143_frames/sprite_8.png rename to train/spritesheet_143/frame_8.png diff --git a/train/143_frames/sprite_9.png b/train/spritesheet_143/frame_9.png similarity index 100% rename from train/143_frames/sprite_9.png rename to train/spritesheet_143/frame_9.png diff --git a/train/144_frames/sprite_0.png b/train/spritesheet_144/frame_0.png similarity index 100% rename from train/144_frames/sprite_0.png rename to train/spritesheet_144/frame_0.png diff --git a/train/144_frames/sprite_1.png b/train/spritesheet_144/frame_1.png similarity index 100% rename from train/144_frames/sprite_1.png rename to train/spritesheet_144/frame_1.png diff --git a/train/144_frames/sprite_2.png b/train/spritesheet_144/frame_2.png similarity index 100% rename from train/144_frames/sprite_2.png rename to train/spritesheet_144/frame_2.png diff --git a/train/144_frames/sprite_3.png b/train/spritesheet_144/frame_3.png similarity index 100% rename from train/144_frames/sprite_3.png rename to train/spritesheet_144/frame_3.png diff --git a/train/144_frames/sprite_4.png b/train/spritesheet_144/frame_4.png similarity index 100% rename from train/144_frames/sprite_4.png rename to train/spritesheet_144/frame_4.png diff --git a/train/144_frames/sprite_5.png b/train/spritesheet_144/frame_5.png similarity index 100% rename from train/144_frames/sprite_5.png rename to train/spritesheet_144/frame_5.png diff --git a/train/144_frames/sprite_6.png b/train/spritesheet_144/frame_6.png similarity index 100% rename from train/144_frames/sprite_6.png rename to train/spritesheet_144/frame_6.png diff --git a/train/144_frames/sprite_7.png b/train/spritesheet_144/frame_7.png similarity index 100% rename from train/144_frames/sprite_7.png rename to train/spritesheet_144/frame_7.png diff --git a/train/145_frames/sprite_0.png b/train/spritesheet_145/frame_0.png similarity index 100% rename from train/145_frames/sprite_0.png rename to train/spritesheet_145/frame_0.png diff --git a/train/145_frames/sprite_1.png b/train/spritesheet_145/frame_1.png similarity index 100% rename from train/145_frames/sprite_1.png rename to train/spritesheet_145/frame_1.png diff --git a/train/145_frames/sprite_2.png b/train/spritesheet_145/frame_2.png similarity index 100% rename from train/145_frames/sprite_2.png rename to train/spritesheet_145/frame_2.png diff --git a/train/145_frames/sprite_3.png b/train/spritesheet_145/frame_3.png similarity index 100% rename from train/145_frames/sprite_3.png rename to train/spritesheet_145/frame_3.png diff --git a/train/145_frames/sprite_4.png b/train/spritesheet_145/frame_4.png similarity index 100% rename from train/145_frames/sprite_4.png rename to train/spritesheet_145/frame_4.png diff --git a/train/145_frames/sprite_5.png b/train/spritesheet_145/frame_5.png similarity index 100% rename from train/145_frames/sprite_5.png rename to train/spritesheet_145/frame_5.png diff --git a/train/145_frames/sprite_6.png b/train/spritesheet_145/frame_6.png similarity index 100% rename from train/145_frames/sprite_6.png rename to train/spritesheet_145/frame_6.png diff --git a/train/145_frames/sprite_7.png b/train/spritesheet_145/frame_7.png similarity index 100% rename from train/145_frames/sprite_7.png rename to train/spritesheet_145/frame_7.png diff --git a/train/146_frames/sprite_0.png b/train/spritesheet_146/frame_0.png similarity index 100% rename from train/146_frames/sprite_0.png rename to train/spritesheet_146/frame_0.png diff --git a/train/146_frames/sprite_1.png b/train/spritesheet_146/frame_1.png similarity index 100% rename from train/146_frames/sprite_1.png rename to train/spritesheet_146/frame_1.png diff --git a/train/146_frames/sprite_2.png b/train/spritesheet_146/frame_2.png similarity index 100% rename from train/146_frames/sprite_2.png rename to train/spritesheet_146/frame_2.png diff --git a/train/146_frames/sprite_3.png b/train/spritesheet_146/frame_3.png similarity index 100% rename from train/146_frames/sprite_3.png rename to train/spritesheet_146/frame_3.png diff --git a/train/146_frames/sprite_4.png b/train/spritesheet_146/frame_4.png similarity index 100% rename from train/146_frames/sprite_4.png rename to train/spritesheet_146/frame_4.png diff --git a/train/146_frames/sprite_5.png b/train/spritesheet_146/frame_5.png similarity index 100% rename from train/146_frames/sprite_5.png rename to train/spritesheet_146/frame_5.png diff --git a/train/146_frames/sprite_6.png b/train/spritesheet_146/frame_6.png similarity index 100% rename from train/146_frames/sprite_6.png rename to train/spritesheet_146/frame_6.png diff --git a/train/146_frames/sprite_7.png b/train/spritesheet_146/frame_7.png similarity index 100% rename from train/146_frames/sprite_7.png rename to train/spritesheet_146/frame_7.png diff --git a/train/147_frames/sprite_0.png b/train/spritesheet_147/frame_0.png similarity index 100% rename from train/147_frames/sprite_0.png rename to train/spritesheet_147/frame_0.png diff --git a/train/147_frames/sprite_1.png b/train/spritesheet_147/frame_1.png similarity index 100% rename from train/147_frames/sprite_1.png rename to train/spritesheet_147/frame_1.png diff --git a/train/147_frames/sprite_2.png b/train/spritesheet_147/frame_2.png similarity index 100% rename from train/147_frames/sprite_2.png rename to train/spritesheet_147/frame_2.png diff --git a/train/147_frames/sprite_3.png b/train/spritesheet_147/frame_3.png similarity index 100% rename from train/147_frames/sprite_3.png rename to train/spritesheet_147/frame_3.png diff --git a/train/147_frames/sprite_4.png b/train/spritesheet_147/frame_4.png similarity index 100% rename from train/147_frames/sprite_4.png rename to train/spritesheet_147/frame_4.png diff --git a/train/147_frames/sprite_5.png b/train/spritesheet_147/frame_5.png similarity index 100% rename from train/147_frames/sprite_5.png rename to train/spritesheet_147/frame_5.png diff --git a/train/147_frames/sprite_6.png b/train/spritesheet_147/frame_6.png similarity index 100% rename from train/147_frames/sprite_6.png rename to train/spritesheet_147/frame_6.png diff --git a/train/147_frames/sprite_7.png b/train/spritesheet_147/frame_7.png similarity index 100% rename from train/147_frames/sprite_7.png rename to train/spritesheet_147/frame_7.png diff --git a/train/148_frames/sprite_0.png b/train/spritesheet_148/frame_0.png similarity index 100% rename from train/148_frames/sprite_0.png rename to train/spritesheet_148/frame_0.png diff --git a/train/148_frames/sprite_1.png b/train/spritesheet_148/frame_1.png similarity index 100% rename from train/148_frames/sprite_1.png rename to train/spritesheet_148/frame_1.png diff --git a/train/148_frames/sprite_2.png b/train/spritesheet_148/frame_2.png similarity index 100% rename from train/148_frames/sprite_2.png rename to train/spritesheet_148/frame_2.png diff --git a/train/148_frames/sprite_3.png b/train/spritesheet_148/frame_3.png similarity index 100% rename from train/148_frames/sprite_3.png rename to train/spritesheet_148/frame_3.png diff --git a/train/148_frames/sprite_4.png b/train/spritesheet_148/frame_4.png similarity index 100% rename from train/148_frames/sprite_4.png rename to train/spritesheet_148/frame_4.png diff --git a/train/148_frames/sprite_5.png b/train/spritesheet_148/frame_5.png similarity index 100% rename from train/148_frames/sprite_5.png rename to train/spritesheet_148/frame_5.png diff --git a/train/148_frames/sprite_6.png b/train/spritesheet_148/frame_6.png similarity index 100% rename from train/148_frames/sprite_6.png rename to train/spritesheet_148/frame_6.png diff --git a/train/148_frames/sprite_7.png b/train/spritesheet_148/frame_7.png similarity index 100% rename from train/148_frames/sprite_7.png rename to train/spritesheet_148/frame_7.png diff --git a/train/149_frames/sprite_0.png b/train/spritesheet_149/frame_0.png similarity index 100% rename from train/149_frames/sprite_0.png rename to train/spritesheet_149/frame_0.png diff --git a/train/149_frames/sprite_1.png b/train/spritesheet_149/frame_1.png similarity index 100% rename from train/149_frames/sprite_1.png rename to train/spritesheet_149/frame_1.png diff --git a/train/149_frames/sprite_10.png b/train/spritesheet_149/frame_10.png similarity index 100% rename from train/149_frames/sprite_10.png rename to train/spritesheet_149/frame_10.png diff --git a/train/149_frames/sprite_11.png b/train/spritesheet_149/frame_11.png similarity index 100% rename from train/149_frames/sprite_11.png rename to train/spritesheet_149/frame_11.png diff --git a/train/149_frames/sprite_12.png b/train/spritesheet_149/frame_12.png similarity index 100% rename from train/149_frames/sprite_12.png rename to train/spritesheet_149/frame_12.png diff --git a/train/149_frames/sprite_13.png b/train/spritesheet_149/frame_13.png similarity index 100% rename from train/149_frames/sprite_13.png rename to train/spritesheet_149/frame_13.png diff --git a/train/149_frames/sprite_14.png b/train/spritesheet_149/frame_14.png similarity index 100% rename from train/149_frames/sprite_14.png rename to train/spritesheet_149/frame_14.png diff --git a/train/149_frames/sprite_15.png b/train/spritesheet_149/frame_15.png similarity index 100% rename from train/149_frames/sprite_15.png rename to train/spritesheet_149/frame_15.png diff --git a/train/149_frames/sprite_16.png b/train/spritesheet_149/frame_16.png similarity index 100% rename from train/149_frames/sprite_16.png rename to train/spritesheet_149/frame_16.png diff --git a/train/149_frames/sprite_17.png b/train/spritesheet_149/frame_17.png similarity index 100% rename from train/149_frames/sprite_17.png rename to train/spritesheet_149/frame_17.png diff --git a/train/149_frames/sprite_18.png b/train/spritesheet_149/frame_18.png similarity index 100% rename from train/149_frames/sprite_18.png rename to train/spritesheet_149/frame_18.png diff --git a/train/149_frames/sprite_19.png b/train/spritesheet_149/frame_19.png similarity index 100% rename from train/149_frames/sprite_19.png rename to train/spritesheet_149/frame_19.png diff --git a/train/149_frames/sprite_2.png b/train/spritesheet_149/frame_2.png similarity index 100% rename from train/149_frames/sprite_2.png rename to train/spritesheet_149/frame_2.png diff --git a/train/149_frames/sprite_20.png b/train/spritesheet_149/frame_20.png similarity index 100% rename from train/149_frames/sprite_20.png rename to train/spritesheet_149/frame_20.png diff --git a/train/149_frames/sprite_21.png b/train/spritesheet_149/frame_21.png similarity index 100% rename from train/149_frames/sprite_21.png rename to train/spritesheet_149/frame_21.png diff --git a/train/149_frames/sprite_22.png b/train/spritesheet_149/frame_22.png similarity index 100% rename from train/149_frames/sprite_22.png rename to train/spritesheet_149/frame_22.png diff --git a/train/149_frames/sprite_23.png b/train/spritesheet_149/frame_23.png similarity index 100% rename from train/149_frames/sprite_23.png rename to train/spritesheet_149/frame_23.png diff --git a/train/149_frames/sprite_3.png b/train/spritesheet_149/frame_3.png similarity index 100% rename from train/149_frames/sprite_3.png rename to train/spritesheet_149/frame_3.png diff --git a/train/149_frames/sprite_4.png b/train/spritesheet_149/frame_4.png similarity index 100% rename from train/149_frames/sprite_4.png rename to train/spritesheet_149/frame_4.png diff --git a/train/149_frames/sprite_5.png b/train/spritesheet_149/frame_5.png similarity index 100% rename from train/149_frames/sprite_5.png rename to train/spritesheet_149/frame_5.png diff --git a/train/149_frames/sprite_6.png b/train/spritesheet_149/frame_6.png similarity index 100% rename from train/149_frames/sprite_6.png rename to train/spritesheet_149/frame_6.png diff --git a/train/149_frames/sprite_7.png b/train/spritesheet_149/frame_7.png similarity index 100% rename from train/149_frames/sprite_7.png rename to train/spritesheet_149/frame_7.png diff --git a/train/149_frames/sprite_8.png b/train/spritesheet_149/frame_8.png similarity index 100% rename from train/149_frames/sprite_8.png rename to train/spritesheet_149/frame_8.png diff --git a/train/149_frames/sprite_9.png b/train/spritesheet_149/frame_9.png similarity index 100% rename from train/149_frames/sprite_9.png rename to train/spritesheet_149/frame_9.png diff --git a/train/15_frames/sprite_0.png b/train/spritesheet_15/frame_0.png similarity index 100% rename from train/15_frames/sprite_0.png rename to train/spritesheet_15/frame_0.png diff --git a/train/15_frames/sprite_1.png b/train/spritesheet_15/frame_1.png similarity index 100% rename from train/15_frames/sprite_1.png rename to train/spritesheet_15/frame_1.png diff --git a/train/15_frames/sprite_2.png b/train/spritesheet_15/frame_2.png similarity index 100% rename from train/15_frames/sprite_2.png rename to train/spritesheet_15/frame_2.png diff --git a/train/15_frames/sprite_3.png b/train/spritesheet_15/frame_3.png similarity index 100% rename from train/15_frames/sprite_3.png rename to train/spritesheet_15/frame_3.png diff --git a/train/15_frames/sprite_4.png b/train/spritesheet_15/frame_4.png similarity index 100% rename from train/15_frames/sprite_4.png rename to train/spritesheet_15/frame_4.png diff --git a/train/15_frames/sprite_5.png b/train/spritesheet_15/frame_5.png similarity index 100% rename from train/15_frames/sprite_5.png rename to train/spritesheet_15/frame_5.png diff --git a/train/15_frames/sprite_6.png b/train/spritesheet_15/frame_6.png similarity index 100% rename from train/15_frames/sprite_6.png rename to train/spritesheet_15/frame_6.png diff --git a/train/15_frames/sprite_7.png b/train/spritesheet_15/frame_7.png similarity index 100% rename from train/15_frames/sprite_7.png rename to train/spritesheet_15/frame_7.png diff --git a/train/150_frames/sprite_0.png b/train/spritesheet_150/frame_0.png similarity index 100% rename from train/150_frames/sprite_0.png rename to train/spritesheet_150/frame_0.png diff --git a/train/150_frames/sprite_1.png b/train/spritesheet_150/frame_1.png similarity index 100% rename from train/150_frames/sprite_1.png rename to train/spritesheet_150/frame_1.png diff --git a/train/150_frames/sprite_10.png b/train/spritesheet_150/frame_10.png similarity index 100% rename from train/150_frames/sprite_10.png rename to train/spritesheet_150/frame_10.png diff --git a/train/150_frames/sprite_11.png b/train/spritesheet_150/frame_11.png similarity index 100% rename from train/150_frames/sprite_11.png rename to train/spritesheet_150/frame_11.png diff --git a/train/150_frames/sprite_12.png b/train/spritesheet_150/frame_12.png similarity index 100% rename from train/150_frames/sprite_12.png rename to train/spritesheet_150/frame_12.png diff --git a/train/150_frames/sprite_13.png b/train/spritesheet_150/frame_13.png similarity index 100% rename from train/150_frames/sprite_13.png rename to train/spritesheet_150/frame_13.png diff --git a/train/150_frames/sprite_14.png b/train/spritesheet_150/frame_14.png similarity index 100% rename from train/150_frames/sprite_14.png rename to train/spritesheet_150/frame_14.png diff --git a/train/150_frames/sprite_15.png b/train/spritesheet_150/frame_15.png similarity index 100% rename from train/150_frames/sprite_15.png rename to train/spritesheet_150/frame_15.png diff --git a/train/150_frames/sprite_16.png b/train/spritesheet_150/frame_16.png similarity index 100% rename from train/150_frames/sprite_16.png rename to train/spritesheet_150/frame_16.png diff --git a/train/150_frames/sprite_17.png b/train/spritesheet_150/frame_17.png similarity index 100% rename from train/150_frames/sprite_17.png rename to train/spritesheet_150/frame_17.png diff --git a/train/150_frames/sprite_18.png b/train/spritesheet_150/frame_18.png similarity index 100% rename from train/150_frames/sprite_18.png rename to train/spritesheet_150/frame_18.png diff --git a/train/150_frames/sprite_19.png b/train/spritesheet_150/frame_19.png similarity index 100% rename from train/150_frames/sprite_19.png rename to train/spritesheet_150/frame_19.png diff --git a/train/150_frames/sprite_2.png b/train/spritesheet_150/frame_2.png similarity index 100% rename from train/150_frames/sprite_2.png rename to train/spritesheet_150/frame_2.png diff --git a/train/150_frames/sprite_20.png b/train/spritesheet_150/frame_20.png similarity index 100% rename from train/150_frames/sprite_20.png rename to train/spritesheet_150/frame_20.png diff --git a/train/150_frames/sprite_21.png b/train/spritesheet_150/frame_21.png similarity index 100% rename from train/150_frames/sprite_21.png rename to train/spritesheet_150/frame_21.png diff --git a/train/150_frames/sprite_22.png b/train/spritesheet_150/frame_22.png similarity index 100% rename from train/150_frames/sprite_22.png rename to train/spritesheet_150/frame_22.png diff --git a/train/150_frames/sprite_23.png b/train/spritesheet_150/frame_23.png similarity index 100% rename from train/150_frames/sprite_23.png rename to train/spritesheet_150/frame_23.png diff --git a/train/150_frames/sprite_24.png b/train/spritesheet_150/frame_24.png similarity index 100% rename from train/150_frames/sprite_24.png rename to train/spritesheet_150/frame_24.png diff --git a/train/150_frames/sprite_25.png b/train/spritesheet_150/frame_25.png similarity index 100% rename from train/150_frames/sprite_25.png rename to train/spritesheet_150/frame_25.png diff --git a/train/150_frames/sprite_26.png b/train/spritesheet_150/frame_26.png similarity index 100% rename from train/150_frames/sprite_26.png rename to train/spritesheet_150/frame_26.png diff --git a/train/150_frames/sprite_27.png b/train/spritesheet_150/frame_27.png similarity index 100% rename from train/150_frames/sprite_27.png rename to train/spritesheet_150/frame_27.png diff --git a/train/150_frames/sprite_28.png b/train/spritesheet_150/frame_28.png similarity index 100% rename from train/150_frames/sprite_28.png rename to train/spritesheet_150/frame_28.png diff --git a/train/150_frames/sprite_29.png b/train/spritesheet_150/frame_29.png similarity index 100% rename from train/150_frames/sprite_29.png rename to train/spritesheet_150/frame_29.png diff --git a/train/150_frames/sprite_3.png b/train/spritesheet_150/frame_3.png similarity index 100% rename from train/150_frames/sprite_3.png rename to train/spritesheet_150/frame_3.png diff --git a/train/150_frames/sprite_30.png b/train/spritesheet_150/frame_30.png similarity index 100% rename from train/150_frames/sprite_30.png rename to train/spritesheet_150/frame_30.png diff --git a/train/150_frames/sprite_31.png b/train/spritesheet_150/frame_31.png similarity index 100% rename from train/150_frames/sprite_31.png rename to train/spritesheet_150/frame_31.png diff --git a/train/150_frames/sprite_4.png b/train/spritesheet_150/frame_4.png similarity index 100% rename from train/150_frames/sprite_4.png rename to train/spritesheet_150/frame_4.png diff --git a/train/150_frames/sprite_5.png b/train/spritesheet_150/frame_5.png similarity index 100% rename from train/150_frames/sprite_5.png rename to train/spritesheet_150/frame_5.png diff --git a/train/150_frames/sprite_6.png b/train/spritesheet_150/frame_6.png similarity index 100% rename from train/150_frames/sprite_6.png rename to train/spritesheet_150/frame_6.png diff --git a/train/150_frames/sprite_7.png b/train/spritesheet_150/frame_7.png similarity index 100% rename from train/150_frames/sprite_7.png rename to train/spritesheet_150/frame_7.png diff --git a/train/150_frames/sprite_8.png b/train/spritesheet_150/frame_8.png similarity index 100% rename from train/150_frames/sprite_8.png rename to train/spritesheet_150/frame_8.png diff --git a/train/150_frames/sprite_9.png b/train/spritesheet_150/frame_9.png similarity index 100% rename from train/150_frames/sprite_9.png rename to train/spritesheet_150/frame_9.png diff --git a/train/151_frames/sprite_0.png b/train/spritesheet_151/frame_0.png similarity index 100% rename from train/151_frames/sprite_0.png rename to train/spritesheet_151/frame_0.png diff --git a/train/151_frames/sprite_1.png b/train/spritesheet_151/frame_1.png similarity index 100% rename from train/151_frames/sprite_1.png rename to train/spritesheet_151/frame_1.png diff --git a/train/151_frames/sprite_10.png b/train/spritesheet_151/frame_10.png similarity index 100% rename from train/151_frames/sprite_10.png rename to train/spritesheet_151/frame_10.png diff --git a/train/151_frames/sprite_11.png b/train/spritesheet_151/frame_11.png similarity index 100% rename from train/151_frames/sprite_11.png rename to train/spritesheet_151/frame_11.png diff --git a/train/151_frames/sprite_12.png b/train/spritesheet_151/frame_12.png similarity index 100% rename from train/151_frames/sprite_12.png rename to train/spritesheet_151/frame_12.png diff --git a/train/151_frames/sprite_13.png b/train/spritesheet_151/frame_13.png similarity index 100% rename from train/151_frames/sprite_13.png rename to train/spritesheet_151/frame_13.png diff --git a/train/151_frames/sprite_14.png b/train/spritesheet_151/frame_14.png similarity index 100% rename from train/151_frames/sprite_14.png rename to train/spritesheet_151/frame_14.png diff --git a/train/151_frames/sprite_15.png b/train/spritesheet_151/frame_15.png similarity index 100% rename from train/151_frames/sprite_15.png rename to train/spritesheet_151/frame_15.png diff --git a/train/151_frames/sprite_16.png b/train/spritesheet_151/frame_16.png similarity index 100% rename from train/151_frames/sprite_16.png rename to train/spritesheet_151/frame_16.png diff --git a/train/151_frames/sprite_17.png b/train/spritesheet_151/frame_17.png similarity index 100% rename from train/151_frames/sprite_17.png rename to train/spritesheet_151/frame_17.png diff --git a/train/151_frames/sprite_18.png b/train/spritesheet_151/frame_18.png similarity index 100% rename from train/151_frames/sprite_18.png rename to train/spritesheet_151/frame_18.png diff --git a/train/151_frames/sprite_19.png b/train/spritesheet_151/frame_19.png similarity index 100% rename from train/151_frames/sprite_19.png rename to train/spritesheet_151/frame_19.png diff --git a/train/151_frames/sprite_2.png b/train/spritesheet_151/frame_2.png similarity index 100% rename from train/151_frames/sprite_2.png rename to train/spritesheet_151/frame_2.png diff --git a/train/151_frames/sprite_20.png b/train/spritesheet_151/frame_20.png similarity index 100% rename from train/151_frames/sprite_20.png rename to train/spritesheet_151/frame_20.png diff --git a/train/151_frames/sprite_21.png b/train/spritesheet_151/frame_21.png similarity index 100% rename from train/151_frames/sprite_21.png rename to train/spritesheet_151/frame_21.png diff --git a/train/151_frames/sprite_22.png b/train/spritesheet_151/frame_22.png similarity index 100% rename from train/151_frames/sprite_22.png rename to train/spritesheet_151/frame_22.png diff --git a/train/151_frames/sprite_23.png b/train/spritesheet_151/frame_23.png similarity index 100% rename from train/151_frames/sprite_23.png rename to train/spritesheet_151/frame_23.png diff --git a/train/151_frames/sprite_24.png b/train/spritesheet_151/frame_24.png similarity index 100% rename from train/151_frames/sprite_24.png rename to train/spritesheet_151/frame_24.png diff --git a/train/151_frames/sprite_25.png b/train/spritesheet_151/frame_25.png similarity index 100% rename from train/151_frames/sprite_25.png rename to train/spritesheet_151/frame_25.png diff --git a/train/151_frames/sprite_26.png b/train/spritesheet_151/frame_26.png similarity index 100% rename from train/151_frames/sprite_26.png rename to train/spritesheet_151/frame_26.png diff --git a/train/151_frames/sprite_27.png b/train/spritesheet_151/frame_27.png similarity index 100% rename from train/151_frames/sprite_27.png rename to train/spritesheet_151/frame_27.png diff --git a/train/151_frames/sprite_28.png b/train/spritesheet_151/frame_28.png similarity index 100% rename from train/151_frames/sprite_28.png rename to train/spritesheet_151/frame_28.png diff --git a/train/151_frames/sprite_29.png b/train/spritesheet_151/frame_29.png similarity index 100% rename from train/151_frames/sprite_29.png rename to train/spritesheet_151/frame_29.png diff --git a/train/151_frames/sprite_3.png b/train/spritesheet_151/frame_3.png similarity index 100% rename from train/151_frames/sprite_3.png rename to train/spritesheet_151/frame_3.png diff --git a/train/151_frames/sprite_30.png b/train/spritesheet_151/frame_30.png similarity index 100% rename from train/151_frames/sprite_30.png rename to train/spritesheet_151/frame_30.png diff --git a/train/151_frames/sprite_31.png b/train/spritesheet_151/frame_31.png similarity index 100% rename from train/151_frames/sprite_31.png rename to train/spritesheet_151/frame_31.png diff --git a/train/151_frames/sprite_4.png b/train/spritesheet_151/frame_4.png similarity index 100% rename from train/151_frames/sprite_4.png rename to train/spritesheet_151/frame_4.png diff --git a/train/151_frames/sprite_5.png b/train/spritesheet_151/frame_5.png similarity index 100% rename from train/151_frames/sprite_5.png rename to train/spritesheet_151/frame_5.png diff --git a/train/151_frames/sprite_6.png b/train/spritesheet_151/frame_6.png similarity index 100% rename from train/151_frames/sprite_6.png rename to train/spritesheet_151/frame_6.png diff --git a/train/151_frames/sprite_7.png b/train/spritesheet_151/frame_7.png similarity index 100% rename from train/151_frames/sprite_7.png rename to train/spritesheet_151/frame_7.png diff --git a/train/151_frames/sprite_8.png b/train/spritesheet_151/frame_8.png similarity index 100% rename from train/151_frames/sprite_8.png rename to train/spritesheet_151/frame_8.png diff --git a/train/151_frames/sprite_9.png b/train/spritesheet_151/frame_9.png similarity index 100% rename from train/151_frames/sprite_9.png rename to train/spritesheet_151/frame_9.png diff --git a/train/152_frames/sprite_0.png b/train/spritesheet_152/frame_0.png similarity index 100% rename from train/152_frames/sprite_0.png rename to train/spritesheet_152/frame_0.png diff --git a/train/152_frames/sprite_1.png b/train/spritesheet_152/frame_1.png similarity index 100% rename from train/152_frames/sprite_1.png rename to train/spritesheet_152/frame_1.png diff --git a/train/152_frames/sprite_10.png b/train/spritesheet_152/frame_10.png similarity index 100% rename from train/152_frames/sprite_10.png rename to train/spritesheet_152/frame_10.png diff --git a/train/152_frames/sprite_11.png b/train/spritesheet_152/frame_11.png similarity index 100% rename from train/152_frames/sprite_11.png rename to train/spritesheet_152/frame_11.png diff --git a/train/152_frames/sprite_2.png b/train/spritesheet_152/frame_2.png similarity index 100% rename from train/152_frames/sprite_2.png rename to train/spritesheet_152/frame_2.png diff --git a/train/152_frames/sprite_3.png b/train/spritesheet_152/frame_3.png similarity index 100% rename from train/152_frames/sprite_3.png rename to train/spritesheet_152/frame_3.png diff --git a/train/152_frames/sprite_4.png b/train/spritesheet_152/frame_4.png similarity index 100% rename from train/152_frames/sprite_4.png rename to train/spritesheet_152/frame_4.png diff --git a/train/152_frames/sprite_5.png b/train/spritesheet_152/frame_5.png similarity index 100% rename from train/152_frames/sprite_5.png rename to train/spritesheet_152/frame_5.png diff --git a/train/152_frames/sprite_6.png b/train/spritesheet_152/frame_6.png similarity index 100% rename from train/152_frames/sprite_6.png rename to train/spritesheet_152/frame_6.png diff --git a/train/152_frames/sprite_7.png b/train/spritesheet_152/frame_7.png similarity index 100% rename from train/152_frames/sprite_7.png rename to train/spritesheet_152/frame_7.png diff --git a/train/152_frames/sprite_8.png b/train/spritesheet_152/frame_8.png similarity index 100% rename from train/152_frames/sprite_8.png rename to train/spritesheet_152/frame_8.png diff --git a/train/152_frames/sprite_9.png b/train/spritesheet_152/frame_9.png similarity index 100% rename from train/152_frames/sprite_9.png rename to train/spritesheet_152/frame_9.png diff --git a/train/153_frames/sprite_0.png b/train/spritesheet_153/frame_0.png similarity index 100% rename from train/153_frames/sprite_0.png rename to train/spritesheet_153/frame_0.png diff --git a/train/153_frames/sprite_1.png b/train/spritesheet_153/frame_1.png similarity index 100% rename from train/153_frames/sprite_1.png rename to train/spritesheet_153/frame_1.png diff --git a/train/153_frames/sprite_10.png b/train/spritesheet_153/frame_10.png similarity index 100% rename from train/153_frames/sprite_10.png rename to train/spritesheet_153/frame_10.png diff --git a/train/153_frames/sprite_11.png b/train/spritesheet_153/frame_11.png similarity index 100% rename from train/153_frames/sprite_11.png rename to train/spritesheet_153/frame_11.png diff --git a/train/153_frames/sprite_2.png b/train/spritesheet_153/frame_2.png similarity index 100% rename from train/153_frames/sprite_2.png rename to train/spritesheet_153/frame_2.png diff --git a/train/153_frames/sprite_3.png b/train/spritesheet_153/frame_3.png similarity index 100% rename from train/153_frames/sprite_3.png rename to train/spritesheet_153/frame_3.png diff --git a/train/153_frames/sprite_4.png b/train/spritesheet_153/frame_4.png similarity index 100% rename from train/153_frames/sprite_4.png rename to train/spritesheet_153/frame_4.png diff --git a/train/153_frames/sprite_5.png b/train/spritesheet_153/frame_5.png similarity index 100% rename from train/153_frames/sprite_5.png rename to train/spritesheet_153/frame_5.png diff --git a/train/153_frames/sprite_6.png b/train/spritesheet_153/frame_6.png similarity index 100% rename from train/153_frames/sprite_6.png rename to train/spritesheet_153/frame_6.png diff --git a/train/153_frames/sprite_7.png b/train/spritesheet_153/frame_7.png similarity index 100% rename from train/153_frames/sprite_7.png rename to train/spritesheet_153/frame_7.png diff --git a/train/153_frames/sprite_8.png b/train/spritesheet_153/frame_8.png similarity index 100% rename from train/153_frames/sprite_8.png rename to train/spritesheet_153/frame_8.png diff --git a/train/153_frames/sprite_9.png b/train/spritesheet_153/frame_9.png similarity index 100% rename from train/153_frames/sprite_9.png rename to train/spritesheet_153/frame_9.png diff --git a/train/154_frames/sprite_0.png b/train/spritesheet_154/frame_0.png similarity index 100% rename from train/154_frames/sprite_0.png rename to train/spritesheet_154/frame_0.png diff --git a/train/154_frames/sprite_1.png b/train/spritesheet_154/frame_1.png similarity index 100% rename from train/154_frames/sprite_1.png rename to train/spritesheet_154/frame_1.png diff --git a/train/154_frames/sprite_2.png b/train/spritesheet_154/frame_2.png similarity index 100% rename from train/154_frames/sprite_2.png rename to train/spritesheet_154/frame_2.png diff --git a/train/154_frames/sprite_3.png b/train/spritesheet_154/frame_3.png similarity index 100% rename from train/154_frames/sprite_3.png rename to train/spritesheet_154/frame_3.png diff --git a/train/154_frames/sprite_4.png b/train/spritesheet_154/frame_4.png similarity index 100% rename from train/154_frames/sprite_4.png rename to train/spritesheet_154/frame_4.png diff --git a/train/154_frames/sprite_5.png b/train/spritesheet_154/frame_5.png similarity index 100% rename from train/154_frames/sprite_5.png rename to train/spritesheet_154/frame_5.png diff --git a/train/154_frames/sprite_6.png b/train/spritesheet_154/frame_6.png similarity index 100% rename from train/154_frames/sprite_6.png rename to train/spritesheet_154/frame_6.png diff --git a/train/154_frames/sprite_7.png b/train/spritesheet_154/frame_7.png similarity index 100% rename from train/154_frames/sprite_7.png rename to train/spritesheet_154/frame_7.png diff --git a/train/155_frames/sprite_0.png b/train/spritesheet_155/frame_0.png similarity index 100% rename from train/155_frames/sprite_0.png rename to train/spritesheet_155/frame_0.png diff --git a/train/155_frames/sprite_1.png b/train/spritesheet_155/frame_1.png similarity index 100% rename from train/155_frames/sprite_1.png rename to train/spritesheet_155/frame_1.png diff --git a/train/155_frames/sprite_10.png b/train/spritesheet_155/frame_10.png similarity index 100% rename from train/155_frames/sprite_10.png rename to train/spritesheet_155/frame_10.png diff --git a/train/155_frames/sprite_11.png b/train/spritesheet_155/frame_11.png similarity index 100% rename from train/155_frames/sprite_11.png rename to train/spritesheet_155/frame_11.png diff --git a/train/155_frames/sprite_12.png b/train/spritesheet_155/frame_12.png similarity index 100% rename from train/155_frames/sprite_12.png rename to train/spritesheet_155/frame_12.png diff --git a/train/155_frames/sprite_13.png b/train/spritesheet_155/frame_13.png similarity index 100% rename from train/155_frames/sprite_13.png rename to train/spritesheet_155/frame_13.png diff --git a/train/155_frames/sprite_14.png b/train/spritesheet_155/frame_14.png similarity index 100% rename from train/155_frames/sprite_14.png rename to train/spritesheet_155/frame_14.png diff --git a/train/155_frames/sprite_15.png b/train/spritesheet_155/frame_15.png similarity index 100% rename from train/155_frames/sprite_15.png rename to train/spritesheet_155/frame_15.png diff --git a/train/155_frames/sprite_16.png b/train/spritesheet_155/frame_16.png similarity index 100% rename from train/155_frames/sprite_16.png rename to train/spritesheet_155/frame_16.png diff --git a/train/155_frames/sprite_17.png b/train/spritesheet_155/frame_17.png similarity index 100% rename from train/155_frames/sprite_17.png rename to train/spritesheet_155/frame_17.png diff --git a/train/155_frames/sprite_2.png b/train/spritesheet_155/frame_2.png similarity index 100% rename from train/155_frames/sprite_2.png rename to train/spritesheet_155/frame_2.png diff --git a/train/155_frames/sprite_3.png b/train/spritesheet_155/frame_3.png similarity index 100% rename from train/155_frames/sprite_3.png rename to train/spritesheet_155/frame_3.png diff --git a/train/155_frames/sprite_4.png b/train/spritesheet_155/frame_4.png similarity index 100% rename from train/155_frames/sprite_4.png rename to train/spritesheet_155/frame_4.png diff --git a/train/155_frames/sprite_5.png b/train/spritesheet_155/frame_5.png similarity index 100% rename from train/155_frames/sprite_5.png rename to train/spritesheet_155/frame_5.png diff --git a/train/155_frames/sprite_6.png b/train/spritesheet_155/frame_6.png similarity index 100% rename from train/155_frames/sprite_6.png rename to train/spritesheet_155/frame_6.png diff --git a/train/155_frames/sprite_7.png b/train/spritesheet_155/frame_7.png similarity index 100% rename from train/155_frames/sprite_7.png rename to train/spritesheet_155/frame_7.png diff --git a/train/155_frames/sprite_8.png b/train/spritesheet_155/frame_8.png similarity index 100% rename from train/155_frames/sprite_8.png rename to train/spritesheet_155/frame_8.png diff --git a/train/155_frames/sprite_9.png b/train/spritesheet_155/frame_9.png similarity index 100% rename from train/155_frames/sprite_9.png rename to train/spritesheet_155/frame_9.png diff --git a/train/156_frames/sprite_0.png b/train/spritesheet_156/frame_0.png similarity index 100% rename from train/156_frames/sprite_0.png rename to train/spritesheet_156/frame_0.png diff --git a/train/156_frames/sprite_1.png b/train/spritesheet_156/frame_1.png similarity index 100% rename from train/156_frames/sprite_1.png rename to train/spritesheet_156/frame_1.png diff --git a/train/156_frames/sprite_2.png b/train/spritesheet_156/frame_2.png similarity index 100% rename from train/156_frames/sprite_2.png rename to train/spritesheet_156/frame_2.png diff --git a/train/156_frames/sprite_3.png b/train/spritesheet_156/frame_3.png similarity index 100% rename from train/156_frames/sprite_3.png rename to train/spritesheet_156/frame_3.png diff --git a/train/156_frames/sprite_4.png b/train/spritesheet_156/frame_4.png similarity index 100% rename from train/156_frames/sprite_4.png rename to train/spritesheet_156/frame_4.png diff --git a/train/156_frames/sprite_5.png b/train/spritesheet_156/frame_5.png similarity index 100% rename from train/156_frames/sprite_5.png rename to train/spritesheet_156/frame_5.png diff --git a/train/156_frames/sprite_6.png b/train/spritesheet_156/frame_6.png similarity index 100% rename from train/156_frames/sprite_6.png rename to train/spritesheet_156/frame_6.png diff --git a/train/156_frames/sprite_7.png b/train/spritesheet_156/frame_7.png similarity index 100% rename from train/156_frames/sprite_7.png rename to train/spritesheet_156/frame_7.png diff --git a/train/157_frames/sprite_0.png b/train/spritesheet_157/frame_0.png similarity index 100% rename from train/157_frames/sprite_0.png rename to train/spritesheet_157/frame_0.png diff --git a/train/158_frames/sprite_0.png b/train/spritesheet_158/frame_0.png similarity index 100% rename from train/158_frames/sprite_0.png rename to train/spritesheet_158/frame_0.png diff --git a/train/158_frames/sprite_1.png b/train/spritesheet_158/frame_1.png similarity index 100% rename from train/158_frames/sprite_1.png rename to train/spritesheet_158/frame_1.png diff --git a/train/158_frames/sprite_2.png b/train/spritesheet_158/frame_2.png similarity index 100% rename from train/158_frames/sprite_2.png rename to train/spritesheet_158/frame_2.png diff --git a/train/158_frames/sprite_3.png b/train/spritesheet_158/frame_3.png similarity index 100% rename from train/158_frames/sprite_3.png rename to train/spritesheet_158/frame_3.png diff --git a/train/158_frames/sprite_4.png b/train/spritesheet_158/frame_4.png similarity index 100% rename from train/158_frames/sprite_4.png rename to train/spritesheet_158/frame_4.png diff --git a/train/158_frames/sprite_5.png b/train/spritesheet_158/frame_5.png similarity index 100% rename from train/158_frames/sprite_5.png rename to train/spritesheet_158/frame_5.png diff --git a/train/158_frames/sprite_6.png b/train/spritesheet_158/frame_6.png similarity index 100% rename from train/158_frames/sprite_6.png rename to train/spritesheet_158/frame_6.png diff --git a/train/158_frames/sprite_7.png b/train/spritesheet_158/frame_7.png similarity index 100% rename from train/158_frames/sprite_7.png rename to train/spritesheet_158/frame_7.png diff --git a/train/158_frames/sprite_8.png b/train/spritesheet_158/frame_8.png similarity index 100% rename from train/158_frames/sprite_8.png rename to train/spritesheet_158/frame_8.png diff --git a/train/159_frames/sprite_0.png b/train/spritesheet_159/frame_0.png similarity index 100% rename from train/159_frames/sprite_0.png rename to train/spritesheet_159/frame_0.png diff --git a/train/159_frames/sprite_1.png b/train/spritesheet_159/frame_1.png similarity index 100% rename from train/159_frames/sprite_1.png rename to train/spritesheet_159/frame_1.png diff --git a/train/159_frames/sprite_2.png b/train/spritesheet_159/frame_2.png similarity index 100% rename from train/159_frames/sprite_2.png rename to train/spritesheet_159/frame_2.png diff --git a/train/159_frames/sprite_3.png b/train/spritesheet_159/frame_3.png similarity index 100% rename from train/159_frames/sprite_3.png rename to train/spritesheet_159/frame_3.png diff --git a/train/159_frames/sprite_4.png b/train/spritesheet_159/frame_4.png similarity index 100% rename from train/159_frames/sprite_4.png rename to train/spritesheet_159/frame_4.png diff --git a/train/159_frames/sprite_5.png b/train/spritesheet_159/frame_5.png similarity index 100% rename from train/159_frames/sprite_5.png rename to train/spritesheet_159/frame_5.png diff --git a/train/159_frames/sprite_6.png b/train/spritesheet_159/frame_6.png similarity index 100% rename from train/159_frames/sprite_6.png rename to train/spritesheet_159/frame_6.png diff --git a/train/159_frames/sprite_7.png b/train/spritesheet_159/frame_7.png similarity index 100% rename from train/159_frames/sprite_7.png rename to train/spritesheet_159/frame_7.png diff --git a/train/159_frames/sprite_8.png b/train/spritesheet_159/frame_8.png similarity index 100% rename from train/159_frames/sprite_8.png rename to train/spritesheet_159/frame_8.png diff --git a/train/16_frames/sprite_0.png b/train/spritesheet_16/frame_0.png similarity index 100% rename from train/16_frames/sprite_0.png rename to train/spritesheet_16/frame_0.png diff --git a/train/16_frames/sprite_1.png b/train/spritesheet_16/frame_1.png similarity index 100% rename from train/16_frames/sprite_1.png rename to train/spritesheet_16/frame_1.png diff --git a/train/16_frames/sprite_2.png b/train/spritesheet_16/frame_2.png similarity index 100% rename from train/16_frames/sprite_2.png rename to train/spritesheet_16/frame_2.png diff --git a/train/16_frames/sprite_3.png b/train/spritesheet_16/frame_3.png similarity index 100% rename from train/16_frames/sprite_3.png rename to train/spritesheet_16/frame_3.png diff --git a/train/16_frames/sprite_4.png b/train/spritesheet_16/frame_4.png similarity index 100% rename from train/16_frames/sprite_4.png rename to train/spritesheet_16/frame_4.png diff --git a/train/16_frames/sprite_5.png b/train/spritesheet_16/frame_5.png similarity index 100% rename from train/16_frames/sprite_5.png rename to train/spritesheet_16/frame_5.png diff --git a/train/16_frames/sprite_6.png b/train/spritesheet_16/frame_6.png similarity index 100% rename from train/16_frames/sprite_6.png rename to train/spritesheet_16/frame_6.png diff --git a/train/16_frames/sprite_7.png b/train/spritesheet_16/frame_7.png similarity index 100% rename from train/16_frames/sprite_7.png rename to train/spritesheet_16/frame_7.png diff --git a/train/160_frames/sprite_0.png b/train/spritesheet_160/frame_0.png similarity index 100% rename from train/160_frames/sprite_0.png rename to train/spritesheet_160/frame_0.png diff --git a/train/160_frames/sprite_1.png b/train/spritesheet_160/frame_1.png similarity index 100% rename from train/160_frames/sprite_1.png rename to train/spritesheet_160/frame_1.png diff --git a/train/160_frames/sprite_2.png b/train/spritesheet_160/frame_2.png similarity index 100% rename from train/160_frames/sprite_2.png rename to train/spritesheet_160/frame_2.png diff --git a/train/160_frames/sprite_3.png b/train/spritesheet_160/frame_3.png similarity index 100% rename from train/160_frames/sprite_3.png rename to train/spritesheet_160/frame_3.png diff --git a/train/160_frames/sprite_4.png b/train/spritesheet_160/frame_4.png similarity index 100% rename from train/160_frames/sprite_4.png rename to train/spritesheet_160/frame_4.png diff --git a/train/160_frames/sprite_5.png b/train/spritesheet_160/frame_5.png similarity index 100% rename from train/160_frames/sprite_5.png rename to train/spritesheet_160/frame_5.png diff --git a/train/160_frames/sprite_6.png b/train/spritesheet_160/frame_6.png similarity index 100% rename from train/160_frames/sprite_6.png rename to train/spritesheet_160/frame_6.png diff --git a/train/160_frames/sprite_7.png b/train/spritesheet_160/frame_7.png similarity index 100% rename from train/160_frames/sprite_7.png rename to train/spritesheet_160/frame_7.png diff --git a/train/160_frames/sprite_8.png b/train/spritesheet_160/frame_8.png similarity index 100% rename from train/160_frames/sprite_8.png rename to train/spritesheet_160/frame_8.png diff --git a/train/161_frames/sprite_0.png b/train/spritesheet_161/frame_0.png similarity index 100% rename from train/161_frames/sprite_0.png rename to train/spritesheet_161/frame_0.png diff --git a/train/161_frames/sprite_1.png b/train/spritesheet_161/frame_1.png similarity index 100% rename from train/161_frames/sprite_1.png rename to train/spritesheet_161/frame_1.png diff --git a/train/161_frames/sprite_2.png b/train/spritesheet_161/frame_2.png similarity index 100% rename from train/161_frames/sprite_2.png rename to train/spritesheet_161/frame_2.png diff --git a/train/161_frames/sprite_3.png b/train/spritesheet_161/frame_3.png similarity index 100% rename from train/161_frames/sprite_3.png rename to train/spritesheet_161/frame_3.png diff --git a/train/161_frames/sprite_4.png b/train/spritesheet_161/frame_4.png similarity index 100% rename from train/161_frames/sprite_4.png rename to train/spritesheet_161/frame_4.png diff --git a/train/161_frames/sprite_5.png b/train/spritesheet_161/frame_5.png similarity index 100% rename from train/161_frames/sprite_5.png rename to train/spritesheet_161/frame_5.png diff --git a/train/161_frames/sprite_6.png b/train/spritesheet_161/frame_6.png similarity index 100% rename from train/161_frames/sprite_6.png rename to train/spritesheet_161/frame_6.png diff --git a/train/161_frames/sprite_7.png b/train/spritesheet_161/frame_7.png similarity index 100% rename from train/161_frames/sprite_7.png rename to train/spritesheet_161/frame_7.png diff --git a/train/161_frames/sprite_8.png b/train/spritesheet_161/frame_8.png similarity index 100% rename from train/161_frames/sprite_8.png rename to train/spritesheet_161/frame_8.png diff --git a/train/162_frames/sprite_0.png b/train/spritesheet_162/frame_0.png similarity index 100% rename from train/162_frames/sprite_0.png rename to train/spritesheet_162/frame_0.png diff --git a/train/162_frames/sprite_1.png b/train/spritesheet_162/frame_1.png similarity index 100% rename from train/162_frames/sprite_1.png rename to train/spritesheet_162/frame_1.png diff --git a/train/162_frames/sprite_2.png b/train/spritesheet_162/frame_2.png similarity index 100% rename from train/162_frames/sprite_2.png rename to train/spritesheet_162/frame_2.png diff --git a/train/162_frames/sprite_3.png b/train/spritesheet_162/frame_3.png similarity index 100% rename from train/162_frames/sprite_3.png rename to train/spritesheet_162/frame_3.png diff --git a/train/163_frames/sprite_0.png b/train/spritesheet_163/frame_0.png similarity index 100% rename from train/163_frames/sprite_0.png rename to train/spritesheet_163/frame_0.png diff --git a/train/163_frames/sprite_1.png b/train/spritesheet_163/frame_1.png similarity index 100% rename from train/163_frames/sprite_1.png rename to train/spritesheet_163/frame_1.png diff --git a/train/163_frames/sprite_2.png b/train/spritesheet_163/frame_2.png similarity index 100% rename from train/163_frames/sprite_2.png rename to train/spritesheet_163/frame_2.png diff --git a/train/163_frames/sprite_3.png b/train/spritesheet_163/frame_3.png similarity index 100% rename from train/163_frames/sprite_3.png rename to train/spritesheet_163/frame_3.png diff --git a/train/163_frames/sprite_4.png b/train/spritesheet_163/frame_4.png similarity index 100% rename from train/163_frames/sprite_4.png rename to train/spritesheet_163/frame_4.png diff --git a/train/163_frames/sprite_5.png b/train/spritesheet_163/frame_5.png similarity index 100% rename from train/163_frames/sprite_5.png rename to train/spritesheet_163/frame_5.png diff --git a/train/163_frames/sprite_6.png b/train/spritesheet_163/frame_6.png similarity index 100% rename from train/163_frames/sprite_6.png rename to train/spritesheet_163/frame_6.png diff --git a/train/163_frames/sprite_7.png b/train/spritesheet_163/frame_7.png similarity index 100% rename from train/163_frames/sprite_7.png rename to train/spritesheet_163/frame_7.png diff --git a/train/163_frames/sprite_8.png b/train/spritesheet_163/frame_8.png similarity index 100% rename from train/163_frames/sprite_8.png rename to train/spritesheet_163/frame_8.png diff --git a/train/163_frames/sprite_9.png b/train/spritesheet_163/frame_9.png similarity index 100% rename from train/163_frames/sprite_9.png rename to train/spritesheet_163/frame_9.png diff --git a/train/164_frames/sprite_0.png b/train/spritesheet_164/frame_0.png similarity index 100% rename from train/164_frames/sprite_0.png rename to train/spritesheet_164/frame_0.png diff --git a/train/164_frames/sprite_1.png b/train/spritesheet_164/frame_1.png similarity index 100% rename from train/164_frames/sprite_1.png rename to train/spritesheet_164/frame_1.png diff --git a/train/164_frames/sprite_2.png b/train/spritesheet_164/frame_2.png similarity index 100% rename from train/164_frames/sprite_2.png rename to train/spritesheet_164/frame_2.png diff --git a/train/164_frames/sprite_3.png b/train/spritesheet_164/frame_3.png similarity index 100% rename from train/164_frames/sprite_3.png rename to train/spritesheet_164/frame_3.png diff --git a/train/164_frames/sprite_4.png b/train/spritesheet_164/frame_4.png similarity index 100% rename from train/164_frames/sprite_4.png rename to train/spritesheet_164/frame_4.png diff --git a/train/164_frames/sprite_5.png b/train/spritesheet_164/frame_5.png similarity index 100% rename from train/164_frames/sprite_5.png rename to train/spritesheet_164/frame_5.png diff --git a/train/164_frames/sprite_6.png b/train/spritesheet_164/frame_6.png similarity index 100% rename from train/164_frames/sprite_6.png rename to train/spritesheet_164/frame_6.png diff --git a/train/164_frames/sprite_7.png b/train/spritesheet_164/frame_7.png similarity index 100% rename from train/164_frames/sprite_7.png rename to train/spritesheet_164/frame_7.png diff --git a/train/164_frames/sprite_8.png b/train/spritesheet_164/frame_8.png similarity index 100% rename from train/164_frames/sprite_8.png rename to train/spritesheet_164/frame_8.png diff --git a/train/164_frames/sprite_9.png b/train/spritesheet_164/frame_9.png similarity index 100% rename from train/164_frames/sprite_9.png rename to train/spritesheet_164/frame_9.png diff --git a/train/169_frames/sprite_0.png b/train/spritesheet_169/frame_0.png similarity index 100% rename from train/169_frames/sprite_0.png rename to train/spritesheet_169/frame_0.png diff --git a/train/169_frames/sprite_1.png b/train/spritesheet_169/frame_1.png similarity index 100% rename from train/169_frames/sprite_1.png rename to train/spritesheet_169/frame_1.png diff --git a/train/169_frames/sprite_10.png b/train/spritesheet_169/frame_10.png similarity index 100% rename from train/169_frames/sprite_10.png rename to train/spritesheet_169/frame_10.png diff --git a/train/169_frames/sprite_11.png b/train/spritesheet_169/frame_11.png similarity index 100% rename from train/169_frames/sprite_11.png rename to train/spritesheet_169/frame_11.png diff --git a/train/169_frames/sprite_12.png b/train/spritesheet_169/frame_12.png similarity index 100% rename from train/169_frames/sprite_12.png rename to train/spritesheet_169/frame_12.png diff --git a/train/169_frames/sprite_13.png b/train/spritesheet_169/frame_13.png similarity index 100% rename from train/169_frames/sprite_13.png rename to train/spritesheet_169/frame_13.png diff --git a/train/169_frames/sprite_14.png b/train/spritesheet_169/frame_14.png similarity index 100% rename from train/169_frames/sprite_14.png rename to train/spritesheet_169/frame_14.png diff --git a/train/169_frames/sprite_15.png b/train/spritesheet_169/frame_15.png similarity index 100% rename from train/169_frames/sprite_15.png rename to train/spritesheet_169/frame_15.png diff --git a/train/169_frames/sprite_16.png b/train/spritesheet_169/frame_16.png similarity index 100% rename from train/169_frames/sprite_16.png rename to train/spritesheet_169/frame_16.png diff --git a/train/169_frames/sprite_17.png b/train/spritesheet_169/frame_17.png similarity index 100% rename from train/169_frames/sprite_17.png rename to train/spritesheet_169/frame_17.png diff --git a/train/169_frames/sprite_18.png b/train/spritesheet_169/frame_18.png similarity index 100% rename from train/169_frames/sprite_18.png rename to train/spritesheet_169/frame_18.png diff --git a/train/169_frames/sprite_19.png b/train/spritesheet_169/frame_19.png similarity index 100% rename from train/169_frames/sprite_19.png rename to train/spritesheet_169/frame_19.png diff --git a/train/169_frames/sprite_2.png b/train/spritesheet_169/frame_2.png similarity index 100% rename from train/169_frames/sprite_2.png rename to train/spritesheet_169/frame_2.png diff --git a/train/169_frames/sprite_20.png b/train/spritesheet_169/frame_20.png similarity index 100% rename from train/169_frames/sprite_20.png rename to train/spritesheet_169/frame_20.png diff --git a/train/169_frames/sprite_21.png b/train/spritesheet_169/frame_21.png similarity index 100% rename from train/169_frames/sprite_21.png rename to train/spritesheet_169/frame_21.png diff --git a/train/169_frames/sprite_22.png b/train/spritesheet_169/frame_22.png similarity index 100% rename from train/169_frames/sprite_22.png rename to train/spritesheet_169/frame_22.png diff --git a/train/169_frames/sprite_23.png b/train/spritesheet_169/frame_23.png similarity index 100% rename from train/169_frames/sprite_23.png rename to train/spritesheet_169/frame_23.png diff --git a/train/169_frames/sprite_24.png b/train/spritesheet_169/frame_24.png similarity index 100% rename from train/169_frames/sprite_24.png rename to train/spritesheet_169/frame_24.png diff --git a/train/169_frames/sprite_25.png b/train/spritesheet_169/frame_25.png similarity index 100% rename from train/169_frames/sprite_25.png rename to train/spritesheet_169/frame_25.png diff --git a/train/169_frames/sprite_26.png b/train/spritesheet_169/frame_26.png similarity index 100% rename from train/169_frames/sprite_26.png rename to train/spritesheet_169/frame_26.png diff --git a/train/169_frames/sprite_27.png b/train/spritesheet_169/frame_27.png similarity index 100% rename from train/169_frames/sprite_27.png rename to train/spritesheet_169/frame_27.png diff --git a/train/169_frames/sprite_28.png b/train/spritesheet_169/frame_28.png similarity index 100% rename from train/169_frames/sprite_28.png rename to train/spritesheet_169/frame_28.png diff --git a/train/169_frames/sprite_29.png b/train/spritesheet_169/frame_29.png similarity index 100% rename from train/169_frames/sprite_29.png rename to train/spritesheet_169/frame_29.png diff --git a/train/169_frames/sprite_3.png b/train/spritesheet_169/frame_3.png similarity index 100% rename from train/169_frames/sprite_3.png rename to train/spritesheet_169/frame_3.png diff --git a/train/169_frames/sprite_30.png b/train/spritesheet_169/frame_30.png similarity index 100% rename from train/169_frames/sprite_30.png rename to train/spritesheet_169/frame_30.png diff --git a/train/169_frames/sprite_31.png b/train/spritesheet_169/frame_31.png similarity index 100% rename from train/169_frames/sprite_31.png rename to train/spritesheet_169/frame_31.png diff --git a/train/169_frames/sprite_32.png b/train/spritesheet_169/frame_32.png similarity index 100% rename from train/169_frames/sprite_32.png rename to train/spritesheet_169/frame_32.png diff --git a/train/169_frames/sprite_33.png b/train/spritesheet_169/frame_33.png similarity index 100% rename from train/169_frames/sprite_33.png rename to train/spritesheet_169/frame_33.png diff --git a/train/169_frames/sprite_34.png b/train/spritesheet_169/frame_34.png similarity index 100% rename from train/169_frames/sprite_34.png rename to train/spritesheet_169/frame_34.png diff --git a/train/169_frames/sprite_35.png b/train/spritesheet_169/frame_35.png similarity index 100% rename from train/169_frames/sprite_35.png rename to train/spritesheet_169/frame_35.png diff --git a/train/169_frames/sprite_36.png b/train/spritesheet_169/frame_36.png similarity index 100% rename from train/169_frames/sprite_36.png rename to train/spritesheet_169/frame_36.png diff --git a/train/169_frames/sprite_37.png b/train/spritesheet_169/frame_37.png similarity index 100% rename from train/169_frames/sprite_37.png rename to train/spritesheet_169/frame_37.png diff --git a/train/169_frames/sprite_38.png b/train/spritesheet_169/frame_38.png similarity index 100% rename from train/169_frames/sprite_38.png rename to train/spritesheet_169/frame_38.png diff --git a/train/169_frames/sprite_39.png b/train/spritesheet_169/frame_39.png similarity index 100% rename from train/169_frames/sprite_39.png rename to train/spritesheet_169/frame_39.png diff --git a/train/169_frames/sprite_4.png b/train/spritesheet_169/frame_4.png similarity index 100% rename from train/169_frames/sprite_4.png rename to train/spritesheet_169/frame_4.png diff --git a/train/169_frames/sprite_40.png b/train/spritesheet_169/frame_40.png similarity index 100% rename from train/169_frames/sprite_40.png rename to train/spritesheet_169/frame_40.png diff --git a/train/169_frames/sprite_41.png b/train/spritesheet_169/frame_41.png similarity index 100% rename from train/169_frames/sprite_41.png rename to train/spritesheet_169/frame_41.png diff --git a/train/169_frames/sprite_42.png b/train/spritesheet_169/frame_42.png similarity index 100% rename from train/169_frames/sprite_42.png rename to train/spritesheet_169/frame_42.png diff --git a/train/169_frames/sprite_43.png b/train/spritesheet_169/frame_43.png similarity index 100% rename from train/169_frames/sprite_43.png rename to train/spritesheet_169/frame_43.png diff --git a/train/169_frames/sprite_44.png b/train/spritesheet_169/frame_44.png similarity index 100% rename from train/169_frames/sprite_44.png rename to train/spritesheet_169/frame_44.png diff --git a/train/169_frames/sprite_45.png b/train/spritesheet_169/frame_45.png similarity index 100% rename from train/169_frames/sprite_45.png rename to train/spritesheet_169/frame_45.png diff --git a/train/169_frames/sprite_46.png b/train/spritesheet_169/frame_46.png similarity index 100% rename from train/169_frames/sprite_46.png rename to train/spritesheet_169/frame_46.png diff --git a/train/169_frames/sprite_47.png b/train/spritesheet_169/frame_47.png similarity index 100% rename from train/169_frames/sprite_47.png rename to train/spritesheet_169/frame_47.png diff --git a/train/169_frames/sprite_48.png b/train/spritesheet_169/frame_48.png similarity index 100% rename from train/169_frames/sprite_48.png rename to train/spritesheet_169/frame_48.png diff --git a/train/169_frames/sprite_49.png b/train/spritesheet_169/frame_49.png similarity index 100% rename from train/169_frames/sprite_49.png rename to train/spritesheet_169/frame_49.png diff --git a/train/169_frames/sprite_5.png b/train/spritesheet_169/frame_5.png similarity index 100% rename from train/169_frames/sprite_5.png rename to train/spritesheet_169/frame_5.png diff --git a/train/169_frames/sprite_50.png b/train/spritesheet_169/frame_50.png similarity index 100% rename from train/169_frames/sprite_50.png rename to train/spritesheet_169/frame_50.png diff --git a/train/169_frames/sprite_51.png b/train/spritesheet_169/frame_51.png similarity index 100% rename from train/169_frames/sprite_51.png rename to train/spritesheet_169/frame_51.png diff --git a/train/169_frames/sprite_52.png b/train/spritesheet_169/frame_52.png similarity index 100% rename from train/169_frames/sprite_52.png rename to train/spritesheet_169/frame_52.png diff --git a/train/169_frames/sprite_53.png b/train/spritesheet_169/frame_53.png similarity index 100% rename from train/169_frames/sprite_53.png rename to train/spritesheet_169/frame_53.png diff --git a/train/169_frames/sprite_54.png b/train/spritesheet_169/frame_54.png similarity index 100% rename from train/169_frames/sprite_54.png rename to train/spritesheet_169/frame_54.png diff --git a/train/169_frames/sprite_55.png b/train/spritesheet_169/frame_55.png similarity index 100% rename from train/169_frames/sprite_55.png rename to train/spritesheet_169/frame_55.png diff --git a/train/169_frames/sprite_56.png b/train/spritesheet_169/frame_56.png similarity index 100% rename from train/169_frames/sprite_56.png rename to train/spritesheet_169/frame_56.png diff --git a/train/169_frames/sprite_57.png b/train/spritesheet_169/frame_57.png similarity index 100% rename from train/169_frames/sprite_57.png rename to train/spritesheet_169/frame_57.png diff --git a/train/169_frames/sprite_58.png b/train/spritesheet_169/frame_58.png similarity index 100% rename from train/169_frames/sprite_58.png rename to train/spritesheet_169/frame_58.png diff --git a/train/169_frames/sprite_59.png b/train/spritesheet_169/frame_59.png similarity index 100% rename from train/169_frames/sprite_59.png rename to train/spritesheet_169/frame_59.png diff --git a/train/169_frames/sprite_6.png b/train/spritesheet_169/frame_6.png similarity index 100% rename from train/169_frames/sprite_6.png rename to train/spritesheet_169/frame_6.png diff --git a/train/169_frames/sprite_60.png b/train/spritesheet_169/frame_60.png similarity index 100% rename from train/169_frames/sprite_60.png rename to train/spritesheet_169/frame_60.png diff --git a/train/169_frames/sprite_61.png b/train/spritesheet_169/frame_61.png similarity index 100% rename from train/169_frames/sprite_61.png rename to train/spritesheet_169/frame_61.png diff --git a/train/169_frames/sprite_62.png b/train/spritesheet_169/frame_62.png similarity index 100% rename from train/169_frames/sprite_62.png rename to train/spritesheet_169/frame_62.png diff --git a/train/169_frames/sprite_63.png b/train/spritesheet_169/frame_63.png similarity index 100% rename from train/169_frames/sprite_63.png rename to train/spritesheet_169/frame_63.png diff --git a/train/169_frames/sprite_64.png b/train/spritesheet_169/frame_64.png similarity index 100% rename from train/169_frames/sprite_64.png rename to train/spritesheet_169/frame_64.png diff --git a/train/169_frames/sprite_65.png b/train/spritesheet_169/frame_65.png similarity index 100% rename from train/169_frames/sprite_65.png rename to train/spritesheet_169/frame_65.png diff --git a/train/169_frames/sprite_66.png b/train/spritesheet_169/frame_66.png similarity index 100% rename from train/169_frames/sprite_66.png rename to train/spritesheet_169/frame_66.png diff --git a/train/169_frames/sprite_67.png b/train/spritesheet_169/frame_67.png similarity index 100% rename from train/169_frames/sprite_67.png rename to train/spritesheet_169/frame_67.png diff --git a/train/169_frames/sprite_68.png b/train/spritesheet_169/frame_68.png similarity index 100% rename from train/169_frames/sprite_68.png rename to train/spritesheet_169/frame_68.png diff --git a/train/169_frames/sprite_69.png b/train/spritesheet_169/frame_69.png similarity index 100% rename from train/169_frames/sprite_69.png rename to train/spritesheet_169/frame_69.png diff --git a/train/169_frames/sprite_7.png b/train/spritesheet_169/frame_7.png similarity index 100% rename from train/169_frames/sprite_7.png rename to train/spritesheet_169/frame_7.png diff --git a/train/169_frames/sprite_70.png b/train/spritesheet_169/frame_70.png similarity index 100% rename from train/169_frames/sprite_70.png rename to train/spritesheet_169/frame_70.png diff --git a/train/169_frames/sprite_71.png b/train/spritesheet_169/frame_71.png similarity index 100% rename from train/169_frames/sprite_71.png rename to train/spritesheet_169/frame_71.png diff --git a/train/169_frames/sprite_72.png b/train/spritesheet_169/frame_72.png similarity index 100% rename from train/169_frames/sprite_72.png rename to train/spritesheet_169/frame_72.png diff --git a/train/169_frames/sprite_73.png b/train/spritesheet_169/frame_73.png similarity index 100% rename from train/169_frames/sprite_73.png rename to train/spritesheet_169/frame_73.png diff --git a/train/169_frames/sprite_74.png b/train/spritesheet_169/frame_74.png similarity index 100% rename from train/169_frames/sprite_74.png rename to train/spritesheet_169/frame_74.png diff --git a/train/169_frames/sprite_75.png b/train/spritesheet_169/frame_75.png similarity index 100% rename from train/169_frames/sprite_75.png rename to train/spritesheet_169/frame_75.png diff --git a/train/169_frames/sprite_76.png b/train/spritesheet_169/frame_76.png similarity index 100% rename from train/169_frames/sprite_76.png rename to train/spritesheet_169/frame_76.png diff --git a/train/169_frames/sprite_77.png b/train/spritesheet_169/frame_77.png similarity index 100% rename from train/169_frames/sprite_77.png rename to train/spritesheet_169/frame_77.png diff --git a/train/169_frames/sprite_78.png b/train/spritesheet_169/frame_78.png similarity index 100% rename from train/169_frames/sprite_78.png rename to train/spritesheet_169/frame_78.png diff --git a/train/169_frames/sprite_79.png b/train/spritesheet_169/frame_79.png similarity index 100% rename from train/169_frames/sprite_79.png rename to train/spritesheet_169/frame_79.png diff --git a/train/169_frames/sprite_8.png b/train/spritesheet_169/frame_8.png similarity index 100% rename from train/169_frames/sprite_8.png rename to train/spritesheet_169/frame_8.png diff --git a/train/169_frames/sprite_80.png b/train/spritesheet_169/frame_80.png similarity index 100% rename from train/169_frames/sprite_80.png rename to train/spritesheet_169/frame_80.png diff --git a/train/169_frames/sprite_9.png b/train/spritesheet_169/frame_9.png similarity index 100% rename from train/169_frames/sprite_9.png rename to train/spritesheet_169/frame_9.png diff --git a/train/17_frames/sprite_0.png b/train/spritesheet_17/frame_0.png similarity index 100% rename from train/17_frames/sprite_0.png rename to train/spritesheet_17/frame_0.png diff --git a/train/17_frames/sprite_1.png b/train/spritesheet_17/frame_1.png similarity index 100% rename from train/17_frames/sprite_1.png rename to train/spritesheet_17/frame_1.png diff --git a/train/17_frames/sprite_2.png b/train/spritesheet_17/frame_2.png similarity index 100% rename from train/17_frames/sprite_2.png rename to train/spritesheet_17/frame_2.png diff --git a/train/17_frames/sprite_3.png b/train/spritesheet_17/frame_3.png similarity index 100% rename from train/17_frames/sprite_3.png rename to train/spritesheet_17/frame_3.png diff --git a/train/17_frames/sprite_4.png b/train/spritesheet_17/frame_4.png similarity index 100% rename from train/17_frames/sprite_4.png rename to train/spritesheet_17/frame_4.png diff --git a/train/17_frames/sprite_5.png b/train/spritesheet_17/frame_5.png similarity index 100% rename from train/17_frames/sprite_5.png rename to train/spritesheet_17/frame_5.png diff --git a/train/17_frames/sprite_6.png b/train/spritesheet_17/frame_6.png similarity index 100% rename from train/17_frames/sprite_6.png rename to train/spritesheet_17/frame_6.png diff --git a/train/17_frames/sprite_7.png b/train/spritesheet_17/frame_7.png similarity index 100% rename from train/17_frames/sprite_7.png rename to train/spritesheet_17/frame_7.png diff --git a/train/18_frames/sprite_0.png b/train/spritesheet_18/frame_0.png similarity index 100% rename from train/18_frames/sprite_0.png rename to train/spritesheet_18/frame_0.png diff --git a/train/18_frames/sprite_1.png b/train/spritesheet_18/frame_1.png similarity index 100% rename from train/18_frames/sprite_1.png rename to train/spritesheet_18/frame_1.png diff --git a/train/18_frames/sprite_10.png b/train/spritesheet_18/frame_10.png similarity index 100% rename from train/18_frames/sprite_10.png rename to train/spritesheet_18/frame_10.png diff --git a/train/18_frames/sprite_11.png b/train/spritesheet_18/frame_11.png similarity index 100% rename from train/18_frames/sprite_11.png rename to train/spritesheet_18/frame_11.png diff --git a/train/18_frames/sprite_12.png b/train/spritesheet_18/frame_12.png similarity index 100% rename from train/18_frames/sprite_12.png rename to train/spritesheet_18/frame_12.png diff --git a/train/18_frames/sprite_13.png b/train/spritesheet_18/frame_13.png similarity index 100% rename from train/18_frames/sprite_13.png rename to train/spritesheet_18/frame_13.png diff --git a/train/18_frames/sprite_14.png b/train/spritesheet_18/frame_14.png similarity index 100% rename from train/18_frames/sprite_14.png rename to train/spritesheet_18/frame_14.png diff --git a/train/18_frames/sprite_15.png b/train/spritesheet_18/frame_15.png similarity index 100% rename from train/18_frames/sprite_15.png rename to train/spritesheet_18/frame_15.png diff --git a/train/18_frames/sprite_16.png b/train/spritesheet_18/frame_16.png similarity index 100% rename from train/18_frames/sprite_16.png rename to train/spritesheet_18/frame_16.png diff --git a/train/18_frames/sprite_17.png b/train/spritesheet_18/frame_17.png similarity index 100% rename from train/18_frames/sprite_17.png rename to train/spritesheet_18/frame_17.png diff --git a/train/18_frames/sprite_2.png b/train/spritesheet_18/frame_2.png similarity index 100% rename from train/18_frames/sprite_2.png rename to train/spritesheet_18/frame_2.png diff --git a/train/18_frames/sprite_3.png b/train/spritesheet_18/frame_3.png similarity index 100% rename from train/18_frames/sprite_3.png rename to train/spritesheet_18/frame_3.png diff --git a/train/18_frames/sprite_4.png b/train/spritesheet_18/frame_4.png similarity index 100% rename from train/18_frames/sprite_4.png rename to train/spritesheet_18/frame_4.png diff --git a/train/18_frames/sprite_5.png b/train/spritesheet_18/frame_5.png similarity index 100% rename from train/18_frames/sprite_5.png rename to train/spritesheet_18/frame_5.png diff --git a/train/18_frames/sprite_6.png b/train/spritesheet_18/frame_6.png similarity index 100% rename from train/18_frames/sprite_6.png rename to train/spritesheet_18/frame_6.png diff --git a/train/18_frames/sprite_7.png b/train/spritesheet_18/frame_7.png similarity index 100% rename from train/18_frames/sprite_7.png rename to train/spritesheet_18/frame_7.png diff --git a/train/18_frames/sprite_8.png b/train/spritesheet_18/frame_8.png similarity index 100% rename from train/18_frames/sprite_8.png rename to train/spritesheet_18/frame_8.png diff --git a/train/18_frames/sprite_9.png b/train/spritesheet_18/frame_9.png similarity index 100% rename from train/18_frames/sprite_9.png rename to train/spritesheet_18/frame_9.png diff --git a/train/19_frames/sprite_0.png b/train/spritesheet_19/frame_0.png similarity index 100% rename from train/19_frames/sprite_0.png rename to train/spritesheet_19/frame_0.png diff --git a/train/19_frames/sprite_1.png b/train/spritesheet_19/frame_1.png similarity index 100% rename from train/19_frames/sprite_1.png rename to train/spritesheet_19/frame_1.png diff --git a/train/19_frames/sprite_2.png b/train/spritesheet_19/frame_2.png similarity index 100% rename from train/19_frames/sprite_2.png rename to train/spritesheet_19/frame_2.png diff --git a/train/19_frames/sprite_3.png b/train/spritesheet_19/frame_3.png similarity index 100% rename from train/19_frames/sprite_3.png rename to train/spritesheet_19/frame_3.png diff --git a/train/19_frames/sprite_4.png b/train/spritesheet_19/frame_4.png similarity index 100% rename from train/19_frames/sprite_4.png rename to train/spritesheet_19/frame_4.png diff --git a/train/19_frames/sprite_5.png b/train/spritesheet_19/frame_5.png similarity index 100% rename from train/19_frames/sprite_5.png rename to train/spritesheet_19/frame_5.png diff --git a/train/19_frames/sprite_6.png b/train/spritesheet_19/frame_6.png similarity index 100% rename from train/19_frames/sprite_6.png rename to train/spritesheet_19/frame_6.png diff --git a/train/19_frames/sprite_7.png b/train/spritesheet_19/frame_7.png similarity index 100% rename from train/19_frames/sprite_7.png rename to train/spritesheet_19/frame_7.png diff --git a/train/spritesheet_194/frame_0.png b/train/spritesheet_194/frame_0.png new file mode 100644 index 0000000000000000000000000000000000000000..cb32796fb41ce7f6b139c1d868ea055a42f6cc5d --- /dev/null +++ b/train/spritesheet_194/frame_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ed9ead40e84e47d75651f741206ac3ef3ba7c7119678e2ac16f23ff699fb360 +size 3472 diff --git a/train/spritesheet_194/frame_1.png b/train/spritesheet_194/frame_1.png new file mode 100644 index 0000000000000000000000000000000000000000..3caf5140843a66393bcac18dd9681c26b03255a9 --- /dev/null +++ b/train/spritesheet_194/frame_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8bb2a6457a297c2437f70dee0100bd76e79ecbc9da960cad4added643432e8 +size 3451 diff --git a/train/37_frames/sprite_2.png b/train/spritesheet_194/frame_2.png similarity index 100% rename from train/37_frames/sprite_2.png rename to train/spritesheet_194/frame_2.png diff --git a/train/37_frames/sprite_3.png b/train/spritesheet_194/frame_3.png similarity index 100% rename from train/37_frames/sprite_3.png rename to train/spritesheet_194/frame_3.png diff --git a/train/spritesheet_195/frame_0.png b/train/spritesheet_195/frame_0.png new file mode 100644 index 0000000000000000000000000000000000000000..c2624ba7449932a13a7ea30afebba30cfc98c265 --- /dev/null +++ b/train/spritesheet_195/frame_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daacf1a2985b3256c22b5c9f9be77cfc5305414aaf4f869f44d966c682f2c472 +size 2225 diff --git a/train/spritesheet_195/frame_1.png b/train/spritesheet_195/frame_1.png new file mode 100644 index 0000000000000000000000000000000000000000..aab9bb06b6a6feae2ad412b7e7ba4dc8eb7996ed --- /dev/null +++ b/train/spritesheet_195/frame_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd158dd2afd6bc707b1bb891e017d19e16d347fde608f7f6d1bffb56c4ac7f6a +size 2223 diff --git a/train/2_frames/sprite_12.png b/train/spritesheet_195/frame_10.png similarity index 100% rename from train/2_frames/sprite_12.png rename to train/spritesheet_195/frame_10.png diff --git a/train/2_frames/sprite_13.png b/train/spritesheet_195/frame_11.png similarity index 100% rename from train/2_frames/sprite_13.png rename to train/spritesheet_195/frame_11.png diff --git a/train/2_frames/sprite_14.png b/train/spritesheet_195/frame_12.png similarity index 100% rename from train/2_frames/sprite_14.png rename to train/spritesheet_195/frame_12.png diff --git a/train/2_frames/sprite_15.png b/train/spritesheet_195/frame_13.png similarity index 100% rename from train/2_frames/sprite_15.png rename to train/spritesheet_195/frame_13.png diff --git a/train/5_frames/sprite_10.png b/train/spritesheet_195/frame_14.png similarity index 100% rename from train/5_frames/sprite_10.png rename to train/spritesheet_195/frame_14.png diff --git a/train/5_frames/sprite_11.png b/train/spritesheet_195/frame_15.png similarity index 100% rename from train/5_frames/sprite_11.png rename to train/spritesheet_195/frame_15.png diff --git a/train/spritesheet_195/frame_2.png b/train/spritesheet_195/frame_2.png new file mode 100644 index 0000000000000000000000000000000000000000..1dbf3e6398ea2951903d514ef4f45a5537e4372c --- /dev/null +++ b/train/spritesheet_195/frame_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79aa9ce52c2faf588392d3c45811c2f066e2a8dd4ab346daf27c8ee3faf2397f +size 2233 diff --git a/train/spritesheet_195/frame_3.png b/train/spritesheet_195/frame_3.png new file mode 100644 index 0000000000000000000000000000000000000000..4ad954dbd40d582ff215616cbc37ca11c1b81573 --- /dev/null +++ b/train/spritesheet_195/frame_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53963162c8b237ef83f44ea47c452c177264a9a62ee891e0b951b8835ede4651 +size 2228 diff --git a/train/spritesheet_195/frame_4.png b/train/spritesheet_195/frame_4.png new file mode 100644 index 0000000000000000000000000000000000000000..d2f751778d9a8086a0394c4d1a8a2666db67aef7 --- /dev/null +++ b/train/spritesheet_195/frame_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:656deca1a25e06429f18b23c4a30f2331334e7ac4bb1a474efe9b85b412361d0 +size 2194 diff --git a/train/spritesheet_195/frame_5.png b/train/spritesheet_195/frame_5.png new file mode 100644 index 0000000000000000000000000000000000000000..59a6700ba949c9c3a6d1982bd404db205fa4493c --- /dev/null +++ b/train/spritesheet_195/frame_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38623aa9e6f9bf797432cb424fb0e1da9d864f13c863ce6e45cd68b636c06f3 +size 2164 diff --git a/train/spritesheet_195/frame_6.png b/train/spritesheet_195/frame_6.png new file mode 100644 index 0000000000000000000000000000000000000000..796f14cc8352901e1a6d1fb22f4446200ff1d9fe --- /dev/null +++ b/train/spritesheet_195/frame_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01919890a2e6b1b9c366de32c2f272c26069568b4ccaf6a59d3c2c468f452bad +size 2182 diff --git a/train/spritesheet_195/frame_7.png b/train/spritesheet_195/frame_7.png new file mode 100644 index 0000000000000000000000000000000000000000..5919190832d7bd03f19bc3b98d51081621def31f --- /dev/null +++ b/train/spritesheet_195/frame_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c87766696c9b52f44b27cae48018aae09517ec24e6ae56157205fd84cf42e53c +size 2202 diff --git a/train/spritesheet_195/frame_8.png b/train/spritesheet_195/frame_8.png new file mode 100644 index 0000000000000000000000000000000000000000..82f7c9f9294c2e203481ac89f15a7ebae0eb17bf --- /dev/null +++ b/train/spritesheet_195/frame_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39cab033459726345e5a0a8a14ab377e30380f4c938f714f783ad70c1d05b4d0 +size 2208 diff --git a/train/spritesheet_195/frame_9.png b/train/spritesheet_195/frame_9.png new file mode 100644 index 0000000000000000000000000000000000000000..c2624ba7449932a13a7ea30afebba30cfc98c265 --- /dev/null +++ b/train/spritesheet_195/frame_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daacf1a2985b3256c22b5c9f9be77cfc5305414aaf4f869f44d966c682f2c472 +size 2225 diff --git a/train/spritesheet_196/frame_0.png b/train/spritesheet_196/frame_0.png new file mode 100644 index 0000000000000000000000000000000000000000..eba4b585c4542baa629fdba77963c27d8f86996c --- /dev/null +++ b/train/spritesheet_196/frame_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59dd034e7866fe663c243125436d6753bf492894a81cf0eb89e51fe265f53e85 +size 3410 diff --git a/train/spritesheet_196/frame_1.png b/train/spritesheet_196/frame_1.png new file mode 100644 index 0000000000000000000000000000000000000000..e057ca932a69f3f63a140661ea946334f73f8a90 --- /dev/null +++ b/train/spritesheet_196/frame_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6120770ede9fc268c68a2cafbda8262df314a9f6fea94a24837adbf72782b950 +size 3380 diff --git a/train/73_frames/sprite_2.png b/train/spritesheet_196/frame_2.png similarity index 100% rename from train/73_frames/sprite_2.png rename to train/spritesheet_196/frame_2.png diff --git a/train/73_frames/sprite_3.png b/train/spritesheet_196/frame_3.png similarity index 100% rename from train/73_frames/sprite_3.png rename to train/spritesheet_196/frame_3.png diff --git a/train/spritesheet_197/frame_0.png b/train/spritesheet_197/frame_0.png new file mode 100644 index 0000000000000000000000000000000000000000..03d07e0c59ed684f99e5ca2ae83355c5f1ae866a --- /dev/null +++ b/train/spritesheet_197/frame_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97675790159ceeac06b54a8218ddf558086f86acdf1d616ec8cc000dec9231be +size 2524 diff --git a/train/spritesheet_197/frame_1.png b/train/spritesheet_197/frame_1.png new file mode 100644 index 0000000000000000000000000000000000000000..3e8311670dcaea6e0d311ee3006e643f4d79975c --- /dev/null +++ b/train/spritesheet_197/frame_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15908a0286995b1b937e14c1c13f7ffef6b792647aa7107539aafd48af008102 +size 2516 diff --git a/train/spritesheet_197/frame_2.png b/train/spritesheet_197/frame_2.png new file mode 100644 index 0000000000000000000000000000000000000000..12388af0e8b96adc1fd702894a66997da646ec6b --- /dev/null +++ b/train/spritesheet_197/frame_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71d267ab299b764d776a046bb07b734d5f6729f0936b83e2daf507cdcc5e2393 +size 2505 diff --git a/train/spritesheet_197/frame_3.png b/train/spritesheet_197/frame_3.png new file mode 100644 index 0000000000000000000000000000000000000000..2f5311f89d8906f8e485ce41899693ecb01917ad --- /dev/null +++ b/train/spritesheet_197/frame_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3bd2d97188fcf36ddcb0adad8ec8f29f05bbb8d8d0396ad157481ba54282764 +size 2403 diff --git a/train/spritesheet_197/frame_4.png b/train/spritesheet_197/frame_4.png new file mode 100644 index 0000000000000000000000000000000000000000..8118c75f0201fbdbe641cefed24fdc4cf87af224 --- /dev/null +++ b/train/spritesheet_197/frame_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe18a00a5bdd63d5dbc223885b4dca8556e08bb4f07d3e86f0c43d980d7caacb +size 2495 diff --git a/train/spritesheet_197/frame_5.png b/train/spritesheet_197/frame_5.png new file mode 100644 index 0000000000000000000000000000000000000000..a8af75adefbed77a3b91d8d66e44c56d0574d038 --- /dev/null +++ b/train/spritesheet_197/frame_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1033ee2f096c7986bf9c48d17611c9c4591e34bd4dcba3ffddf1c9f4f8e36a4 +size 2496 diff --git a/train/spritesheet_197/frame_6.png b/train/spritesheet_197/frame_6.png new file mode 100644 index 0000000000000000000000000000000000000000..157ddc58646fb0567bad0c42c8e7a658bd443280 --- /dev/null +++ b/train/spritesheet_197/frame_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68c7fe9c00a2b794dd65a19605f7379adf2ee023cdb03e40aadfc6ee195dc818 +size 2448 diff --git a/train/spritesheet_197/frame_7.png b/train/spritesheet_197/frame_7.png new file mode 100644 index 0000000000000000000000000000000000000000..629bbd8aa1164bfb4274782b126ac211bc1e5ae0 --- /dev/null +++ b/train/spritesheet_197/frame_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f74352684169b6c0962c6120ed6156d4d03b8dd31a1ad61c4faca87cb475952 +size 2452 diff --git a/train/spritesheet_197/frame_8.png b/train/spritesheet_197/frame_8.png new file mode 100644 index 0000000000000000000000000000000000000000..c01e84096a061400369033775081ba03b3a6c443 --- /dev/null +++ b/train/spritesheet_197/frame_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b5d77c96f07d5fed22628ec9a38bec1df1462deae34281cc032c02c5eab8a2 +size 1240 diff --git a/train/spritesheet_198/frame_0.png b/train/spritesheet_198/frame_0.png new file mode 100644 index 0000000000000000000000000000000000000000..50884188eaeed9c3bb3c5f3b4c268a24c4f8a266 --- /dev/null +++ b/train/spritesheet_198/frame_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51975f8901e3a669007ca8a4845a824685f1fc1bea1ed2444bc61f52fcb105ff +size 3478 diff --git a/train/spritesheet_198/frame_1.png b/train/spritesheet_198/frame_1.png new file mode 100644 index 0000000000000000000000000000000000000000..8f5f65e85cc063b2db7086e4ebdf5f65a4812854 --- /dev/null +++ b/train/spritesheet_198/frame_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:456e6b9f34885e29ac671371dc5a53014a0ab40e0e4a653fce398e355402d999 +size 3559 diff --git a/train/spritesheet_198/frame_2.png b/train/spritesheet_198/frame_2.png new file mode 100644 index 0000000000000000000000000000000000000000..20f9cebb7c8586e5f7b7cc3725065db274ed089a --- /dev/null +++ b/train/spritesheet_198/frame_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec7185aae12eaf05d1aa82fd8421dbce76496e83a41c5b10d307f5e064d52e5c +size 3569 diff --git a/train/74_frames/sprite_3.png b/train/spritesheet_198/frame_3.png similarity index 100% rename from train/74_frames/sprite_3.png rename to train/spritesheet_198/frame_3.png diff --git a/train/spritesheet_199/frame_0.png b/train/spritesheet_199/frame_0.png new file mode 100644 index 0000000000000000000000000000000000000000..3a13e8550a296dbbf8c4910a9c5ecdbf8f4c83cf --- /dev/null +++ b/train/spritesheet_199/frame_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d6642502470c59f1a0f1837f8fd602405877f185ec0e6b051128a05dabd1004 +size 2562 diff --git a/train/spritesheet_199/frame_1.png b/train/spritesheet_199/frame_1.png new file mode 100644 index 0000000000000000000000000000000000000000..c38f4c42858626122a9c8e630a31671d750f1130 --- /dev/null +++ b/train/spritesheet_199/frame_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6388f02ffef0f50cb06a9c7d624aab0fc3ccf220c0862f0809d0808d2a98b4f1 +size 2531 diff --git a/train/spritesheet_199/frame_2.png b/train/spritesheet_199/frame_2.png new file mode 100644 index 0000000000000000000000000000000000000000..8290c5d68e9d76d598968e0a032b783d59282876 --- /dev/null +++ b/train/spritesheet_199/frame_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b9c93ad03384bfd37eaed6a58fee2b70a34aa8932668d1baee2fa903c1b5fa0 +size 2596 diff --git a/train/spritesheet_199/frame_3.png b/train/spritesheet_199/frame_3.png new file mode 100644 index 0000000000000000000000000000000000000000..b28be13e0d78d25504427fc290dac6f67535e56e --- /dev/null +++ b/train/spritesheet_199/frame_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b351e802da994daec7f1aac7ab7835c863e07d590cf591835b0da572092d471c +size 3048 diff --git a/train/spritesheet_199/frame_4.png b/train/spritesheet_199/frame_4.png new file mode 100644 index 0000000000000000000000000000000000000000..d63e10bd2833b8eae80c739e894365950533e18f --- /dev/null +++ b/train/spritesheet_199/frame_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4aed16474bf9c8d6ba67027890d4128ea3216e1f3ac2dc0c5572449b9d12c85 +size 2587 diff --git a/train/spritesheet_199/frame_5.png b/train/spritesheet_199/frame_5.png new file mode 100644 index 0000000000000000000000000000000000000000..c01e84096a061400369033775081ba03b3a6c443 --- /dev/null +++ b/train/spritesheet_199/frame_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b5d77c96f07d5fed22628ec9a38bec1df1462deae34281cc032c02c5eab8a2 +size 1240 diff --git a/train/spritesheet_199/frame_6.png b/train/spritesheet_199/frame_6.png new file mode 100644 index 0000000000000000000000000000000000000000..c01e84096a061400369033775081ba03b3a6c443 --- /dev/null +++ b/train/spritesheet_199/frame_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b5d77c96f07d5fed22628ec9a38bec1df1462deae34281cc032c02c5eab8a2 +size 1240 diff --git a/train/spritesheet_199/frame_7.png b/train/spritesheet_199/frame_7.png new file mode 100644 index 0000000000000000000000000000000000000000..c01e84096a061400369033775081ba03b3a6c443 --- /dev/null +++ b/train/spritesheet_199/frame_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b5d77c96f07d5fed22628ec9a38bec1df1462deae34281cc032c02c5eab8a2 +size 1240 diff --git a/train/spritesheet_199/frame_8.png b/train/spritesheet_199/frame_8.png new file mode 100644 index 0000000000000000000000000000000000000000..c01e84096a061400369033775081ba03b3a6c443 --- /dev/null +++ b/train/spritesheet_199/frame_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b5d77c96f07d5fed22628ec9a38bec1df1462deae34281cc032c02c5eab8a2 +size 1240 diff --git a/train/2_frames/sprite_0.png b/train/spritesheet_2/frame_0.png similarity index 100% rename from train/2_frames/sprite_0.png rename to train/spritesheet_2/frame_0.png diff --git a/train/2_frames/sprite_1.png b/train/spritesheet_2/frame_1.png similarity index 100% rename from train/2_frames/sprite_1.png rename to train/spritesheet_2/frame_1.png diff --git a/train/2_frames/sprite_10.png b/train/spritesheet_2/frame_10.png similarity index 100% rename from train/2_frames/sprite_10.png rename to train/spritesheet_2/frame_10.png diff --git a/train/2_frames/sprite_11.png b/train/spritesheet_2/frame_11.png similarity index 100% rename from train/2_frames/sprite_11.png rename to train/spritesheet_2/frame_11.png diff --git a/train/5_frames/sprite_12.png b/train/spritesheet_2/frame_12.png similarity index 100% rename from train/5_frames/sprite_12.png rename to train/spritesheet_2/frame_12.png diff --git a/train/5_frames/sprite_13.png b/train/spritesheet_2/frame_13.png similarity index 100% rename from train/5_frames/sprite_13.png rename to train/spritesheet_2/frame_13.png diff --git a/train/5_frames/sprite_14.png b/train/spritesheet_2/frame_14.png similarity index 100% rename from train/5_frames/sprite_14.png rename to train/spritesheet_2/frame_14.png diff --git a/train/5_frames/sprite_15.png b/train/spritesheet_2/frame_15.png similarity index 100% rename from train/5_frames/sprite_15.png rename to train/spritesheet_2/frame_15.png diff --git a/train/2_frames/sprite_2.png b/train/spritesheet_2/frame_2.png similarity index 100% rename from train/2_frames/sprite_2.png rename to train/spritesheet_2/frame_2.png diff --git a/train/2_frames/sprite_3.png b/train/spritesheet_2/frame_3.png similarity index 100% rename from train/2_frames/sprite_3.png rename to train/spritesheet_2/frame_3.png diff --git a/train/2_frames/sprite_4.png b/train/spritesheet_2/frame_4.png similarity index 100% rename from train/2_frames/sprite_4.png rename to train/spritesheet_2/frame_4.png diff --git a/train/2_frames/sprite_5.png b/train/spritesheet_2/frame_5.png similarity index 100% rename from train/2_frames/sprite_5.png rename to train/spritesheet_2/frame_5.png diff --git a/train/2_frames/sprite_6.png b/train/spritesheet_2/frame_6.png similarity index 100% rename from train/2_frames/sprite_6.png rename to train/spritesheet_2/frame_6.png diff --git a/train/2_frames/sprite_7.png b/train/spritesheet_2/frame_7.png similarity index 100% rename from train/2_frames/sprite_7.png rename to train/spritesheet_2/frame_7.png diff --git a/train/2_frames/sprite_8.png b/train/spritesheet_2/frame_8.png similarity index 100% rename from train/2_frames/sprite_8.png rename to train/spritesheet_2/frame_8.png diff --git a/train/2_frames/sprite_9.png b/train/spritesheet_2/frame_9.png similarity index 100% rename from train/2_frames/sprite_9.png rename to train/spritesheet_2/frame_9.png diff --git a/train/20_frames/sprite_0.png b/train/spritesheet_20/frame_0.png similarity index 100% rename from train/20_frames/sprite_0.png rename to train/spritesheet_20/frame_0.png diff --git a/train/20_frames/sprite_1.png b/train/spritesheet_20/frame_1.png similarity index 100% rename from train/20_frames/sprite_1.png rename to train/spritesheet_20/frame_1.png diff --git a/train/20_frames/sprite_2.png b/train/spritesheet_20/frame_2.png similarity index 100% rename from train/20_frames/sprite_2.png rename to train/spritesheet_20/frame_2.png diff --git a/train/20_frames/sprite_3.png b/train/spritesheet_20/frame_3.png similarity index 100% rename from train/20_frames/sprite_3.png rename to train/spritesheet_20/frame_3.png diff --git a/train/20_frames/sprite_4.png b/train/spritesheet_20/frame_4.png similarity index 100% rename from train/20_frames/sprite_4.png rename to train/spritesheet_20/frame_4.png diff --git a/train/20_frames/sprite_5.png b/train/spritesheet_20/frame_5.png similarity index 100% rename from train/20_frames/sprite_5.png rename to train/spritesheet_20/frame_5.png diff --git a/train/20_frames/sprite_6.png b/train/spritesheet_20/frame_6.png similarity index 100% rename from train/20_frames/sprite_6.png rename to train/spritesheet_20/frame_6.png diff --git a/train/20_frames/sprite_7.png b/train/spritesheet_20/frame_7.png similarity index 100% rename from train/20_frames/sprite_7.png rename to train/spritesheet_20/frame_7.png diff --git a/train/spritesheet_200/frame_0.png b/train/spritesheet_200/frame_0.png new file mode 100644 index 0000000000000000000000000000000000000000..d63e10bd2833b8eae80c739e894365950533e18f --- /dev/null +++ b/train/spritesheet_200/frame_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4aed16474bf9c8d6ba67027890d4128ea3216e1f3ac2dc0c5572449b9d12c85 +size 2587 diff --git a/train/spritesheet_200/frame_1.png b/train/spritesheet_200/frame_1.png new file mode 100644 index 0000000000000000000000000000000000000000..8f0ad0a5a9f76c0a3870e91a707f1b919da96441 --- /dev/null +++ b/train/spritesheet_200/frame_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93916d40fdb9a132b1cecb944543189fb904a5c12a9ebb47c7f35d414c539387 +size 2575 diff --git a/train/spritesheet_200/frame_2.png b/train/spritesheet_200/frame_2.png new file mode 100644 index 0000000000000000000000000000000000000000..b09e90e3301df9ab76aabe6d1619761fcdd9bedc --- /dev/null +++ b/train/spritesheet_200/frame_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d7e1de42f5dec7bf812483e4fda01c4525a00d14ccd9cb892400d159d483dc +size 2579 diff --git a/train/spritesheet_200/frame_3.png b/train/spritesheet_200/frame_3.png new file mode 100644 index 0000000000000000000000000000000000000000..1bc4cacf68eebc1892469650c2e452e3989b532e --- /dev/null +++ b/train/spritesheet_200/frame_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdc69dfbf476b5d3a78ee4176ff7c2ed2b23fe86f1ace2b3d10c50915aa0cee0 +size 2855 diff --git a/train/spritesheet_200/frame_4.png b/train/spritesheet_200/frame_4.png new file mode 100644 index 0000000000000000000000000000000000000000..3fb35123b7709bddb64471586d9c1422b1ed4336 --- /dev/null +++ b/train/spritesheet_200/frame_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:442bc120f66108999bf50026f25cccf9107fd9c9802d17f63603391de3dd2232 +size 2352 diff --git a/train/spritesheet_200/frame_5.png b/train/spritesheet_200/frame_5.png new file mode 100644 index 0000000000000000000000000000000000000000..c01e84096a061400369033775081ba03b3a6c443 --- /dev/null +++ b/train/spritesheet_200/frame_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b5d77c96f07d5fed22628ec9a38bec1df1462deae34281cc032c02c5eab8a2 +size 1240 diff --git a/train/spritesheet_200/frame_6.png b/train/spritesheet_200/frame_6.png new file mode 100644 index 0000000000000000000000000000000000000000..c01e84096a061400369033775081ba03b3a6c443 --- /dev/null +++ b/train/spritesheet_200/frame_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b5d77c96f07d5fed22628ec9a38bec1df1462deae34281cc032c02c5eab8a2 +size 1240 diff --git a/train/spritesheet_200/frame_7.png b/train/spritesheet_200/frame_7.png new file mode 100644 index 0000000000000000000000000000000000000000..c01e84096a061400369033775081ba03b3a6c443 --- /dev/null +++ b/train/spritesheet_200/frame_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b5d77c96f07d5fed22628ec9a38bec1df1462deae34281cc032c02c5eab8a2 +size 1240 diff --git a/train/spritesheet_200/frame_8.png b/train/spritesheet_200/frame_8.png new file mode 100644 index 0000000000000000000000000000000000000000..c01e84096a061400369033775081ba03b3a6c443 --- /dev/null +++ b/train/spritesheet_200/frame_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b5d77c96f07d5fed22628ec9a38bec1df1462deae34281cc032c02c5eab8a2 +size 1240 diff --git a/train/21_frames/sprite_0.png b/train/spritesheet_21/frame_0.png similarity index 100% rename from train/21_frames/sprite_0.png rename to train/spritesheet_21/frame_0.png diff --git a/train/21_frames/sprite_1.png b/train/spritesheet_21/frame_1.png similarity index 100% rename from train/21_frames/sprite_1.png rename to train/spritesheet_21/frame_1.png diff --git a/train/21_frames/sprite_10.png b/train/spritesheet_21/frame_10.png similarity index 100% rename from train/21_frames/sprite_10.png rename to train/spritesheet_21/frame_10.png diff --git a/train/21_frames/sprite_11.png b/train/spritesheet_21/frame_11.png similarity index 100% rename from train/21_frames/sprite_11.png rename to train/spritesheet_21/frame_11.png diff --git a/train/21_frames/sprite_12.png b/train/spritesheet_21/frame_12.png similarity index 100% rename from train/21_frames/sprite_12.png rename to train/spritesheet_21/frame_12.png diff --git a/train/21_frames/sprite_13.png b/train/spritesheet_21/frame_13.png similarity index 100% rename from train/21_frames/sprite_13.png rename to train/spritesheet_21/frame_13.png diff --git a/train/21_frames/sprite_14.png b/train/spritesheet_21/frame_14.png similarity index 100% rename from train/21_frames/sprite_14.png rename to train/spritesheet_21/frame_14.png diff --git a/train/21_frames/sprite_15.png b/train/spritesheet_21/frame_15.png similarity index 100% rename from train/21_frames/sprite_15.png rename to train/spritesheet_21/frame_15.png diff --git a/train/21_frames/sprite_16.png b/train/spritesheet_21/frame_16.png similarity index 100% rename from train/21_frames/sprite_16.png rename to train/spritesheet_21/frame_16.png diff --git a/train/21_frames/sprite_17.png b/train/spritesheet_21/frame_17.png similarity index 100% rename from train/21_frames/sprite_17.png rename to train/spritesheet_21/frame_17.png diff --git a/train/21_frames/sprite_2.png b/train/spritesheet_21/frame_2.png similarity index 100% rename from train/21_frames/sprite_2.png rename to train/spritesheet_21/frame_2.png diff --git a/train/21_frames/sprite_3.png b/train/spritesheet_21/frame_3.png similarity index 100% rename from train/21_frames/sprite_3.png rename to train/spritesheet_21/frame_3.png diff --git a/train/21_frames/sprite_4.png b/train/spritesheet_21/frame_4.png similarity index 100% rename from train/21_frames/sprite_4.png rename to train/spritesheet_21/frame_4.png diff --git a/train/21_frames/sprite_5.png b/train/spritesheet_21/frame_5.png similarity index 100% rename from train/21_frames/sprite_5.png rename to train/spritesheet_21/frame_5.png diff --git a/train/21_frames/sprite_6.png b/train/spritesheet_21/frame_6.png similarity index 100% rename from train/21_frames/sprite_6.png rename to train/spritesheet_21/frame_6.png diff --git a/train/21_frames/sprite_7.png b/train/spritesheet_21/frame_7.png similarity index 100% rename from train/21_frames/sprite_7.png rename to train/spritesheet_21/frame_7.png diff --git a/train/21_frames/sprite_8.png b/train/spritesheet_21/frame_8.png similarity index 100% rename from train/21_frames/sprite_8.png rename to train/spritesheet_21/frame_8.png diff --git a/train/21_frames/sprite_9.png b/train/spritesheet_21/frame_9.png similarity index 100% rename from train/21_frames/sprite_9.png rename to train/spritesheet_21/frame_9.png diff --git a/train/22_frames/sprite_0.png b/train/spritesheet_22/frame_0.png similarity index 100% rename from train/22_frames/sprite_0.png rename to train/spritesheet_22/frame_0.png diff --git a/train/22_frames/sprite_1.png b/train/spritesheet_22/frame_1.png similarity index 100% rename from train/22_frames/sprite_1.png rename to train/spritesheet_22/frame_1.png diff --git a/train/22_frames/sprite_2.png b/train/spritesheet_22/frame_2.png similarity index 100% rename from train/22_frames/sprite_2.png rename to train/spritesheet_22/frame_2.png diff --git a/train/22_frames/sprite_3.png b/train/spritesheet_22/frame_3.png similarity index 100% rename from train/22_frames/sprite_3.png rename to train/spritesheet_22/frame_3.png diff --git a/train/22_frames/sprite_4.png b/train/spritesheet_22/frame_4.png similarity index 100% rename from train/22_frames/sprite_4.png rename to train/spritesheet_22/frame_4.png diff --git a/train/22_frames/sprite_5.png b/train/spritesheet_22/frame_5.png similarity index 100% rename from train/22_frames/sprite_5.png rename to train/spritesheet_22/frame_5.png diff --git a/train/23_frames/sprite_0.png b/train/spritesheet_23/frame_0.png similarity index 100% rename from train/23_frames/sprite_0.png rename to train/spritesheet_23/frame_0.png diff --git a/train/23_frames/sprite_1.png b/train/spritesheet_23/frame_1.png similarity index 100% rename from train/23_frames/sprite_1.png rename to train/spritesheet_23/frame_1.png diff --git a/train/23_frames/sprite_2.png b/train/spritesheet_23/frame_2.png similarity index 100% rename from train/23_frames/sprite_2.png rename to train/spritesheet_23/frame_2.png diff --git a/train/23_frames/sprite_3.png b/train/spritesheet_23/frame_3.png similarity index 100% rename from train/23_frames/sprite_3.png rename to train/spritesheet_23/frame_3.png diff --git a/train/23_frames/sprite_4.png b/train/spritesheet_23/frame_4.png similarity index 100% rename from train/23_frames/sprite_4.png rename to train/spritesheet_23/frame_4.png diff --git a/train/23_frames/sprite_5.png b/train/spritesheet_23/frame_5.png similarity index 100% rename from train/23_frames/sprite_5.png rename to train/spritesheet_23/frame_5.png diff --git a/train/24_frames/sprite_0.png b/train/spritesheet_24/frame_0.png similarity index 100% rename from train/24_frames/sprite_0.png rename to train/spritesheet_24/frame_0.png diff --git a/train/24_frames/sprite_1.png b/train/spritesheet_24/frame_1.png similarity index 100% rename from train/24_frames/sprite_1.png rename to train/spritesheet_24/frame_1.png diff --git a/train/24_frames/sprite_2.png b/train/spritesheet_24/frame_2.png similarity index 100% rename from train/24_frames/sprite_2.png rename to train/spritesheet_24/frame_2.png diff --git a/train/24_frames/sprite_3.png b/train/spritesheet_24/frame_3.png similarity index 100% rename from train/24_frames/sprite_3.png rename to train/spritesheet_24/frame_3.png diff --git a/train/24_frames/sprite_4.png b/train/spritesheet_24/frame_4.png similarity index 100% rename from train/24_frames/sprite_4.png rename to train/spritesheet_24/frame_4.png diff --git a/train/24_frames/sprite_5.png b/train/spritesheet_24/frame_5.png similarity index 100% rename from train/24_frames/sprite_5.png rename to train/spritesheet_24/frame_5.png diff --git a/train/25_frames/sprite_0.png b/train/spritesheet_25/frame_0.png similarity index 100% rename from train/25_frames/sprite_0.png rename to train/spritesheet_25/frame_0.png diff --git a/train/25_frames/sprite_1.png b/train/spritesheet_25/frame_1.png similarity index 100% rename from train/25_frames/sprite_1.png rename to train/spritesheet_25/frame_1.png diff --git a/train/25_frames/sprite_2.png b/train/spritesheet_25/frame_2.png similarity index 100% rename from train/25_frames/sprite_2.png rename to train/spritesheet_25/frame_2.png diff --git a/train/25_frames/sprite_3.png b/train/spritesheet_25/frame_3.png similarity index 100% rename from train/25_frames/sprite_3.png rename to train/spritesheet_25/frame_3.png diff --git a/train/25_frames/sprite_4.png b/train/spritesheet_25/frame_4.png similarity index 100% rename from train/25_frames/sprite_4.png rename to train/spritesheet_25/frame_4.png diff --git a/train/25_frames/sprite_5.png b/train/spritesheet_25/frame_5.png similarity index 100% rename from train/25_frames/sprite_5.png rename to train/spritesheet_25/frame_5.png diff --git a/train/26_frames/sprite_0.png b/train/spritesheet_26/frame_0.png similarity index 100% rename from train/26_frames/sprite_0.png rename to train/spritesheet_26/frame_0.png diff --git a/train/26_frames/sprite_1.png b/train/spritesheet_26/frame_1.png similarity index 100% rename from train/26_frames/sprite_1.png rename to train/spritesheet_26/frame_1.png diff --git a/train/26_frames/sprite_2.png b/train/spritesheet_26/frame_2.png similarity index 100% rename from train/26_frames/sprite_2.png rename to train/spritesheet_26/frame_2.png diff --git a/train/26_frames/sprite_3.png b/train/spritesheet_26/frame_3.png similarity index 100% rename from train/26_frames/sprite_3.png rename to train/spritesheet_26/frame_3.png diff --git a/train/26_frames/sprite_4.png b/train/spritesheet_26/frame_4.png similarity index 100% rename from train/26_frames/sprite_4.png rename to train/spritesheet_26/frame_4.png diff --git a/train/26_frames/sprite_5.png b/train/spritesheet_26/frame_5.png similarity index 100% rename from train/26_frames/sprite_5.png rename to train/spritesheet_26/frame_5.png diff --git a/train/27_frames/sprite_0.png b/train/spritesheet_27/frame_0.png similarity index 100% rename from train/27_frames/sprite_0.png rename to train/spritesheet_27/frame_0.png diff --git a/train/27_frames/sprite_1.png b/train/spritesheet_27/frame_1.png similarity index 100% rename from train/27_frames/sprite_1.png rename to train/spritesheet_27/frame_1.png diff --git a/train/27_frames/sprite_2.png b/train/spritesheet_27/frame_2.png similarity index 100% rename from train/27_frames/sprite_2.png rename to train/spritesheet_27/frame_2.png diff --git a/train/27_frames/sprite_3.png b/train/spritesheet_27/frame_3.png similarity index 100% rename from train/27_frames/sprite_3.png rename to train/spritesheet_27/frame_3.png diff --git a/train/27_frames/sprite_4.png b/train/spritesheet_27/frame_4.png similarity index 100% rename from train/27_frames/sprite_4.png rename to train/spritesheet_27/frame_4.png diff --git a/train/27_frames/sprite_5.png b/train/spritesheet_27/frame_5.png similarity index 100% rename from train/27_frames/sprite_5.png rename to train/spritesheet_27/frame_5.png diff --git a/train/28_frames/sprite_0.png b/train/spritesheet_28/frame_0.png similarity index 100% rename from train/28_frames/sprite_0.png rename to train/spritesheet_28/frame_0.png diff --git a/train/28_frames/sprite_1.png b/train/spritesheet_28/frame_1.png similarity index 100% rename from train/28_frames/sprite_1.png rename to train/spritesheet_28/frame_1.png diff --git a/train/28_frames/sprite_2.png b/train/spritesheet_28/frame_2.png similarity index 100% rename from train/28_frames/sprite_2.png rename to train/spritesheet_28/frame_2.png diff --git a/train/28_frames/sprite_3.png b/train/spritesheet_28/frame_3.png similarity index 100% rename from train/28_frames/sprite_3.png rename to train/spritesheet_28/frame_3.png diff --git a/train/28_frames/sprite_4.png b/train/spritesheet_28/frame_4.png similarity index 100% rename from train/28_frames/sprite_4.png rename to train/spritesheet_28/frame_4.png diff --git a/train/28_frames/sprite_5.png b/train/spritesheet_28/frame_5.png similarity index 100% rename from train/28_frames/sprite_5.png rename to train/spritesheet_28/frame_5.png diff --git a/train/29_frames/sprite_0.png b/train/spritesheet_29/frame_0.png similarity index 100% rename from train/29_frames/sprite_0.png rename to train/spritesheet_29/frame_0.png diff --git a/train/29_frames/sprite_1.png b/train/spritesheet_29/frame_1.png similarity index 100% rename from train/29_frames/sprite_1.png rename to train/spritesheet_29/frame_1.png diff --git a/train/29_frames/sprite_2.png b/train/spritesheet_29/frame_2.png similarity index 100% rename from train/29_frames/sprite_2.png rename to train/spritesheet_29/frame_2.png diff --git a/train/29_frames/sprite_3.png b/train/spritesheet_29/frame_3.png similarity index 100% rename from train/29_frames/sprite_3.png rename to train/spritesheet_29/frame_3.png diff --git a/train/29_frames/sprite_4.png b/train/spritesheet_29/frame_4.png similarity index 100% rename from train/29_frames/sprite_4.png rename to train/spritesheet_29/frame_4.png diff --git a/train/29_frames/sprite_5.png b/train/spritesheet_29/frame_5.png similarity index 100% rename from train/29_frames/sprite_5.png rename to train/spritesheet_29/frame_5.png diff --git a/train/3_frames/sprite_0.png b/train/spritesheet_3/frame_0.png similarity index 100% rename from train/3_frames/sprite_0.png rename to train/spritesheet_3/frame_0.png diff --git a/train/3_frames/sprite_1.png b/train/spritesheet_3/frame_1.png similarity index 100% rename from train/3_frames/sprite_1.png rename to train/spritesheet_3/frame_1.png diff --git a/train/3_frames/sprite_2.png b/train/spritesheet_3/frame_2.png similarity index 100% rename from train/3_frames/sprite_2.png rename to train/spritesheet_3/frame_2.png diff --git a/train/3_frames/sprite_3.png b/train/spritesheet_3/frame_3.png similarity index 100% rename from train/3_frames/sprite_3.png rename to train/spritesheet_3/frame_3.png diff --git a/train/30_frames/sprite_0.png b/train/spritesheet_30/frame_0.png similarity index 100% rename from train/30_frames/sprite_0.png rename to train/spritesheet_30/frame_0.png diff --git a/train/30_frames/sprite_1.png b/train/spritesheet_30/frame_1.png similarity index 100% rename from train/30_frames/sprite_1.png rename to train/spritesheet_30/frame_1.png diff --git a/train/30_frames/sprite_2.png b/train/spritesheet_30/frame_2.png similarity index 100% rename from train/30_frames/sprite_2.png rename to train/spritesheet_30/frame_2.png diff --git a/train/30_frames/sprite_3.png b/train/spritesheet_30/frame_3.png similarity index 100% rename from train/30_frames/sprite_3.png rename to train/spritesheet_30/frame_3.png diff --git a/train/30_frames/sprite_4.png b/train/spritesheet_30/frame_4.png similarity index 100% rename from train/30_frames/sprite_4.png rename to train/spritesheet_30/frame_4.png diff --git a/train/30_frames/sprite_5.png b/train/spritesheet_30/frame_5.png similarity index 100% rename from train/30_frames/sprite_5.png rename to train/spritesheet_30/frame_5.png diff --git a/train/30_frames/sprite_6.png b/train/spritesheet_30/frame_6.png similarity index 100% rename from train/30_frames/sprite_6.png rename to train/spritesheet_30/frame_6.png diff --git a/train/30_frames/sprite_7.png b/train/spritesheet_30/frame_7.png similarity index 100% rename from train/30_frames/sprite_7.png rename to train/spritesheet_30/frame_7.png diff --git a/train/30_frames/sprite_8.png b/train/spritesheet_30/frame_8.png similarity index 100% rename from train/30_frames/sprite_8.png rename to train/spritesheet_30/frame_8.png diff --git a/train/31_frames/sprite_0.png b/train/spritesheet_31/frame_0.png similarity index 100% rename from train/31_frames/sprite_0.png rename to train/spritesheet_31/frame_0.png diff --git a/train/31_frames/sprite_1.png b/train/spritesheet_31/frame_1.png similarity index 100% rename from train/31_frames/sprite_1.png rename to train/spritesheet_31/frame_1.png diff --git a/train/31_frames/sprite_2.png b/train/spritesheet_31/frame_2.png similarity index 100% rename from train/31_frames/sprite_2.png rename to train/spritesheet_31/frame_2.png diff --git a/train/31_frames/sprite_3.png b/train/spritesheet_31/frame_3.png similarity index 100% rename from train/31_frames/sprite_3.png rename to train/spritesheet_31/frame_3.png diff --git a/train/31_frames/sprite_4.png b/train/spritesheet_31/frame_4.png similarity index 100% rename from train/31_frames/sprite_4.png rename to train/spritesheet_31/frame_4.png diff --git a/train/31_frames/sprite_5.png b/train/spritesheet_31/frame_5.png similarity index 100% rename from train/31_frames/sprite_5.png rename to train/spritesheet_31/frame_5.png diff --git a/train/31_frames/sprite_6.png b/train/spritesheet_31/frame_6.png similarity index 100% rename from train/31_frames/sprite_6.png rename to train/spritesheet_31/frame_6.png diff --git a/train/31_frames/sprite_7.png b/train/spritesheet_31/frame_7.png similarity index 100% rename from train/31_frames/sprite_7.png rename to train/spritesheet_31/frame_7.png diff --git a/train/31_frames/sprite_8.png b/train/spritesheet_31/frame_8.png similarity index 100% rename from train/31_frames/sprite_8.png rename to train/spritesheet_31/frame_8.png diff --git a/train/32_frames/sprite_0.png b/train/spritesheet_32/frame_0.png similarity index 100% rename from train/32_frames/sprite_0.png rename to train/spritesheet_32/frame_0.png diff --git a/train/32_frames/sprite_1.png b/train/spritesheet_32/frame_1.png similarity index 100% rename from train/32_frames/sprite_1.png rename to train/spritesheet_32/frame_1.png diff --git a/train/32_frames/sprite_2.png b/train/spritesheet_32/frame_2.png similarity index 100% rename from train/32_frames/sprite_2.png rename to train/spritesheet_32/frame_2.png diff --git a/train/32_frames/sprite_3.png b/train/spritesheet_32/frame_3.png similarity index 100% rename from train/32_frames/sprite_3.png rename to train/spritesheet_32/frame_3.png diff --git a/train/32_frames/sprite_4.png b/train/spritesheet_32/frame_4.png similarity index 100% rename from train/32_frames/sprite_4.png rename to train/spritesheet_32/frame_4.png diff --git a/train/32_frames/sprite_5.png b/train/spritesheet_32/frame_5.png similarity index 100% rename from train/32_frames/sprite_5.png rename to train/spritesheet_32/frame_5.png diff --git a/train/32_frames/sprite_6.png b/train/spritesheet_32/frame_6.png similarity index 100% rename from train/32_frames/sprite_6.png rename to train/spritesheet_32/frame_6.png diff --git a/train/32_frames/sprite_7.png b/train/spritesheet_32/frame_7.png similarity index 100% rename from train/32_frames/sprite_7.png rename to train/spritesheet_32/frame_7.png diff --git a/train/32_frames/sprite_8.png b/train/spritesheet_32/frame_8.png similarity index 100% rename from train/32_frames/sprite_8.png rename to train/spritesheet_32/frame_8.png diff --git a/train/33_frames/sprite_0.png b/train/spritesheet_33/frame_0.png similarity index 100% rename from train/33_frames/sprite_0.png rename to train/spritesheet_33/frame_0.png diff --git a/train/33_frames/sprite_1.png b/train/spritesheet_33/frame_1.png similarity index 100% rename from train/33_frames/sprite_1.png rename to train/spritesheet_33/frame_1.png diff --git a/train/33_frames/sprite_2.png b/train/spritesheet_33/frame_2.png similarity index 100% rename from train/33_frames/sprite_2.png rename to train/spritesheet_33/frame_2.png diff --git a/train/33_frames/sprite_3.png b/train/spritesheet_33/frame_3.png similarity index 100% rename from train/33_frames/sprite_3.png rename to train/spritesheet_33/frame_3.png diff --git a/train/33_frames/sprite_4.png b/train/spritesheet_33/frame_4.png similarity index 100% rename from train/33_frames/sprite_4.png rename to train/spritesheet_33/frame_4.png diff --git a/train/33_frames/sprite_5.png b/train/spritesheet_33/frame_5.png similarity index 100% rename from train/33_frames/sprite_5.png rename to train/spritesheet_33/frame_5.png diff --git a/train/33_frames/sprite_6.png b/train/spritesheet_33/frame_6.png similarity index 100% rename from train/33_frames/sprite_6.png rename to train/spritesheet_33/frame_6.png diff --git a/train/33_frames/sprite_7.png b/train/spritesheet_33/frame_7.png similarity index 100% rename from train/33_frames/sprite_7.png rename to train/spritesheet_33/frame_7.png diff --git a/train/33_frames/sprite_8.png b/train/spritesheet_33/frame_8.png similarity index 100% rename from train/33_frames/sprite_8.png rename to train/spritesheet_33/frame_8.png diff --git a/train/34_frames/sprite_0.png b/train/spritesheet_34/frame_0.png similarity index 100% rename from train/34_frames/sprite_0.png rename to train/spritesheet_34/frame_0.png diff --git a/train/34_frames/sprite_1.png b/train/spritesheet_34/frame_1.png similarity index 100% rename from train/34_frames/sprite_1.png rename to train/spritesheet_34/frame_1.png diff --git a/train/34_frames/sprite_2.png b/train/spritesheet_34/frame_2.png similarity index 100% rename from train/34_frames/sprite_2.png rename to train/spritesheet_34/frame_2.png diff --git a/train/34_frames/sprite_3.png b/train/spritesheet_34/frame_3.png similarity index 100% rename from train/34_frames/sprite_3.png rename to train/spritesheet_34/frame_3.png diff --git a/train/34_frames/sprite_4.png b/train/spritesheet_34/frame_4.png similarity index 100% rename from train/34_frames/sprite_4.png rename to train/spritesheet_34/frame_4.png diff --git a/train/34_frames/sprite_5.png b/train/spritesheet_34/frame_5.png similarity index 100% rename from train/34_frames/sprite_5.png rename to train/spritesheet_34/frame_5.png diff --git a/train/34_frames/sprite_6.png b/train/spritesheet_34/frame_6.png similarity index 100% rename from train/34_frames/sprite_6.png rename to train/spritesheet_34/frame_6.png diff --git a/train/34_frames/sprite_7.png b/train/spritesheet_34/frame_7.png similarity index 100% rename from train/34_frames/sprite_7.png rename to train/spritesheet_34/frame_7.png diff --git a/train/34_frames/sprite_8.png b/train/spritesheet_34/frame_8.png similarity index 100% rename from train/34_frames/sprite_8.png rename to train/spritesheet_34/frame_8.png diff --git a/train/35_frames/sprite_0.png b/train/spritesheet_35/frame_0.png similarity index 100% rename from train/35_frames/sprite_0.png rename to train/spritesheet_35/frame_0.png diff --git a/train/35_frames/sprite_1.png b/train/spritesheet_35/frame_1.png similarity index 100% rename from train/35_frames/sprite_1.png rename to train/spritesheet_35/frame_1.png diff --git a/train/35_frames/sprite_2.png b/train/spritesheet_35/frame_2.png similarity index 100% rename from train/35_frames/sprite_2.png rename to train/spritesheet_35/frame_2.png diff --git a/train/35_frames/sprite_3.png b/train/spritesheet_35/frame_3.png similarity index 100% rename from train/35_frames/sprite_3.png rename to train/spritesheet_35/frame_3.png diff --git a/train/36_frames/sprite_0.png b/train/spritesheet_36/frame_0.png similarity index 100% rename from train/36_frames/sprite_0.png rename to train/spritesheet_36/frame_0.png diff --git a/train/36_frames/sprite_1.png b/train/spritesheet_36/frame_1.png similarity index 100% rename from train/36_frames/sprite_1.png rename to train/spritesheet_36/frame_1.png diff --git a/train/36_frames/sprite_2.png b/train/spritesheet_36/frame_2.png similarity index 100% rename from train/36_frames/sprite_2.png rename to train/spritesheet_36/frame_2.png diff --git a/train/36_frames/sprite_3.png b/train/spritesheet_36/frame_3.png similarity index 100% rename from train/36_frames/sprite_3.png rename to train/spritesheet_36/frame_3.png diff --git a/train/37_frames/sprite_0.png b/train/spritesheet_37/frame_0.png similarity index 100% rename from train/37_frames/sprite_0.png rename to train/spritesheet_37/frame_0.png diff --git a/train/37_frames/sprite_1.png b/train/spritesheet_37/frame_1.png similarity index 100% rename from train/37_frames/sprite_1.png rename to train/spritesheet_37/frame_1.png diff --git a/train/77_frames/sprite_2.png b/train/spritesheet_37/frame_2.png similarity index 100% rename from train/77_frames/sprite_2.png rename to train/spritesheet_37/frame_2.png diff --git a/train/77_frames/sprite_3.png b/train/spritesheet_37/frame_3.png similarity index 100% rename from train/77_frames/sprite_3.png rename to train/spritesheet_37/frame_3.png diff --git a/train/4_frames/sprite_0.png b/train/spritesheet_4/frame_0.png similarity index 100% rename from train/4_frames/sprite_0.png rename to train/spritesheet_4/frame_0.png diff --git a/train/4_frames/sprite_1.png b/train/spritesheet_4/frame_1.png similarity index 100% rename from train/4_frames/sprite_1.png rename to train/spritesheet_4/frame_1.png diff --git a/train/4_frames/sprite_2.png b/train/spritesheet_4/frame_2.png similarity index 100% rename from train/4_frames/sprite_2.png rename to train/spritesheet_4/frame_2.png diff --git a/train/4_frames/sprite_3.png b/train/spritesheet_4/frame_3.png similarity index 100% rename from train/4_frames/sprite_3.png rename to train/spritesheet_4/frame_3.png diff --git a/train/5_frames/sprite_0.png b/train/spritesheet_5/frame_0.png similarity index 100% rename from train/5_frames/sprite_0.png rename to train/spritesheet_5/frame_0.png diff --git a/train/5_frames/sprite_1.png b/train/spritesheet_5/frame_1.png similarity index 100% rename from train/5_frames/sprite_1.png rename to train/spritesheet_5/frame_1.png diff --git a/train/spritesheet_5/frame_10.png b/train/spritesheet_5/frame_10.png new file mode 100644 index 0000000000000000000000000000000000000000..e69c409d97785302050493f72c45298630e2dd69 --- /dev/null +++ b/train/spritesheet_5/frame_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde5be7661f8cf5881227fbe03924580d8c07719a7992d5ab2f2cc65f0295f99 +size 855 diff --git a/train/spritesheet_5/frame_11.png b/train/spritesheet_5/frame_11.png new file mode 100644 index 0000000000000000000000000000000000000000..e69c409d97785302050493f72c45298630e2dd69 --- /dev/null +++ b/train/spritesheet_5/frame_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde5be7661f8cf5881227fbe03924580d8c07719a7992d5ab2f2cc65f0295f99 +size 855 diff --git a/train/spritesheet_5/frame_12.png b/train/spritesheet_5/frame_12.png new file mode 100644 index 0000000000000000000000000000000000000000..e69c409d97785302050493f72c45298630e2dd69 --- /dev/null +++ b/train/spritesheet_5/frame_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde5be7661f8cf5881227fbe03924580d8c07719a7992d5ab2f2cc65f0295f99 +size 855 diff --git a/train/spritesheet_5/frame_13.png b/train/spritesheet_5/frame_13.png new file mode 100644 index 0000000000000000000000000000000000000000..e69c409d97785302050493f72c45298630e2dd69 --- /dev/null +++ b/train/spritesheet_5/frame_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde5be7661f8cf5881227fbe03924580d8c07719a7992d5ab2f2cc65f0295f99 +size 855 diff --git a/train/spritesheet_5/frame_14.png b/train/spritesheet_5/frame_14.png new file mode 100644 index 0000000000000000000000000000000000000000..e69c409d97785302050493f72c45298630e2dd69 --- /dev/null +++ b/train/spritesheet_5/frame_14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde5be7661f8cf5881227fbe03924580d8c07719a7992d5ab2f2cc65f0295f99 +size 855 diff --git a/train/spritesheet_5/frame_15.png b/train/spritesheet_5/frame_15.png new file mode 100644 index 0000000000000000000000000000000000000000..e69c409d97785302050493f72c45298630e2dd69 --- /dev/null +++ b/train/spritesheet_5/frame_15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde5be7661f8cf5881227fbe03924580d8c07719a7992d5ab2f2cc65f0295f99 +size 855 diff --git a/train/5_frames/sprite_2.png b/train/spritesheet_5/frame_2.png similarity index 100% rename from train/5_frames/sprite_2.png rename to train/spritesheet_5/frame_2.png diff --git a/train/5_frames/sprite_3.png b/train/spritesheet_5/frame_3.png similarity index 100% rename from train/5_frames/sprite_3.png rename to train/spritesheet_5/frame_3.png diff --git a/train/5_frames/sprite_4.png b/train/spritesheet_5/frame_4.png similarity index 100% rename from train/5_frames/sprite_4.png rename to train/spritesheet_5/frame_4.png diff --git a/train/5_frames/sprite_5.png b/train/spritesheet_5/frame_5.png similarity index 100% rename from train/5_frames/sprite_5.png rename to train/spritesheet_5/frame_5.png diff --git a/train/5_frames/sprite_6.png b/train/spritesheet_5/frame_6.png similarity index 100% rename from train/5_frames/sprite_6.png rename to train/spritesheet_5/frame_6.png diff --git a/train/5_frames/sprite_7.png b/train/spritesheet_5/frame_7.png similarity index 100% rename from train/5_frames/sprite_7.png rename to train/spritesheet_5/frame_7.png diff --git a/train/5_frames/sprite_8.png b/train/spritesheet_5/frame_8.png similarity index 100% rename from train/5_frames/sprite_8.png rename to train/spritesheet_5/frame_8.png diff --git a/train/5_frames/sprite_9.png b/train/spritesheet_5/frame_9.png similarity index 100% rename from train/5_frames/sprite_9.png rename to train/spritesheet_5/frame_9.png diff --git a/train/50_frames/sprite_0.png b/train/spritesheet_50/frame_0.png similarity index 100% rename from train/50_frames/sprite_0.png rename to train/spritesheet_50/frame_0.png diff --git a/train/50_frames/sprite_1.png b/train/spritesheet_50/frame_1.png similarity index 100% rename from train/50_frames/sprite_1.png rename to train/spritesheet_50/frame_1.png diff --git a/train/50_frames/sprite_10.png b/train/spritesheet_50/frame_10.png similarity index 100% rename from train/50_frames/sprite_10.png rename to train/spritesheet_50/frame_10.png diff --git a/train/50_frames/sprite_11.png b/train/spritesheet_50/frame_11.png similarity index 100% rename from train/50_frames/sprite_11.png rename to train/spritesheet_50/frame_11.png diff --git a/train/50_frames/sprite_12.png b/train/spritesheet_50/frame_12.png similarity index 100% rename from train/50_frames/sprite_12.png rename to train/spritesheet_50/frame_12.png diff --git a/train/50_frames/sprite_13.png b/train/spritesheet_50/frame_13.png similarity index 100% rename from train/50_frames/sprite_13.png rename to train/spritesheet_50/frame_13.png diff --git a/train/50_frames/sprite_14.png b/train/spritesheet_50/frame_14.png similarity index 100% rename from train/50_frames/sprite_14.png rename to train/spritesheet_50/frame_14.png diff --git a/train/50_frames/sprite_15.png b/train/spritesheet_50/frame_15.png similarity index 100% rename from train/50_frames/sprite_15.png rename to train/spritesheet_50/frame_15.png diff --git a/train/50_frames/sprite_16.png b/train/spritesheet_50/frame_16.png similarity index 100% rename from train/50_frames/sprite_16.png rename to train/spritesheet_50/frame_16.png diff --git a/train/50_frames/sprite_17.png b/train/spritesheet_50/frame_17.png similarity index 100% rename from train/50_frames/sprite_17.png rename to train/spritesheet_50/frame_17.png diff --git a/train/50_frames/sprite_18.png b/train/spritesheet_50/frame_18.png similarity index 100% rename from train/50_frames/sprite_18.png rename to train/spritesheet_50/frame_18.png diff --git a/train/50_frames/sprite_19.png b/train/spritesheet_50/frame_19.png similarity index 100% rename from train/50_frames/sprite_19.png rename to train/spritesheet_50/frame_19.png diff --git a/train/50_frames/sprite_2.png b/train/spritesheet_50/frame_2.png similarity index 100% rename from train/50_frames/sprite_2.png rename to train/spritesheet_50/frame_2.png diff --git a/train/50_frames/sprite_20.png b/train/spritesheet_50/frame_20.png similarity index 100% rename from train/50_frames/sprite_20.png rename to train/spritesheet_50/frame_20.png diff --git a/train/50_frames/sprite_21.png b/train/spritesheet_50/frame_21.png similarity index 100% rename from train/50_frames/sprite_21.png rename to train/spritesheet_50/frame_21.png diff --git a/train/50_frames/sprite_22.png b/train/spritesheet_50/frame_22.png similarity index 100% rename from train/50_frames/sprite_22.png rename to train/spritesheet_50/frame_22.png diff --git a/train/50_frames/sprite_23.png b/train/spritesheet_50/frame_23.png similarity index 100% rename from train/50_frames/sprite_23.png rename to train/spritesheet_50/frame_23.png diff --git a/train/50_frames/sprite_3.png b/train/spritesheet_50/frame_3.png similarity index 100% rename from train/50_frames/sprite_3.png rename to train/spritesheet_50/frame_3.png diff --git a/train/50_frames/sprite_4.png b/train/spritesheet_50/frame_4.png similarity index 100% rename from train/50_frames/sprite_4.png rename to train/spritesheet_50/frame_4.png diff --git a/train/50_frames/sprite_5.png b/train/spritesheet_50/frame_5.png similarity index 100% rename from train/50_frames/sprite_5.png rename to train/spritesheet_50/frame_5.png diff --git a/train/50_frames/sprite_6.png b/train/spritesheet_50/frame_6.png similarity index 100% rename from train/50_frames/sprite_6.png rename to train/spritesheet_50/frame_6.png diff --git a/train/50_frames/sprite_7.png b/train/spritesheet_50/frame_7.png similarity index 100% rename from train/50_frames/sprite_7.png rename to train/spritesheet_50/frame_7.png diff --git a/train/50_frames/sprite_8.png b/train/spritesheet_50/frame_8.png similarity index 100% rename from train/50_frames/sprite_8.png rename to train/spritesheet_50/frame_8.png diff --git a/train/50_frames/sprite_9.png b/train/spritesheet_50/frame_9.png similarity index 100% rename from train/50_frames/sprite_9.png rename to train/spritesheet_50/frame_9.png diff --git a/train/54_frames/sprite_0.png b/train/spritesheet_54/frame_0.png similarity index 100% rename from train/54_frames/sprite_0.png rename to train/spritesheet_54/frame_0.png diff --git a/train/54_frames/sprite_1.png b/train/spritesheet_54/frame_1.png similarity index 100% rename from train/54_frames/sprite_1.png rename to train/spritesheet_54/frame_1.png diff --git a/train/54_frames/sprite_2.png b/train/spritesheet_54/frame_2.png similarity index 100% rename from train/54_frames/sprite_2.png rename to train/spritesheet_54/frame_2.png diff --git a/train/54_frames/sprite_3.png b/train/spritesheet_54/frame_3.png similarity index 100% rename from train/54_frames/sprite_3.png rename to train/spritesheet_54/frame_3.png diff --git a/train/54_frames/sprite_4.png b/train/spritesheet_54/frame_4.png similarity index 100% rename from train/54_frames/sprite_4.png rename to train/spritesheet_54/frame_4.png diff --git a/train/54_frames/sprite_5.png b/train/spritesheet_54/frame_5.png similarity index 100% rename from train/54_frames/sprite_5.png rename to train/spritesheet_54/frame_5.png diff --git a/train/55_frames/sprite_0.png b/train/spritesheet_55/frame_0.png similarity index 100% rename from train/55_frames/sprite_0.png rename to train/spritesheet_55/frame_0.png diff --git a/train/55_frames/sprite_1.png b/train/spritesheet_55/frame_1.png similarity index 100% rename from train/55_frames/sprite_1.png rename to train/spritesheet_55/frame_1.png diff --git a/train/55_frames/sprite_2.png b/train/spritesheet_55/frame_2.png similarity index 100% rename from train/55_frames/sprite_2.png rename to train/spritesheet_55/frame_2.png diff --git a/train/55_frames/sprite_3.png b/train/spritesheet_55/frame_3.png similarity index 100% rename from train/55_frames/sprite_3.png rename to train/spritesheet_55/frame_3.png diff --git a/train/55_frames/sprite_4.png b/train/spritesheet_55/frame_4.png similarity index 100% rename from train/55_frames/sprite_4.png rename to train/spritesheet_55/frame_4.png diff --git a/train/55_frames/sprite_5.png b/train/spritesheet_55/frame_5.png similarity index 100% rename from train/55_frames/sprite_5.png rename to train/spritesheet_55/frame_5.png diff --git a/train/56_frames/sprite_0.png b/train/spritesheet_56/frame_0.png similarity index 100% rename from train/56_frames/sprite_0.png rename to train/spritesheet_56/frame_0.png diff --git a/train/56_frames/sprite_1.png b/train/spritesheet_56/frame_1.png similarity index 100% rename from train/56_frames/sprite_1.png rename to train/spritesheet_56/frame_1.png diff --git a/train/56_frames/sprite_2.png b/train/spritesheet_56/frame_2.png similarity index 100% rename from train/56_frames/sprite_2.png rename to train/spritesheet_56/frame_2.png diff --git a/train/56_frames/sprite_3.png b/train/spritesheet_56/frame_3.png similarity index 100% rename from train/56_frames/sprite_3.png rename to train/spritesheet_56/frame_3.png diff --git a/train/56_frames/sprite_4.png b/train/spritesheet_56/frame_4.png similarity index 100% rename from train/56_frames/sprite_4.png rename to train/spritesheet_56/frame_4.png diff --git a/train/56_frames/sprite_5.png b/train/spritesheet_56/frame_5.png similarity index 100% rename from train/56_frames/sprite_5.png rename to train/spritesheet_56/frame_5.png diff --git a/train/59_frames/sprite_0.png b/train/spritesheet_59/frame_0.png similarity index 100% rename from train/59_frames/sprite_0.png rename to train/spritesheet_59/frame_0.png diff --git a/train/59_frames/sprite_1.png b/train/spritesheet_59/frame_1.png similarity index 100% rename from train/59_frames/sprite_1.png rename to train/spritesheet_59/frame_1.png diff --git a/train/59_frames/sprite_2.png b/train/spritesheet_59/frame_2.png similarity index 100% rename from train/59_frames/sprite_2.png rename to train/spritesheet_59/frame_2.png diff --git a/train/59_frames/sprite_3.png b/train/spritesheet_59/frame_3.png similarity index 100% rename from train/59_frames/sprite_3.png rename to train/spritesheet_59/frame_3.png diff --git a/train/59_frames/sprite_4.png b/train/spritesheet_59/frame_4.png similarity index 100% rename from train/59_frames/sprite_4.png rename to train/spritesheet_59/frame_4.png diff --git a/train/59_frames/sprite_5.png b/train/spritesheet_59/frame_5.png similarity index 100% rename from train/59_frames/sprite_5.png rename to train/spritesheet_59/frame_5.png diff --git a/train/6_frames/sprite_0.png b/train/spritesheet_6/frame_0.png similarity index 100% rename from train/6_frames/sprite_0.png rename to train/spritesheet_6/frame_0.png diff --git a/train/6_frames/sprite_1.png b/train/spritesheet_6/frame_1.png similarity index 100% rename from train/6_frames/sprite_1.png rename to train/spritesheet_6/frame_1.png diff --git a/train/6_frames/sprite_2.png b/train/spritesheet_6/frame_2.png similarity index 100% rename from train/6_frames/sprite_2.png rename to train/spritesheet_6/frame_2.png diff --git a/train/6_frames/sprite_3.png b/train/spritesheet_6/frame_3.png similarity index 100% rename from train/6_frames/sprite_3.png rename to train/spritesheet_6/frame_3.png diff --git a/train/6_frames/sprite_4.png b/train/spritesheet_6/frame_4.png similarity index 100% rename from train/6_frames/sprite_4.png rename to train/spritesheet_6/frame_4.png diff --git a/train/6_frames/sprite_5.png b/train/spritesheet_6/frame_5.png similarity index 100% rename from train/6_frames/sprite_5.png rename to train/spritesheet_6/frame_5.png diff --git a/train/6_frames/sprite_6.png b/train/spritesheet_6/frame_6.png similarity index 100% rename from train/6_frames/sprite_6.png rename to train/spritesheet_6/frame_6.png diff --git a/train/6_frames/sprite_7.png b/train/spritesheet_6/frame_7.png similarity index 100% rename from train/6_frames/sprite_7.png rename to train/spritesheet_6/frame_7.png diff --git a/train/6_frames/sprite_8.png b/train/spritesheet_6/frame_8.png similarity index 100% rename from train/6_frames/sprite_8.png rename to train/spritesheet_6/frame_8.png diff --git a/train/60_frames/sprite_0.png b/train/spritesheet_60/frame_0.png similarity index 100% rename from train/60_frames/sprite_0.png rename to train/spritesheet_60/frame_0.png diff --git a/train/60_frames/sprite_1.png b/train/spritesheet_60/frame_1.png similarity index 100% rename from train/60_frames/sprite_1.png rename to train/spritesheet_60/frame_1.png diff --git a/train/60_frames/sprite_2.png b/train/spritesheet_60/frame_2.png similarity index 100% rename from train/60_frames/sprite_2.png rename to train/spritesheet_60/frame_2.png diff --git a/train/60_frames/sprite_3.png b/train/spritesheet_60/frame_3.png similarity index 100% rename from train/60_frames/sprite_3.png rename to train/spritesheet_60/frame_3.png diff --git a/train/60_frames/sprite_4.png b/train/spritesheet_60/frame_4.png similarity index 100% rename from train/60_frames/sprite_4.png rename to train/spritesheet_60/frame_4.png diff --git a/train/60_frames/sprite_5.png b/train/spritesheet_60/frame_5.png similarity index 100% rename from train/60_frames/sprite_5.png rename to train/spritesheet_60/frame_5.png diff --git a/train/61_frames/sprite_0.png b/train/spritesheet_61/frame_0.png similarity index 100% rename from train/61_frames/sprite_0.png rename to train/spritesheet_61/frame_0.png diff --git a/train/61_frames/sprite_1.png b/train/spritesheet_61/frame_1.png similarity index 100% rename from train/61_frames/sprite_1.png rename to train/spritesheet_61/frame_1.png diff --git a/train/61_frames/sprite_2.png b/train/spritesheet_61/frame_2.png similarity index 100% rename from train/61_frames/sprite_2.png rename to train/spritesheet_61/frame_2.png diff --git a/train/61_frames/sprite_3.png b/train/spritesheet_61/frame_3.png similarity index 100% rename from train/61_frames/sprite_3.png rename to train/spritesheet_61/frame_3.png diff --git a/train/61_frames/sprite_4.png b/train/spritesheet_61/frame_4.png similarity index 100% rename from train/61_frames/sprite_4.png rename to train/spritesheet_61/frame_4.png diff --git a/train/61_frames/sprite_5.png b/train/spritesheet_61/frame_5.png similarity index 100% rename from train/61_frames/sprite_5.png rename to train/spritesheet_61/frame_5.png diff --git a/train/64_frames/sprite_0.png b/train/spritesheet_64/frame_0.png similarity index 100% rename from train/64_frames/sprite_0.png rename to train/spritesheet_64/frame_0.png diff --git a/train/64_frames/sprite_1.png b/train/spritesheet_64/frame_1.png similarity index 100% rename from train/64_frames/sprite_1.png rename to train/spritesheet_64/frame_1.png diff --git a/train/64_frames/sprite_2.png b/train/spritesheet_64/frame_2.png similarity index 100% rename from train/64_frames/sprite_2.png rename to train/spritesheet_64/frame_2.png diff --git a/train/64_frames/sprite_3.png b/train/spritesheet_64/frame_3.png similarity index 100% rename from train/64_frames/sprite_3.png rename to train/spritesheet_64/frame_3.png diff --git a/train/64_frames/sprite_4.png b/train/spritesheet_64/frame_4.png similarity index 100% rename from train/64_frames/sprite_4.png rename to train/spritesheet_64/frame_4.png diff --git a/train/64_frames/sprite_5.png b/train/spritesheet_64/frame_5.png similarity index 100% rename from train/64_frames/sprite_5.png rename to train/spritesheet_64/frame_5.png diff --git a/train/65_frames/sprite_0.png b/train/spritesheet_65/frame_0.png similarity index 100% rename from train/65_frames/sprite_0.png rename to train/spritesheet_65/frame_0.png diff --git a/train/65_frames/sprite_1.png b/train/spritesheet_65/frame_1.png similarity index 100% rename from train/65_frames/sprite_1.png rename to train/spritesheet_65/frame_1.png diff --git a/train/65_frames/sprite_2.png b/train/spritesheet_65/frame_2.png similarity index 100% rename from train/65_frames/sprite_2.png rename to train/spritesheet_65/frame_2.png diff --git a/train/65_frames/sprite_3.png b/train/spritesheet_65/frame_3.png similarity index 100% rename from train/65_frames/sprite_3.png rename to train/spritesheet_65/frame_3.png diff --git a/train/65_frames/sprite_4.png b/train/spritesheet_65/frame_4.png similarity index 100% rename from train/65_frames/sprite_4.png rename to train/spritesheet_65/frame_4.png diff --git a/train/65_frames/sprite_5.png b/train/spritesheet_65/frame_5.png similarity index 100% rename from train/65_frames/sprite_5.png rename to train/spritesheet_65/frame_5.png diff --git a/train/66_frames/sprite_0.png b/train/spritesheet_66/frame_0.png similarity index 100% rename from train/66_frames/sprite_0.png rename to train/spritesheet_66/frame_0.png diff --git a/train/66_frames/sprite_1.png b/train/spritesheet_66/frame_1.png similarity index 100% rename from train/66_frames/sprite_1.png rename to train/spritesheet_66/frame_1.png diff --git a/train/66_frames/sprite_2.png b/train/spritesheet_66/frame_2.png similarity index 100% rename from train/66_frames/sprite_2.png rename to train/spritesheet_66/frame_2.png diff --git a/train/66_frames/sprite_3.png b/train/spritesheet_66/frame_3.png similarity index 100% rename from train/66_frames/sprite_3.png rename to train/spritesheet_66/frame_3.png diff --git a/train/66_frames/sprite_4.png b/train/spritesheet_66/frame_4.png similarity index 100% rename from train/66_frames/sprite_4.png rename to train/spritesheet_66/frame_4.png diff --git a/train/66_frames/sprite_5.png b/train/spritesheet_66/frame_5.png similarity index 100% rename from train/66_frames/sprite_5.png rename to train/spritesheet_66/frame_5.png diff --git a/train/69_frames/sprite_0.png b/train/spritesheet_69/frame_0.png similarity index 100% rename from train/69_frames/sprite_0.png rename to train/spritesheet_69/frame_0.png diff --git a/train/69_frames/sprite_1.png b/train/spritesheet_69/frame_1.png similarity index 100% rename from train/69_frames/sprite_1.png rename to train/spritesheet_69/frame_1.png diff --git a/train/69_frames/sprite_2.png b/train/spritesheet_69/frame_2.png similarity index 100% rename from train/69_frames/sprite_2.png rename to train/spritesheet_69/frame_2.png diff --git a/train/69_frames/sprite_3.png b/train/spritesheet_69/frame_3.png similarity index 100% rename from train/69_frames/sprite_3.png rename to train/spritesheet_69/frame_3.png diff --git a/train/69_frames/sprite_4.png b/train/spritesheet_69/frame_4.png similarity index 100% rename from train/69_frames/sprite_4.png rename to train/spritesheet_69/frame_4.png diff --git a/train/69_frames/sprite_5.png b/train/spritesheet_69/frame_5.png similarity index 100% rename from train/69_frames/sprite_5.png rename to train/spritesheet_69/frame_5.png diff --git a/train/7_frames/sprite_0.png b/train/spritesheet_7/frame_0.png similarity index 100% rename from train/7_frames/sprite_0.png rename to train/spritesheet_7/frame_0.png diff --git a/train/7_frames/sprite_1.png b/train/spritesheet_7/frame_1.png similarity index 100% rename from train/7_frames/sprite_1.png rename to train/spritesheet_7/frame_1.png diff --git a/train/7_frames/sprite_2.png b/train/spritesheet_7/frame_2.png similarity index 100% rename from train/7_frames/sprite_2.png rename to train/spritesheet_7/frame_2.png diff --git a/train/7_frames/sprite_3.png b/train/spritesheet_7/frame_3.png similarity index 100% rename from train/7_frames/sprite_3.png rename to train/spritesheet_7/frame_3.png diff --git a/train/7_frames/sprite_4.png b/train/spritesheet_7/frame_4.png similarity index 100% rename from train/7_frames/sprite_4.png rename to train/spritesheet_7/frame_4.png diff --git a/train/7_frames/sprite_5.png b/train/spritesheet_7/frame_5.png similarity index 100% rename from train/7_frames/sprite_5.png rename to train/spritesheet_7/frame_5.png diff --git a/train/7_frames/sprite_6.png b/train/spritesheet_7/frame_6.png similarity index 100% rename from train/7_frames/sprite_6.png rename to train/spritesheet_7/frame_6.png diff --git a/train/7_frames/sprite_7.png b/train/spritesheet_7/frame_7.png similarity index 100% rename from train/7_frames/sprite_7.png rename to train/spritesheet_7/frame_7.png diff --git a/train/70_frames/sprite_0.png b/train/spritesheet_70/frame_0.png similarity index 100% rename from train/70_frames/sprite_0.png rename to train/spritesheet_70/frame_0.png diff --git a/train/70_frames/sprite_1.png b/train/spritesheet_70/frame_1.png similarity index 100% rename from train/70_frames/sprite_1.png rename to train/spritesheet_70/frame_1.png diff --git a/train/70_frames/sprite_2.png b/train/spritesheet_70/frame_2.png similarity index 100% rename from train/70_frames/sprite_2.png rename to train/spritesheet_70/frame_2.png diff --git a/train/70_frames/sprite_3.png b/train/spritesheet_70/frame_3.png similarity index 100% rename from train/70_frames/sprite_3.png rename to train/spritesheet_70/frame_3.png diff --git a/train/70_frames/sprite_4.png b/train/spritesheet_70/frame_4.png similarity index 100% rename from train/70_frames/sprite_4.png rename to train/spritesheet_70/frame_4.png diff --git a/train/70_frames/sprite_5.png b/train/spritesheet_70/frame_5.png similarity index 100% rename from train/70_frames/sprite_5.png rename to train/spritesheet_70/frame_5.png diff --git a/train/71_frames/sprite_0.png b/train/spritesheet_71/frame_0.png similarity index 100% rename from train/71_frames/sprite_0.png rename to train/spritesheet_71/frame_0.png diff --git a/train/71_frames/sprite_1.png b/train/spritesheet_71/frame_1.png similarity index 100% rename from train/71_frames/sprite_1.png rename to train/spritesheet_71/frame_1.png diff --git a/train/71_frames/sprite_2.png b/train/spritesheet_71/frame_2.png similarity index 100% rename from train/71_frames/sprite_2.png rename to train/spritesheet_71/frame_2.png diff --git a/train/71_frames/sprite_3.png b/train/spritesheet_71/frame_3.png similarity index 100% rename from train/71_frames/sprite_3.png rename to train/spritesheet_71/frame_3.png diff --git a/train/71_frames/sprite_4.png b/train/spritesheet_71/frame_4.png similarity index 100% rename from train/71_frames/sprite_4.png rename to train/spritesheet_71/frame_4.png diff --git a/train/71_frames/sprite_5.png b/train/spritesheet_71/frame_5.png similarity index 100% rename from train/71_frames/sprite_5.png rename to train/spritesheet_71/frame_5.png diff --git a/train/72_frames/sprite_0.png b/train/spritesheet_72/frame_0.png similarity index 100% rename from train/72_frames/sprite_0.png rename to train/spritesheet_72/frame_0.png diff --git a/train/72_frames/sprite_1.png b/train/spritesheet_72/frame_1.png similarity index 100% rename from train/72_frames/sprite_1.png rename to train/spritesheet_72/frame_1.png diff --git a/train/72_frames/sprite_2.png b/train/spritesheet_72/frame_2.png similarity index 100% rename from train/72_frames/sprite_2.png rename to train/spritesheet_72/frame_2.png diff --git a/train/72_frames/sprite_3.png b/train/spritesheet_72/frame_3.png similarity index 100% rename from train/72_frames/sprite_3.png rename to train/spritesheet_72/frame_3.png diff --git a/train/72_frames/sprite_4.png b/train/spritesheet_72/frame_4.png similarity index 100% rename from train/72_frames/sprite_4.png rename to train/spritesheet_72/frame_4.png diff --git a/train/72_frames/sprite_5.png b/train/spritesheet_72/frame_5.png similarity index 100% rename from train/72_frames/sprite_5.png rename to train/spritesheet_72/frame_5.png diff --git a/train/72_frames/sprite_6.png b/train/spritesheet_72/frame_6.png similarity index 100% rename from train/72_frames/sprite_6.png rename to train/spritesheet_72/frame_6.png diff --git a/train/72_frames/sprite_7.png b/train/spritesheet_72/frame_7.png similarity index 100% rename from train/72_frames/sprite_7.png rename to train/spritesheet_72/frame_7.png diff --git a/train/72_frames/sprite_8.png b/train/spritesheet_72/frame_8.png similarity index 100% rename from train/72_frames/sprite_8.png rename to train/spritesheet_72/frame_8.png diff --git a/train/73_frames/sprite_0.png b/train/spritesheet_73/frame_0.png similarity index 100% rename from train/73_frames/sprite_0.png rename to train/spritesheet_73/frame_0.png diff --git a/train/73_frames/sprite_1.png b/train/spritesheet_73/frame_1.png similarity index 100% rename from train/73_frames/sprite_1.png rename to train/spritesheet_73/frame_1.png diff --git a/train/78_frames/sprite_3.png b/train/spritesheet_73/frame_2.png similarity index 100% rename from train/78_frames/sprite_3.png rename to train/spritesheet_73/frame_2.png diff --git a/train/82_frames/sprite_3.png b/train/spritesheet_73/frame_3.png similarity index 100% rename from train/82_frames/sprite_3.png rename to train/spritesheet_73/frame_3.png diff --git a/train/74_frames/sprite_0.png b/train/spritesheet_74/frame_0.png similarity index 100% rename from train/74_frames/sprite_0.png rename to train/spritesheet_74/frame_0.png diff --git a/train/74_frames/sprite_1.png b/train/spritesheet_74/frame_1.png similarity index 100% rename from train/74_frames/sprite_1.png rename to train/spritesheet_74/frame_1.png diff --git a/train/74_frames/sprite_2.png b/train/spritesheet_74/frame_2.png similarity index 100% rename from train/74_frames/sprite_2.png rename to train/spritesheet_74/frame_2.png diff --git a/train/83_frames/sprite_2.png b/train/spritesheet_74/frame_3.png similarity index 100% rename from train/83_frames/sprite_2.png rename to train/spritesheet_74/frame_3.png diff --git a/train/75_frames/sprite_0.png b/train/spritesheet_75/frame_0.png similarity index 100% rename from train/75_frames/sprite_0.png rename to train/spritesheet_75/frame_0.png diff --git a/train/76_frames/sprite_0.png b/train/spritesheet_76/frame_0.png similarity index 100% rename from train/76_frames/sprite_0.png rename to train/spritesheet_76/frame_0.png diff --git a/train/76_frames/sprite_1.png b/train/spritesheet_76/frame_1.png similarity index 100% rename from train/76_frames/sprite_1.png rename to train/spritesheet_76/frame_1.png diff --git a/train/76_frames/sprite_2.png b/train/spritesheet_76/frame_2.png similarity index 100% rename from train/76_frames/sprite_2.png rename to train/spritesheet_76/frame_2.png diff --git a/train/76_frames/sprite_3.png b/train/spritesheet_76/frame_3.png similarity index 100% rename from train/76_frames/sprite_3.png rename to train/spritesheet_76/frame_3.png diff --git a/train/77_frames/sprite_0.png b/train/spritesheet_77/frame_0.png similarity index 100% rename from train/77_frames/sprite_0.png rename to train/spritesheet_77/frame_0.png diff --git a/train/77_frames/sprite_1.png b/train/spritesheet_77/frame_1.png similarity index 100% rename from train/77_frames/sprite_1.png rename to train/spritesheet_77/frame_1.png diff --git a/train/83_frames/sprite_3.png b/train/spritesheet_77/frame_2.png similarity index 100% rename from train/83_frames/sprite_3.png rename to train/spritesheet_77/frame_2.png diff --git a/train/84_frames/sprite_3.png b/train/spritesheet_77/frame_3.png similarity index 100% rename from train/84_frames/sprite_3.png rename to train/spritesheet_77/frame_3.png diff --git a/train/78_frames/sprite_0.png b/train/spritesheet_78/frame_0.png similarity index 100% rename from train/78_frames/sprite_0.png rename to train/spritesheet_78/frame_0.png diff --git a/train/78_frames/sprite_1.png b/train/spritesheet_78/frame_1.png similarity index 100% rename from train/78_frames/sprite_1.png rename to train/spritesheet_78/frame_1.png diff --git a/train/78_frames/sprite_2.png b/train/spritesheet_78/frame_2.png similarity index 100% rename from train/78_frames/sprite_2.png rename to train/spritesheet_78/frame_2.png diff --git a/train/89_frames/sprite_2.png b/train/spritesheet_78/frame_3.png similarity index 100% rename from train/89_frames/sprite_2.png rename to train/spritesheet_78/frame_3.png diff --git a/train/79_frames/sprite_0.png b/train/spritesheet_79/frame_0.png similarity index 100% rename from train/79_frames/sprite_0.png rename to train/spritesheet_79/frame_0.png diff --git a/train/79_frames/sprite_1.png b/train/spritesheet_79/frame_1.png similarity index 100% rename from train/79_frames/sprite_1.png rename to train/spritesheet_79/frame_1.png diff --git a/train/79_frames/sprite_2.png b/train/spritesheet_79/frame_2.png similarity index 100% rename from train/79_frames/sprite_2.png rename to train/spritesheet_79/frame_2.png diff --git a/train/79_frames/sprite_3.png b/train/spritesheet_79/frame_3.png similarity index 100% rename from train/79_frames/sprite_3.png rename to train/spritesheet_79/frame_3.png diff --git a/train/79_frames/sprite_4.png b/train/spritesheet_79/frame_4.png similarity index 100% rename from train/79_frames/sprite_4.png rename to train/spritesheet_79/frame_4.png diff --git a/train/79_frames/sprite_5.png b/train/spritesheet_79/frame_5.png similarity index 100% rename from train/79_frames/sprite_5.png rename to train/spritesheet_79/frame_5.png diff --git a/train/79_frames/sprite_6.png b/train/spritesheet_79/frame_6.png similarity index 100% rename from train/79_frames/sprite_6.png rename to train/spritesheet_79/frame_6.png diff --git a/train/79_frames/sprite_7.png b/train/spritesheet_79/frame_7.png similarity index 100% rename from train/79_frames/sprite_7.png rename to train/spritesheet_79/frame_7.png diff --git a/train/79_frames/sprite_8.png b/train/spritesheet_79/frame_8.png similarity index 100% rename from train/79_frames/sprite_8.png rename to train/spritesheet_79/frame_8.png diff --git a/train/8_frames/sprite_0.png b/train/spritesheet_8/frame_0.png similarity index 100% rename from train/8_frames/sprite_0.png rename to train/spritesheet_8/frame_0.png diff --git a/train/8_frames/sprite_1.png b/train/spritesheet_8/frame_1.png similarity index 100% rename from train/8_frames/sprite_1.png rename to train/spritesheet_8/frame_1.png diff --git a/train/8_frames/sprite_10.png b/train/spritesheet_8/frame_10.png similarity index 100% rename from train/8_frames/sprite_10.png rename to train/spritesheet_8/frame_10.png diff --git a/train/8_frames/sprite_11.png b/train/spritesheet_8/frame_11.png similarity index 100% rename from train/8_frames/sprite_11.png rename to train/spritesheet_8/frame_11.png diff --git a/train/8_frames/sprite_12.png b/train/spritesheet_8/frame_12.png similarity index 100% rename from train/8_frames/sprite_12.png rename to train/spritesheet_8/frame_12.png diff --git a/train/8_frames/sprite_13.png b/train/spritesheet_8/frame_13.png similarity index 100% rename from train/8_frames/sprite_13.png rename to train/spritesheet_8/frame_13.png diff --git a/train/8_frames/sprite_14.png b/train/spritesheet_8/frame_14.png similarity index 100% rename from train/8_frames/sprite_14.png rename to train/spritesheet_8/frame_14.png diff --git a/train/8_frames/sprite_15.png b/train/spritesheet_8/frame_15.png similarity index 100% rename from train/8_frames/sprite_15.png rename to train/spritesheet_8/frame_15.png diff --git a/train/8_frames/sprite_16.png b/train/spritesheet_8/frame_16.png similarity index 100% rename from train/8_frames/sprite_16.png rename to train/spritesheet_8/frame_16.png diff --git a/train/8_frames/sprite_17.png b/train/spritesheet_8/frame_17.png similarity index 100% rename from train/8_frames/sprite_17.png rename to train/spritesheet_8/frame_17.png diff --git a/train/8_frames/sprite_18.png b/train/spritesheet_8/frame_18.png similarity index 100% rename from train/8_frames/sprite_18.png rename to train/spritesheet_8/frame_18.png diff --git a/train/8_frames/sprite_19.png b/train/spritesheet_8/frame_19.png similarity index 100% rename from train/8_frames/sprite_19.png rename to train/spritesheet_8/frame_19.png diff --git a/train/8_frames/sprite_2.png b/train/spritesheet_8/frame_2.png similarity index 100% rename from train/8_frames/sprite_2.png rename to train/spritesheet_8/frame_2.png diff --git a/train/8_frames/sprite_20.png b/train/spritesheet_8/frame_20.png similarity index 100% rename from train/8_frames/sprite_20.png rename to train/spritesheet_8/frame_20.png diff --git a/train/8_frames/sprite_21.png b/train/spritesheet_8/frame_21.png similarity index 100% rename from train/8_frames/sprite_21.png rename to train/spritesheet_8/frame_21.png diff --git a/train/8_frames/sprite_22.png b/train/spritesheet_8/frame_22.png similarity index 100% rename from train/8_frames/sprite_22.png rename to train/spritesheet_8/frame_22.png diff --git a/train/8_frames/sprite_23.png b/train/spritesheet_8/frame_23.png similarity index 100% rename from train/8_frames/sprite_23.png rename to train/spritesheet_8/frame_23.png diff --git a/train/8_frames/sprite_24.png b/train/spritesheet_8/frame_24.png similarity index 100% rename from train/8_frames/sprite_24.png rename to train/spritesheet_8/frame_24.png diff --git a/train/8_frames/sprite_25.png b/train/spritesheet_8/frame_25.png similarity index 100% rename from train/8_frames/sprite_25.png rename to train/spritesheet_8/frame_25.png diff --git a/train/8_frames/sprite_26.png b/train/spritesheet_8/frame_26.png similarity index 100% rename from train/8_frames/sprite_26.png rename to train/spritesheet_8/frame_26.png diff --git a/train/8_frames/sprite_27.png b/train/spritesheet_8/frame_27.png similarity index 100% rename from train/8_frames/sprite_27.png rename to train/spritesheet_8/frame_27.png diff --git a/train/8_frames/sprite_28.png b/train/spritesheet_8/frame_28.png similarity index 100% rename from train/8_frames/sprite_28.png rename to train/spritesheet_8/frame_28.png diff --git a/train/8_frames/sprite_29.png b/train/spritesheet_8/frame_29.png similarity index 100% rename from train/8_frames/sprite_29.png rename to train/spritesheet_8/frame_29.png diff --git a/train/8_frames/sprite_3.png b/train/spritesheet_8/frame_3.png similarity index 100% rename from train/8_frames/sprite_3.png rename to train/spritesheet_8/frame_3.png diff --git a/train/8_frames/sprite_30.png b/train/spritesheet_8/frame_30.png similarity index 100% rename from train/8_frames/sprite_30.png rename to train/spritesheet_8/frame_30.png diff --git a/train/8_frames/sprite_31.png b/train/spritesheet_8/frame_31.png similarity index 100% rename from train/8_frames/sprite_31.png rename to train/spritesheet_8/frame_31.png diff --git a/train/8_frames/sprite_4.png b/train/spritesheet_8/frame_4.png similarity index 100% rename from train/8_frames/sprite_4.png rename to train/spritesheet_8/frame_4.png diff --git a/train/8_frames/sprite_5.png b/train/spritesheet_8/frame_5.png similarity index 100% rename from train/8_frames/sprite_5.png rename to train/spritesheet_8/frame_5.png diff --git a/train/8_frames/sprite_6.png b/train/spritesheet_8/frame_6.png similarity index 100% rename from train/8_frames/sprite_6.png rename to train/spritesheet_8/frame_6.png diff --git a/train/8_frames/sprite_7.png b/train/spritesheet_8/frame_7.png similarity index 100% rename from train/8_frames/sprite_7.png rename to train/spritesheet_8/frame_7.png diff --git a/train/8_frames/sprite_8.png b/train/spritesheet_8/frame_8.png similarity index 100% rename from train/8_frames/sprite_8.png rename to train/spritesheet_8/frame_8.png diff --git a/train/8_frames/sprite_9.png b/train/spritesheet_8/frame_9.png similarity index 100% rename from train/8_frames/sprite_9.png rename to train/spritesheet_8/frame_9.png diff --git a/train/80_frames/sprite_0.png b/train/spritesheet_80/frame_0.png similarity index 100% rename from train/80_frames/sprite_0.png rename to train/spritesheet_80/frame_0.png diff --git a/train/80_frames/sprite_1.png b/train/spritesheet_80/frame_1.png similarity index 100% rename from train/80_frames/sprite_1.png rename to train/spritesheet_80/frame_1.png diff --git a/train/80_frames/sprite_2.png b/train/spritesheet_80/frame_2.png similarity index 100% rename from train/80_frames/sprite_2.png rename to train/spritesheet_80/frame_2.png diff --git a/train/80_frames/sprite_3.png b/train/spritesheet_80/frame_3.png similarity index 100% rename from train/80_frames/sprite_3.png rename to train/spritesheet_80/frame_3.png diff --git a/train/80_frames/sprite_4.png b/train/spritesheet_80/frame_4.png similarity index 100% rename from train/80_frames/sprite_4.png rename to train/spritesheet_80/frame_4.png diff --git a/train/80_frames/sprite_5.png b/train/spritesheet_80/frame_5.png similarity index 100% rename from train/80_frames/sprite_5.png rename to train/spritesheet_80/frame_5.png diff --git a/train/80_frames/sprite_6.png b/train/spritesheet_80/frame_6.png similarity index 100% rename from train/80_frames/sprite_6.png rename to train/spritesheet_80/frame_6.png diff --git a/train/80_frames/sprite_7.png b/train/spritesheet_80/frame_7.png similarity index 100% rename from train/80_frames/sprite_7.png rename to train/spritesheet_80/frame_7.png diff --git a/train/80_frames/sprite_8.png b/train/spritesheet_80/frame_8.png similarity index 100% rename from train/80_frames/sprite_8.png rename to train/spritesheet_80/frame_8.png diff --git a/train/81_frames/sprite_0.png b/train/spritesheet_81/frame_0.png similarity index 100% rename from train/81_frames/sprite_0.png rename to train/spritesheet_81/frame_0.png diff --git a/train/81_frames/sprite_1.png b/train/spritesheet_81/frame_1.png similarity index 100% rename from train/81_frames/sprite_1.png rename to train/spritesheet_81/frame_1.png diff --git a/train/81_frames/sprite_2.png b/train/spritesheet_81/frame_2.png similarity index 100% rename from train/81_frames/sprite_2.png rename to train/spritesheet_81/frame_2.png diff --git a/train/81_frames/sprite_3.png b/train/spritesheet_81/frame_3.png similarity index 100% rename from train/81_frames/sprite_3.png rename to train/spritesheet_81/frame_3.png diff --git a/train/81_frames/sprite_4.png b/train/spritesheet_81/frame_4.png similarity index 100% rename from train/81_frames/sprite_4.png rename to train/spritesheet_81/frame_4.png diff --git a/train/81_frames/sprite_5.png b/train/spritesheet_81/frame_5.png similarity index 100% rename from train/81_frames/sprite_5.png rename to train/spritesheet_81/frame_5.png diff --git a/train/81_frames/sprite_6.png b/train/spritesheet_81/frame_6.png similarity index 100% rename from train/81_frames/sprite_6.png rename to train/spritesheet_81/frame_6.png diff --git a/train/81_frames/sprite_7.png b/train/spritesheet_81/frame_7.png similarity index 100% rename from train/81_frames/sprite_7.png rename to train/spritesheet_81/frame_7.png diff --git a/train/81_frames/sprite_8.png b/train/spritesheet_81/frame_8.png similarity index 100% rename from train/81_frames/sprite_8.png rename to train/spritesheet_81/frame_8.png diff --git a/train/82_frames/sprite_0.png b/train/spritesheet_82/frame_0.png similarity index 100% rename from train/82_frames/sprite_0.png rename to train/spritesheet_82/frame_0.png diff --git a/train/82_frames/sprite_1.png b/train/spritesheet_82/frame_1.png similarity index 100% rename from train/82_frames/sprite_1.png rename to train/spritesheet_82/frame_1.png diff --git a/train/82_frames/sprite_2.png b/train/spritesheet_82/frame_2.png similarity index 100% rename from train/82_frames/sprite_2.png rename to train/spritesheet_82/frame_2.png diff --git a/train/89_frames/sprite_3.png b/train/spritesheet_82/frame_3.png similarity index 100% rename from train/89_frames/sprite_3.png rename to train/spritesheet_82/frame_3.png diff --git a/train/83_frames/sprite_0.png b/train/spritesheet_83/frame_0.png similarity index 100% rename from train/83_frames/sprite_0.png rename to train/spritesheet_83/frame_0.png diff --git a/train/83_frames/sprite_1.png b/train/spritesheet_83/frame_1.png similarity index 100% rename from train/83_frames/sprite_1.png rename to train/spritesheet_83/frame_1.png diff --git a/train/91_frames/sprite_3.png b/train/spritesheet_83/frame_2.png similarity index 100% rename from train/91_frames/sprite_3.png rename to train/spritesheet_83/frame_2.png diff --git a/train/95_frames/sprite_2.png b/train/spritesheet_83/frame_3.png similarity index 100% rename from train/95_frames/sprite_2.png rename to train/spritesheet_83/frame_3.png diff --git a/train/84_frames/sprite_0.png b/train/spritesheet_84/frame_0.png similarity index 100% rename from train/84_frames/sprite_0.png rename to train/spritesheet_84/frame_0.png diff --git a/train/84_frames/sprite_1.png b/train/spritesheet_84/frame_1.png similarity index 100% rename from train/84_frames/sprite_1.png rename to train/spritesheet_84/frame_1.png diff --git a/train/84_frames/sprite_2.png b/train/spritesheet_84/frame_2.png similarity index 100% rename from train/84_frames/sprite_2.png rename to train/spritesheet_84/frame_2.png diff --git a/train/95_frames/sprite_3.png b/train/spritesheet_84/frame_3.png similarity index 100% rename from train/95_frames/sprite_3.png rename to train/spritesheet_84/frame_3.png diff --git a/train/85_frames/sprite_0.png b/train/spritesheet_85/frame_0.png similarity index 100% rename from train/85_frames/sprite_0.png rename to train/spritesheet_85/frame_0.png diff --git a/train/86_frames/sprite_0.png b/train/spritesheet_86/frame_0.png similarity index 100% rename from train/86_frames/sprite_0.png rename to train/spritesheet_86/frame_0.png diff --git a/train/87_frames/sprite_0.png b/train/spritesheet_87/frame_0.png similarity index 100% rename from train/87_frames/sprite_0.png rename to train/spritesheet_87/frame_0.png diff --git a/train/89_frames/sprite_0.png b/train/spritesheet_89/frame_0.png similarity index 100% rename from train/89_frames/sprite_0.png rename to train/spritesheet_89/frame_0.png diff --git a/train/89_frames/sprite_1.png b/train/spritesheet_89/frame_1.png similarity index 100% rename from train/89_frames/sprite_1.png rename to train/spritesheet_89/frame_1.png diff --git a/train/96_frames/sprite_3.png b/train/spritesheet_89/frame_2.png similarity index 100% rename from train/96_frames/sprite_3.png rename to train/spritesheet_89/frame_2.png diff --git a/train/spritesheet_89/frame_3.png b/train/spritesheet_89/frame_3.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5ada1cfdf8e73abd22989ae450070da711547e --- /dev/null +++ b/train/spritesheet_89/frame_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2970439bc43d56cd8ded8d2375dbe03c25d7d57d76fc0d4f5b72de9e3806fbaa +size 2199 diff --git a/train/9_frames/sprite_0.png b/train/spritesheet_9/frame_0.png similarity index 100% rename from train/9_frames/sprite_0.png rename to train/spritesheet_9/frame_0.png diff --git a/train/9_frames/sprite_1.png b/train/spritesheet_9/frame_1.png similarity index 100% rename from train/9_frames/sprite_1.png rename to train/spritesheet_9/frame_1.png diff --git a/train/9_frames/sprite_2.png b/train/spritesheet_9/frame_2.png similarity index 100% rename from train/9_frames/sprite_2.png rename to train/spritesheet_9/frame_2.png diff --git a/train/9_frames/sprite_3.png b/train/spritesheet_9/frame_3.png similarity index 100% rename from train/9_frames/sprite_3.png rename to train/spritesheet_9/frame_3.png diff --git a/train/9_frames/sprite_4.png b/train/spritesheet_9/frame_4.png similarity index 100% rename from train/9_frames/sprite_4.png rename to train/spritesheet_9/frame_4.png diff --git a/train/9_frames/sprite_5.png b/train/spritesheet_9/frame_5.png similarity index 100% rename from train/9_frames/sprite_5.png rename to train/spritesheet_9/frame_5.png diff --git a/train/9_frames/sprite_6.png b/train/spritesheet_9/frame_6.png similarity index 100% rename from train/9_frames/sprite_6.png rename to train/spritesheet_9/frame_6.png diff --git a/train/9_frames/sprite_7.png b/train/spritesheet_9/frame_7.png similarity index 100% rename from train/9_frames/sprite_7.png rename to train/spritesheet_9/frame_7.png diff --git a/train/90_frames/sprite_0.png b/train/spritesheet_90/frame_0.png similarity index 100% rename from train/90_frames/sprite_0.png rename to train/spritesheet_90/frame_0.png diff --git a/train/90_frames/sprite_1.png b/train/spritesheet_90/frame_1.png similarity index 100% rename from train/90_frames/sprite_1.png rename to train/spritesheet_90/frame_1.png diff --git a/train/90_frames/sprite_2.png b/train/spritesheet_90/frame_2.png similarity index 100% rename from train/90_frames/sprite_2.png rename to train/spritesheet_90/frame_2.png diff --git a/train/90_frames/sprite_3.png b/train/spritesheet_90/frame_3.png similarity index 100% rename from train/90_frames/sprite_3.png rename to train/spritesheet_90/frame_3.png diff --git a/train/91_frames/sprite_0.png b/train/spritesheet_91/frame_0.png similarity index 100% rename from train/91_frames/sprite_0.png rename to train/spritesheet_91/frame_0.png diff --git a/train/91_frames/sprite_1.png b/train/spritesheet_91/frame_1.png similarity index 100% rename from train/91_frames/sprite_1.png rename to train/spritesheet_91/frame_1.png diff --git a/train/91_frames/sprite_2.png b/train/spritesheet_91/frame_2.png similarity index 100% rename from train/91_frames/sprite_2.png rename to train/spritesheet_91/frame_2.png diff --git a/train/spritesheet_91/frame_3.png b/train/spritesheet_91/frame_3.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5ada1cfdf8e73abd22989ae450070da711547e --- /dev/null +++ b/train/spritesheet_91/frame_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2970439bc43d56cd8ded8d2375dbe03c25d7d57d76fc0d4f5b72de9e3806fbaa +size 2199 diff --git a/train/92_frames/sprite_0.png b/train/spritesheet_92/frame_0.png similarity index 100% rename from train/92_frames/sprite_0.png rename to train/spritesheet_92/frame_0.png diff --git a/train/92_frames/sprite_1.png b/train/spritesheet_92/frame_1.png similarity index 100% rename from train/92_frames/sprite_1.png rename to train/spritesheet_92/frame_1.png diff --git a/train/92_frames/sprite_2.png b/train/spritesheet_92/frame_2.png similarity index 100% rename from train/92_frames/sprite_2.png rename to train/spritesheet_92/frame_2.png diff --git a/train/92_frames/sprite_3.png b/train/spritesheet_92/frame_3.png similarity index 100% rename from train/92_frames/sprite_3.png rename to train/spritesheet_92/frame_3.png diff --git a/train/93_frames/sprite_0.png b/train/spritesheet_93/frame_0.png similarity index 100% rename from train/93_frames/sprite_0.png rename to train/spritesheet_93/frame_0.png diff --git a/train/94_frames/sprite_0.png b/train/spritesheet_94/frame_0.png similarity index 100% rename from train/94_frames/sprite_0.png rename to train/spritesheet_94/frame_0.png diff --git a/train/94_frames/sprite_1.png b/train/spritesheet_94/frame_1.png similarity index 100% rename from train/94_frames/sprite_1.png rename to train/spritesheet_94/frame_1.png diff --git a/train/94_frames/sprite_2.png b/train/spritesheet_94/frame_2.png similarity index 100% rename from train/94_frames/sprite_2.png rename to train/spritesheet_94/frame_2.png diff --git a/train/94_frames/sprite_3.png b/train/spritesheet_94/frame_3.png similarity index 100% rename from train/94_frames/sprite_3.png rename to train/spritesheet_94/frame_3.png diff --git a/train/95_frames/sprite_0.png b/train/spritesheet_95/frame_0.png similarity index 100% rename from train/95_frames/sprite_0.png rename to train/spritesheet_95/frame_0.png diff --git a/train/95_frames/sprite_1.png b/train/spritesheet_95/frame_1.png similarity index 100% rename from train/95_frames/sprite_1.png rename to train/spritesheet_95/frame_1.png diff --git a/train/spritesheet_95/frame_2.png b/train/spritesheet_95/frame_2.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5ada1cfdf8e73abd22989ae450070da711547e --- /dev/null +++ b/train/spritesheet_95/frame_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2970439bc43d56cd8ded8d2375dbe03c25d7d57d76fc0d4f5b72de9e3806fbaa +size 2199 diff --git a/train/spritesheet_95/frame_3.png b/train/spritesheet_95/frame_3.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5ada1cfdf8e73abd22989ae450070da711547e --- /dev/null +++ b/train/spritesheet_95/frame_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2970439bc43d56cd8ded8d2375dbe03c25d7d57d76fc0d4f5b72de9e3806fbaa +size 2199 diff --git a/train/96_frames/sprite_0.png b/train/spritesheet_96/frame_0.png similarity index 100% rename from train/96_frames/sprite_0.png rename to train/spritesheet_96/frame_0.png diff --git a/train/96_frames/sprite_1.png b/train/spritesheet_96/frame_1.png similarity index 100% rename from train/96_frames/sprite_1.png rename to train/spritesheet_96/frame_1.png diff --git a/train/96_frames/sprite_2.png b/train/spritesheet_96/frame_2.png similarity index 100% rename from train/96_frames/sprite_2.png rename to train/spritesheet_96/frame_2.png diff --git a/train/spritesheet_96/frame_3.png b/train/spritesheet_96/frame_3.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5ada1cfdf8e73abd22989ae450070da711547e --- /dev/null +++ b/train/spritesheet_96/frame_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2970439bc43d56cd8ded8d2375dbe03c25d7d57d76fc0d4f5b72de9e3806fbaa +size 2199 diff --git a/upload-description.py b/upload-description.py index cefeacb96f17346ee3d3820137498c04da968d93..9f62f610cb63ec08d68c109d70e8131d6b081240 100644 --- a/upload-description.py +++ b/upload-description.py @@ -6,14 +6,23 @@ def load_metadata(): metadata_path = "metadata.jsonl" metadata = {} + if not os.path.exists(metadata_path): + print(f"Error: '{metadata_path}' file not found!") + return metadata + # Parse JSONL file and map descriptions by sprite ID - with open(metadata_path, 'r') as f: - for line in f: - if line.strip(): - entry = json.loads(line) - # Extract sprite ID from file_name (e.g., "23.png" -> "23") - sprite_id = entry["file_name"].split(".")[0] - metadata[sprite_id] = entry["text"] + try: + with open(metadata_path, 'r') as f: + for line in f: + if line.strip(): + entry = json.loads(line) + # Extract sprite ID from file_name (e.g., "23.png" -> "23") + sprite_id = entry["file_name"].split(".")[0] + metadata[sprite_id] = entry["text"] + except Exception as e: + print(f"Error reading metadata file: {str(e)}") + + print(f"Loaded {len(metadata)} entries from metadata file") return metadata def extract_info_safely(description): @@ -26,24 +35,33 @@ def extract_info_safely(description): } try: - # Extract frame count - if "-frame" in description: - info["frames"] = description.split("-frame")[0] - - # Extract action - if "that: " in description and "," in description: - info["action"] = description.split("that: ")[1].split(",")[0] - - # Extract direction - if "facing: " in description: - info["direction"] = description.split("facing: ")[1] - - # Extract character - if "of: " in description and ", that:" in description: - info["character"] = description.split("of: ")[1].split(", that:")[0] + # Standard format: "X-frame sprite animation of: CHARACTER, that: ACTION, facing: DIRECTION" + if "-frame sprite animation of:" in description: + # Extract frame count + info["frames"] = description.split("-frame")[0].strip() + + # Extract character + if "of:" in description and ", that:" in description: + character_part = description.split("of:")[1].split(", that:")[0].strip() + info["character"] = character_part + + # Extract action + if ", that:" in description and ", facing:" in description: + action_part = description.split(", that:")[1].split(", facing:")[0].strip() + info["action"] = action_part + elif ", that:" in description: + # Handle case where facing might not be present + action_part = description.split(", that:")[1].strip() + info["action"] = action_part + # Extract direction + if ", facing:" in description: + direction_part = description.split(", facing:")[1].strip() + info["direction"] = direction_part + + print(f"Processed: '{description[:30]}...' -> frames: {info['frames']}") except Exception as e: - print(f"Warning: Error parsing description: {description}") + print(f"Warning: Error parsing description: '{description}'") print(f"Error details: {str(e)}") return info @@ -52,6 +70,9 @@ def create_sprite_dataset(): """Create sprite dataset with metadata""" # Load metadata metadata = load_metadata() + if not metadata: + print("No metadata entries found. Check if metadata.jsonl exists and has content.") + return {} # Create output directory structure base_dir = "sprite_dataset" @@ -61,31 +82,45 @@ def create_sprite_dataset(): # Create metadata mapping sprite_info = {} - # Process each folder in the train directory + # Check if train directory exists train_dir = "train" - for folder_name in os.listdir(train_dir): - if folder_name.endswith("_frames"): - # Extract sprite ID from folder name (e.g., "23_frames" -> "23") - sprite_id = folder_name.split("_")[0] - - # Get description from metadata - description = metadata.get(sprite_id, "No description available") - - # Extract information safely - info = extract_info_safely(description) - - # Create organized structure with folder name - sprite_info[sprite_id] = { - "frames": info["frames"], - "action": info["action"], - "direction": info["direction"], - "character": info["character"], - "folder_name": folder_name, - "full_description": description - } + if not os.path.exists(train_dir): + print(f"Error: '{train_dir}' directory not found!") + return sprite_info + + # Process each folder in the train directory - looking for spritesheet_X folders + frame_folders = [f for f in os.listdir(train_dir) if f.startswith("spritesheet_") and os.path.isdir(os.path.join(train_dir, f))] + if not frame_folders: + print(f"Warning: No folders starting with 'spritesheet_' found in '{train_dir}'") + else: + print(f"Found {len(frame_folders)} spritesheet folders to process") + + for folder_name in frame_folders: + # Extract sprite ID from folder name (e.g., "spritesheet_23" -> "23") + sprite_id = folder_name.split("_")[1] + + # Get description from metadata + description = metadata.get(sprite_id, "No description available") + + # Extract information safely + info = extract_info_safely(description) + + # Create organized structure with folder name + sprite_info[sprite_id] = { + "frames": info["frames"], + "action": info["action"], + "direction": info["direction"], + "character": info["character"], + "folder_name": folder_name, + "full_description": description + } + + if not sprite_info: + print("Warning: No sprite information was extracted!") + return {} # Save metadata to JSON file - metadata_path = os.path.join(base_dir, "sprite_metadata.json") + metadata_path = "sprite_metadata.json" # Save in current directory for easier debugging with open(metadata_path, "w") as f: json.dump(sprite_info, f, indent=4)