@@ -1,14 +1,37 @@
/// @description

global.one_second = game_get_speed(gamespeed_fps);
global.destroyed = [];
instance_create_layer(0, 0, "Instances", obj_Input);



instance_create_layer(0,0, "Instances", obj_Input);
var _font_string = "ABCDEFGHIJKLMNOPQRSTUVWXYZ.abcdefghijklmnopqrstuvwxyz1234567890>,!':-+";
global.font = font_add_sprite_ext(spr_Font, _font_string, true, 1)
draw_set_font(global.font);

global.player_max_health = 4
global.player_health = global.player_max_health
global.player_max_stamina = 2;
global.player_max_health = 4;
global.player_health = global.player_max_health;
global.player_max_stamina = 3;
global.player_stamina = global.player_max_stamina;
global.player_gems = 0;
global.player_start_position = i_game_start;
global.start_x = noone;
global.start_y = noone;
global.load = false;

//audio_play_sound(a_music, 10, true);
var _view_width = camera_get_view_width(view_camera[0]);
var _view_height = camera_get_view_height(view_camera[0]);
display_set_gui_size(_view_width, _view_height);

paused_ = false;
paused_sprite_ = noone;
paused_sprite_scale_ = display_get_gui_width()/view_wport[0];

global.item[0] = noone;
global.item[1] = noone;
item_index_ = 0;

audio_play_sound(a_music, 10, true);
inventory_create(6);
inventory_add_item(obj_RingItem);
inventory_add_item(obj_SwordItem);
inventory_add_item(obj_BombItem);
@@ -0,0 +1,40 @@
if room == rm_title {
exit;
}

var _gui_height = display_get_gui_height();
var _gui_width = display_get_gui_width();

if sprite_exists(paused_sprite_) {
draw_sprite_ext(paused_sprite_, 0, 0, 0, paused_sprite_scale_, paused_sprite_scale_, 0, c_white, 1);
draw_set_alpha(0.6);
draw_rectangle_color(0, 0, _gui_width, _gui_height, c_black, c_black, c_black, c_black, false);
draw_set_alpha(1);
}

var _hud_right_edge = max(3+global.player_max_health * 15, 2 + global.player_max_stamina*17);

draw_sprite_ext(spr_Hud, 0, 0, _gui_height, _hud_right_edge, 1, 0, c_white, 1);
draw_sprite(spr_HudEdge, 0, _hud_right_edge, _gui_height);

for (var _i=0; _i<global.player_max_health; _i++) {
var _filled = _i < global.player_health;
draw_sprite(spr_HeartUI, _filled, 4+15*_i, _gui_height-29);
}

for (var _i=0; _i<global.player_max_stamina; _i++) {
var _filled = _i < global.player_stamina;
draw_sprite(spr_StaminaUI, _filled, 4+17*_i, _gui_height-17);
}

var _gem_string = string(global.player_gems);
var _text_width = string_width(_gem_string);
var _x = _gui_width - _text_width + 4;
var _y = _gui_height - 16 + 4;

draw_sprite(spr_Gem, 0, _x-16, _y+7);
draw_text(_x-8, _y-1, _gem_string);

inventory_draw(4, 36);


@@ -1 +1 @@
room_goto(rm_world);
room_goto(rm_title);
@@ -1,5 +1,8 @@
/// @description Insert description here
// You can write your code in this editor

if global.load == true {
global.player_start_position = instance_position(global.start_x, global.start_y, obj_StartPosition);
global.load = false;
}

