diff --git a/.gitignore b/.gitignore index 68bc17f..71856bf 100644 --- a/.gitignore +++ b/.gitignore @@ -158,3 +158,6 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ + +# Mac bs +.DS_store diff --git a/Game/UI/ui.py b/Game/UI/ui.py new file mode 100644 index 0000000..7c922e0 --- /dev/null +++ b/Game/UI/ui.py @@ -0,0 +1,98 @@ +import pygame +from utils.settings import * + +class UI: + def __init__(self): + + # General info + self.display_surface = pygame.display.get_surface() + self.font = pygame.font.Font(UI_FONT, UI_FONT_SIZE) + + # Bar setup + self.health_bar_rect = pygame.Rect(10, 10, HEALTH_BAR_WIDTH, BAR_HEIGHT) + self.energy_bar_rect = pygame.Rect(10, 34, ENERGY_BAR_WIDTH, BAR_HEIGHT) + + # Convert weapon dictionary + self.weapon_graphics = [] + for weapon in weapon_data.values(): + path = weapon['graphic'] + weapon = pygame.image.load(path).convert_alpha() + self.weapon_graphics.append(weapon) + + # Convert weapon dictionary + self.magic_graphics = [] + for spell in magic_data.values(): + path = spell['graphic'] + spell = pygame.image.load(path).convert_alpha() + self.magic_graphics.append(spell) + + + def show_bar(self, current_amount, max_amount, bg_rect, color): + + # Draw background + pygame.draw.rect(self.display_surface, UI_BG_COLOR, bg_rect) + + # Convert stat amount to pixels + ratio = current_amount / max_amount + current_width = bg_rect.width * ratio + current_rect = bg_rect.copy() + current_rect.width = current_width + + # Draw stat bar + pygame.draw.rect(self.display_surface, color, current_rect) + pygame.draw.rect(self.display_surface, UI_BORDER_COLOR, bg_rect, 4) + + def show_exp(self, exp): + if exp >= 0: + text_surf = self.font.render(f"EXP: {str(int(exp))}", False, TEXT_COLOR) + x = self.display_surface.get_size()[0] - 20 + y = self.display_surface.get_size()[1] - 20 + text_rect = text_surf.get_rect(bottomright = (x,y)) + + pygame.draw.rect(self.display_surface, UI_BG_COLOR, text_rect.inflate(10, 10)) + self.display_surface.blit(text_surf, text_rect) + pygame.draw.rect(self.display_surface, UI_BORDER_COLOR, text_rect.inflate(10, 10), 4) + else: + text_surf = self.font.render(f"OBSERVER", False, TEXT_COLOR) + x = self.display_surface.get_size()[0] - 20 + y = self.display_surface.get_size()[1] - 20 + text_rect = text_surf.get_rect(bottomright = (x,y)) + + pygame.draw.rect(self.display_surface, UI_BG_COLOR, text_rect.inflate(10, 10)) + self.display_surface.blit(text_surf, text_rect) + pygame.draw.rect(self.display_surface, UI_BORDER_COLOR, text_rect.inflate(10, 10), 4) + + + def selection_box(self, left, top, has_rotated): + bg_rect = pygame.Rect(left, top, ITEM_BOX_SIZE, ITEM_BOX_SIZE) + pygame.draw.rect(self.display_surface, UI_BG_COLOR, bg_rect) + if not has_rotated: + pygame.draw.rect(self.display_surface, UI_BORDER_COLOR_ACTIVE, bg_rect, 4) + else: + pygame.draw.rect(self.display_surface, UI_BORDER_COLOR, bg_rect, 4) + return bg_rect + + def weapon_overlay(self, weapon_index, has_rotated): + bg_rect = self.selection_box(10, 630, has_rotated) + weapon_surf = self.weapon_graphics[weapon_index] + weapon_rect = weapon_surf.get_rect(center = bg_rect.center) + + self.display_surface.blit(weapon_surf, weapon_rect) + + def magic_overlay(self, magic_index, has_swaped): + bg_rect = self.selection_box(100, 630, has_swaped) + magic_surf = self.magic_graphics[magic_index] + magic_rect = magic_surf.get_rect(center = bg_rect.center) + + self.display_surface.blit(magic_surf, magic_rect) + + def display(self, player): + if player.sprite_type == 'player': + self.show_bar(player.health, player.stats['health'], self.health_bar_rect, HEALTH_COLOR) + self.show_bar(player.energy, player.stats['energy'], self.energy_bar_rect, ENERGY_COLOR) + self.show_exp(player.exp) + self.weapon_overlay(player.weapon_index, player.can_rotate_weapon) + self.magic_overlay(player.magic_index, player.can_swap_magic) + if player.sprite_type == 'camera': + self.show_exp(player.exp) + diff --git a/Game/UI/upgrade.py b/Game/UI/upgrade.py new file mode 100644 index 0000000..b950ac3 --- /dev/null +++ b/Game/UI/upgrade.py @@ -0,0 +1,143 @@ +import pygame +from utils.settings import * + +class Upgrade: + + def __init__(self, player): + + # General setup + self.display_surface = pygame.display.get_surface() + self.player = player + self.attribute_num = len(player.stats) + self.attribute_names = list(player.stats.keys()) + self.max_values = list(player.max_stats.values()) + self.font = pygame.font.Font(UI_FONT, UI_FONT_SIZE) + + # Defining upgrade boxes + self.height = self.display_surface.get_size()[1] * 0.8 + self.width = self.display_surface.get_size()[0] // (self.attribute_num + 1) + self.create_boxes() + + # Selection System + self.selection_index = 0 + self.selection_time = None + self.can_move = True + + def input(self): + keys = pygame.key.get_pressed() + + if self.can_move: + if keys[pygame.K_d]: + self.selection_index += 1 + if self.selection_index == self.attribute_num: + self.selection_index = 0 + self.can_move = False + self.selection_time = pygame.time.get_ticks() + elif keys[pygame.K_a]: + self.selection_index -= 1 + if self.selection_index == -1: + self.selection_index = self.attribute_num - 1 + self.can_move = False + self.selection_time = pygame.time.get_ticks() + + if keys[pygame.K_SPACE]: + self.can_move = False + self.selection_time = pygame.time.get_ticks() + self.box_list[self.selection_index].trigger(self.player) + + def selection_cooldown(self): + if not self.can_move: + current_time = pygame.time.get_ticks() + if current_time - self.selection_time >= 150: + self.can_move = True + + def create_boxes(self): + self.box_list = [] + + for box, index in enumerate(range(self.attribute_num)): + + # Horizontal position + full_width = self.display_surface.get_size()[0] + increment = full_width // self.attribute_num + left = (box * increment) + (increment - self.width) // 2 + + # Vertical position + top = self.display_surface.get_size()[1] * 0.1 + + box = Box(left, top, self.width, self.height, index, self.font) + self.box_list.append(box) + + + def display(self): + + self.input() + self.selection_cooldown() + + for index, box in enumerate(self.box_list): + # Get attributes + name = self.attribute_names[index] + value = self.player.get_value_by_index(index) + max_value = self.max_values[index] + cost = self.player.get_cost_by_index(index) + box.display(self.display_surface, self.selection_index, name, value, max_value, cost) + + +class Box: + def __init__(self, l, t, w, h, index, font): + self.rect = pygame.Rect(l, t, w, h) + self.index = index + self.font = font + + def display_names(self, surface, name, cost, selected): + color = TEXT_COLOR_SELECTED if selected else TEXT_COLOR + + # Title + title_surf = self.font.render(name, False, color) + title_rect = title_surf.get_rect(midtop = self.rect.midtop + pygame.math.Vector2(0, 20)) + # Cost + cost_surf = self.font.render(f'Cost: {int(cost)}', False, color) + cost_rect = cost_surf.get_rect(midbottom = self.rect.midbottom +- pygame.math.Vector2(0, 20)) + + # Draw + surface.blit(title_surf, title_rect) + surface.blit(cost_surf, cost_rect) + + def display_bar(self, surface, value, max_value, selected): + + # Line setup + top = self.rect.midtop + pygame.math.Vector2(0, 60) + bottom = self.rect.midbottom - pygame.math.Vector2(0,60) + color = BAR_COLOR_SELECTED if selected else BAR_COLOR + + # Bar setup + full_height = bottom[1] - top[1] + relative_number = (value / max_value) * full_height + value_rect = pygame.Rect(top[0] - 15, bottom[1] - relative_number, 30, 10) + + # Draw elements + pygame.draw.line(surface, color, top, bottom, 5) + pygame.draw.rect(surface, color, value_rect) + + def trigger(self, player): + upgrade_attribute = list(player.stats.keys())[self.index] + + if player.exp >= player.upgrade_costs[upgrade_attribute] and player.stats[upgrade_attribute] < player.max_stats[upgrade_attribute]: + player.exp -= player.upgrade_costs[upgrade_attribute] + player.stats[upgrade_attribute] *= 1.2 + player.upgrade_costs[upgrade_attribute] *= 1.4 + + if player.stats[upgrade_attribute] > player.max_stats[upgrade_attribute]: + player.stats[upgrade_attribute] = player.max_stats[upgrade_attribute] + + + + def display(self, surface, selection_num, name, value, max_value, cost): + if self.index == selection_num: + pygame.draw.rect(surface, UPGRADE_BG_COLOR_SELECTED, self.rect) + pygame.draw.rect(surface, UI_BORDER_COLOR, self.rect, 4) + else: + pygame.draw.rect(surface, UI_BG_COLOR, self.rect) + pygame.draw.rect(surface, UI_BORDER_COLOR, self.rect, 4) + + self.display_names(surface, name, cost, self.index == selection_num) + self.display_bar(surface, value, max_value, self.index == selection_num) diff --git a/Game/__init__.py b/Game/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Game/effects/__init__.py b/Game/effects/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Game/effects/magic.py b/Game/effects/magic.py new file mode 100644 index 0000000..2b19cb8 --- /dev/null +++ b/Game/effects/magic.py @@ -0,0 +1,49 @@ +import pygame +from utils.settings import * +from random import randint + +class MagicPlayer: + def __init__(self, animation_player): + self.animation_player = animation_player + + # Sound Setup + self.sounds = { + 'heal': pygame.mixer.Sound('../Graphics/audio/heal.wav'), + 'flame': pygame.mixer.Sound('../Graphics/audio/flame.wav') + } + + def heal(self, player, strength, cost, groups): + if player.energy >= cost: + self.sounds['heal'].play() + player.health += strength + player.energy -= cost + if player.health >= player.stats['health']: + player.health = player.stats['health'] + self.animation_player.generate_particles('aura', player.rect.center, groups) + self.animation_player.generate_particles('heal', player.rect.center + pygame.math.Vector2(0, -50), groups) + + def flame(self, player, cost, groups): + if player.energy >= cost: + player.energy -= cost + self.sounds['flame'].play() + + if player.status.split('_')[0] == 'right': + direction = pygame.math.Vector2(1,0) + elif player.status.split('_')[0] == 'left': + direction = pygame.math.Vector2(-1,0) + elif player.status.split('_')[0] == 'up': + direction = pygame.math.Vector2(0,-1) + else: + direction = pygame.math.Vector2(0,1) + + for i in range(1, 6): + if direction.x: + offset_x = direction.x * i * TILESIZE + x = player.rect.centerx + offset_x + randint(-TILESIZE // 3, TILESIZE //3) + y = player.rect.centery + randint(-TILESIZE // 3, TILESIZE //3) + self.animation_player.generate_particles('flame', (x,y), groups) + else: + offset_y = direction.y * i * TILESIZE + x = player.rect.centerx + randint(-TILESIZE // 3, TILESIZE //3) + y = player.rect.centery + offset_y + randint(-TILESIZE // 3, TILESIZE //3) + self.animation_player.generate_particles('flame', (x,y), groups) diff --git a/Game/effects/particles.py b/Game/effects/particles.py new file mode 100644 index 0000000..d33b318 --- /dev/null +++ b/Game/effects/particles.py @@ -0,0 +1,76 @@ +import pygame +from utils.support import import_folder +from random import choice + +class AnimationPlayer: + def __init__(self): + self.frames = { + # magic + 'flame': import_folder('../Graphics/graphics/particles/flame/frames'), + 'aura': import_folder('../Graphics/graphics/particles/aura'), + 'heal': import_folder('../Graphics/graphics/particles/heal/frames'), + + # attacks + 'claw': import_folder('../Graphics/graphics/particles/claw'), + 'slash': import_folder('../Graphics/graphics/particles/slash'), + 'sparkle': import_folder('../Graphics/graphics/particles/sparkle'), + 'leaf_attack': import_folder('../Graphics/graphics/particles/leaf_attack'), + 'thunder': import_folder('../Graphics/graphics/particles/thunder'), + + # monster deaths + 'squid': import_folder('../Graphics/graphics/particles/smoke_orange'), + 'raccoon': import_folder('../Graphics/graphics/particles/raccoon'), + 'spirit': import_folder('../Graphics/graphics/particles/nova'), + 'bamboo': import_folder('../Graphics/graphics/particles/bamboo'), + + # leafs + 'leaf': ( + import_folder('../Graphics/graphics/particles/leaf1'), + import_folder('../Graphics/graphics/particles/leaf2'), + import_folder('../Graphics/graphics/particles/leaf3'), + import_folder('../Graphics/graphics/particles/leaf4'), + import_folder('../Graphics/graphics/particles/leaf5'), + import_folder('../Graphics/graphics/particles/leaf6'), + self.reflect_images(import_folder('../Graphics/graphics/particles/leaf1')), + self.reflect_images(import_folder('../Graphics/graphics/particles/leaf2')), + self.reflect_images(import_folder('../Graphics/graphics/particles/leaf3')), + self.reflect_images(import_folder('../Graphics/graphics/particles/leaf4')), + self.reflect_images(import_folder('../Graphics/graphics/particles/leaf5')), + self.reflect_images(import_folder('../Graphics/graphics/particles/leaf6')) + ) + } + + def reflect_images(self, frames): + new_frames = [] + for frame in frames: + flipped_frame = pygame.transform.flip(frame, True, False) + new_frames.append(flipped_frame) + return new_frames + + def create_grass_particles(self, position, groups): + animation_frames = choice(self.frames['leaf']) + ParticleEffect(position, animation_frames,groups) + + def generate_particles(self, animation_type, position, groups): + animation_frames = self.frames[animation_type] + ParticleEffect(position, animation_frames, groups) + +class ParticleEffect(pygame.sprite.Sprite): + def __init__(self, position, animation_frames, groups): + super().__init__(groups) + self.frame_index = 0 + self.animation_speed = 0.15 + self.frames = animation_frames + self.image = self.frames[self.frame_index] + self.rect = self.image.get_rect(center = position) + self.sprite_type = 'magic' + + def animate(self): + self.frame_index += self.animation_speed + if self.frame_index >= len(self.frames): + self.kill() + else: + self.image = self.frames[int(self.frame_index)] + + def update(self): + self.animate() diff --git a/Game/effects/weapon.py b/Game/effects/weapon.py new file mode 100644 index 0000000..1762803 --- /dev/null +++ b/Game/effects/weapon.py @@ -0,0 +1,23 @@ +import pygame + +class Weapon(pygame.sprite.Sprite): + + def __init__(self, player, groups): + super().__init__(groups) + + self.sprite_type = 'weapon' + direction = player.status.split('_')[0] + + # Graphic + full_path = f"../Graphics/graphics/weapons/{player.weapon}/{direction}.png" + self.image = pygame.image.load(full_path).convert_alpha() + + # Sprite Placement + if direction == 'right': + self.rect = self.image.get_rect(midleft = player.rect.midright + pygame.math.Vector2(0, 16)) + elif direction == 'left': + self.rect = self.image.get_rect(midright = player.rect.midleft + pygame.math.Vector2(0, 16)) + elif direction == 'down': + self.rect = self.image.get_rect(midtop = player.rect.midbottom + pygame.math.Vector2(-10, 0)) + else: + self.rect = self.image.get_rect(midbottom = player.rect.midtop + pygame.math.Vector2(-10, 0)) diff --git a/Game/main.py b/Game/main.py new file mode 100644 index 0000000..aaa9e06 --- /dev/null +++ b/Game/main.py @@ -0,0 +1,42 @@ +import pygame +import sys + +from utils.settings import * +from utils.debug import debug + +from objects.level import Level + +class Game: + + def __init__(self): + + pygame.init() + + self.screen = pygame.display.set_mode((WIDTH,HEIGHT)) + pygame.display.set_caption('Pneuma') + self.clock = pygame.time.Clock() + + self.level = Level() + + # Sound + main_sound = pygame.mixer.Sound('../Graphics/audio/main.ogg') + main_sound.set_volume(0.4) + main_sound.play(loops = -1) + def run(self): + while True: + for event in pygame.event.get(): + if event.type == pygame.QUIT: + pygame.quit() + sys.exit() + if event.type == pygame.KEYDOWN: + if event.key == pygame.K_m: + self.level.toggle_menu() + + self.screen.fill(WATER_COLOR) + self.level.run() + pygame.display.update() + self.clock.tick(FPS) + +if __name__ == '__main__': + game = Game() + game.run() diff --git a/Game/objects/__init__.py b/Game/objects/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Game/objects/camera.py b/Game/objects/camera.py new file mode 100644 index 0000000..320c4ed --- /dev/null +++ b/Game/objects/camera.py @@ -0,0 +1,61 @@ +import pygame +import random + +from utils.settings import * +from utils.support import import_folder + +class Camera(pygame.sprite.Sprite): + + def __init__(self, position, groups): + super().__init__(groups) + + self.sprite_type = 'camera' + + self.image = pygame.image.load('../Graphics/graphics/camera.png').convert_alpha() + self.rect = self.image.get_rect(topleft = position) + self.hitbox = self.rect.inflate(HITBOX_OFFSET[self.sprite_type]) + + # Stats + self.exp = -1 # This prints OBSERVER in the UI + self.speed = 10 # Speed for moving around + + #Movement + self.direction = pygame.math.Vector2() + + def input(self): + keys = pygame.key.get_pressed() + + # Movement Input + if keys[pygame.K_w]: + self.direction.y = -1 + self.status = 'up' + self.can_move = False + elif keys[pygame.K_s]: + self.direction.y = 1 + self.status = 'down' + self.can_move = False + else: + self.direction.y = 0 + + if keys[pygame.K_a]: + self.direction.x = -1 + self.status = 'left' + self.can_move = False + elif keys[pygame.K_d]: + self.direction.x = 1 + self.status = 'right' + self.can_move = False + else: + self.direction.x = 0 + + def move(self, speed): + if self.direction.magnitude() != 0: + self.direction = self.direction.normalize() + self.hitbox.x += self.direction.x * speed + self.hitbox.y += self.direction.y * speed + self.rect.center = self.hitbox.center + + + def update(self): + self.input() + self.move(self.speed) diff --git a/Game/objects/enemy.py b/Game/objects/enemy.py new file mode 100644 index 0000000..6f03650 --- /dev/null +++ b/Game/objects/enemy.py @@ -0,0 +1,160 @@ +import pygame + +from utils.settings import * +from utils.support import import_folder + +from objects.entity import Entity + +class Enemy(Entity): + + def __init__(self, monster_name, position, groups, obstacle_sprites, damage_player, trigger_death_particles, add_exp, is_AI): + super().__init__(groups, is_AI) + + # General setup + self.sprite_type = 'enemy' + + # Graphics setup + self.import_graphics(monster_name) + self.status = 'idle' + self.image = self.animations[self.status][self.frame_index] + + # Movement + self.rect = self.image.get_rect(topleft = position) + self.hitbox = self.rect.inflate(0, -10) + + # Stats + self.monster_name = monster_name + monster_info = monster_data[self.monster_name] + self.health = monster_info['health'] + self.exp = monster_info['exp'] + self.speed = monster_info['speed'] + self.attack_damage = monster_info['damage'] + self.resistance = monster_info['resistance'] + self.attack_radius = monster_info['attack_radius'] + self.notice_radius = monster_info['notice_radius'] + self.attack_type = monster_info['attack_type'] + + # Sounds + self.attack_sound = pygame.mixer.Sound(monster_info['attack_sound']) + self.death_sound = pygame.mixer.Sound('../Graphics/audio/death.wav') + self.hit_sound = pygame.mixer.Sound('../Graphics/audio/hit.wav') + self.death_sound.set_volume(0.2) + self.hit_sound.set_volume(0.2) + self.attack_sound.set_volume(0.2) + + # Player Interaction + self.can_attack = True + self.attack_time = None + self.attack_cooldown = 400 + self.damage_player = damage_player + self.trigger_death_particles = trigger_death_particles + self.add_exp = add_exp + + # Invincibility times + self.vulnerable = True + self.hit_time = None + self.invincibility_duration = 300 + + self.obstacle_sprites = obstacle_sprites + + def import_graphics(self, name): + self.animations = {'idle':[], 'move':[], 'attack':[]} + main_path = f"../Graphics/graphics/monsters/{name}" + for animation in self.animations.keys(): + self.animations[animation] = import_folder(f"{main_path}/{animation}") + + def get_player_distance_direction(self,player): + enemy_vector = pygame.math.Vector2(self.rect.center) + player_vector = pygame.math.Vector2(player.rect.center) + + distance = (player_vector - enemy_vector).magnitude() + if distance > 0: + direction = (player_vector - enemy_vector).normalize() + else: + direction = pygame.math.Vector2() + + return (distance, direction) + + def get_status(self, player): + distance = self.get_player_distance_direction(player)[0] + + if distance <= self.attack_radius and self.can_attack: + if self.status != 'attack': + self.frame_index = 0 + self.status = 'attack' + elif distance <= self.notice_radius: + self.status = 'move' + else: + self.status = 'idle' + + def actions(self, player): + if self.status == 'attack': + self.attack_sound.play() + self.attack_time = pygame.time.get_ticks() + self.damage_player(self.attack_damage, self.attack_type) + elif self.status == 'move': + self.direction = self.get_player_distance_direction(player)[1] + else: + self.direction = pygame.math.Vector2() + + def animate(self): + animation = self.animations[self.status] + + self.frame_index += self.animation_speed + if self.frame_index >= len(animation): + if self.status =='attack': + self.can_attack = False + self.frame_index = 0 + + self.image = animation[int(self.frame_index)] + self.rect = self.image.get_rect(center = self.hitbox.center) + + if not self.vulnerable: + alpha = self.wave_value() + self.image.set_alpha(alpha) + else: + self.image.set_alpha(255) + + def cooldowns(self): + current_time = pygame.time.get_ticks() + + if not self.can_attack: + if current_time - self.attack_time >= self.attack_cooldown: + self.can_attack = True + + if not self.vulnerable: + if current_time - self.hit_time >= self.invincibility_duration: + self.vulnerable = True + + def get_damage(self, player, attack_type): + if self.vulnerable: + self.hit_sound.play() + self.direction = self.get_player_distance_direction(player)[1] + if attack_type == 'weapon': + self.health -= player.get_full_weapon_damage() + else: + self.health -= player.get_full_magic_damage() + self.hit_time = pygame.time.get_ticks() + self.vulnerable = False + + def check_death(self): + if self.health <= 0: + self.trigger_death_particles(self.rect.center, self.monster_name) + self.add_exp(self.exp) + self.death_sound.play() + self.kill() + + def hit_reaction(self): + if not self.vulnerable: + self.direction *= -self.resistance + + def update(self): + self.hit_reaction() + self.move(self.speed) + self.animate() + self.cooldowns() + self.check_death() + + def enemy_update(self, player): + self.get_status(player) + self.actions(player) diff --git a/Game/objects/entity.py b/Game/objects/entity.py new file mode 100644 index 0000000..165f015 --- /dev/null +++ b/Game/objects/entity.py @@ -0,0 +1,144 @@ +import pygame +from math import sin +import random + +from utils.settings import * + + + +class Entity(pygame.sprite.Sprite): + def __init__(self, groups, is_AI): + super().__init__(groups) + + # Animation + self.frame_index = 0 + self.animation_speed = 0.15 + + # Movement + self.direction = pygame.math.Vector2() + self.move_cooldown = 150 + self.can_move = True + self.move_time = None + + # AI Setup + if is_AI: + self.possible_actions = { + 0: ('up', -1, 0), + 1: ('down', 1, 0), + 2: ('left', 0, -1), + 3: ('right', 0, 1), + 4: ('attack', None, None), + 5: ('magic', None, None), + 6: ('rotate_weapon', None, None), + 7: ('swap_magic', None, None) + } + self.distance_direction_to_player = [(float('inf'), 0, 0, None, None, None, None, None, None, None, None, None)]*5 + + + def move(self, speed): + if self.direction.magnitude() != 0: + self.direction = self.direction.normalize() + + self.hitbox.x += self.direction.x * speed + self.collision('horizontal') + self.hitbox.y += self.direction.y * speed + self.collision('vertical') + self.rect.center = self.hitbox.center + + def collision(self, direction): + if direction == 'horizontal': + for sprite in self.obstacle_sprites: + # The following works for static obstacles only + if sprite.hitbox.colliderect(self.hitbox): + # Moving Right + if self.direction.x > 0: + self.hitbox.right = sprite.hitbox.left + # Moving Left + if self.direction.x < 0: + self.hitbox.left = sprite.hitbox.right + + if direction == 'vertical': + for sprite in self.obstacle_sprites: + # The following works for static obstacles only + if sprite.hitbox.colliderect(self.hitbox): + # Moving Down + if self.direction.y > 0: + self.hitbox.bottom = sprite.hitbox.top + # Moving Up + if self.direction.y < 0: + self.hitbox.top = sprite.hitbox.bottom + + def input(self): + if not self.attacking and self.can_move: + keys = pygame.key.get_pressed() + button = random.randint(0, 5) + + self.move_time = pygame.time.get_ticks() + + # Movement Input + if button == 0: #keys[pygame.K_w]: + self.direction.y = -1 + self.status = 'up' + self.can_move = False + elif button == 1: #keys[pygame.K_s]: + self.direction.y = 1 + self.status = 'down' + self.can_move = False + else: + self.direction.y = 0 + + if button == 2: #keys[pygame.K_a]: + self.direction.x = -1 + self.status = 'left' + self.can_move = False + elif button == 3: #keys[pygame.K_d]: + self.direction.x = 1 + self.status = 'right' + self.can_move = False + else: + self.direction.x = 0 + + # Combat Input + if button == 4: #keys[pygame.K_e]: + self.attacking = True + self.attack_time = pygame.time.get_ticks() + self.create_attack_sprite() + self.weapon_attack_sound.play() + + # Magic Input + if button == 5: #keys[pygame.K_q]: + self.attacking = True + self.attack_time = pygame.time.get_ticks() + style = list(magic_data.keys())[self.magic_index] + strength = list(magic_data.values())[self.magic_index]['strength'] + self.stats['magic'] + cost = list(magic_data.values())[self.magic_index]['cost'] + self.create_magic_sprite(style, strength, cost) + + # Rotating Weapons + if keys[pygame.K_LSHIFT] and self.can_rotate_weapon: + self.can_rotate_weapon = False + self.weapon_rotation_time = pygame.time.get_ticks() + if self.weapon_index < len(list(weapon_data.keys())) - 1: + self.weapon_index += 1 + else: + self.weapon_index = 0 + + self.weapon = list(weapon_data.keys())[self.weapon_index] + + # Swap Spells + if keys[pygame.K_LCTRL] and self.can_swap_magic: + self.can_swap_magic = False + self.magic_swap_time = pygame.time.get_ticks() + if self.magic_index < len(list(magic_data.keys())) - 1: + self.magic_index += 1 + else: + self.magic_index = 0 + + self.magic = list(magic_data.keys())[self.magic_index] + + def wave_value(self): + value = sin(pygame.time.get_ticks()) + if value >= 0: + return 255 + else: + return 0 diff --git a/Game/objects/level.py b/Game/objects/level.py new file mode 100644 index 0000000..25e89c2 --- /dev/null +++ b/Game/objects/level.py @@ -0,0 +1,226 @@ +import pygame +from random import choice, randint + +from utils.settings import * +from utils.debug import debug +from utils.support import * + +from UI.ui import UI +from UI.upgrade import Upgrade + + +from effects.particles import AnimationPlayer +from effects.magic import MagicPlayer +from effects.weapon import Weapon + +from objects.tile import Tile +from objects.player import Player +from objects.enemy import Enemy +from objects.camera import Camera + + +class Level: + + def __init__(self): + + # General Settings + self.game_paused = False + + + # Get the display surface + self.display_surface = pygame.display.get_surface() + + # Sprite Group setup + self.visible_sprites = YSortCameraGroup() + self.obstacle_sprites = pygame.sprite.Group() + self.attack_sprites = pygame.sprite.Group() + self.attackable_sprites = pygame.sprite.Group() + + # Combat Sprite setup + self.current_attack = None + + # Sprite setup + self.create_map() + + # UI setup + self.ui = UI() + self.upgrade = Upgrade(self.player) + + # Particle setup + self.animation_player = AnimationPlayer() + self.magic_player = MagicPlayer(self.animation_player) + + def create_map(self): + layouts = { + 'boundary': import_csv_layout('../Graphics/map/map_FloorBlocks.csv'), + 'grass': import_csv_layout('../Graphics/map/map_Grass.csv'), + 'objects': import_csv_layout('../Graphics/map/map_Objects.csv'), + 'entities': import_csv_layout('../Graphics/map/map_Entities.csv') + } + + graphics = { + 'grass': import_folder('../Graphics/graphics/grass'), + 'objects': import_folder('../Graphics/graphics/objects') + } + + + for style, layout in layouts.items(): + for row_index, row in enumerate(layout): + for col_index, col in enumerate(row): + if col != '-1': + x = col_index * TILESIZE + y = row_index * TILESIZE + if style == 'boundary': + Tile((x,y), [self.obstacle_sprites], 'invisible') + + if style == 'grass': + random_grass_image = choice(graphics['grass']) + Tile((x,y), [self.visible_sprites, self.obstacle_sprites, self.attackable_sprites], 'grass', random_grass_image) + + if style == 'objects': + surf = graphics['objects'][int(col)] + Tile((x,y), [self.visible_sprites, self.obstacle_sprites], 'object', surf) + + # The numbers represent their IDs in the map .csv files generated from TILED. + if style == 'entities': + if col == '394': + self.player = Player((x,y), [self.visible_sprites], self.obstacle_sprites, self.create_attack_sprite, self.delete_attack_sprite, self.create_magic_sprite, is_AI = True) + + elif col =='395': + self.camera = Camera((x,y), [self.visible_sprites]) + + else: + if col == '390': + monster_name = 'bamboo' + elif col == '391': + monster_name = 'spirit' + elif col == '392': + monster_name = 'raccoon' + else: + monster_name = 'squid' + + Enemy(monster_name, (x,y), [self.visible_sprites, self.attackable_sprites], self.obstacle_sprites, self.damage_player, self.trigger_death_particles, self.add_exp, is_AI = False) + + def create_attack_sprite(self): + self.current_attack = Weapon(self.player, [self.visible_sprites, self.attack_sprites]) + + def delete_attack_sprite(self): + if self.current_attack: + self.current_attack.kill() + self.current_attack = None + + def create_magic_sprite(self, style, strength, cost): + if style == 'heal': + self.magic_player.heal(self.player, strength, cost, [self.visible_sprites]) + + if style == 'flame': + self.magic_player.flame(self.player, cost, [self.visible_sprites, self.attack_sprites]) + + def player_attack_logic(self): + if self.attack_sprites: + for attack_sprite in self.attack_sprites: + collision_sprites = pygame.sprite.spritecollide(attack_sprite,self.attackable_sprites,False) + if collision_sprites: + for target_sprite in collision_sprites: + if target_sprite.sprite_type == 'grass': + pos = target_sprite.rect.center + offset = pygame.math.Vector2(0,75) + for leaf in range(randint(3,6)): + self.animation_player.create_grass_particles(position = pos - offset, groups = [self.visible_sprites]) + target_sprite.kill() + else: + target_sprite.get_damage(self.player,attack_sprite.sprite_type) + + + def get_state(self): + state = [] + + enemy_sprites = [sprite for sprite in self.visible_sprites if hasattr(sprite, 'sprite_type') and sprite.sprite_type == 'enemy'] + for enemy in enemy_sprites: + distance, direction = enemy.get_player_distance_direction(self.player) + state.append([(distance, direction.x, direction.y, enemy.monster_name, enemy.health, enemy.exp, enemy.speed, enemy.attack_damage, enemy.resistance, enemy.attack_radius, enemy.notice_radius, enemy.attack_type)]) + + # Sort by distance + state = sorted(state, key=lambda x: x[0]) + + # Consider only the closest 5 enemies + state = state[:5] + + # If there are fewer than 5 enemies, pad the state with placeholder values + while len(state) < 5: + state.append((float('inf'), 0, 0, None, None, None, None, None, None, None, None, None)) + + # Flatten the state to be a single list of numbers and strings + state = [item for sublist in state for item in sublist] + + return state + + def damage_player(self, amount, attack_type): + if self.player.vulnerable: + self.player.health -= amount + if self.player.health < 0: + self.player.health = 0 + self.player.vulnerable = False + self.player.hurt_time = pygame.time.get_ticks() + self.animation_player.generate_particles(attack_type, self.player.rect.center, [self.visible_sprites]) + + def trigger_death_particles(self, position, particle_type): + self.animation_player.generate_particles(particle_type, position, [self.visible_sprites]) + + def add_exp(self, amount): + self.player.exp += amount + + def toggle_menu(self): + self.game_paused = not self.game_paused + + def run(self): + # Draw the game + self.visible_sprites.custom_draw(self.camera) + self.ui.display(self.camera) + if self.game_paused: + if self.visible_sprites.sprite_type == 'player': + self.upgrade.display() + pass + else: + # Update the game + self.player.distance_direction_to_player = self.get_state() + self.visible_sprites.update() + self.visible_sprites.enemy_update(self.player) + self.player_attack_logic() + if self.player.health <= 0: + self.__init__() + + +class YSortCameraGroup(pygame.sprite.Group): + + def __init__(self): + super().__init__() + + # General Setup + self.display_surface = pygame.display.get_surface() + self.half_width = self.display_surface.get_size()[0] // 2 + self.half_height = self.display_surface.get_size()[1] // 2 + self.offset = pygame.math.Vector2(100, 200) + + # Creating the floor + self.floor_surf = pygame.image.load('../Graphics/graphics/tilemap/ground.png').convert() + self.floor_rect = self.floor_surf.get_rect(topleft = (0,0)) + + def custom_draw(self, player): + self.sprite_type = player.sprite_type + #Getting the offset + self.offset.x = player.rect.centerx - self.half_width + self.offset.y = player.rect.centery - self.half_height + + # Drawing the floor + floor_offset_pos = self.floor_rect.topleft - self.offset + self.display_surface.blit(self.floor_surf, floor_offset_pos) + + for sprite in sorted(self.sprites(), key = lambda sprite: sprite.rect.centery): + offset_pos = sprite.rect.topleft - self.offset + self.display_surface.blit(sprite.image, offset_pos) + + def enemy_update(self, player): + enemy_sprites = [sprite for sprite in self.sprites() if hasattr(sprite, 'sprite_type') and sprite.sprite_type == 'enemy'] + for enemy in enemy_sprites: + enemy.enemy_update(player) diff --git a/Game/objects/player.py b/Game/objects/player.py new file mode 100644 index 0000000..53480db --- /dev/null +++ b/Game/objects/player.py @@ -0,0 +1,195 @@ +import pygame +import random + +from utils.settings import * +from utils.support import import_folder + +from objects.entity import Entity + +from rl.agent import Agent + +class Player(Entity): + + def __init__(self, position, groups, obstacle_sprites, create_attack_sprite, delete_attack_sprite, create_magic_sprite, is_AI): + super().__init__(groups, is_AI) + + self.image = pygame.image.load('../Graphics/graphics/player/down/down_0.png').convert_alpha() + self.rect = self.image.get_rect(topleft = position) + self.hitbox = self.rect.inflate(HITBOX_OFFSET['player']) + self.sprite_type = 'player' + + # Graphics Setup + self.import_player_assets() + self.status = 'down' + + # Combat + self.attacking = False + self.attack_cooldown = 400 + self.attack_time = None + + # Weapons + self.create_attack_sprite = create_attack_sprite + self.delete_attack_sprite = delete_attack_sprite + + # Magic + self.create_magic_sprite = create_magic_sprite + + # Weapon rotation + self.weapon_index = 0 + self.weapon = list(weapon_data.keys())[self.weapon_index] + self.can_rotate_weapon = True + self.weapon_rotation_time = None + self.rotate_attack_cooldown = 600 + + # Magic rotation + self.magic_index = 0 + self.magic = list(magic_data.keys())[self.magic_index] + self.can_swap_magic = True + self.magic_swap_time = None + + # Stats + self.stats = { + 'health': 100, + 'energy': 60, + 'attack': 10, + 'magic': 4, + 'speed': 5 + } + self.max_stats = { + 'health': 300, + 'energy': 150, + 'attack': 20, + 'magic': 10, + 'speed': 10 + } + self.upgrade_costs = { + 'health': 100, + 'energy': 100, + 'attack': 100, + 'magic': 100, + 'speed': 100 + } + + self.health = self.stats['health'] + self.energy = self.stats['energy'] + self.exp = 0 + self.speed = self.stats['speed'] + + # Damage timer + self.vulnerable = True + self.hurt_time = None + self.invulnerability_duration = 300 + + if is_AI: + pass + # self.agent = Agent(self.possible_actions, self.distance_direction_to_player, self.stats, self.exp) + + self.obstacle_sprites = obstacle_sprites + + # Import Sounds + self.weapon_attack_sound = pygame.mixer.Sound('../Graphics/audio/sword.wav') + self.weapon_attack_sound.set_volume(0.2) + + def import_player_assets(self): + character_path = '../Graphics/graphics/player' + + self.animations = { + 'up': [], 'down': [], 'left': [], 'right': [], + 'up_idle': [], 'down_idle': [], 'left_idle': [], 'right_idle': [], + 'up_attack': [], 'down_attack': [], 'left_attack': [], 'right_attack': [] + } + for animation in self.animations.keys(): + full_path = f"{character_path}/{animation}" + self.animations[animation] = import_folder(full_path) + + def get_status(self): + + # Idle Status + if self.direction.x == 0 and self.direction.y == 0: + if not 'idle' in self.status and not 'attack' in self.status: + self.status += '_idle' + + if self.attacking: + self.direction.x = 0 + self.direction.y = 0 + if not 'attack' in self.status: + if 'idle' in self.status: + self.status = self.status.replace('idle', 'attack') + else: + self.status += '_attack' + else: + if 'attack' in self.status: + self.status = self.status.replace('_attack', '') + + def get_full_weapon_damage(self): + base_damage = self.stats['attack'] + weapon_damage = weapon_data[self.weapon]['damage'] + + return (base_damage + weapon_damage) + + def get_full_magic_damage(self): + base_damage = self.stats['magic'] + spell_damage = magic_data[self.magic]['strength'] + return (base_damage + spell_damage) + + def get_value_by_index(self, index): + return list(self.stats.values())[index] + + def get_cost_by_index(self, index): + return list(self.upgrade_costs.values())[index] + + def cooldowns(self): + current_time = pygame.time.get_ticks() + + if self.attacking: + if current_time - self.attack_time > self.attack_cooldown + weapon_data[self.weapon]['cooldown']: + self.attacking = False + self.delete_attack_sprite() + + if not self.can_rotate_weapon: + if current_time - self.weapon_rotation_time > self.rotate_attack_cooldown: + self.can_rotate_weapon = True + + if not self.can_swap_magic: + if current_time - self.magic_swap_time > self.rotate_attack_cooldown: + self.can_swap_magic = True + + if not self.vulnerable: + if current_time - self.hurt_time >= self.invulnerability_duration: + self.vulnerable = True + + if not self.can_move: + if current_time - self.move_time >= self.move_cooldown: + self.can_move = True + + def energy_recovery(self): + if self.energy < self.stats['energy']: + self.energy += 0.01 * self.stats['magic'] + else: + self.energy = self.stats['energy'] + + + def animate(self): + animation = self.animations[self.status] + self.frame_index += self.animation_speed + if self.frame_index >= len(animation): + self.frame_index = 0 + + # Set the image + self.image = animation[int(self.frame_index)] + self.rect = self.image.get_rect(center = self.hitbox.center) + + if not self.vulnerable: + alpha = self.wave_value() + self.image.set_alpha(alpha) + else: + self.image.set_alpha(255) + + + def update(self): + self.input() + self.cooldowns() + self.get_status() + self.animate() + self.move(self.stats['speed']) + self.energy_recovery() diff --git a/Game/objects/tile.py b/Game/objects/tile.py new file mode 100644 index 0000000..782ffae --- /dev/null +++ b/Game/objects/tile.py @@ -0,0 +1,17 @@ +import pygame + +from utils.settings import * + +class Tile(pygame.sprite.Sprite): + + def __init__(self, position, groups, sprite_type, surface = pygame.Surface((TILESIZE, TILESIZE))): + super().__init__(groups) + + self.sprite_type = sprite_type + self.image = surface + if sprite_type == 'object': + # Offset + self.rect = self.image.get_rect(topleft = (position[0], position[1] - TILESIZE)) + else: + self.rect = self.image.get_rect(topleft = position) + self.hitbox = self.rect.inflate(HITBOX_OFFSET[sprite_type]) diff --git a/Game/rl/__init__.py b/Game/rl/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Game/rl/agent.py b/Game/rl/agent.py new file mode 100644 index 0000000..7a16e55 --- /dev/null +++ b/Game/rl/agent.py @@ -0,0 +1,16 @@ +import random + +from rl.brain import PPONet + + +class Agent: + + def __init__(self, actions, inputs, player_info, reward): + + self.input_dim = len(inputs) + len(player_info) + + self.output_dim = len(actions) + + self.reward = reward + + self.net = PPONet(input_dim, output_dim) diff --git a/Game/rl/brain.py b/Game/rl/brain.py new file mode 100644 index 0000000..4f011dc --- /dev/null +++ b/Game/rl/brain.py @@ -0,0 +1,4 @@ +import torch + +class PPONet: + pass diff --git a/Game/utils/__init__.py b/Game/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Game/utils/debug.py b/Game/utils/debug.py new file mode 100644 index 0000000..1233989 --- /dev/null +++ b/Game/utils/debug.py @@ -0,0 +1,12 @@ +import pygame + +pygame.init() + +font = pygame.font.Font(None,30) + +def debug(info, y =10, x = 10): + display_surface = pygame.display.get_surface() + debug_surf = font.render(str(info), True, 'White') + debug_rect = debug_surf.get_rect(topleft = (x,y)) + pygame.draw.rect(display_surface, 'Black', debug_rect) + display_surface.blit(debug_surf, debug_rect) diff --git a/Game/utils/settings.py b/Game/utils/settings.py new file mode 100644 index 0000000..3e2245d --- /dev/null +++ b/Game/utils/settings.py @@ -0,0 +1,57 @@ +# game setup +WIDTH = 1280 +HEIGHT = 720 +FPS = 60 +TILESIZE = 64 +HITBOX_OFFSET = { + 'player': (-6, -26), + 'camera': (-50, -50), + 'object': (0, -40), + 'grass': (0, -10), + 'invisible': (0, 0) + } + +# ui +BAR_HEIGHT = 20 +HEALTH_BAR_WIDTH = 200 +ENERGY_BAR_WIDTH = 140 +ITEM_BOX_SIZE = 80 +UI_FONT = '../Graphics/graphics/font/joystix.ttf' +UI_FONT_SIZE = 18 + +# general colors +WATER_COLOR = '#71ddee' +UI_BG_COLOR = '#222222' +UI_BORDER_COLOR = '#111111' +TEXT_COLOR = '#EEEEEE' + +# ui colors +HEALTH_COLOR = 'red' +ENERGY_COLOR = 'blue' +UI_BORDER_COLOR_ACTIVE = 'gold' + +# Upgrade menu +TEXT_COLOR_SELECTED = '#111111' +BAR_COLOR = '#EEEEEE' +BAR_COLOR_SELECTED = '#111111' +UPGRADE_BG_COLOR_SELECTED = '#EEEEEE' + +# weapons +weapon_data = { + 'sword': {'cooldown': 100, 'damage': 15,'graphic':'../Graphics/graphics/weapons/sword/full.png'}, + 'lance': {'cooldown': 400, 'damage': 30,'graphic':'../Graphics/graphics/weapons/lance/full.png'}, + 'axe': {'cooldown': 300, 'damage': 20, 'graphic':'../Graphics/graphics/weapons/axe/full.png'}, + 'rapier':{'cooldown': 50, 'damage': 8, 'graphic':'../Graphics/graphics/weapons/rapier/full.png'}, + 'sai':{'cooldown': 80, 'damage': 10, 'graphic':'../Graphics/graphics/weapons/sai/full.png'}} + +# magic +magic_data = { + 'flame': {'strength': 5,'cost': 20,'graphic':'../Graphics/graphics/particles/flame/fire.png'}, + 'heal' : {'strength': 20,'cost': 10,'graphic':'../Graphics/graphics/particles/heal/heal.png'}} + +# enemy +monster_data = { + 'squid': {'health': 100,'exp':100,'damage':20,'attack_type': 'slash', 'attack_sound':'../Graphics/audio/attack/slash.wav', 'speed': 3, 'resistance': 3, 'attack_radius': 80, 'notice_radius': 360}, + 'raccoon': {'health': 300,'exp':250,'damage':40,'attack_type': 'claw', 'attack_sound':'../Graphics/audio/attack/claw.wav','speed': 2, 'resistance': 3, 'attack_radius': 120, 'notice_radius': 400}, + 'spirit': {'health': 100,'exp':110,'damage':8,'attack_type': 'thunder', 'attack_sound':'../Graphics/audio/attack/fireball.wav', 'speed': 4, 'resistance': 3, 'attack_radius': 60, 'notice_radius': 350}, + 'bamboo': {'health': 70,'exp':120,'damage':6,'attack_type': 'leaf_attack', 'attack_sound':'../Graphics/audio/attack/slash.wav', 'speed': 3, 'resistance': 3, 'attack_radius': 50, 'notice_radius': 300}} diff --git a/Game/utils/support.py b/Game/utils/support.py new file mode 100644 index 0000000..e52f2bc --- /dev/null +++ b/Game/utils/support.py @@ -0,0 +1,21 @@ +import pygame +from csv import reader +from os import walk + +def import_csv_layout(path): + terrain_map = [] + with open(path) as level_map: + layout = reader(level_map, delimiter = ',') + for row in layout: + terrain_map.append(list(row)) + return terrain_map + +def import_folder(path): + surface_list = [] + + for _, __, img_files in walk(path): + for image in img_files: + full_path = f"{path}/{image}" + image_surf = pygame.image.load(full_path).convert_alpha() + surface_list.append(image_surf) + return surface_list diff --git a/Graphics/Vasilis/Pot.png b/Graphics/Vasilis/Pot.png new file mode 100644 index 0000000..f1fa6f5 Binary files /dev/null and b/Graphics/Vasilis/Pot.png differ diff --git a/Graphics/audio/attack/claw.wav b/Graphics/audio/attack/claw.wav new file mode 100644 index 0000000..1a98889 Binary files /dev/null and b/Graphics/audio/attack/claw.wav differ diff --git a/Graphics/audio/attack/fireball.wav b/Graphics/audio/attack/fireball.wav new file mode 100644 index 0000000..dc2c852 Binary files /dev/null and b/Graphics/audio/attack/fireball.wav differ diff --git a/Graphics/audio/attack/slash.wav b/Graphics/audio/attack/slash.wav new file mode 100644 index 0000000..942aeb0 Binary files /dev/null and b/Graphics/audio/attack/slash.wav differ diff --git a/Graphics/audio/death.wav b/Graphics/audio/death.wav new file mode 100644 index 0000000..ef03ab1 Binary files /dev/null and b/Graphics/audio/death.wav differ diff --git a/Graphics/audio/flame.wav b/Graphics/audio/flame.wav new file mode 100644 index 0000000..97bb0e4 Binary files /dev/null and b/Graphics/audio/flame.wav differ diff --git a/Graphics/audio/heal.wav b/Graphics/audio/heal.wav new file mode 100644 index 0000000..e94bab0 Binary files /dev/null and b/Graphics/audio/heal.wav differ diff --git a/Graphics/audio/hit.wav b/Graphics/audio/hit.wav new file mode 100644 index 0000000..435b317 Binary files /dev/null and b/Graphics/audio/hit.wav differ diff --git a/Graphics/audio/main.ogg b/Graphics/audio/main.ogg new file mode 100644 index 0000000..da5d252 Binary files /dev/null and b/Graphics/audio/main.ogg differ diff --git a/Graphics/audio/sword.wav b/Graphics/audio/sword.wav new file mode 100644 index 0000000..2e962d0 Binary files /dev/null and b/Graphics/audio/sword.wav differ diff --git a/Graphics/graphics/camera.png b/Graphics/graphics/camera.png new file mode 100644 index 0000000..0c0702e Binary files /dev/null and b/Graphics/graphics/camera.png differ diff --git a/Graphics/graphics/font/joystix.ttf b/Graphics/graphics/font/joystix.ttf new file mode 100644 index 0000000..5fd36a5 Binary files /dev/null and b/Graphics/graphics/font/joystix.ttf differ diff --git a/Graphics/graphics/grass/grass_1.png b/Graphics/graphics/grass/grass_1.png new file mode 100644 index 0000000..e59c1d4 Binary files /dev/null and b/Graphics/graphics/grass/grass_1.png differ diff --git a/Graphics/graphics/grass/grass_2.png b/Graphics/graphics/grass/grass_2.png new file mode 100644 index 0000000..74c656a Binary files /dev/null and b/Graphics/graphics/grass/grass_2.png differ diff --git a/Graphics/graphics/grass/grass_3.png b/Graphics/graphics/grass/grass_3.png new file mode 100644 index 0000000..da65a05 Binary files /dev/null and b/Graphics/graphics/grass/grass_3.png differ diff --git a/Graphics/graphics/monsters/bamboo/attack/0.png b/Graphics/graphics/monsters/bamboo/attack/0.png new file mode 100644 index 0000000..c14d75b Binary files /dev/null and b/Graphics/graphics/monsters/bamboo/attack/0.png differ diff --git a/Graphics/graphics/monsters/bamboo/idle/0.png b/Graphics/graphics/monsters/bamboo/idle/0.png new file mode 100644 index 0000000..c14d75b Binary files /dev/null and b/Graphics/graphics/monsters/bamboo/idle/0.png differ diff --git a/Graphics/graphics/monsters/bamboo/idle/1.png b/Graphics/graphics/monsters/bamboo/idle/1.png new file mode 100644 index 0000000..9dd1acc Binary files /dev/null and b/Graphics/graphics/monsters/bamboo/idle/1.png differ diff --git a/Graphics/graphics/monsters/bamboo/idle/2.png b/Graphics/graphics/monsters/bamboo/idle/2.png new file mode 100644 index 0000000..c14d75b Binary files /dev/null and b/Graphics/graphics/monsters/bamboo/idle/2.png differ diff --git a/Graphics/graphics/monsters/bamboo/idle/3.png b/Graphics/graphics/monsters/bamboo/idle/3.png new file mode 100644 index 0000000..6411298 Binary files /dev/null and b/Graphics/graphics/monsters/bamboo/idle/3.png differ diff --git a/Graphics/graphics/monsters/bamboo/move/0.png b/Graphics/graphics/monsters/bamboo/move/0.png new file mode 100644 index 0000000..c14d75b Binary files /dev/null and b/Graphics/graphics/monsters/bamboo/move/0.png differ diff --git a/Graphics/graphics/monsters/bamboo/move/1.png b/Graphics/graphics/monsters/bamboo/move/1.png new file mode 100644 index 0000000..9dd1acc Binary files /dev/null and b/Graphics/graphics/monsters/bamboo/move/1.png differ diff --git a/Graphics/graphics/monsters/bamboo/move/2.png b/Graphics/graphics/monsters/bamboo/move/2.png new file mode 100644 index 0000000..c14d75b Binary files /dev/null and b/Graphics/graphics/monsters/bamboo/move/2.png differ diff --git a/Graphics/graphics/monsters/bamboo/move/3.png b/Graphics/graphics/monsters/bamboo/move/3.png new file mode 100644 index 0000000..6411298 Binary files /dev/null and b/Graphics/graphics/monsters/bamboo/move/3.png differ diff --git a/Graphics/graphics/monsters/raccoon/attack/0.png b/Graphics/graphics/monsters/raccoon/attack/0.png new file mode 100644 index 0000000..2e53f25 Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/attack/0.png differ diff --git a/Graphics/graphics/monsters/raccoon/attack/1.png b/Graphics/graphics/monsters/raccoon/attack/1.png new file mode 100644 index 0000000..21c4d49 Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/attack/1.png differ diff --git a/Graphics/graphics/monsters/raccoon/attack/2.png b/Graphics/graphics/monsters/raccoon/attack/2.png new file mode 100644 index 0000000..3319c79 Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/attack/2.png differ diff --git a/Graphics/graphics/monsters/raccoon/attack/3.png b/Graphics/graphics/monsters/raccoon/attack/3.png new file mode 100644 index 0000000..aa2d58f Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/attack/3.png differ diff --git a/Graphics/graphics/monsters/raccoon/idle/0.png b/Graphics/graphics/monsters/raccoon/idle/0.png new file mode 100644 index 0000000..cf0fb7f Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/idle/0.png differ diff --git a/Graphics/graphics/monsters/raccoon/idle/1.png b/Graphics/graphics/monsters/raccoon/idle/1.png new file mode 100644 index 0000000..cf0fb7f Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/idle/1.png differ diff --git a/Graphics/graphics/monsters/raccoon/idle/2.png b/Graphics/graphics/monsters/raccoon/idle/2.png new file mode 100644 index 0000000..8d16e08 Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/idle/2.png differ diff --git a/Graphics/graphics/monsters/raccoon/idle/3.png b/Graphics/graphics/monsters/raccoon/idle/3.png new file mode 100644 index 0000000..dc57a96 Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/idle/3.png differ diff --git a/Graphics/graphics/monsters/raccoon/idle/4.png b/Graphics/graphics/monsters/raccoon/idle/4.png new file mode 100644 index 0000000..fb12e6c Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/idle/4.png differ diff --git a/Graphics/graphics/monsters/raccoon/idle/5.png b/Graphics/graphics/monsters/raccoon/idle/5.png new file mode 100644 index 0000000..c0ede56 Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/idle/5.png differ diff --git a/Graphics/graphics/monsters/raccoon/move/0.png b/Graphics/graphics/monsters/raccoon/move/0.png new file mode 100644 index 0000000..a60b9d0 Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/move/0.png differ diff --git a/Graphics/graphics/monsters/raccoon/move/1.png b/Graphics/graphics/monsters/raccoon/move/1.png new file mode 100644 index 0000000..34410ca Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/move/1.png differ diff --git a/Graphics/graphics/monsters/raccoon/move/2.png b/Graphics/graphics/monsters/raccoon/move/2.png new file mode 100644 index 0000000..c299286 Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/move/2.png differ diff --git a/Graphics/graphics/monsters/raccoon/move/3.png b/Graphics/graphics/monsters/raccoon/move/3.png new file mode 100644 index 0000000..7d9ee77 Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/move/3.png differ diff --git a/Graphics/graphics/monsters/raccoon/move/4.png b/Graphics/graphics/monsters/raccoon/move/4.png new file mode 100644 index 0000000..656981c Binary files /dev/null and b/Graphics/graphics/monsters/raccoon/move/4.png differ diff --git a/Graphics/graphics/monsters/spirit/attack/0.png b/Graphics/graphics/monsters/spirit/attack/0.png new file mode 100644 index 0000000..0afa8f1 Binary files /dev/null and b/Graphics/graphics/monsters/spirit/attack/0.png differ diff --git a/Graphics/graphics/monsters/spirit/idle/0.png b/Graphics/graphics/monsters/spirit/idle/0.png new file mode 100644 index 0000000..0aee4b5 Binary files /dev/null and b/Graphics/graphics/monsters/spirit/idle/0.png differ diff --git a/Graphics/graphics/monsters/spirit/idle/1.png b/Graphics/graphics/monsters/spirit/idle/1.png new file mode 100644 index 0000000..efe735c Binary files /dev/null and b/Graphics/graphics/monsters/spirit/idle/1.png differ diff --git a/Graphics/graphics/monsters/spirit/idle/2.png b/Graphics/graphics/monsters/spirit/idle/2.png new file mode 100644 index 0000000..a46d5e2 Binary files /dev/null and b/Graphics/graphics/monsters/spirit/idle/2.png differ diff --git a/Graphics/graphics/monsters/spirit/idle/3.png b/Graphics/graphics/monsters/spirit/idle/3.png new file mode 100644 index 0000000..15e5d4c Binary files /dev/null and b/Graphics/graphics/monsters/spirit/idle/3.png differ diff --git a/Graphics/graphics/monsters/spirit/move/0.png b/Graphics/graphics/monsters/spirit/move/0.png new file mode 100644 index 0000000..0afa8f1 Binary files /dev/null and b/Graphics/graphics/monsters/spirit/move/0.png differ diff --git a/Graphics/graphics/monsters/spirit/move/1.png b/Graphics/graphics/monsters/spirit/move/1.png new file mode 100644 index 0000000..bf8f85b Binary files /dev/null and b/Graphics/graphics/monsters/spirit/move/1.png differ diff --git a/Graphics/graphics/monsters/spirit/move/2.png b/Graphics/graphics/monsters/spirit/move/2.png new file mode 100644 index 0000000..809ebc2 Binary files /dev/null and b/Graphics/graphics/monsters/spirit/move/2.png differ diff --git a/Graphics/graphics/monsters/spirit/move/3.png b/Graphics/graphics/monsters/spirit/move/3.png new file mode 100644 index 0000000..463875f Binary files /dev/null and b/Graphics/graphics/monsters/spirit/move/3.png differ diff --git a/Graphics/graphics/monsters/squid/attack/0 - Copy (2).png b/Graphics/graphics/monsters/squid/attack/0 - Copy (2).png new file mode 100644 index 0000000..644197e Binary files /dev/null and b/Graphics/graphics/monsters/squid/attack/0 - Copy (2).png differ diff --git a/Graphics/graphics/monsters/squid/attack/0 - Copy (3).png b/Graphics/graphics/monsters/squid/attack/0 - Copy (3).png new file mode 100644 index 0000000..644197e Binary files /dev/null and b/Graphics/graphics/monsters/squid/attack/0 - Copy (3).png differ diff --git a/Graphics/graphics/monsters/squid/attack/0 - Copy.png b/Graphics/graphics/monsters/squid/attack/0 - Copy.png new file mode 100644 index 0000000..644197e Binary files /dev/null and b/Graphics/graphics/monsters/squid/attack/0 - Copy.png differ diff --git a/Graphics/graphics/monsters/squid/attack/0.png b/Graphics/graphics/monsters/squid/attack/0.png new file mode 100644 index 0000000..644197e Binary files /dev/null and b/Graphics/graphics/monsters/squid/attack/0.png differ diff --git a/Graphics/graphics/monsters/squid/idle/0.png b/Graphics/graphics/monsters/squid/idle/0.png new file mode 100644 index 0000000..a9beba8 Binary files /dev/null and b/Graphics/graphics/monsters/squid/idle/0.png differ diff --git a/Graphics/graphics/monsters/squid/idle/1.png b/Graphics/graphics/monsters/squid/idle/1.png new file mode 100644 index 0000000..f854919 Binary files /dev/null and b/Graphics/graphics/monsters/squid/idle/1.png differ diff --git a/Graphics/graphics/monsters/squid/idle/2.png b/Graphics/graphics/monsters/squid/idle/2.png new file mode 100644 index 0000000..a9beba8 Binary files /dev/null and b/Graphics/graphics/monsters/squid/idle/2.png differ diff --git a/Graphics/graphics/monsters/squid/idle/3.png b/Graphics/graphics/monsters/squid/idle/3.png new file mode 100644 index 0000000..9c588e1 Binary files /dev/null and b/Graphics/graphics/monsters/squid/idle/3.png differ diff --git a/Graphics/graphics/monsters/squid/idle/4.png b/Graphics/graphics/monsters/squid/idle/4.png new file mode 100644 index 0000000..9c588e1 Binary files /dev/null and b/Graphics/graphics/monsters/squid/idle/4.png differ diff --git a/Graphics/graphics/monsters/squid/move/0.png b/Graphics/graphics/monsters/squid/move/0.png new file mode 100644 index 0000000..a9beba8 Binary files /dev/null and b/Graphics/graphics/monsters/squid/move/0.png differ diff --git a/Graphics/graphics/monsters/squid/move/1.png b/Graphics/graphics/monsters/squid/move/1.png new file mode 100644 index 0000000..f854919 Binary files /dev/null and b/Graphics/graphics/monsters/squid/move/1.png differ diff --git a/Graphics/graphics/monsters/squid/move/2.png b/Graphics/graphics/monsters/squid/move/2.png new file mode 100644 index 0000000..9c588e1 Binary files /dev/null and b/Graphics/graphics/monsters/squid/move/2.png differ diff --git a/Graphics/graphics/monsters/squid/move/3.png b/Graphics/graphics/monsters/squid/move/3.png new file mode 100644 index 0000000..9c588e1 Binary files /dev/null and b/Graphics/graphics/monsters/squid/move/3.png differ diff --git a/Graphics/graphics/objects/0.png b/Graphics/graphics/objects/0.png new file mode 100644 index 0000000..05fc485 Binary files /dev/null and b/Graphics/graphics/objects/0.png differ diff --git a/Graphics/graphics/objects/01.png b/Graphics/graphics/objects/01.png new file mode 100644 index 0000000..3fa3af9 Binary files /dev/null and b/Graphics/graphics/objects/01.png differ diff --git a/Graphics/graphics/objects/02.png b/Graphics/graphics/objects/02.png new file mode 100644 index 0000000..c91ceec Binary files /dev/null and b/Graphics/graphics/objects/02.png differ diff --git a/Graphics/graphics/objects/03.png b/Graphics/graphics/objects/03.png new file mode 100644 index 0000000..186ff45 Binary files /dev/null and b/Graphics/graphics/objects/03.png differ diff --git a/Graphics/graphics/objects/04.png b/Graphics/graphics/objects/04.png new file mode 100644 index 0000000..f3a3e7a Binary files /dev/null and b/Graphics/graphics/objects/04.png differ diff --git a/Graphics/graphics/objects/05.png b/Graphics/graphics/objects/05.png new file mode 100644 index 0000000..eab8994 Binary files /dev/null and b/Graphics/graphics/objects/05.png differ diff --git a/Graphics/graphics/objects/06.png b/Graphics/graphics/objects/06.png new file mode 100644 index 0000000..a7859b7 Binary files /dev/null and b/Graphics/graphics/objects/06.png differ diff --git a/Graphics/graphics/objects/07.png b/Graphics/graphics/objects/07.png new file mode 100644 index 0000000..a436b83 Binary files /dev/null and b/Graphics/graphics/objects/07.png differ diff --git a/Graphics/graphics/objects/08.png b/Graphics/graphics/objects/08.png new file mode 100644 index 0000000..7fde04e Binary files /dev/null and b/Graphics/graphics/objects/08.png differ diff --git a/Graphics/graphics/objects/09.png b/Graphics/graphics/objects/09.png new file mode 100644 index 0000000..fbd0ebb Binary files /dev/null and b/Graphics/graphics/objects/09.png differ diff --git a/Graphics/graphics/objects/10.png b/Graphics/graphics/objects/10.png new file mode 100644 index 0000000..067a503 Binary files /dev/null and b/Graphics/graphics/objects/10.png differ diff --git a/Graphics/graphics/objects/11.png b/Graphics/graphics/objects/11.png new file mode 100644 index 0000000..37edc1e Binary files /dev/null and b/Graphics/graphics/objects/11.png differ diff --git a/Graphics/graphics/objects/12.png b/Graphics/graphics/objects/12.png new file mode 100644 index 0000000..d1967c2 Binary files /dev/null and b/Graphics/graphics/objects/12.png differ diff --git a/Graphics/graphics/objects/13.png b/Graphics/graphics/objects/13.png new file mode 100644 index 0000000..f01d839 Binary files /dev/null and b/Graphics/graphics/objects/13.png differ diff --git a/Graphics/graphics/objects/14.png b/Graphics/graphics/objects/14.png new file mode 100644 index 0000000..6a7b4bc Binary files /dev/null and b/Graphics/graphics/objects/14.png differ diff --git a/Graphics/graphics/objects/15.png b/Graphics/graphics/objects/15.png new file mode 100644 index 0000000..783c417 Binary files /dev/null and b/Graphics/graphics/objects/15.png differ diff --git a/Graphics/graphics/objects/16.png b/Graphics/graphics/objects/16.png new file mode 100644 index 0000000..69b3119 Binary files /dev/null and b/Graphics/graphics/objects/16.png differ diff --git a/Graphics/graphics/objects/17.png b/Graphics/graphics/objects/17.png new file mode 100644 index 0000000..23cfa85 Binary files /dev/null and b/Graphics/graphics/objects/17.png differ diff --git a/Graphics/graphics/objects/18.png b/Graphics/graphics/objects/18.png new file mode 100644 index 0000000..8497695 Binary files /dev/null and b/Graphics/graphics/objects/18.png differ diff --git a/Graphics/graphics/objects/19.png b/Graphics/graphics/objects/19.png new file mode 100644 index 0000000..425d16f Binary files /dev/null and b/Graphics/graphics/objects/19.png differ diff --git a/Graphics/graphics/objects/20.png b/Graphics/graphics/objects/20.png new file mode 100644 index 0000000..7028a89 Binary files /dev/null and b/Graphics/graphics/objects/20.png differ diff --git a/Graphics/graphics/particles/aura/0.png b/Graphics/graphics/particles/aura/0.png new file mode 100644 index 0000000..ca3080c Binary files /dev/null and b/Graphics/graphics/particles/aura/0.png differ diff --git a/Graphics/graphics/particles/aura/1.png b/Graphics/graphics/particles/aura/1.png new file mode 100644 index 0000000..587df6e Binary files /dev/null and b/Graphics/graphics/particles/aura/1.png differ diff --git a/Graphics/graphics/particles/aura/2.png b/Graphics/graphics/particles/aura/2.png new file mode 100644 index 0000000..345b25a Binary files /dev/null and b/Graphics/graphics/particles/aura/2.png differ diff --git a/Graphics/graphics/particles/aura/3.png b/Graphics/graphics/particles/aura/3.png new file mode 100644 index 0000000..f5aa4c5 Binary files /dev/null and b/Graphics/graphics/particles/aura/3.png differ diff --git a/Graphics/graphics/particles/bamboo/0.png b/Graphics/graphics/particles/bamboo/0.png new file mode 100644 index 0000000..a28b25a Binary files /dev/null and b/Graphics/graphics/particles/bamboo/0.png differ diff --git a/Graphics/graphics/particles/bamboo/1.png b/Graphics/graphics/particles/bamboo/1.png new file mode 100644 index 0000000..234355a Binary files /dev/null and b/Graphics/graphics/particles/bamboo/1.png differ diff --git a/Graphics/graphics/particles/claw/0.png b/Graphics/graphics/particles/claw/0.png new file mode 100644 index 0000000..b9af05a Binary files /dev/null and b/Graphics/graphics/particles/claw/0.png differ diff --git a/Graphics/graphics/particles/claw/1.png b/Graphics/graphics/particles/claw/1.png new file mode 100644 index 0000000..60ab800 Binary files /dev/null and b/Graphics/graphics/particles/claw/1.png differ diff --git a/Graphics/graphics/particles/claw/2.png b/Graphics/graphics/particles/claw/2.png new file mode 100644 index 0000000..e3c239b Binary files /dev/null and b/Graphics/graphics/particles/claw/2.png differ diff --git a/Graphics/graphics/particles/claw/3.png b/Graphics/graphics/particles/claw/3.png new file mode 100644 index 0000000..2a579b7 Binary files /dev/null and b/Graphics/graphics/particles/claw/3.png differ diff --git a/Graphics/graphics/particles/flame/fire.png b/Graphics/graphics/particles/flame/fire.png new file mode 100644 index 0000000..2fb9ffc Binary files /dev/null and b/Graphics/graphics/particles/flame/fire.png differ diff --git a/Graphics/graphics/particles/flame/frames/0.png b/Graphics/graphics/particles/flame/frames/0.png new file mode 100644 index 0000000..fe33ae5 Binary files /dev/null and b/Graphics/graphics/particles/flame/frames/0.png differ diff --git a/Graphics/graphics/particles/flame/frames/01.png b/Graphics/graphics/particles/flame/frames/01.png new file mode 100644 index 0000000..734a74f Binary files /dev/null and b/Graphics/graphics/particles/flame/frames/01.png differ diff --git a/Graphics/graphics/particles/flame/frames/02.png b/Graphics/graphics/particles/flame/frames/02.png new file mode 100644 index 0000000..63536a7 Binary files /dev/null and b/Graphics/graphics/particles/flame/frames/02.png differ diff --git a/Graphics/graphics/particles/flame/frames/03.png b/Graphics/graphics/particles/flame/frames/03.png new file mode 100644 index 0000000..49c4995 Binary files /dev/null and b/Graphics/graphics/particles/flame/frames/03.png differ diff --git a/Graphics/graphics/particles/flame/frames/04.png b/Graphics/graphics/particles/flame/frames/04.png new file mode 100644 index 0000000..77e0474 Binary files /dev/null and b/Graphics/graphics/particles/flame/frames/04.png differ diff --git a/Graphics/graphics/particles/flame/frames/05.png b/Graphics/graphics/particles/flame/frames/05.png new file mode 100644 index 0000000..04691a5 Binary files /dev/null and b/Graphics/graphics/particles/flame/frames/05.png differ diff --git a/Graphics/graphics/particles/flame/frames/06.png b/Graphics/graphics/particles/flame/frames/06.png new file mode 100644 index 0000000..4738aa7 Binary files /dev/null and b/Graphics/graphics/particles/flame/frames/06.png differ diff --git a/Graphics/graphics/particles/flame/frames/07.png b/Graphics/graphics/particles/flame/frames/07.png new file mode 100644 index 0000000..1faa1d3 Binary files /dev/null and b/Graphics/graphics/particles/flame/frames/07.png differ diff --git a/Graphics/graphics/particles/flame/frames/08.png b/Graphics/graphics/particles/flame/frames/08.png new file mode 100644 index 0000000..44b7e28 Binary files /dev/null and b/Graphics/graphics/particles/flame/frames/08.png differ diff --git a/Graphics/graphics/particles/flame/frames/09.png b/Graphics/graphics/particles/flame/frames/09.png new file mode 100644 index 0000000..cd35c03 Binary files /dev/null and b/Graphics/graphics/particles/flame/frames/09.png differ diff --git a/Graphics/graphics/particles/flame/frames/10.png b/Graphics/graphics/particles/flame/frames/10.png new file mode 100644 index 0000000..7164544 Binary files /dev/null and b/Graphics/graphics/particles/flame/frames/10.png differ diff --git a/Graphics/graphics/particles/flame/frames/11.png b/Graphics/graphics/particles/flame/frames/11.png new file mode 100644 index 0000000..5555377 Binary files /dev/null and b/Graphics/graphics/particles/flame/frames/11.png differ diff --git a/Graphics/graphics/particles/heal/frames/0.png b/Graphics/graphics/particles/heal/frames/0.png new file mode 100644 index 0000000..cd93684 Binary files /dev/null and b/Graphics/graphics/particles/heal/frames/0.png differ diff --git a/Graphics/graphics/particles/heal/frames/1.png b/Graphics/graphics/particles/heal/frames/1.png new file mode 100644 index 0000000..83b4cf1 Binary files /dev/null and b/Graphics/graphics/particles/heal/frames/1.png differ diff --git a/Graphics/graphics/particles/heal/frames/2.png b/Graphics/graphics/particles/heal/frames/2.png new file mode 100644 index 0000000..de0b9bd Binary files /dev/null and b/Graphics/graphics/particles/heal/frames/2.png differ diff --git a/Graphics/graphics/particles/heal/frames/3.png b/Graphics/graphics/particles/heal/frames/3.png new file mode 100644 index 0000000..d5ab576 Binary files /dev/null and b/Graphics/graphics/particles/heal/frames/3.png differ diff --git a/Graphics/graphics/particles/heal/frames/4.png b/Graphics/graphics/particles/heal/frames/4.png new file mode 100644 index 0000000..e26afd3 Binary files /dev/null and b/Graphics/graphics/particles/heal/frames/4.png differ diff --git a/Graphics/graphics/particles/heal/heal.png b/Graphics/graphics/particles/heal/heal.png new file mode 100644 index 0000000..ad7de97 Binary files /dev/null and b/Graphics/graphics/particles/heal/heal.png differ diff --git a/Graphics/graphics/particles/leaf1/leaf1_00000.png b/Graphics/graphics/particles/leaf1/leaf1_00000.png new file mode 100644 index 0000000..b3d34ea Binary files /dev/null and b/Graphics/graphics/particles/leaf1/leaf1_00000.png differ diff --git a/Graphics/graphics/particles/leaf1/leaf1_00001.png b/Graphics/graphics/particles/leaf1/leaf1_00001.png new file mode 100644 index 0000000..22fce58 Binary files /dev/null and b/Graphics/graphics/particles/leaf1/leaf1_00001.png differ diff --git a/Graphics/graphics/particles/leaf1/leaf1_00002.png b/Graphics/graphics/particles/leaf1/leaf1_00002.png new file mode 100644 index 0000000..f8d2b65 Binary files /dev/null and b/Graphics/graphics/particles/leaf1/leaf1_00002.png differ diff --git a/Graphics/graphics/particles/leaf1/leaf1_00003.png b/Graphics/graphics/particles/leaf1/leaf1_00003.png new file mode 100644 index 0000000..e3e59b6 Binary files /dev/null and b/Graphics/graphics/particles/leaf1/leaf1_00003.png differ diff --git a/Graphics/graphics/particles/leaf1/leaf1_00004.png b/Graphics/graphics/particles/leaf1/leaf1_00004.png new file mode 100644 index 0000000..a703f36 Binary files /dev/null and b/Graphics/graphics/particles/leaf1/leaf1_00004.png differ diff --git a/Graphics/graphics/particles/leaf1/leaf1_00005.png b/Graphics/graphics/particles/leaf1/leaf1_00005.png new file mode 100644 index 0000000..39e159a Binary files /dev/null and b/Graphics/graphics/particles/leaf1/leaf1_00005.png differ diff --git a/Graphics/graphics/particles/leaf1/leaf1_00006.png b/Graphics/graphics/particles/leaf1/leaf1_00006.png new file mode 100644 index 0000000..a83b3d0 Binary files /dev/null and b/Graphics/graphics/particles/leaf1/leaf1_00006.png differ diff --git a/Graphics/graphics/particles/leaf1/leaf1_00007.png b/Graphics/graphics/particles/leaf1/leaf1_00007.png new file mode 100644 index 0000000..ed3fca8 Binary files /dev/null and b/Graphics/graphics/particles/leaf1/leaf1_00007.png differ diff --git a/Graphics/graphics/particles/leaf1/leaf1_00008.png b/Graphics/graphics/particles/leaf1/leaf1_00008.png new file mode 100644 index 0000000..f6bf4c9 Binary files /dev/null and b/Graphics/graphics/particles/leaf1/leaf1_00008.png differ diff --git a/Graphics/graphics/particles/leaf1/leaf1_00009.png b/Graphics/graphics/particles/leaf1/leaf1_00009.png new file mode 100644 index 0000000..1e27176 Binary files /dev/null and b/Graphics/graphics/particles/leaf1/leaf1_00009.png differ diff --git a/Graphics/graphics/particles/leaf1/leaf1_00010.png b/Graphics/graphics/particles/leaf1/leaf1_00010.png new file mode 100644 index 0000000..4be9658 Binary files /dev/null and b/Graphics/graphics/particles/leaf1/leaf1_00010.png differ diff --git a/Graphics/graphics/particles/leaf1/leaf1_00011.png b/Graphics/graphics/particles/leaf1/leaf1_00011.png new file mode 100644 index 0000000..57f0d06 Binary files /dev/null and b/Graphics/graphics/particles/leaf1/leaf1_00011.png differ diff --git a/Graphics/graphics/particles/leaf2/leaf1_00000.png b/Graphics/graphics/particles/leaf2/leaf1_00000.png new file mode 100644 index 0000000..bd43308 Binary files /dev/null and b/Graphics/graphics/particles/leaf2/leaf1_00000.png differ diff --git a/Graphics/graphics/particles/leaf2/leaf1_00001.png b/Graphics/graphics/particles/leaf2/leaf1_00001.png new file mode 100644 index 0000000..3013b91 Binary files /dev/null and b/Graphics/graphics/particles/leaf2/leaf1_00001.png differ diff --git a/Graphics/graphics/particles/leaf2/leaf1_00002.png b/Graphics/graphics/particles/leaf2/leaf1_00002.png new file mode 100644 index 0000000..30300af Binary files /dev/null and b/Graphics/graphics/particles/leaf2/leaf1_00002.png differ diff --git a/Graphics/graphics/particles/leaf2/leaf1_00003.png b/Graphics/graphics/particles/leaf2/leaf1_00003.png new file mode 100644 index 0000000..8f0b661 Binary files /dev/null and b/Graphics/graphics/particles/leaf2/leaf1_00003.png differ diff --git a/Graphics/graphics/particles/leaf2/leaf1_00004.png b/Graphics/graphics/particles/leaf2/leaf1_00004.png new file mode 100644 index 0000000..8248fba Binary files /dev/null and b/Graphics/graphics/particles/leaf2/leaf1_00004.png differ diff --git a/Graphics/graphics/particles/leaf2/leaf1_00005.png b/Graphics/graphics/particles/leaf2/leaf1_00005.png new file mode 100644 index 0000000..ecf4ffa Binary files /dev/null and b/Graphics/graphics/particles/leaf2/leaf1_00005.png differ diff --git a/Graphics/graphics/particles/leaf2/leaf1_00006.png b/Graphics/graphics/particles/leaf2/leaf1_00006.png new file mode 100644 index 0000000..ece22b8 Binary files /dev/null and b/Graphics/graphics/particles/leaf2/leaf1_00006.png differ diff --git a/Graphics/graphics/particles/leaf2/leaf1_00007.png b/Graphics/graphics/particles/leaf2/leaf1_00007.png new file mode 100644 index 0000000..1f1f7ee Binary files /dev/null and b/Graphics/graphics/particles/leaf2/leaf1_00007.png differ diff --git a/Graphics/graphics/particles/leaf2/leaf1_00008.png b/Graphics/graphics/particles/leaf2/leaf1_00008.png new file mode 100644 index 0000000..33f28bd Binary files /dev/null and b/Graphics/graphics/particles/leaf2/leaf1_00008.png differ diff --git a/Graphics/graphics/particles/leaf2/leaf1_00009.png b/Graphics/graphics/particles/leaf2/leaf1_00009.png new file mode 100644 index 0000000..6d6ff48 Binary files /dev/null and b/Graphics/graphics/particles/leaf2/leaf1_00009.png differ diff --git a/Graphics/graphics/particles/leaf2/leaf1_00010.png b/Graphics/graphics/particles/leaf2/leaf1_00010.png new file mode 100644 index 0000000..d1a770e Binary files /dev/null and b/Graphics/graphics/particles/leaf2/leaf1_00010.png differ diff --git a/Graphics/graphics/particles/leaf2/leaf1_00011.png b/Graphics/graphics/particles/leaf2/leaf1_00011.png new file mode 100644 index 0000000..0435cea Binary files /dev/null and b/Graphics/graphics/particles/leaf2/leaf1_00011.png differ diff --git a/Graphics/graphics/particles/leaf2/leaf1_00012.png b/Graphics/graphics/particles/leaf2/leaf1_00012.png new file mode 100644 index 0000000..3848e8d Binary files /dev/null and b/Graphics/graphics/particles/leaf2/leaf1_00012.png differ diff --git a/Graphics/graphics/particles/leaf3/leaf1_00000.png b/Graphics/graphics/particles/leaf3/leaf1_00000.png new file mode 100644 index 0000000..c31c69f Binary files /dev/null and b/Graphics/graphics/particles/leaf3/leaf1_00000.png differ diff --git a/Graphics/graphics/particles/leaf3/leaf1_00001.png b/Graphics/graphics/particles/leaf3/leaf1_00001.png new file mode 100644 index 0000000..ad36fe5 Binary files /dev/null and b/Graphics/graphics/particles/leaf3/leaf1_00001.png differ diff --git a/Graphics/graphics/particles/leaf3/leaf1_00002.png b/Graphics/graphics/particles/leaf3/leaf1_00002.png new file mode 100644 index 0000000..8338ffd Binary files /dev/null and b/Graphics/graphics/particles/leaf3/leaf1_00002.png differ diff --git a/Graphics/graphics/particles/leaf3/leaf1_00003.png b/Graphics/graphics/particles/leaf3/leaf1_00003.png new file mode 100644 index 0000000..444a0e1 Binary files /dev/null and b/Graphics/graphics/particles/leaf3/leaf1_00003.png differ diff --git a/Graphics/graphics/particles/leaf3/leaf1_00004.png b/Graphics/graphics/particles/leaf3/leaf1_00004.png new file mode 100644 index 0000000..4f62188 Binary files /dev/null and b/Graphics/graphics/particles/leaf3/leaf1_00004.png differ diff --git a/Graphics/graphics/particles/leaf3/leaf1_00005.png b/Graphics/graphics/particles/leaf3/leaf1_00005.png new file mode 100644 index 0000000..99dc366 Binary files /dev/null and b/Graphics/graphics/particles/leaf3/leaf1_00005.png differ diff --git a/Graphics/graphics/particles/leaf3/leaf1_00006.png b/Graphics/graphics/particles/leaf3/leaf1_00006.png new file mode 100644 index 0000000..50c0d9a Binary files /dev/null and b/Graphics/graphics/particles/leaf3/leaf1_00006.png differ diff --git a/Graphics/graphics/particles/leaf3/leaf1_00007.png b/Graphics/graphics/particles/leaf3/leaf1_00007.png new file mode 100644 index 0000000..d7a7a37 Binary files /dev/null and b/Graphics/graphics/particles/leaf3/leaf1_00007.png differ diff --git a/Graphics/graphics/particles/leaf3/leaf1_00008.png b/Graphics/graphics/particles/leaf3/leaf1_00008.png new file mode 100644 index 0000000..8df60d4 Binary files /dev/null and b/Graphics/graphics/particles/leaf3/leaf1_00008.png differ diff --git a/Graphics/graphics/particles/leaf3/leaf1_00009.png b/Graphics/graphics/particles/leaf3/leaf1_00009.png new file mode 100644 index 0000000..d14ee99 Binary files /dev/null and b/Graphics/graphics/particles/leaf3/leaf1_00009.png differ diff --git a/Graphics/graphics/particles/leaf4/leaf1_00000.png b/Graphics/graphics/particles/leaf4/leaf1_00000.png new file mode 100644 index 0000000..a6309fe Binary files /dev/null and b/Graphics/graphics/particles/leaf4/leaf1_00000.png differ diff --git a/Graphics/graphics/particles/leaf4/leaf1_00001.png b/Graphics/graphics/particles/leaf4/leaf1_00001.png new file mode 100644 index 0000000..3d31420 Binary files /dev/null and b/Graphics/graphics/particles/leaf4/leaf1_00001.png differ diff --git a/Graphics/graphics/particles/leaf4/leaf1_00002.png b/Graphics/graphics/particles/leaf4/leaf1_00002.png new file mode 100644 index 0000000..cfcc565 Binary files /dev/null and b/Graphics/graphics/particles/leaf4/leaf1_00002.png differ diff --git a/Graphics/graphics/particles/leaf4/leaf1_00003.png b/Graphics/graphics/particles/leaf4/leaf1_00003.png new file mode 100644 index 0000000..af077e3 Binary files /dev/null and b/Graphics/graphics/particles/leaf4/leaf1_00003.png differ diff --git a/Graphics/graphics/particles/leaf4/leaf1_00004.png b/Graphics/graphics/particles/leaf4/leaf1_00004.png new file mode 100644 index 0000000..7b0be93 Binary files /dev/null and b/Graphics/graphics/particles/leaf4/leaf1_00004.png differ diff --git a/Graphics/graphics/particles/leaf4/leaf1_00005.png b/Graphics/graphics/particles/leaf4/leaf1_00005.png new file mode 100644 index 0000000..7b5ac2a Binary files /dev/null and b/Graphics/graphics/particles/leaf4/leaf1_00005.png differ diff --git a/Graphics/graphics/particles/leaf4/leaf1_00006.png b/Graphics/graphics/particles/leaf4/leaf1_00006.png new file mode 100644 index 0000000..8229334 Binary files /dev/null and b/Graphics/graphics/particles/leaf4/leaf1_00006.png differ diff --git a/Graphics/graphics/particles/leaf4/leaf1_00007.png b/Graphics/graphics/particles/leaf4/leaf1_00007.png new file mode 100644 index 0000000..1915fab Binary files /dev/null and b/Graphics/graphics/particles/leaf4/leaf1_00007.png differ diff --git a/Graphics/graphics/particles/leaf4/leaf1_00008.png b/Graphics/graphics/particles/leaf4/leaf1_00008.png new file mode 100644 index 0000000..157a04a Binary files /dev/null and b/Graphics/graphics/particles/leaf4/leaf1_00008.png differ diff --git a/Graphics/graphics/particles/leaf4/leaf1_00009.png b/Graphics/graphics/particles/leaf4/leaf1_00009.png new file mode 100644 index 0000000..27fb1fd Binary files /dev/null and b/Graphics/graphics/particles/leaf4/leaf1_00009.png differ diff --git a/Graphics/graphics/particles/leaf4/leaf1_00010.png b/Graphics/graphics/particles/leaf4/leaf1_00010.png new file mode 100644 index 0000000..5030b8c Binary files /dev/null and b/Graphics/graphics/particles/leaf4/leaf1_00010.png differ diff --git a/Graphics/graphics/particles/leaf5/leaf1_00000.png b/Graphics/graphics/particles/leaf5/leaf1_00000.png new file mode 100644 index 0000000..b0e81b0 Binary files /dev/null and b/Graphics/graphics/particles/leaf5/leaf1_00000.png differ diff --git a/Graphics/graphics/particles/leaf5/leaf1_00001.png b/Graphics/graphics/particles/leaf5/leaf1_00001.png new file mode 100644 index 0000000..b7828b6 Binary files /dev/null and b/Graphics/graphics/particles/leaf5/leaf1_00001.png differ diff --git a/Graphics/graphics/particles/leaf5/leaf1_00002.png b/Graphics/graphics/particles/leaf5/leaf1_00002.png new file mode 100644 index 0000000..ccc2714 Binary files /dev/null and b/Graphics/graphics/particles/leaf5/leaf1_00002.png differ diff --git a/Graphics/graphics/particles/leaf5/leaf1_00003.png b/Graphics/graphics/particles/leaf5/leaf1_00003.png new file mode 100644 index 0000000..f1fd9b1 Binary files /dev/null and b/Graphics/graphics/particles/leaf5/leaf1_00003.png differ diff --git a/Graphics/graphics/particles/leaf5/leaf1_00004.png b/Graphics/graphics/particles/leaf5/leaf1_00004.png new file mode 100644 index 0000000..de90457 Binary files /dev/null and b/Graphics/graphics/particles/leaf5/leaf1_00004.png differ diff --git a/Graphics/graphics/particles/leaf5/leaf1_00005.png b/Graphics/graphics/particles/leaf5/leaf1_00005.png new file mode 100644 index 0000000..661a16a Binary files /dev/null and b/Graphics/graphics/particles/leaf5/leaf1_00005.png differ diff --git a/Graphics/graphics/particles/leaf5/leaf1_00006.png b/Graphics/graphics/particles/leaf5/leaf1_00006.png new file mode 100644 index 0000000..996ed74 Binary files /dev/null and b/Graphics/graphics/particles/leaf5/leaf1_00006.png differ diff --git a/Graphics/graphics/particles/leaf5/leaf1_00007.png b/Graphics/graphics/particles/leaf5/leaf1_00007.png new file mode 100644 index 0000000..bc0ab50 Binary files /dev/null and b/Graphics/graphics/particles/leaf5/leaf1_00007.png differ diff --git a/Graphics/graphics/particles/leaf5/leaf1_00008.png b/Graphics/graphics/particles/leaf5/leaf1_00008.png new file mode 100644 index 0000000..9de760e Binary files /dev/null and b/Graphics/graphics/particles/leaf5/leaf1_00008.png differ diff --git a/Graphics/graphics/particles/leaf5/leaf1_00009.png b/Graphics/graphics/particles/leaf5/leaf1_00009.png new file mode 100644 index 0000000..ec73497 Binary files /dev/null and b/Graphics/graphics/particles/leaf5/leaf1_00009.png differ diff --git a/Graphics/graphics/particles/leaf6/leaf1_00000.png b/Graphics/graphics/particles/leaf6/leaf1_00000.png new file mode 100644 index 0000000..4969977 Binary files /dev/null and b/Graphics/graphics/particles/leaf6/leaf1_00000.png differ diff --git a/Graphics/graphics/particles/leaf6/leaf1_00001.png b/Graphics/graphics/particles/leaf6/leaf1_00001.png new file mode 100644 index 0000000..4212765 Binary files /dev/null and b/Graphics/graphics/particles/leaf6/leaf1_00001.png differ diff --git a/Graphics/graphics/particles/leaf6/leaf1_00002.png b/Graphics/graphics/particles/leaf6/leaf1_00002.png new file mode 100644 index 0000000..7237076 Binary files /dev/null and b/Graphics/graphics/particles/leaf6/leaf1_00002.png differ diff --git a/Graphics/graphics/particles/leaf6/leaf1_00003.png b/Graphics/graphics/particles/leaf6/leaf1_00003.png new file mode 100644 index 0000000..a03d0fe Binary files /dev/null and b/Graphics/graphics/particles/leaf6/leaf1_00003.png differ diff --git a/Graphics/graphics/particles/leaf6/leaf1_00004.png b/Graphics/graphics/particles/leaf6/leaf1_00004.png new file mode 100644 index 0000000..e585fb4 Binary files /dev/null and b/Graphics/graphics/particles/leaf6/leaf1_00004.png differ diff --git a/Graphics/graphics/particles/leaf6/leaf1_00005.png b/Graphics/graphics/particles/leaf6/leaf1_00005.png new file mode 100644 index 0000000..13d8d55 Binary files /dev/null and b/Graphics/graphics/particles/leaf6/leaf1_00005.png differ diff --git a/Graphics/graphics/particles/leaf6/leaf1_00006.png b/Graphics/graphics/particles/leaf6/leaf1_00006.png new file mode 100644 index 0000000..8b153dc Binary files /dev/null and b/Graphics/graphics/particles/leaf6/leaf1_00006.png differ diff --git a/Graphics/graphics/particles/leaf6/leaf1_00007.png b/Graphics/graphics/particles/leaf6/leaf1_00007.png new file mode 100644 index 0000000..aab3b60 Binary files /dev/null and b/Graphics/graphics/particles/leaf6/leaf1_00007.png differ diff --git a/Graphics/graphics/particles/leaf6/leaf1_00008.png b/Graphics/graphics/particles/leaf6/leaf1_00008.png new file mode 100644 index 0000000..9d32aa9 Binary files /dev/null and b/Graphics/graphics/particles/leaf6/leaf1_00008.png differ diff --git a/Graphics/graphics/particles/leaf6/leaf1_00009.png b/Graphics/graphics/particles/leaf6/leaf1_00009.png new file mode 100644 index 0000000..1f87666 Binary files /dev/null and b/Graphics/graphics/particles/leaf6/leaf1_00009.png differ diff --git a/Graphics/graphics/particles/leaf6/leaf1_00010.png b/Graphics/graphics/particles/leaf6/leaf1_00010.png new file mode 100644 index 0000000..c54c793 Binary files /dev/null and b/Graphics/graphics/particles/leaf6/leaf1_00010.png differ diff --git a/Graphics/graphics/particles/leaf6/leaf1_00011.png b/Graphics/graphics/particles/leaf6/leaf1_00011.png new file mode 100644 index 0000000..3659600 Binary files /dev/null and b/Graphics/graphics/particles/leaf6/leaf1_00011.png differ diff --git a/Graphics/graphics/particles/leaf_attack/0.png b/Graphics/graphics/particles/leaf_attack/0.png new file mode 100644 index 0000000..a9dc64d Binary files /dev/null and b/Graphics/graphics/particles/leaf_attack/0.png differ diff --git a/Graphics/graphics/particles/leaf_attack/1.png b/Graphics/graphics/particles/leaf_attack/1.png new file mode 100644 index 0000000..2cfe1a5 Binary files /dev/null and b/Graphics/graphics/particles/leaf_attack/1.png differ diff --git a/Graphics/graphics/particles/leaf_attack/2.png b/Graphics/graphics/particles/leaf_attack/2.png new file mode 100644 index 0000000..19eabbd Binary files /dev/null and b/Graphics/graphics/particles/leaf_attack/2.png differ diff --git a/Graphics/graphics/particles/leaf_attack/3.png b/Graphics/graphics/particles/leaf_attack/3.png new file mode 100644 index 0000000..b7c453f Binary files /dev/null and b/Graphics/graphics/particles/leaf_attack/3.png differ diff --git a/Graphics/graphics/particles/leaf_attack/4.png b/Graphics/graphics/particles/leaf_attack/4.png new file mode 100644 index 0000000..d26d38e Binary files /dev/null and b/Graphics/graphics/particles/leaf_attack/4.png differ diff --git a/Graphics/graphics/particles/leaf_attack/5.png b/Graphics/graphics/particles/leaf_attack/5.png new file mode 100644 index 0000000..73c1f4f Binary files /dev/null and b/Graphics/graphics/particles/leaf_attack/5.png differ diff --git a/Graphics/graphics/particles/leaf_attack/6.png b/Graphics/graphics/particles/leaf_attack/6.png new file mode 100644 index 0000000..d68a09d Binary files /dev/null and b/Graphics/graphics/particles/leaf_attack/6.png differ diff --git a/Graphics/graphics/particles/nova/0.png b/Graphics/graphics/particles/nova/0.png new file mode 100644 index 0000000..fdcc423 Binary files /dev/null and b/Graphics/graphics/particles/nova/0.png differ diff --git a/Graphics/graphics/particles/nova/1.png b/Graphics/graphics/particles/nova/1.png new file mode 100644 index 0000000..320b930 Binary files /dev/null and b/Graphics/graphics/particles/nova/1.png differ diff --git a/Graphics/graphics/particles/nova/2.png b/Graphics/graphics/particles/nova/2.png new file mode 100644 index 0000000..91766d8 Binary files /dev/null and b/Graphics/graphics/particles/nova/2.png differ diff --git a/Graphics/graphics/particles/nova/3.png b/Graphics/graphics/particles/nova/3.png new file mode 100644 index 0000000..98371b1 Binary files /dev/null and b/Graphics/graphics/particles/nova/3.png differ diff --git a/Graphics/graphics/particles/nova/4.png b/Graphics/graphics/particles/nova/4.png new file mode 100644 index 0000000..26924ab Binary files /dev/null and b/Graphics/graphics/particles/nova/4.png differ diff --git a/Graphics/graphics/particles/nova/5.png b/Graphics/graphics/particles/nova/5.png new file mode 100644 index 0000000..f6aae60 Binary files /dev/null and b/Graphics/graphics/particles/nova/5.png differ diff --git a/Graphics/graphics/particles/raccoon/0.png b/Graphics/graphics/particles/raccoon/0.png new file mode 100644 index 0000000..cc1a9eb Binary files /dev/null and b/Graphics/graphics/particles/raccoon/0.png differ diff --git a/Graphics/graphics/particles/raccoon/1.png b/Graphics/graphics/particles/raccoon/1.png new file mode 100644 index 0000000..7385737 Binary files /dev/null and b/Graphics/graphics/particles/raccoon/1.png differ diff --git a/Graphics/graphics/particles/raccoon/2.png b/Graphics/graphics/particles/raccoon/2.png new file mode 100644 index 0000000..8b384be Binary files /dev/null and b/Graphics/graphics/particles/raccoon/2.png differ diff --git a/Graphics/graphics/particles/raccoon/3.png b/Graphics/graphics/particles/raccoon/3.png new file mode 100644 index 0000000..d6feaf3 Binary files /dev/null and b/Graphics/graphics/particles/raccoon/3.png differ diff --git a/Graphics/graphics/particles/raccoon/4.png b/Graphics/graphics/particles/raccoon/4.png new file mode 100644 index 0000000..e550c15 Binary files /dev/null and b/Graphics/graphics/particles/raccoon/4.png differ diff --git a/Graphics/graphics/particles/raccoon/5.png b/Graphics/graphics/particles/raccoon/5.png new file mode 100644 index 0000000..13797ad Binary files /dev/null and b/Graphics/graphics/particles/raccoon/5.png differ diff --git a/Graphics/graphics/particles/slash/0.png b/Graphics/graphics/particles/slash/0.png new file mode 100644 index 0000000..75b73d5 Binary files /dev/null and b/Graphics/graphics/particles/slash/0.png differ diff --git a/Graphics/graphics/particles/slash/1.png b/Graphics/graphics/particles/slash/1.png new file mode 100644 index 0000000..011e4a9 Binary files /dev/null and b/Graphics/graphics/particles/slash/1.png differ diff --git a/Graphics/graphics/particles/slash/2.png b/Graphics/graphics/particles/slash/2.png new file mode 100644 index 0000000..922e970 Binary files /dev/null and b/Graphics/graphics/particles/slash/2.png differ diff --git a/Graphics/graphics/particles/slash/3.png b/Graphics/graphics/particles/slash/3.png new file mode 100644 index 0000000..58821d9 Binary files /dev/null and b/Graphics/graphics/particles/slash/3.png differ diff --git a/Graphics/graphics/particles/smoke/0.png b/Graphics/graphics/particles/smoke/0.png new file mode 100644 index 0000000..73e9a59 Binary files /dev/null and b/Graphics/graphics/particles/smoke/0.png differ diff --git a/Graphics/graphics/particles/smoke/1.png b/Graphics/graphics/particles/smoke/1.png new file mode 100644 index 0000000..f21e130 Binary files /dev/null and b/Graphics/graphics/particles/smoke/1.png differ diff --git a/Graphics/graphics/particles/smoke/2.png b/Graphics/graphics/particles/smoke/2.png new file mode 100644 index 0000000..8e2ecb9 Binary files /dev/null and b/Graphics/graphics/particles/smoke/2.png differ diff --git a/Graphics/graphics/particles/smoke/3.png b/Graphics/graphics/particles/smoke/3.png new file mode 100644 index 0000000..244b1a1 Binary files /dev/null and b/Graphics/graphics/particles/smoke/3.png differ diff --git a/Graphics/graphics/particles/smoke/4.png b/Graphics/graphics/particles/smoke/4.png new file mode 100644 index 0000000..e60a29b Binary files /dev/null and b/Graphics/graphics/particles/smoke/4.png differ diff --git a/Graphics/graphics/particles/smoke/5.png b/Graphics/graphics/particles/smoke/5.png new file mode 100644 index 0000000..6475ce3 Binary files /dev/null and b/Graphics/graphics/particles/smoke/5.png differ diff --git a/Graphics/graphics/particles/smoke2/0.png b/Graphics/graphics/particles/smoke2/0.png new file mode 100644 index 0000000..c3267c0 Binary files /dev/null and b/Graphics/graphics/particles/smoke2/0.png differ diff --git a/Graphics/graphics/particles/smoke2/1.png b/Graphics/graphics/particles/smoke2/1.png new file mode 100644 index 0000000..f392845 Binary files /dev/null and b/Graphics/graphics/particles/smoke2/1.png differ diff --git a/Graphics/graphics/particles/smoke2/2.png b/Graphics/graphics/particles/smoke2/2.png new file mode 100644 index 0000000..d611b6f Binary files /dev/null and b/Graphics/graphics/particles/smoke2/2.png differ diff --git a/Graphics/graphics/particles/smoke2/3.png b/Graphics/graphics/particles/smoke2/3.png new file mode 100644 index 0000000..c817380 Binary files /dev/null and b/Graphics/graphics/particles/smoke2/3.png differ diff --git a/Graphics/graphics/particles/smoke2/4.png b/Graphics/graphics/particles/smoke2/4.png new file mode 100644 index 0000000..abd4af8 Binary files /dev/null and b/Graphics/graphics/particles/smoke2/4.png differ diff --git a/Graphics/graphics/particles/smoke2/5.png b/Graphics/graphics/particles/smoke2/5.png new file mode 100644 index 0000000..c89158a Binary files /dev/null and b/Graphics/graphics/particles/smoke2/5.png differ diff --git a/Graphics/graphics/particles/smoke_orange/0.png b/Graphics/graphics/particles/smoke_orange/0.png new file mode 100644 index 0000000..e4baa13 Binary files /dev/null and b/Graphics/graphics/particles/smoke_orange/0.png differ diff --git a/Graphics/graphics/particles/smoke_orange/1.png b/Graphics/graphics/particles/smoke_orange/1.png new file mode 100644 index 0000000..7cce227 Binary files /dev/null and b/Graphics/graphics/particles/smoke_orange/1.png differ diff --git a/Graphics/graphics/particles/smoke_orange/2.png b/Graphics/graphics/particles/smoke_orange/2.png new file mode 100644 index 0000000..4425e33 Binary files /dev/null and b/Graphics/graphics/particles/smoke_orange/2.png differ diff --git a/Graphics/graphics/particles/smoke_orange/3.png b/Graphics/graphics/particles/smoke_orange/3.png new file mode 100644 index 0000000..a817e8d Binary files /dev/null and b/Graphics/graphics/particles/smoke_orange/3.png differ diff --git a/Graphics/graphics/particles/smoke_orange/4.png b/Graphics/graphics/particles/smoke_orange/4.png new file mode 100644 index 0000000..b6ff7a5 Binary files /dev/null and b/Graphics/graphics/particles/smoke_orange/4.png differ diff --git a/Graphics/graphics/particles/smoke_orange/5.png b/Graphics/graphics/particles/smoke_orange/5.png new file mode 100644 index 0000000..3dfab88 Binary files /dev/null and b/Graphics/graphics/particles/smoke_orange/5.png differ diff --git a/Graphics/graphics/particles/sparkle/0.png b/Graphics/graphics/particles/sparkle/0.png new file mode 100644 index 0000000..2bc0bf2 Binary files /dev/null and b/Graphics/graphics/particles/sparkle/0.png differ diff --git a/Graphics/graphics/particles/sparkle/1.png b/Graphics/graphics/particles/sparkle/1.png new file mode 100644 index 0000000..5b3a810 Binary files /dev/null and b/Graphics/graphics/particles/sparkle/1.png differ diff --git a/Graphics/graphics/particles/sparkle/2.png b/Graphics/graphics/particles/sparkle/2.png new file mode 100644 index 0000000..d13930a Binary files /dev/null and b/Graphics/graphics/particles/sparkle/2.png differ diff --git a/Graphics/graphics/particles/sparkle/3.png b/Graphics/graphics/particles/sparkle/3.png new file mode 100644 index 0000000..8384774 Binary files /dev/null and b/Graphics/graphics/particles/sparkle/3.png differ diff --git a/Graphics/graphics/particles/sparkle/4.png b/Graphics/graphics/particles/sparkle/4.png new file mode 100644 index 0000000..b07148f Binary files /dev/null and b/Graphics/graphics/particles/sparkle/4.png differ diff --git a/Graphics/graphics/particles/thunder/0.png b/Graphics/graphics/particles/thunder/0.png new file mode 100644 index 0000000..781f52b Binary files /dev/null and b/Graphics/graphics/particles/thunder/0.png differ diff --git a/Graphics/graphics/particles/thunder/1.png b/Graphics/graphics/particles/thunder/1.png new file mode 100644 index 0000000..ac1fa39 Binary files /dev/null and b/Graphics/graphics/particles/thunder/1.png differ diff --git a/Graphics/graphics/particles/thunder/2.png b/Graphics/graphics/particles/thunder/2.png new file mode 100644 index 0000000..c4bb34b Binary files /dev/null and b/Graphics/graphics/particles/thunder/2.png differ diff --git a/Graphics/graphics/particles/thunder/3.png b/Graphics/graphics/particles/thunder/3.png new file mode 100644 index 0000000..91c92a3 Binary files /dev/null and b/Graphics/graphics/particles/thunder/3.png differ diff --git a/Graphics/graphics/particles/thunder/4.png b/Graphics/graphics/particles/thunder/4.png new file mode 100644 index 0000000..0d51893 Binary files /dev/null and b/Graphics/graphics/particles/thunder/4.png differ diff --git a/Graphics/graphics/particles/thunder/5.png b/Graphics/graphics/particles/thunder/5.png new file mode 100644 index 0000000..55d2698 Binary files /dev/null and b/Graphics/graphics/particles/thunder/5.png differ diff --git a/Graphics/graphics/particles/thunder/6.png b/Graphics/graphics/particles/thunder/6.png new file mode 100644 index 0000000..4d79092 Binary files /dev/null and b/Graphics/graphics/particles/thunder/6.png differ diff --git a/Graphics/graphics/particles/thunder/7.png b/Graphics/graphics/particles/thunder/7.png new file mode 100644 index 0000000..0b8b41c Binary files /dev/null and b/Graphics/graphics/particles/thunder/7.png differ diff --git a/Graphics/graphics/player/down/down_0.png b/Graphics/graphics/player/down/down_0.png new file mode 100644 index 0000000..dbbe852 Binary files /dev/null and b/Graphics/graphics/player/down/down_0.png differ diff --git a/Graphics/graphics/player/down/down_1.png b/Graphics/graphics/player/down/down_1.png new file mode 100644 index 0000000..8545561 Binary files /dev/null and b/Graphics/graphics/player/down/down_1.png differ diff --git a/Graphics/graphics/player/down/down_2.png b/Graphics/graphics/player/down/down_2.png new file mode 100644 index 0000000..dbbe852 Binary files /dev/null and b/Graphics/graphics/player/down/down_2.png differ diff --git a/Graphics/graphics/player/down/down_3.png b/Graphics/graphics/player/down/down_3.png new file mode 100644 index 0000000..eb692a2 Binary files /dev/null and b/Graphics/graphics/player/down/down_3.png differ diff --git a/Graphics/graphics/player/down_attack/attack_down.png b/Graphics/graphics/player/down_attack/attack_down.png new file mode 100644 index 0000000..0ecc144 Binary files /dev/null and b/Graphics/graphics/player/down_attack/attack_down.png differ diff --git a/Graphics/graphics/player/down_idle/idle_down.png b/Graphics/graphics/player/down_idle/idle_down.png new file mode 100644 index 0000000..dbbe852 Binary files /dev/null and b/Graphics/graphics/player/down_idle/idle_down.png differ diff --git a/Graphics/graphics/player/left/left_0.png b/Graphics/graphics/player/left/left_0.png new file mode 100644 index 0000000..dafb10b Binary files /dev/null and b/Graphics/graphics/player/left/left_0.png differ diff --git a/Graphics/graphics/player/left/left_1.png b/Graphics/graphics/player/left/left_1.png new file mode 100644 index 0000000..b84ec9c Binary files /dev/null and b/Graphics/graphics/player/left/left_1.png differ diff --git a/Graphics/graphics/player/left/left_2.png b/Graphics/graphics/player/left/left_2.png new file mode 100644 index 0000000..0e22f2e Binary files /dev/null and b/Graphics/graphics/player/left/left_2.png differ diff --git a/Graphics/graphics/player/left/left_3.png b/Graphics/graphics/player/left/left_3.png new file mode 100644 index 0000000..b771463 Binary files /dev/null and b/Graphics/graphics/player/left/left_3.png differ diff --git a/Graphics/graphics/player/left_attack/attack_left.png b/Graphics/graphics/player/left_attack/attack_left.png new file mode 100644 index 0000000..0b6c05a Binary files /dev/null and b/Graphics/graphics/player/left_attack/attack_left.png differ diff --git a/Graphics/graphics/player/left_idle/idle_left.png b/Graphics/graphics/player/left_idle/idle_left.png new file mode 100644 index 0000000..dafb10b Binary files /dev/null and b/Graphics/graphics/player/left_idle/idle_left.png differ diff --git a/Graphics/graphics/player/right/right_0.png b/Graphics/graphics/player/right/right_0.png new file mode 100644 index 0000000..fe82409 Binary files /dev/null and b/Graphics/graphics/player/right/right_0.png differ diff --git a/Graphics/graphics/player/right/right_1.png b/Graphics/graphics/player/right/right_1.png new file mode 100644 index 0000000..983fbc9 Binary files /dev/null and b/Graphics/graphics/player/right/right_1.png differ diff --git a/Graphics/graphics/player/right/right_2.png b/Graphics/graphics/player/right/right_2.png new file mode 100644 index 0000000..8fcb491 Binary files /dev/null and b/Graphics/graphics/player/right/right_2.png differ diff --git a/Graphics/graphics/player/right/right_3.png b/Graphics/graphics/player/right/right_3.png new file mode 100644 index 0000000..0a7a454 Binary files /dev/null and b/Graphics/graphics/player/right/right_3.png differ diff --git a/Graphics/graphics/player/right_attack/attack_right.png b/Graphics/graphics/player/right_attack/attack_right.png new file mode 100644 index 0000000..9fa1657 Binary files /dev/null and b/Graphics/graphics/player/right_attack/attack_right.png differ diff --git a/Graphics/graphics/player/right_idle/idle_right.png b/Graphics/graphics/player/right_idle/idle_right.png new file mode 100644 index 0000000..fe82409 Binary files /dev/null and b/Graphics/graphics/player/right_idle/idle_right.png differ diff --git a/Graphics/graphics/player/up/up_0.png b/Graphics/graphics/player/up/up_0.png new file mode 100644 index 0000000..d0dae1c Binary files /dev/null and b/Graphics/graphics/player/up/up_0.png differ diff --git a/Graphics/graphics/player/up/up_1.png b/Graphics/graphics/player/up/up_1.png new file mode 100644 index 0000000..2b0de88 Binary files /dev/null and b/Graphics/graphics/player/up/up_1.png differ diff --git a/Graphics/graphics/player/up/up_2.png b/Graphics/graphics/player/up/up_2.png new file mode 100644 index 0000000..d0dae1c Binary files /dev/null and b/Graphics/graphics/player/up/up_2.png differ diff --git a/Graphics/graphics/player/up/up_3.png b/Graphics/graphics/player/up/up_3.png new file mode 100644 index 0000000..b6ebf56 Binary files /dev/null and b/Graphics/graphics/player/up/up_3.png differ diff --git a/Graphics/graphics/player/up_attack/attack_up.png b/Graphics/graphics/player/up_attack/attack_up.png new file mode 100644 index 0000000..d165d7c Binary files /dev/null and b/Graphics/graphics/player/up_attack/attack_up.png differ diff --git a/Graphics/graphics/player/up_idle/idle_up.png b/Graphics/graphics/player/up_idle/idle_up.png new file mode 100644 index 0000000..d0dae1c Binary files /dev/null and b/Graphics/graphics/player/up_idle/idle_up.png differ diff --git a/Graphics/graphics/test/player.png b/Graphics/graphics/test/player.png new file mode 100644 index 0000000..dbbe852 Binary files /dev/null and b/Graphics/graphics/test/player.png differ diff --git a/Graphics/graphics/test/rock.png b/Graphics/graphics/test/rock.png new file mode 100644 index 0000000..30a74e5 Binary files /dev/null and b/Graphics/graphics/test/rock.png differ diff --git a/Graphics/graphics/tilemap/Floor.png b/Graphics/graphics/tilemap/Floor.png new file mode 100644 index 0000000..2971cdd Binary files /dev/null and b/Graphics/graphics/tilemap/Floor.png differ diff --git a/Graphics/graphics/tilemap/details.png b/Graphics/graphics/tilemap/details.png new file mode 100644 index 0000000..8e43aaa Binary files /dev/null and b/Graphics/graphics/tilemap/details.png differ diff --git a/Graphics/graphics/tilemap/ground.png b/Graphics/graphics/tilemap/ground.png new file mode 100644 index 0000000..548b57f Binary files /dev/null and b/Graphics/graphics/tilemap/ground.png differ diff --git a/Graphics/graphics/weapons/axe/down.png b/Graphics/graphics/weapons/axe/down.png new file mode 100644 index 0000000..66761cd Binary files /dev/null and b/Graphics/graphics/weapons/axe/down.png differ diff --git a/Graphics/graphics/weapons/axe/full.png b/Graphics/graphics/weapons/axe/full.png new file mode 100644 index 0000000..99f0318 Binary files /dev/null and b/Graphics/graphics/weapons/axe/full.png differ diff --git a/Graphics/graphics/weapons/axe/left.png b/Graphics/graphics/weapons/axe/left.png new file mode 100644 index 0000000..fbd9b02 Binary files /dev/null and b/Graphics/graphics/weapons/axe/left.png differ diff --git a/Graphics/graphics/weapons/axe/right.png b/Graphics/graphics/weapons/axe/right.png new file mode 100644 index 0000000..72c1d42 Binary files /dev/null and b/Graphics/graphics/weapons/axe/right.png differ diff --git a/Graphics/graphics/weapons/axe/up.png b/Graphics/graphics/weapons/axe/up.png new file mode 100644 index 0000000..5f49b89 Binary files /dev/null and b/Graphics/graphics/weapons/axe/up.png differ diff --git a/Graphics/graphics/weapons/lance/down.png b/Graphics/graphics/weapons/lance/down.png new file mode 100644 index 0000000..f58aeba Binary files /dev/null and b/Graphics/graphics/weapons/lance/down.png differ diff --git a/Graphics/graphics/weapons/lance/full.png b/Graphics/graphics/weapons/lance/full.png new file mode 100644 index 0000000..76ce170 Binary files /dev/null and b/Graphics/graphics/weapons/lance/full.png differ diff --git a/Graphics/graphics/weapons/lance/left.png b/Graphics/graphics/weapons/lance/left.png new file mode 100644 index 0000000..b961b43 Binary files /dev/null and b/Graphics/graphics/weapons/lance/left.png differ diff --git a/Graphics/graphics/weapons/lance/right.png b/Graphics/graphics/weapons/lance/right.png new file mode 100644 index 0000000..af7fd12 Binary files /dev/null and b/Graphics/graphics/weapons/lance/right.png differ diff --git a/Graphics/graphics/weapons/lance/up.png b/Graphics/graphics/weapons/lance/up.png new file mode 100644 index 0000000..96040e5 Binary files /dev/null and b/Graphics/graphics/weapons/lance/up.png differ diff --git a/Graphics/graphics/weapons/rapier/down.png b/Graphics/graphics/weapons/rapier/down.png new file mode 100644 index 0000000..dd103a5 Binary files /dev/null and b/Graphics/graphics/weapons/rapier/down.png differ diff --git a/Graphics/graphics/weapons/rapier/full.png b/Graphics/graphics/weapons/rapier/full.png new file mode 100644 index 0000000..a5f2835 Binary files /dev/null and b/Graphics/graphics/weapons/rapier/full.png differ diff --git a/Graphics/graphics/weapons/rapier/left.png b/Graphics/graphics/weapons/rapier/left.png new file mode 100644 index 0000000..31f5b8b Binary files /dev/null and b/Graphics/graphics/weapons/rapier/left.png differ diff --git a/Graphics/graphics/weapons/rapier/right.png b/Graphics/graphics/weapons/rapier/right.png new file mode 100644 index 0000000..30910a2 Binary files /dev/null and b/Graphics/graphics/weapons/rapier/right.png differ diff --git a/Graphics/graphics/weapons/rapier/up.png b/Graphics/graphics/weapons/rapier/up.png new file mode 100644 index 0000000..5839792 Binary files /dev/null and b/Graphics/graphics/weapons/rapier/up.png differ diff --git a/Graphics/graphics/weapons/sai/down.png b/Graphics/graphics/weapons/sai/down.png new file mode 100644 index 0000000..bda7e15 Binary files /dev/null and b/Graphics/graphics/weapons/sai/down.png differ diff --git a/Graphics/graphics/weapons/sai/full.png b/Graphics/graphics/weapons/sai/full.png new file mode 100644 index 0000000..6f752d6 Binary files /dev/null and b/Graphics/graphics/weapons/sai/full.png differ diff --git a/Graphics/graphics/weapons/sai/left.png b/Graphics/graphics/weapons/sai/left.png new file mode 100644 index 0000000..c9847e2 Binary files /dev/null and b/Graphics/graphics/weapons/sai/left.png differ diff --git a/Graphics/graphics/weapons/sai/right.png b/Graphics/graphics/weapons/sai/right.png new file mode 100644 index 0000000..0631803 Binary files /dev/null and b/Graphics/graphics/weapons/sai/right.png differ diff --git a/Graphics/graphics/weapons/sai/up.png b/Graphics/graphics/weapons/sai/up.png new file mode 100644 index 0000000..366e70b Binary files /dev/null and b/Graphics/graphics/weapons/sai/up.png differ diff --git a/Graphics/graphics/weapons/sword/down.png b/Graphics/graphics/weapons/sword/down.png new file mode 100644 index 0000000..ebcfa93 Binary files /dev/null and b/Graphics/graphics/weapons/sword/down.png differ diff --git a/Graphics/graphics/weapons/sword/full.png b/Graphics/graphics/weapons/sword/full.png new file mode 100644 index 0000000..3b395d8 Binary files /dev/null and b/Graphics/graphics/weapons/sword/full.png differ diff --git a/Graphics/graphics/weapons/sword/left.png b/Graphics/graphics/weapons/sword/left.png new file mode 100644 index 0000000..34abbfa Binary files /dev/null and b/Graphics/graphics/weapons/sword/left.png differ diff --git a/Graphics/graphics/weapons/sword/right.png b/Graphics/graphics/weapons/sword/right.png new file mode 100644 index 0000000..fd96c2c Binary files /dev/null and b/Graphics/graphics/weapons/sword/right.png differ diff --git a/Graphics/graphics/weapons/sword/up.png b/Graphics/graphics/weapons/sword/up.png new file mode 100644 index 0000000..5cac8d4 Binary files /dev/null and b/Graphics/graphics/weapons/sword/up.png differ diff --git a/Graphics/map/map_Details.csv b/Graphics/map/map_Details.csv new file mode 100644 index 0000000..cb22f98 --- /dev/null +++ b/Graphics/map/map_Details.csv @@ -0,0 +1,50 @@ +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,51,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,48,-1,55,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,48,-1,49,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,34,-1,-1,-1,-1,53,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,34,-1,-1,32,-1,-1,-1,-1,-1,-1,-1,-1,54,-1,-1,-1,-1,49,-1,-1,-1,-1,53,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,38,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,38,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,39,-1,-1,-1,-1,-1,36,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,32,-1,35,32,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,34,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,38,-1,-1,-1,-1,-1,-1,38,-1,-1,-1,-1,-1,-1,-1,-1,32,-1,-1,-1,-1,-1,-1,-1,-1,-1,38,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,37,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,37,38,33,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,33,-1,-1,-1,-1,-1,-1,34,-1,2,-1,-1,-1,-1,37,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,37,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,37,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,32,-1,-1,-1,-1,-1,-1,32,-1,-1,-1,-1,-1,-1,-1,34,-1,-1,-1,-1,-1,-1,-1,-1,2,38,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,39,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,33,-1,-1,-1,38,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,35,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,38,-1,-1,-1,-1,-1,-1,-1,33,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,34,-1,-1,37,-1,-1,37,-1,33,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,38,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,36,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,32,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,37,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,33,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,34,-1,-1,-1,-1,-1,-1,-1,-1,-1,35,-1,-1,33,-1,38,32,-1,-1,-1,-1,-1,35,-1,35,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,35,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,36,-1,-1,-1,-1,-1,-1,32,-1,-1,-1,38,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,32,-1,-1,-1,35,-1,-1,34,-1,39,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,37,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,38,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,34,-1,2,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,33,-1,-1,2,-1,39,-1,33,-1,-1,-1,34,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,36,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,38,-1,-1,-1,-1,-1,-1,-1,-1,36,2,-1,34,-1,-1,-1,-1,-1,-1,-1,-1,11,-1,-1,-1,-1,-1,9,-1,-1,-1,9,-1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,35,-1,34,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,9,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,37,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,6,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,33,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,6,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,13,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,5,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,12,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 diff --git a/Graphics/map/map_Entities.csv b/Graphics/map/map_Entities.csv new file mode 100644 index 0000000..adb00c2 --- /dev/null +++ b/Graphics/map/map_Entities.csv @@ -0,0 +1,50 @@ +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,392,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,391,-1,-1,-1,391,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,391,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,393,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,393,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,393,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,394,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,393,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,393,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,393,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,393,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,393,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,390,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,391,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,393,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,393,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,393,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,392,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,393,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 diff --git a/Graphics/map/map_Floor.csv b/Graphics/map/map_Floor.csv new file mode 100644 index 0000000..3cdc5b2 --- /dev/null +++ b/Graphics/map/map_Floor.csv @@ -0,0 +1,50 @@ +274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,273,274,274,274,274,274,274,274,274,274,274,274,274,274,274,273,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,410,411,411,411,411,411,412,274,274,273,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,273,274,170,188,188,171,274,274,166,274,274,274,166,410,475,396,397,397,397,398,476,411,411,412,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,170,188,189,268,266,187,188,188,171,274,274,274,410,475,396,446,419,419,419,445,397,397,398,476,412,274,274,274,274,274,274,274,274,274,274,274,274,271,274,274,274,274,274,274,274,274,274 +274,274,274,274,274,170,188,188,188,188,189,267,265,264,265,264,264,244,165,166,166,166,432,396,446,419,419,419,419,419,419,419,445,398,476,411,411,412,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274 +274,274,274,274,274,167,266,268,264,266,268,264,264,268,266,264,245,244,187,171,166,166,432,418,419,419,419,419,419,419,419,419,419,445,397,398,510,476,411,412,166,166,166,166,166,166,166,166,274,274,274,274,274,274,274,274,274 +274,274,274,274,274,167,265,266,268,265,267,265,264,266,268,265,264,265,268,165,166,166,432,418,419,419,419,485,419,419,419,419,419,419,419,420,433,433,433,434,166,166,166,166,166,166,166,166,166,274,273,274,274,274,274,274,274 +274,274,274,274,274,192,145,267,268,265,264,268,264,245,265,245,264,266,264,165,166,166,432,440,424,419,419,419,419,419,419,423,441,441,441,442,433,507,433,434,166,166,166,166,166,166,166,166,166,274,274,274,274,274,274,274,274 +274,274,274,274,274,274,192,144,144,145,264,264,264,264,245,264,266,264,266,165,166,166,432,510,440,441,441,441,441,441,441,442,433,433,510,433,433,433,509,434,166,166,166,166,166,166,166,166,166,274,274,274,274,274,271,274,274 +274,274,274,274,274,274,274,274,274,192,145,264,266,268,245,264,264,264,143,193,166,166,432,508,433,433,433,433,433,433,433,509,433,433,433,433,433,433,433,434,166,166,166,166,166,166,166,166,166,274,274,274,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,167,268,268,267,267,264,264,143,193,166,166,166,413,414,414,414,414,414,414,415,262,262,413,414,414,414,414,414,414,415,166,166,166,166,166,166,166,166,166,274,274,274,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,192,145,268,266,267,264,266,165,166,166,166,166,435,436,436,436,436,436,436,437,284,284,435,436,436,436,436,436,436,437,166,166,166,166,166,166,166,166,274,271,274,274,274,274,273,274,274 +274,274,274,274,274,274,274,274,274,274,271,167,266,266,268,264,267,187,188,188,188,188,457,458,458,458,458,458,458,459,306,306,457,458,458,458,458,458,458,459,188,188,188,188,188,188,171,166,274,274,274,274,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,170,189,264,265,245,264,264,264,268,245,264,245,267,268,245,268,267,268,267,266,154,156,265,267,265,264,268,264,245,264,266,245,245,264,264,143,193,274,274,274,274,274,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,167,267,265,267,266,245,268,245,266,244,266,264,268,265,264,268,245,245,264,264,176,178,244,245,267,244,264,264,245,265,268,245,264,264,264,165,274,274,274,274,274,274,271,274,274,274,274 +274,274,274,274,274,274,274,274,170,188,189,265,245,266,244,266,244,266,266,264,244,265,264,268,265,245,268,244,267,265,176,178,244,267,268,267,266,264,264,265,266,245,264,264,264,165,274,252,274,274,274,274,274,274,274,274,274 +274,274,274,274,274,274,274,274,167,267,268,244,268,265,244,267,268,267,267,265,266,265,267,245,268,267,267,265,267,244,176,178,267,264,244,264,244,265,245,244,244,244,245,264,264,187,171,166,274,274,274,274,274,274,274,274,274 +274,274,274,274,274,274,274,170,189,267,268,265,268,244,267,268,244,265,266,244,245,244,268,244,267,267,266,267,265,245,176,178,264,266,268,264,245,244,264,267,267,264,245,264,264,264,187,171,274,274,273,274,274,274,274,274,274 +274,274,274,274,274,274,274,167,267,265,268,244,244,265,245,266,244,267,245,245,265,264,265,265,266,266,266,267,264,266,176,178,244,268,265,265,265,244,266,245,267,267,267,268,244,264,264,187,188,171,274,274,274,274,274,274,274 +274,274,274,274,274,274,170,189,265,245,244,245,264,244,264,245,265,268,267,267,244,264,264,267,244,266,265,265,266,268,176,178,266,267,265,244,265,264,245,264,267,265,267,264,266,244,265,264,264,165,274,274,274,274,274,274,274 +274,274,274,274,274,170,189,267,266,267,245,268,264,264,264,265,265,266,266,266,158,221,221,221,221,221,221,221,221,221,248,178,265,268,244,267,266,245,244,245,244,265,265,245,266,264,245,265,264,165,274,274,274,274,274,274,274 +274,274,274,274,274,167,267,265,268,267,267,245,244,264,264,265,266,245,268,266,179,267,265,268,244,245,264,267,268,267,176,178,244,264,245,245,266,244,265,265,265,267,268,244,265,267,264,268,264,165,274,274,274,274,274,274,274 +274,274,274,274,170,189,268,267,245,268,268,245,267,267,268,265,267,245,268,158,227,244,264,267,266,268,267,264,266,266,176,203,155,155,155,155,156,266,267,244,266,267,266,267,266,267,267,244,264,165,274,274,274,274,274,274,274 +274,274,274,274,167,244,244,244,268,244,265,245,266,245,268,265,268,245,265,179,245,264,268,244,245,268,267,264,244,267,198,199,199,199,199,182,178,265,268,266,245,266,264,244,264,245,265,244,264,165,274,274,274,274,274,274,274 +274,274,274,274,167,244,268,244,245,267,245,266,267,266,244,267,267,267,265,179,266,267,266,266,244,265,266,265,245,266,244,267,265,267,244,176,178,244,267,265,245,244,268,265,244,268,264,268,264,165,274,274,274,274,274,274,274 +274,274,274,274,167,267,244,265,265,265,244,245,268,266,267,265,245,245,245,179,264,245,245,266,268,264,266,265,265,267,244,268,267,244,244,176,178,245,266,244,244,268,266,244,267,265,264,244,264,165,274,274,271,274,274,274,274 +274,274,274,274,167,265,245,267,245,265,267,266,265,244,268,267,265,267,265,179,268,266,266,268,244,268,266,267,245,265,268,267,265,267,266,176,178,268,267,245,268,266,265,267,264,266,268,266,143,193,274,274,274,274,274,274,274 +274,274,274,166,167,267,245,265,267,265,265,245,267,245,265,265,266,244,267,179,268,265,266,266,266,266,268,267,266,244,244,244,244,244,268,176,203,155,156,268,265,267,265,245,265,264,267,264,165,274,274,274,274,274,274,274,274 +274,274,274,274,192,145,267,245,266,244,265,245,266,268,245,267,268,266,245,179,244,267,266,245,267,267,245,268,264,265,245,264,266,266,264,198,199,182,178,244,268,265,245,265,245,266,244,264,165,274,274,252,274,274,274,274,274 +274,274,274,274,274,167,265,268,244,268,245,265,244,245,267,267,265,265,264,179,267,267,264,267,267,268,265,264,267,265,265,266,266,265,244,268,244,176,178,265,245,267,268,265,245,268,264,143,193,274,274,274,274,274,274,274,274 +274,274,274,274,274,167,245,266,245,267,245,268,267,265,268,245,268,268,244,179,264,267,265,244,265,266,268,268,267,245,264,244,245,265,266,264,267,176,178,265,266,268,268,268,267,264,143,193,274,274,274,274,274,274,274,274,274 +274,274,274,274,274,167,265,244,268,267,267,265,266,265,264,268,244,268,265,224,222,264,268,245,245,267,264,265,245,244,267,266,267,244,265,244,266,176,178,245,244,266,264,264,143,144,193,274,274,274,274,274,274,274,274,274,274 +274,274,274,274,274,192,144,145,265,244,244,245,265,268,265,268,265,266,268,264,266,245,268,264,244,267,268,268,267,267,244,244,264,267,245,267,266,176,178,268,268,265,264,143,193,274,274,274,274,38,56,39,274,274,274,274,274 +274,274,274,274,274,274,274,192,145,268,265,245,268,267,244,264,244,244,268,264,266,265,264,268,264,264,266,265,266,245,245,268,265,264,264,264,264,198,200,264,264,264,143,193,274,274,271,274,38,57,23,33,274,274,274,274,274 +274,274,274,274,274,274,274,274,192,145,265,267,267,266,245,268,268,267,265,264,268,267,264,267,268,268,244,265,245,244,244,264,264,264,143,144,144,286,288,144,144,144,193,274,274,274,274,38,57,23,23,33,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,192,144,145,267,266,265,264,244,244,266,266,266,244,268,245,265,268,245,264,267,265,264,264,143,144,193,274,274,308,310,274,274,252,274,274,274,274,38,57,23,23,23,33,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,192,144,145,266,265,245,244,264,267,244,265,264,267,268,244,264,266,267,265,264,143,193,274,274,274,274,308,310,274,274,274,274,274,38,56,57,23,23,23,23,33,274,252,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,274,274,167,266,266,268,264,267,266,265,244,266,266,267,245,244,245,267,265,143,193,274,274,252,274,274,308,310,274,271,274,38,56,57,23,23,23,23,23,23,33,274,274,274,274,274 +274,274,274,274,274,274,274,273,274,274,274,274,274,167,245,245,266,265,268,266,265,268,268,267,244,268,245,244,245,264,165,271,274,274,38,56,56,330,332,56,56,56,57,23,23,23,23,23,23,23,23,33,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,274,274,167,264,244,268,265,265,245,245,267,267,267,264,267,265,267,264,143,193,274,274,274,35,27,46,112,114,44,28,23,23,23,23,23,23,23,23,23,23,55,39,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,274,274,192,145,264,264,244,244,244,245,267,244,245,245,244,264,264,143,193,274,274,274,38,57,24,112,110,113,110,22,23,23,23,23,23,23,23,23,23,23,23,33,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,271,274,274,192,145,264,264,265,268,244,265,245,245,264,143,144,144,193,274,274,273,38,57,23,24,110,111,110,0,50,23,23,23,27,45,45,28,23,23,23,23,33,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,192,145,264,267,245,265,268,268,268,264,165,274,274,271,274,274,38,57,23,23,49,2,114,0,50,23,23,27,45,46,110,114,44,28,23,23,11,61,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,192,144,144,144,144,144,144,144,144,193,274,274,274,274,38,57,23,23,23,23,49,1,50,23,23,23,24,110,112,114,114,112,22,23,23,33,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,34,38,57,23,23,23,23,23,23,23,23,23,23,23,49,2,110,112,111,0,50,23,23,33,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,271,274,274,274,274,273,274,273,274,274,274,274,273,274,35,23,23,23,23,23,23,23,23,23,23,23,23,23,49,1,1,1,50,23,23,11,61,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,271,274,274,274,274,60,12,12,12,12,13,23,23,11,12,13,23,23,23,23,23,23,23,23,23,23,33,274,252,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,274,273,274,274,274,274,274,274,252,274,274,274,274,274,274,274,274,271,274,274,274,274,274,60,12,12,61,34,60,12,12,12,12,12,12,12,13,23,11,61,274,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,252,274,274,274,274,274,274,274,274,274,60,12,61,274,274,274,274,274,274,274 +274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,273,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274,274 diff --git a/Graphics/map/map_FloorBlocks.csv b/Graphics/map/map_FloorBlocks.csv new file mode 100644 index 0000000..2727b5a --- /dev/null +++ b/Graphics/map/map_FloorBlocks.csv @@ -0,0 +1,50 @@ +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,395,395,395,395,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,395,395,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,395,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,-1,-1,395,395,395,395,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,395,395,395,395,395,395,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,395,395,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,395,395,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,395,395,395,395,395,395,395,395,-1,-1,395,395,395,395,395,395,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,395,-1,-1,395,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,395,395,395,395,395,395,395,395,395,395,395,395,395,-1,-1,395,395,395,395,395,395,395,395,395,395,395,395,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,395,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,395,395,395,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,395,395,-1,395,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,-1,-1,395,395,395,395,-1,-1,-1,-1,395,395,-1,-1,395,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,-1,395,-1,-1,395,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,395,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,395,-1,-1,395,-1,-1,-1,-1,395,395,395,-1,-1,-1,-1,395,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,395,-1,-1,395,-1,-1,395,395,395,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,395,395,395,-1,-1,395,395,395,395,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,395,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,395,395,395,395,395,395,395,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,395,395,395,-1,-1,395,395,395,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,395,-1,395,395,395,395,395,395,395,395,395,-1,395,395,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,395,395,395,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 diff --git a/Graphics/map/map_Grass.csv b/Graphics/map/map_Grass.csv new file mode 100644 index 0000000..88630fc --- /dev/null +++ b/Graphics/map/map_Grass.csv @@ -0,0 +1,50 @@ +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,10,8,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,-1,9,9,8,10,10,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,8,10,9,10,10,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,8,-1,10,8,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,8,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,-1,-1,-1,-1,-1,10,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,8,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,9,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,-1,-1,9,-1,-1,-1,-1,-1,-1,-1,9,-1,-1,-1,-1,8,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,9,-1,-1,-1,-1,-1,-1,10,9,-1,-1,-1,-1,-1,-1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,-1,-1,-1,-1,10,9,8,-1,9,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,9,-1,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,10,-1,-1,8,-1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,10,9,9,-1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,8,10,-1,-1,-1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,-1,-1,-1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,-1,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,9,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,-1,-1,-1,-1,-1,9,-1,-1,10,9,-1,-1,-1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,-1,-1,-1,8,-1,9,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,8,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,-1,-1,-1,-1,-1,-1,9,8,10,-1,-1,-1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,8,8,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,-1,-1,9,-1,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,8,-1,10,9,-1,-1,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,8,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 diff --git a/Graphics/map/map_Objects.csv b/Graphics/map/map_Objects.csv new file mode 100644 index 0000000..c98bb35 --- /dev/null +++ b/Graphics/map/map_Objects.csv @@ -0,0 +1,50 @@ +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,19,-1,-1,-1,-1,6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,14,-1,-1,-1,-1,14,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,20,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,14,-1,-1,-1,-1,-1,-1,-1,-1,14,-1,-1,-1,-1,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,14,5,-1,-1,-1,-1,10,-1,-1,-1,-1,14,-1,2,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,4,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,2,-1,-1,-1,-1,2,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,-1,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,14,-1,14,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,12,12,8,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,12,15,-1,12,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,14,-1,13,-1,14,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,14,-1,14,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 diff --git a/Map/main_hub.png b/Map/main_hub.png new file mode 100644 index 0000000..72a6d43 Binary files /dev/null and b/Map/main_hub.png differ diff --git a/Map/main_hub_Aestetics.csv b/Map/main_hub_Aestetics.csv new file mode 100644 index 0000000..974cf19 --- /dev/null +++ b/Map/main_hub_Aestetics.csv @@ -0,0 +1,40 @@ +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,165,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,149,181,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,101,133,-1,149,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,139,140,141,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,117,149,-1,165,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,155,156,157,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,101,181,165,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,171,172,173,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,165,-1,101,117,-1,181,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,181,-1,117,165,101,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,181,117,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,56,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,24,-1,-1,72,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 diff --git a/Map/main_hub_Aesthetics.csv b/Map/main_hub_Aesthetics.csv new file mode 100644 index 0000000..974cf19 --- /dev/null +++ b/Map/main_hub_Aesthetics.csv @@ -0,0 +1,40 @@ +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,165,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,149,181,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,101,133,-1,149,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,139,140,141,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,117,149,-1,165,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,155,156,157,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,101,181,165,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,171,172,173,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,165,-1,101,117,-1,181,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,181,-1,117,165,101,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,181,117,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,-1,-1,56,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,24,-1,-1,72,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 diff --git a/Map/main_hub_Enemies.csv b/Map/main_hub_Enemies.csv new file mode 100644 index 0000000..1bb9047 --- /dev/null +++ b/Map/main_hub_Enemies.csv @@ -0,0 +1,40 @@ +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,138,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,138,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,138,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,138,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,138,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,138,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,138,-1,138,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,138,-1,138,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,138,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,138,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,138,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,138,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,138,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,138,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,138,-1,138,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,138,-1,138,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 diff --git a/Map/main_hub_Floor Blocks.csv b/Map/main_hub_Floor Blocks.csv new file mode 100644 index 0000000..2f4c892 --- /dev/null +++ b/Map/main_hub_Floor Blocks.csv @@ -0,0 +1,40 @@ +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,-1,-1,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,-1,-1,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,-1,-1,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,17,17,17,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 diff --git a/Map/main_hub_Floor.csv b/Map/main_hub_Floor.csv new file mode 100644 index 0000000..9039e76 --- /dev/null +++ b/Map/main_hub_Floor.csv @@ -0,0 +1,40 @@ +8,3,18,11,17,17,24,8,0,27,25,20,20,8,25,1,27,25,20,10,0,1,8,10,24,20,9,26,18,16,24,1,24,4,11,20,26,0,16,9,8,10,9,24,24,27,8,19,2,0,16,19,10,11,17,26,1,26,3,2 +28,20,19,3,27,24,26,18,25,24,24,24,16,28,9,27,19,27,10,27,18,24,16,8,0,3,12,24,26,12,11,20,4,26,18,4,11,11,11,16,28,16,11,1,16,11,4,24,10,0,17,16,20,25,8,12,27,9,4,4 +18,12,4,0,4,19,11,16,20,4,28,27,9,2,11,2,27,24,12,20,28,11,1,24,10,2,12,27,4,28,24,1,1,24,11,3,4,10,9,12,2,27,11,11,3,24,1,12,9,25,8,16,3,12,3,24,27,4,25,20 +19,1,20,12,17,3,25,19,2,2,11,4,1,8,25,8,28,24,0,20,4,28,16,9,25,19,1,9,26,11,24,20,24,19,4,12,19,26,1,2,3,0,17,3,26,17,18,10,0,3,12,3,28,2,10,18,17,1,1,12 +19,0,10,1,12,16,9,25,9,16,8,9,17,28,1,19,9,10,11,11,25,0,11,26,10,19,4,18,11,4,10,24,12,11,24,11,0,18,1,25,4,27,19,0,28,28,12,16,19,18,1,4,25,10,8,2,19,2,24,1 +9,2,11,11,9,9,26,28,8,11,2,0,20,19,11,24,18,4,25,25,2,11,25,26,9,19,1,26,19,26,1,16,9,26,28,8,3,12,19,12,10,16,4,2,16,11,1,28,3,3,1,8,18,28,1,26,19,10,9,3 +1,9,0,18,4,0,18,19,16,19,28,9,9,9,9,9,25,12,27,25,2,8,2,28,0,1,4,12,27,8,0,24,8,3,24,0,8,11,24,3,1,10,19,0,2,25,9,9,9,9,2,4,28,2,4,2,0,3,28,18 +19,1,1,9,3,4,19,27,1,0,4,25,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,19,3,3,28,18,18,28,18,20 +9,10,24,11,19,24,19,10,19,1,25,3,9,9,9,9,3,16,19,2,16,4,9,19,17,10,27,19,4,2,16,28,11,28,10,3,16,4,2,2,2,11,12,25,2,11,9,9,9,9,18,17,0,8,19,19,12,9,11,28 +20,8,9,24,10,20,16,25,25,28,20,16,9,9,9,12,19,28,28,2,12,19,26,17,16,3,24,27,1,2,1,4,4,18,10,28,20,11,26,26,17,11,3,17,10,2,11,9,9,27,2,17,2,12,2,27,2,0,24,11 +20,0,8,26,24,1,2,1,1,17,20,27,12,9,9,25,40,40,32,32,40,40,40,32,33,32,33,32,33,40,40,33,40,40,40,40,40,33,33,32,33,33,40,40,33,33,25,9,9,17,10,9,19,19,12,24,19,10,3,20 +27,19,10,20,3,25,16,8,2,28,10,26,18,9,9,32,40,33,40,40,40,33,32,32,33,32,40,40,40,33,40,40,40,33,32,40,33,40,40,32,33,32,33,33,33,33,32,9,9,4,18,11,10,9,4,12,8,4,17,9 +20,19,16,19,17,10,27,10,17,27,9,1,9,9,9,32,33,40,33,32,32,33,32,32,40,40,33,32,33,40,32,40,32,40,40,40,40,33,32,40,33,33,40,33,40,33,40,9,9,10,2,0,20,2,26,3,20,28,9,28 +12,24,3,12,12,11,2,8,27,17,27,20,2,9,9,32,33,33,32,32,40,40,40,33,32,32,33,40,32,32,40,32,33,40,40,40,33,40,32,40,32,32,40,32,40,40,40,9,9,24,10,18,27,9,11,0,8,9,17,3 +28,2,11,12,11,16,20,11,2,3,16,12,20,9,9,40,40,33,32,40,33,40,40,33,33,33,33,40,33,32,40,32,32,33,40,32,32,33,33,32,33,40,32,40,33,32,33,9,9,26,18,4,25,10,28,8,10,12,2,28 +4,24,28,9,11,1,20,28,24,26,16,27,18,9,9,33,40,33,40,33,32,40,33,33,32,33,40,32,32,32,33,32,32,32,40,40,40,40,33,32,32,33,32,32,32,32,32,9,9,4,2,18,12,19,4,4,2,9,0,17 +18,1,11,4,3,1,19,17,28,18,3,11,18,9,9,33,33,40,32,32,33,40,40,32,40,32,40,40,33,33,33,40,33,32,40,32,40,33,32,33,40,32,40,32,32,33,33,9,9,25,10,17,28,10,4,20,1,9,17,18 +19,24,11,3,25,19,8,26,12,12,17,1,12,9,9,33,32,32,40,40,40,32,40,40,40,32,33,40,33,40,33,33,33,40,32,40,33,33,33,40,40,33,32,33,40,33,33,9,9,27,18,24,1,25,28,12,20,18,26,1 +2,12,0,11,26,19,17,18,4,2,17,4,8,9,9,40,40,32,40,40,40,40,32,54,55,32,32,40,40,40,32,33,40,40,32,32,32,32,33,32,40,33,40,32,33,40,33,9,9,2,2,25,10,28,27,11,2,1,1,26 +28,28,19,16,11,24,28,16,18,1,24,0,18,9,9,40,40,33,32,33,40,32,40,33,40,40,32,40,33,40,32,40,40,33,33,40,40,32,40,32,32,40,33,40,33,40,32,9,9,1,10,9,24,10,0,27,2,0,2,26 +17,17,9,8,27,24,9,12,4,27,12,27,27,9,9,32,32,33,32,32,32,33,32,32,40,40,33,32,33,40,40,33,33,40,33,32,32,32,32,32,32,32,33,32,32,32,40,9,9,24,18,24,20,9,27,27,0,16,1,0 +8,18,27,26,4,4,9,26,18,11,20,1,28,9,9,33,40,40,40,33,32,32,32,40,40,40,33,40,40,33,40,40,40,33,40,32,33,32,33,33,40,40,40,32,40,40,33,9,9,0,2,8,26,28,10,16,26,17,18,18 +25,27,26,9,10,10,24,25,8,10,16,16,0,9,9,33,33,33,40,40,33,33,40,32,40,32,32,40,33,33,40,33,40,33,32,33,40,33,40,40,32,32,40,40,40,40,33,9,9,11,10,24,25,9,8,3,0,25,4,26 +27,26,19,24,27,18,25,3,4,24,3,12,1,9,9,32,33,32,33,40,32,40,33,40,40,33,33,32,32,40,32,32,33,32,32,32,33,33,33,40,32,33,33,40,33,32,33,9,9,9,18,4,26,9,12,17,10,11,19,11 +3,3,9,10,19,12,9,3,12,8,25,25,20,9,9,40,33,32,33,40,32,33,33,33,32,32,40,33,33,33,33,32,40,40,32,33,32,33,33,32,33,40,40,40,32,32,32,9,9,20,2,11,27,12,26,17,1,2,0,3 +11,24,10,16,12,24,24,24,9,20,16,8,4,9,9,32,40,40,32,33,32,40,33,32,33,40,40,32,40,40,33,40,33,33,32,40,40,32,33,33,32,32,32,32,40,32,40,9,9,3,10,18,16,2,19,9,18,2,20,2 +24,25,16,0,20,17,26,10,11,17,9,26,2,9,9,33,40,33,33,40,33,32,33,40,33,32,33,32,33,33,32,40,40,40,32,33,32,33,40,40,40,40,33,33,33,40,33,9,9,26,18,2,17,16,25,0,4,27,11,28 +24,12,1,1,1,25,10,18,11,19,12,4,8,9,9,32,40,33,40,40,32,40,32,32,32,40,40,40,33,33,33,40,40,32,32,40,33,32,33,32,40,40,33,40,40,33,33,9,9,2,2,19,26,4,24,19,12,8,3,1 +9,27,18,27,18,18,26,1,9,18,25,16,8,9,9,32,33,33,32,40,40,32,32,40,40,33,33,32,33,32,33,40,32,32,40,33,32,32,33,40,40,40,32,32,40,33,40,9,9,12,10,18,10,0,24,10,19,1,9,16 +2,16,10,3,19,20,2,28,18,4,19,25,9,9,9,32,32,40,32,33,33,40,33,32,40,40,33,40,32,32,40,33,33,32,33,33,32,32,33,40,32,40,32,40,32,33,33,9,9,27,18,8,1,16,3,27,26,17,17,8 +3,25,10,26,1,3,11,12,17,26,10,0,9,9,9,9,33,32,32,32,32,33,33,32,40,32,33,33,40,33,40,40,32,32,32,40,33,33,32,40,40,32,40,33,33,32,9,9,9,9,2,10,11,12,18,20,3,10,8,9 +2,1,0,28,17,12,9,8,9,26,3,26,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,2,18,1,9,24,0,24,4,0 +3,20,20,0,26,8,0,16,28,26,17,20,9,9,9,9,25,3,12,3,17,10,26,27,24,18,9,0,27,8,32,32,25,28,10,9,4,8,18,4,27,27,28,11,8,17,9,9,9,9,18,24,20,3,16,17,17,1,3,27 +1,0,18,28,8,10,2,3,11,20,20,11,28,28,1,26,1,18,11,1,0,26,18,18,17,25,17,18,19,19,32,32,27,16,11,16,9,1,25,4,16,4,24,3,17,2,24,18,10,0,2,9,16,25,11,26,4,18,3,2 +8,4,10,16,27,16,0,0,16,3,8,9,1,0,28,8,28,17,19,25,12,18,1,12,16,4,12,1,24,24,20,28,27,9,11,12,8,10,17,26,3,2,9,24,0,9,18,26,20,20,10,28,12,12,12,2,3,17,20,17 +19,1,26,16,11,18,24,25,3,28,26,1,11,11,19,27,11,12,2,4,26,25,4,1,17,4,17,11,0,27,16,18,2,27,26,2,17,8,17,27,17,3,26,19,11,11,24,26,26,26,11,9,11,1,10,10,28,12,8,8 +9,25,9,20,4,26,2,24,16,1,0,11,18,12,17,9,27,0,10,1,25,4,10,24,1,4,0,4,20,9,11,17,10,0,18,20,28,24,2,17,17,25,8,1,2,26,2,0,17,11,16,8,9,8,0,3,27,18,3,1 +19,25,8,19,10,18,18,28,0,18,27,28,25,28,18,25,10,25,28,24,26,20,9,26,24,24,18,9,24,3,8,10,0,1,28,28,12,2,11,20,4,20,12,25,27,20,12,20,19,4,10,2,25,3,0,8,26,3,9,26 +4,18,0,1,2,10,12,9,27,24,2,26,26,28,10,11,20,11,8,26,19,10,8,20,11,25,17,10,2,9,25,26,25,10,16,26,11,2,11,10,10,17,19,18,28,1,25,24,18,16,10,16,16,24,20,8,26,24,10,8 +4,12,0,3,3,11,2,8,11,16,2,17,12,9,8,0,1,18,16,3,0,24,8,12,0,2,27,24,26,9,2,8,24,2,10,9,17,25,20,27,19,17,3,10,17,28,11,8,24,0,25,12,16,1,27,18,12,24,3,19 diff --git a/Map/main_hub_Player.csv b/Map/main_hub_Player.csv new file mode 100644 index 0000000..95d14d3 --- /dev/null +++ b/Map/main_hub_Player.csv @@ -0,0 +1,40 @@ +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,156,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 diff --git a/Map/main_hub_Walls.csv b/Map/main_hub_Walls.csv new file mode 100644 index 0000000..e3dccfe --- /dev/null +++ b/Map/main_hub_Walls.csv @@ -0,0 +1,40 @@ +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,18,18,19,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,18,18,19,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,33,-1,-1,35,28,29,28,30,18,18,30,28,18,29,30,29,28,18,29,18,18,18,18,18,30,29,29,18,29,29,28,30,18,28,33,-1,-1,35,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,33,-1,34,35,21,97,97,98,99,100,22,98,22,97,98,99,100,100,97,98,99,100,97,98,99,100,50,98,100,22,97,98,99,22,33,34,34,35,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,49,50,50,51,37,113,113,114,115,116,38,66,38,113,114,115,116,116,113,114,115,116,113,114,115,116,66,114,113,38,113,114,115,38,49,50,50,51,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,65,41,42,67,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,65,56,42,67,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,25,26,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,25,26,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,41,42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,41,42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,25,26,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,25,26,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,41,42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,41,42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,41,42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,41,42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,44,45,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,60,61,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,41,42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,41,42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,41,42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,41,42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,25,26,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,25,26,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,41,42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,41,42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,57,58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,18,18,19,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,17,18,18,19,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,33,-1,-1,35,18,30,18,30,18,30,29,29,28,30,29,30,30,29,30,30,28,18,29,29,30,28,30,18,29,29,18,18,28,28,33,-1,-1,35,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,33,-1,34,35,21,97,149,102,97,22,146,102,99,146,148,102,98,100,77,78,22,50,102,149,148,97,102,99,100,145,102,148,149,50,33,34,34,35,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,49,50,50,51,37,113,165,118,113,38,162,118,115,162,164,118,114,116,93,94,38,66,118,165,164,113,118,115,116,161,118,164,165,66,49,50,50,51,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,65,66,66,67,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,20,24,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,65,66,66,67,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,52,56,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1