if instance_exists(global.player_start_position) {
if instance_exists(obj_Player) {
@@ -12,5 +15,5 @@ if instance_exists(global.player_start_position) {
var _start_y = global.player_start_position.y;
instance_create_layer(_start_x, _start_y, "Instances", obj_Player);
}
global.player_start_position = noone;
}

@@ -0,0 +1,52 @@
if paused_ {
var _array_size = array_length_1d(global.inventory)
if obj_Input.right_pressed_ {
item_index_ = min(item_index_ + 1, _array_size - 1);
audio_play_sound(a_menu_move, 1, false);
}
if obj_Input.left_pressed_ {
item_index_ = max(item_index_ - 1, 0);
audio_play_sound(a_menu_move, 1, false);
}
if obj_Input.action_one_pressed_ {
if global.item[1] == global.inventory[item_index_] and global.inventory[item_index_] != noone {
global.item[1] = global.item[0];
global.item[0] = global.inventory[item_index_];
audio_play_sound(a_menu_select, 3, false);
} else {
global.item[0] = global.inventory[item_index_];
audio_play_sound(a_menu_select, 3, false);
}
}
if obj_Input.action_two_pressed_ {
if global.item[0] == global.inventory[item_index_] and global.inventory[item_index_] != noone {
global.item[0] = global.item[1];
global.item[1] = global.inventory[item_index_];
audio_play_sound(a_menu_select, 3, false);
} else {
global.item[1] = global.inventory[item_index_];
audio_play_sound(a_menu_select, 3, false);
}
}
}

if obj_Input.paused_pressed_ {
if paused_ {
paused_ = false;
if sprite_exists(paused_sprite_) {
sprite_delete(paused_sprite_)
}
instance_activate_all();
audio_play_sound(a_unpause, 7, false);
} else {
paused_ = true;
paused_sprite_ = sprite_create_from_surface(application_surface, 0, 0, view_wport[0], view_hport[0], false, false, 0, 0);
instance_deactivate_all(true);
var _array_size = array_length_1d(global.inventory)
for (var _i = 0; _i < _array_size; _i++) {
instance_activate_object(global.inventory[_i]);
}
instance_activate_object(obj_Input);
audio_play_sound(a_pause, 7, false);
}
}
@@ -4,9 +4,9 @@
if hurtbox_entity_can_be_hit_by(other) {
instance_destroy();
create_animation_effect(spr_GrassEffect, x, y, random_range(.4,.8), true);
if chance(.1) {
var _item = choose(obj_GemPickUp, obj_HeartPickUp);
instance_create_layer(x+8, y, "Instances", _item);
}
}

if chance(.1) {
var _item = choose(obj_GemPickUp, obj_HeartPickUp);
instance_create_layer(x+8, y, "Instances", _item);
}
@@ -0,0 +1 @@
/// @description Move Alarm
@@ -0,0 +1 @@
/// @description Attack Alarm
@@ -0,0 +1,21 @@

event_inherited();

enum hornet {
hit,
move,
attack
}

range_ = 128;

starting_state_ = hornet.move;
state_ = starting_state_;

alarm[1] = global.one_second * random_range(0,1);
alarm[2] = global.one_second * random_range(6,8);

image_index = 0;
image_speed = 1;
image_xscale = choose(-1,1);

@@ -0,0 +1,14 @@
/// @description Move State

set_sprite_facing();
add_movement_maxspeed(direction_, 0.05, 1);
move_movement_entity(true);

if alarm[1] <= 0 {
alarm[1] = global.one_second * random_range(1, 3);
direction_ = random(360);
}

if alarm[2] <= 0 and distance_to_object(obj_Player) < range_ {
state_ = hornet.attack;
}
@@ -0,0 +1,21 @@
/// @description Attack State

if not instance_exists(obj_Player) {
state_ = hornet.move;
exit;
}

apply_friction_to_movement_entity();
move_movement_entity(true);

if speed == 0 {
alarm[2] = global.one_second * random_range(2, 4);
var _direction = point_direction(x, y, obj_Player.x, obj_Player.y) + random_range(-30, 30);
var _stinger = instance_create_layer(x, y, "Instances", obj_Stinger);
_stinger.direction = _direction;
_stinger.image_angle = _direction;
_stinger.speed = 2;
state_ = hornet.move;
audio_play_sound(a_stinger, 1, false);

}
@@ -8,4 +8,7 @@ keyboard_set_map(ord("W"), vk_up);
keyboard_set_map(ord("S"), vk_down);

keyboard_set_map(ord("J"), ord("X"));
keyboard_set_map(ord("K"), ord("C"));
keyboard_set_map(ord("K"), ord("C"));

keyboard_set_map(ord("E"), vk_enter);
keyboard_set_map(vk_escape, vk_enter);
@@ -5,5 +5,13 @@ left_ = keyboard_check(vk_left);
up_ = keyboard_check(vk_up);
down_ = keyboard_check(vk_down);

right_pressed_ = keyboard_check_pressed(vk_right);
left_pressed_ = keyboard_check_pressed(vk_left);
up_pressed_ = keyboard_check_pressed(vk_up);
down_pressed_ = keyboard_check_pressed(vk_down);

action_one_pressed_ = keyboard_check_pressed(ord("X"));
action_two_pressed_ = keyboard_check_pressed(ord("C"));
action_two_pressed_ = keyboard_check_pressed(ord("C"))

paused_pressed_ = keyboard_check_pressed(vk_enter);

@@ -0,0 +1,6 @@
sprite_ = sprite_index;
description = "";
show_ammount_ = false;
ammount_ = 0;
action_ = player.sword;
cost_ = 1;
@@ -0,0 +1,7 @@
/// @description Stamina Alarm for Recharge

global.player_stamina = min(global.player_stamina+1, global.player_max_stamina);

if global.player_stamina < global.player_max_stamina {
alarm[1] = global.one_second;
}
@@ -54,4 +54,10 @@ sprite_[player.evade, dir.down] = spr_PlayerRollDown;
sprite_[player.hit, dir.right] = spr_PlayerRunRight;
sprite_[player.hit, dir.up] = spr_PlayerRunUp;
sprite_[player.hit, dir.left] = spr_PlayerRunRight;
sprite_[player.hit, dir.down] = spr_PlayerRunDown;
sprite_[player.hit, dir.down] = spr_PlayerRunDown;

// Bomb
sprite_[player.bomb, dir.right] = spr_PlayerRunRight;
sprite_[player.bomb, dir.up] = spr_PlayerRunUp;
sprite_[player.bomb, dir.left] = spr_PlayerRunRight;
sprite_[player.bomb, dir.down] = spr_PlayerRunDown;
@@ -0,0 +1,3 @@
/// @description Saving

ini_save("save_data.ini");
@@ -25,14 +25,10 @@ if _x_input == 0 and _y_input == 0 {
roll_direction_ = direction_facing_*90;
}

if _attack_input == true {
image_index = 0;
state_ = player.sword;
}
inventory_use_item(obj_Input.action_one_pressed_, global.item[0]);
inventory_use_item(obj_Input.action_two_pressed_, global.item[1]);



if _roll_input == true {
image_index = 0;
state_ = player.evade;
}

move_movement_entity(false);
@@ -0,0 +1,6 @@
/// @description Bomb State

instance_create_layer(x, y+2, "Instances", obj_Bomb);
audio_play_sound(a_set_bomb, 5, false);

state_ = player.move;
@@ -1,10 +1,7 @@
/// @description Move State
image_speed = .35;

var _x_speed = lengthdir_x(speed_, direction_);
if _x_speed != 0 {
image_xscale = sign(_x_speed);
}
set_sprite_facing();

if alarm[1] <= 0 {
apply_friction_to_movement_entity();
@@ -5,13 +5,13 @@ image_speed = .35;
if animation_hit_frame(1) {
var _damage = 1;
var _knockback = 4;
var _life = 1;
create_hitbox(spr_PorcupineHitBox, x, y-8, 0, _life, [obj_Player], _damage, _knockback)
var _life = 10;
create_hitbox(spr_PorcupineHitBox, x, y-4, 0, _life, [obj_Player], _damage, _knockback)
audio_play_sound(a_porcupine_attack, 5, false);
}

if animation_hit_frame(image_number-1) {
state_ = porcupine.idle;
sprite_inex = spr_PorcupineRun;
sprite_index = spr_PorcupineRun;
alarm[1] = 2*global.one_second;
}
@@ -0,0 +1,4 @@
event_inherited();

description_ = "A magical ring that grants its'\nwearer the power to roll.";
action_ = player.evade;
@@ -0,0 +1 @@
/// @description Override Destroy Alarm
@@ -0,0 +1,3 @@
/// @description Destroy on Player Hit

instance_destroy();
@@ -0,0 +1 @@
alarm[1] = 1;
@@ -0,0 +1,2 @@

instance_destroy();
@@ -0,0 +1,4 @@
event_inherited();

targets_ = [obj_Player];
knockback_ = 4;
@@ -0,0 +1,2 @@

depth = -y;
@@ -0,0 +1,4 @@
event_inherited();

description_ = "A dope Sword";
action_ = player.sword;
@@ -0,0 +1,19 @@
enum options {
continue_game,
new_game,
credits,
quit
}

menu_color_ = make_color_rgb(247, 243, 143);
menu_color_dark_ = make_color_rgb(126, 127, 81);

option_[options.continue_game] = "Continue";
option_[options.new_game] = "New Game";
option_[options.credits] = "Credits";
option_[options.quit] = "Quit";

option_length_ = array_length_1d(option_);

index_ = options.continue_game;

@@ -0,0 +1,12 @@
draw_set_halign(fa_center);
for (var _i = 0; _i < option_length_; _i++;) {
if _i = index_ {
draw_set_color(menu_color_);
} else {
draw_set_color(menu_color_dark_);
}
draw_text(x, y + _i * 12, option_[_i]);
}

draw_set_color(c_white);
draw_set_halign(fa_left);
@@ -0,0 +1,35 @@
var _last_index = index_;

if obj_Input.up_pressed_ {
index_ = max(--index_, 0);
}

if obj_Input.down_pressed_ {
index_ = min(++index_, option_length_-1);
}

if _last_index != index_ {
audio_play_sound(a_menu_move, 1, false);
}

if obj_Input.action_one_pressed_ {
switch(index_) {
case options.continue_game:
ini_load("save_data.ini");
break;

case options.new_game:
room_goto(rm_world);
audio_play_sound(a_menu_select, 3, false);
break;

case options.credits:
show_debug_message("Credits");
audio_play_sound(a_menu_select, 3, false);
break;

case options.quit:
game_end();
break;
}
}
@@ -0,0 +1,4 @@
/// @description Insert description here
// You can write your code in this editor

depth = -y;
@@ -211,7 +211,7 @@
"mvc": "1.0",
"views": [
{"id": "1871f85c-7843-4b22-ba76-cfe03e39725e","hborder": 32,"hport": 720,"hspeed": -1,"hview": 180,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": true,"vspeed": -1,"wport": 1280,"wview": 320,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "4f63c2ad-3414-4047-b9d2-4353898f9bfd","hborder": 32,"hport": 720,"hspeed": -1,"hview": 180,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1280,"wview": 320,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "4f63c2ad-3414-4047-b9d2-4353898f9bfd","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "8739d48e-7f52-4e40-819c-6d6753495f90","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "7ed2ed77-db54-416e-8d8e-2ab1cc4dfeb0","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "8deb7759-fbdf-4992-a8b4-384e72414255","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
@@ -96,8 +96,8 @@
},
"mvc": "1.0",
"views": [
{"id": "3312665c-a332-4d18-9349-93e3acf7e65c","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "4d5cb374-4d5a-4211-9679-d7c9b1674b7d","hborder": 32,"hport": 720,"hspeed": -1,"hview": 180,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": true,"vspeed": -1,"wport": 1280,"wview": 320,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "3312665c-a332-4d18-9349-93e3acf7e65c","hborder": 32,"hport": 720,"hspeed": -1,"hview": 180,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": true,"vspeed": -1,"wport": 1280,"wview": 320,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "4d5cb374-4d5a-4211-9679-d7c9b1674b7d","hborder": 32,"hport": 720,"hspeed": -1,"hview": 180,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1280,"wview": 320,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "9c867f4b-07fa-4f1b-ab3f-9324d122a4c3","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "4e5c8507-6cf0-45e8-8043-b0b628096155","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "0f10d64d-7b34-47ce-be11-16ce1cbe1162","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},

Large diffs are not rendered by default.

@@ -0,0 +1,117 @@

{
"name": "rm_title",
"id": "10992685-dd94-47be-ad3c-27220ba60ed1",
"creationCodeFile": "",
"inheritCode": false,
"inheritCreationOrder": false,
"inheritLayers": false,
"instanceCreationOrderIDs": [
"fb17c0a5-41ee-439a-885e-1a06f3d17315"
],
"IsDnD": false,
"layers": [
{
"__type": "GMRInstanceLayer_Model:#YoYoStudio.MVCFormat",
"name": "Instances",
"id": "68fd3c6c-1394-43d2-b155-2c8542510bc0",
"depth": 0,
"grid_x": 16,
"grid_y": 16,
"hierarchyFrozen": false,
"hierarchyVisible": true,
"inheritLayerDepth": false,
"inheritLayerSettings": false,
"inheritSubLayers": false,
"inheritVisibility": false,
"instances": [
{"name": "inst_22DBEF8","id": "fb17c0a5-41ee-439a-885e-1a06f3d17315","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_22DBEF8","objId": "e83448b5-8644-4899-9ae9-5abde73ff95b","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 1,"mvc": "1.0","x": 160,"y": 112}
],
"layers": [

],
"m_parentID": "00000000-0000-0000-0000-000000000000",
"m_serialiseFrozen": false,
"modelName": "GMRInstanceLayer",
"mvc": "1.0",
"userdefined_depth": false,
"visible": true
},
{
"__type": "GMRBackgroundLayer_Model:#YoYoStudio.MVCFormat",
"name": "Background",
"id": "a9fcd7da-f89c-4b24-87ab-b9bdab0bed2a",
"animationFPS": 15,
"animationSpeedType": "0",
"colour": { "Value": 4294967295 },
"depth": 100,
"grid_x": 16,
"grid_y": 16,
"hierarchyFrozen": false,
"hierarchyVisible": true,
"hspeed": 0,
"htiled": true,
"inheritLayerDepth": false,
"inheritLayerSettings": false,
"inheritSubLayers": false,
"inheritVisibility": false,
"layers": [

],
"m_parentID": "00000000-0000-0000-0000-000000000000",
"m_serialiseFrozen": false,
"modelName": "GMRBackgroundLayer",
"mvc": "1.0",
"spriteId": "1f3449f5-30bc-4fc9-8126-bdd130f8421b",
"stretch": false,
"userdefined_animFPS": false,
"userdefined_depth": false,
"visible": true,
"vspeed": 0,
"vtiled": true,
"x": 0,
"y": 0
}
],
"modelName": "GMRoom",
"parentId": "00000000-0000-0000-0000-000000000000",
"physicsSettings": {
"id": "56a492dc-978d-4a9a-b715-c0062c9d1637",
"inheritPhysicsSettings": false,
"modelName": "GMRoomPhysicsSettings",
"PhysicsWorld": false,
"PhysicsWorldGravityX": 0,
"PhysicsWorldGravityY": 10,
"PhysicsWorldPixToMeters": 0.1,
"mvc": "1.0"
},
"roomSettings": {
"id": "24630e6b-5cd5-447d-8103-b5b072617705",
"Height": 180,
"inheritRoomSettings": false,
"modelName": "GMRoomSettings",
"persistent": false,
"mvc": "1.0",
"Width": 320
},
"mvc": "1.0",
"views": [
{"id": "c5a443a9-7989-4933-94e4-59f4d91821e0","hborder": 32,"hport": 720,"hspeed": -1,"hview": 180,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": true,"vspeed": -1,"wport": 1280,"wview": 320,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "3db813ee-9a11-4050-b50d-4da910b3cd62","hborder": 32,"hport": 720,"hspeed": -1,"hview": 180,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1280,"wview": 320,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "2d621e61-1f2d-4479-a883-6f48415f84c0","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "8f5a6265-cd6a-48d1-9434-3d702c29bbf5","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "1f6a4d3e-e527-49fd-bfd0-3d5072354711","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "1ba83275-8a7c-4bf3-ad74-d4ceec4b56c4","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "49f9238d-93e1-4fd8-9f98-07d805cf43f2","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "ee03afd6-6e93-4ece-b501-4476b1b7cb62","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0}
],
"viewSettings": {
"id": "a4e49814-4482-4835-9820-1485295b7273",
"clearDisplayBuffer": true,
"clearViewBackground": false,
"enableViews": true,
"inheritViewSettings": false,
"modelName": "GMRoomViewSettings",
"mvc": "1.0"
}
}
@@ -27,9 +27,6 @@
"fe119702-64f9-45d3-98fb-72ff275221a9",
"2569983d-de64-482e-ad35-24852029c3fa",
"66b51321-a5a7-4dfb-aa70-6bd58cc73946",
"30d81efa-12e9-4477-8ba3-be5f8da53109",
"6c4fa1fd-023a-4890-aead-14cc5d1ba10e",
"8bd1b1ed-7223-4d56-99b9-4ae65f9ddfea",
"e13912b6-24fb-4694-9ebb-5f6f86994d92",
"8ef9cad6-f396-4210-b742-5247d8d8a366",
"0dc455fb-736e-45f5-88c7-55d31be44ce3",
@@ -40,7 +37,11 @@
"94141391-c3dc-4b9d-ab6b-84b8c36e8113",
"8172ba0a-100d-473f-a495-9f90ae23b712",
"6ae15b13-bb7f-406c-bbbe-e18d945b67a3",
"4b9de31e-40b3-42ab-9c72-a84d5cc7b9e8"
"4b9de31e-40b3-42ab-9c72-a84d5cc7b9e8",
"30d81efa-12e9-4477-8ba3-be5f8da53109",
"47c1ea64-36b2-4bb7-8edf-e9d7081873f7",
"4840a74c-e645-4f44-8655-e06336eaa98b",
"e12cd8da-8b14-468a-b054-52bd05a656b7"
],
"IsDnD": false,
"layers": [
@@ -105,8 +106,6 @@
{"name": "inst_330D9DF","id": "2569983d-de64-482e-ad35-24852029c3fa","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_330D9DF","objId": "00af5971-a1d9-4805-8cc6-d94181d5af09","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 1,"mvc": "1.0","x": 224,"y": 80},
{"name": "inst_105F8D4D","id": "66b51321-a5a7-4dfb-aa70-6bd58cc73946","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_105F8D4D","objId": "00af5971-a1d9-4805-8cc6-d94181d5af09","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 1,"mvc": "1.0","x": 224,"y": 96},
{"name": "inst_61BCD0C5","id": "30d81efa-12e9-4477-8ba3-be5f8da53109","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_61BCD0C5","objId": "11947c3a-1942-418d-a90e-9ed24c7c2ff8","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 1,"mvc": "1.0","x": 224,"y": 48},
{"name": "inst_383A876","id": "6c4fa1fd-023a-4890-aead-14cc5d1ba10e","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_383A876","objId": "11947c3a-1942-418d-a90e-9ed24c7c2ff8","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 1,"mvc": "1.0","x": 128,"y": 144},
{"name": "inst_22ECE9BC","id": "8bd1b1ed-7223-4d56-99b9-4ae65f9ddfea","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_22ECE9BC","objId": "11947c3a-1942-418d-a90e-9ed24c7c2ff8","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 1,"mvc": "1.0","x": 112,"y": 64},
{"name": "inst_1FF112E6","id": "e13912b6-24fb-4694-9ebb-5f6f86994d92","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_1FF112E6","objId": "0a1f61b1-5cf4-4151-ad16-2be9f188701f","properties": null,"rotation": 0,"scaleX": 16,"scaleY": 2,"mvc": "1.0","x": 64,"y": 0},
{"name": "inst_7E96AB75","id": "8ef9cad6-f396-4210-b742-5247d8d8a366","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_7E96AB75","objId": "0a1f61b1-5cf4-4151-ad16-2be9f188701f","properties": null,"rotation": 0,"scaleX": 2,"scaleY": 6,"mvc": "1.0","x": 288,"y": 32},
{"name": "inst_3E8AA7DB","id": "0dc455fb-736e-45f5-88c7-55d31be44ce3","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_3E8AA7DB","objId": "0a1f61b1-5cf4-4151-ad16-2be9f188701f","properties": null,"rotation": 0,"scaleX": 20,"scaleY": 1,"mvc": "1.0","x": 0,"y": 160},
@@ -116,7 +115,10 @@
{"name": "inst_1873E517","id": "82ff3125-ed8a-45fc-8a16-9ee975626254","colour": { "Value": 4294967295 },"creationCodeFile": "InstanceCreationCode_inst_1873E517.gml","creationCodeType": ".gml","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_1873E517","objId": "bc164300-4fad-40c5-a963-54f5cd516835","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 2,"mvc": "1.0","x": 336,"y": 128},
{"name": "inst_36370FEE","id": "94141391-c3dc-4b9d-ab6b-84b8c36e8113","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_36370FEE","objId": "0a1f61b1-5cf4-4151-ad16-2be9f188701f","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 1,"mvc": "1.0","x": 320,"y": 112},
{"name": "inst_500EA1D5","id": "8172ba0a-100d-473f-a495-9f90ae23b712","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_500EA1D5","objId": "0a1f61b1-5cf4-4151-ad16-2be9f188701f","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 1,"mvc": "1.0","x": 320,"y": 160},
{"name": "i_game_start","id": "4b9de31e-40b3-42ab-9c72-a84d5cc7b9e8","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "i_game_start","objId": "2542a1f4-1f07-4e27-92ec-d43fa996329d","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 1,"mvc": "1.0","x": 48,"y": 32}
{"name": "i_game_start","id": "4b9de31e-40b3-42ab-9c72-a84d5cc7b9e8","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "i_game_start","objId": "2542a1f4-1f07-4e27-92ec-d43fa996329d","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 1,"mvc": "1.0","x": 48,"y": 64},
{"name": "inst_35087254","id": "47c1ea64-36b2-4bb7-8edf-e9d7081873f7","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_35087254","objId": "14bee924-26e1-43ca-b39b-fa4df438b95f","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 1,"mvc": "1.0","x": 128,"y": 144},
{"name": "inst_1963F404","id": "4840a74c-e645-4f44-8655-e06336eaa98b","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_1963F404","objId": "6023626f-39fe-4a88-8288-272f4e0eebec","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 1,"mvc": "1.0","x": 144,"y": 64},
{"name": "inst_6C56C354","id": "e12cd8da-8b14-468a-b054-52bd05a656b7","colour": { "Value": 4294967295 },"creationCodeFile": "","creationCodeType": "","ignore": false,"inheritCode": false,"inheritItemSettings": false,"IsDnD": false,"m_originalParentID": "00000000-0000-0000-0000-000000000000","m_serialiseFrozen": false,"modelName": "GMRInstance","name_with_no_file_rename": "inst_6C56C354","objId": "014657b3-2387-417f-8375-a5a64825282a","properties": null,"rotation": 0,"scaleX": 1,"scaleY": 1,"mvc": "1.0","x": 40,"y": 16}
],
"layers": [

@@ -276,7 +278,7 @@
"mvc": "1.0",
"views": [
{"id": "47c3f6b6-8486-498d-a329-42e81309ce8a","hborder": 32,"hport": 720,"hspeed": -1,"hview": 180,"inherit": true,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": true,"vspeed": -1,"wport": 1280,"wview": 320,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "a28a0437-7d13-48ac-90ea-3e7980c5573e","hborder": 32,"hport": 720,"hspeed": -1,"hview": 180,"inherit": true,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1280,"wview": 320,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "a28a0437-7d13-48ac-90ea-3e7980c5573e","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": false,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "83469ef3-45cc-4820-b6ed-8814e381056e","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": true,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "03506058-8164-422a-a028-8f97c052e4f0","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": true,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
{"id": "02915b97-b474-4fa5-9daf-b65fb5796def","hborder": 32,"hport": 768,"hspeed": -1,"hview": 768,"inherit": true,"modelName": "GMRView","objId": "00000000-0000-0000-0000-000000000000","mvc": "1.0","vborder": 32,"visible": false,"vspeed": -1,"wport": 1024,"wview": 1024,"xport": 0,"xview": 0,"yport": 0,"yview": 0},
@@ -0,0 +1,5 @@
/// @arg instance_id

var _id = argument0;

global.destroyed[array_length_1d(global.destroyed)] = _id;
@@ -0,0 +1,18 @@
// @param value
// @param array

var _value = argument0;
var _array = argument1;
var _array_size = array_length_1d(_array)
var _i = 0;

// Look for value
repeat (_array_size) {
if _array[_i] == _value {
return _i;
} else {
_i++;
}
}

return -1;
@@ -0,0 +1,21 @@
/// @arg file_name

var _file_name = argument0;

global.load = true;
ini_open(_file_name);

var _room_name = ini_read_string("Level", "Room", "");
global.start_x = ini_read_real("Level", "Start x", 0);
global.start_y = ini_read_real("Level", "Start y", 0);

ini_close();

if _room_name == "" {
show_error("No Save Data",false);
}



var _room = asset_get_index(_room_name);
room_goto(_room);
@@ -0,0 +1,11 @@
/// @arg file_name

var _file_name = argument0;

ini_open(_file_name);

ini_write_string("Level", "Room", room_get_name(room));
ini_write_real("Level", "Start x", global.player_start_position.x);
ini_write_real("Level", "Start y", global.player_start_position.y);

ini_close();
@@ -0,0 +1,19 @@
// @param item

var _item = singleton(argument0);

var _item_index = array_find_index(_item, global.inventory);
if _item_index == -1 {
var _i = 0;
var _array_size = array_length_1d(global.inventory);
for (var _i = 0; _i < _array_size; _i++) {
if global.inventory[_i] = noone {
global.inventory[_i] = _item;
return true;
}
}
} else {
return true;
}

return false;
@@ -0,0 +1,12 @@
// @param size

var _size = argument0;

global.inventory = [];

var _i = 0;

repeat (_size) {
global.inventory[_i] = noone;
_i++;
}
@@ -0,0 +1,38 @@
// @param x
// @param y

if not obj_Game.paused_ exit;

var _x = argument0;
var _y = argument1;
var _array_size = array_length_1d(global.inventory);

for (var _i = 0; _i < _array_size; _i++) {
var _box_x = _x + _i * 32;
var _box_y = _y;
draw_sprite(spr_InventoryBox, 0, _box_x, _box_y);

var _item = global.inventory[_i];
if instance_exists(_item) {
draw_sprite(_item.sprite_, 0, _box_x + 16, _box_y + 16);
}

if _i == item_index_ {
draw_sprite(spr_PauseCursor, image_index/8, _box_x, _box_y);
if instance_exists(_item) {
draw_text(_x+4, _y+36, _item.description_);
var description_height_ = string_height(_item.description_);
draw_text(_x+4, _y+48 + description_height_, "Stamina Cost: " + string(_item.cost_));
}
}
}

draw_sprite(spr_InventoryBox, 0, 4, 4);
draw_sprite(spr_InventoryBox, 0, 36, 4);

if instance_exists(global.item[0]) {
draw_sprite(global.item[0].sprite_, 0, 20, 20);
}
if instance_exists(global.item[1]) {
draw_sprite(global.item[1].sprite_, 0, 52, 20);
}
@@ -0,0 +1,14 @@
// @arg input
// @arg item

var _input = argument0;
var _item = argument1;

if _input {
if instance_exists(_item) and global.player_stamina >= _item.cost_{
state_ = _item.action_
global.player_stamina = max(0, global.player_stamina - _item.cost_);
alarm[1] = global.one_second;
image_index = 0;
}
}
@@ -0,0 +1,5 @@
/// @arg instance_id

var _id = argument0;

return array_find_index(_id, global.destroyed) != -1;
@@ -0,0 +1,4 @@
var _x_speed = lengthdir_x(speed_, direction_);
if _x_speed != 0 {
image_xscale = sign(_x_speed);
}
@@ -0,0 +1,10 @@
/// @param object

var _object = argument0;
if instance_exists(_object) {
return _object.id;
} else {
var _instance = instance_create_layer(0, 0, "Instances", _object);
_instance.persistent = true;
return _instance;
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.