Merge pull request #136 from Lorenzooone/custom_codes_related

Reworked custom control codes
This commit is contained in:
Lorenzooone 2021-11-03 17:58:26 +01:00 committed by GitHub
commit c41901d922
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 661 additions and 731 deletions

View File

@ -27,7 +27,8 @@ $input_c_files =
"src/c/equip.c",
"src/c/psi.c",
"src/c/title.c",
"src/c/luminehall.c"
"src/c/luminehall.c",
"src/c/custom_codes.c"
$base_c_address = 0x83755B8;
$scripttool_cmd = "bin/ScriptTool/ScriptTool.dll"

20
src/c/battle_data.h Normal file
View File

@ -0,0 +1,20 @@
#ifndef HEADER_BATTLE_DATA_INCLUDED
#define HEADER_BATTLE_DATA_INCLUDED
#include "types.h"
// NOTE: WE DON'T KNOW HOW BIG THIS STRUCT IS
typedef struct BATTLE_DATA {
byte unknown[0x42];
short id; //0x42
byte unknown_2[0x15];
byte letter; //0x59
byte unknown_3[0x2];
bool is_enemy; //0x5C
byte npc_id; //0x5D
byte pc_id; //0x5E
byte unknown_4[0x33];
short enemy_id; //0x92
} BATTLE_DATA;
#endif

194
src/c/custom_codes.c Normal file
View File

@ -0,0 +1,194 @@
#include "custom_codes.h"
#include "vwf.h"
#include "goods.h"
void set_window_x(WINDOW* window, int pixels)
{
window->pixel_x = pixels & 7;
window->text_x = pixels >> 3;
}
int custom_codes_parse(int code, char* parserAddress, WINDOW* window)
{
return custom_codes_parse_generic(code, parserAddress, window, (byte*)BASE_GRAPHICS_ADDRESS);
}
int load_The_user_target(BATTLE_DATA* bd, bool ignore_letters)
{
int val_to_store = 1;
short user;
if(!m2_is_battle)
return 1;
if(bd->is_enemy || bd->npc_id != 0)
{
user = bd->id;
val_to_store = (m2_enemy_attributes[user] & 0xFF) + 1;
if(!ignore_letters && user != PORKY && bd->is_enemy)
{
if(bd->letter != 1 || m2_sub_daf84(bd->enemy_id) != 2)
val_to_store = NO_THE; //Multiple of the same enemy are on the field...
}
if(user == KING)
val_to_store = NO_THE;
}
else
val_to_store = NO_THE; //It's a party member, no "The "
return val_to_store;
}
int load_gender_user_target(BATTLE_DATA* bd)
{
int val_to_store = MALE; //Default is male
short user;
if(!m2_is_battle)
return m2_cstm_last_pc != PAULA ? MALE : FEMALE; //Only Paula is female
if(bd->is_enemy || bd->npc_id != 0)
{
user = bd->id;
val_to_store = ((m2_enemy_attributes[user] >> 8) & 0xFF);
if(user == KING)
val_to_store = NEUTRAL;
}
else
{
user = bd->id;
if(user <= 3)
val_to_store = bd->pc_id != PAULA ? MALE : FEMALE; //Only Paula is female
}
return val_to_store;
}
int custom_codes_parse_generic(int code, char* parserAddress, WINDOW* window, byte* dest)
{
int addedSize = 0;
//Prepare variables for the data in the switches
WINDOW* inv_window;
WINDOW* dialogue_window;
int val_to_store;
bool store;
short user;
switch(code)
{
case ADD_PIXEL_X_RENDERER:
// 60 FF XX: Add XX pixels to the renderer
handle_first_window_buffer(window, dest);
set_window_x(window, window->pixel_x + (window->text_x << 3) + (byte)parserAddress[2]);
addedSize = 3;
break;
case SET_PIXEL_X_RENDERER:
// 5F FF XX: Set the X value of the renderer to XX
handle_first_window_buffer(window, dest);
set_window_x(window, (byte)parserAddress[2]);
addedSize = 3;
break;
case STORE_TO_WINDOW_DATA:
// 5E FF XX : Load a value into memory, based on XX
addedSize = 3;
val_to_store = 0;
store = false;
switch((byte)parserAddress[2])
{
case ENEMY_PLURALITY:
// 5E FF 01 : Load enemy plurality into memory
val_to_store = m2_btl_enemies_size > 3 ? 3 : m2_btl_enemies_size;
store = true;
break;
case BATTLE_USER_THE:
// 5E FF 02 : Load user's usage of "The " into memory
val_to_store = load_The_user_target(m2_btl_user_ptr, (bool)parserAddress[3]);
addedSize += 1;
store = true;
break;
case BATTLE_TARGET_THE:
// 5E FF 03 : Load target's usage of "The " into memory
val_to_store = load_The_user_target(m2_btl_target_ptr, false);
store = true;
break;
case BATTLE_USER_GENDER:
// 5E FF 04 : Load user's gender into memory
val_to_store = load_gender_user_target(m2_btl_user_ptr);
store = true;
break;
case BATTLE_TARGET_GENDER:
// 5E FF 05 : Load target's gender into memory - UNUSED but coded, just like in EB
val_to_store = load_gender_user_target(m2_btl_target_ptr);
store = true;
break;
default:
break;
}
if(store)
m2_store_to_win_memory(val_to_store);
break;
case CALL_GIVE_TEXT:
// 5D FF: Call give text
handle_first_window_buffer(window, dest);
inv_window = (*window_pointers) + INV_WINDOW_VALUE;
byte source = m2_source_pc;
byte target = m2_active_window_pc;
int item_index = inv_window->cursor_x == 0 ? 0 : 1;
item_index += (inv_window->cursor_y << 1);
unsigned short item = (*pc_stats)[source].goods[item_index];
byte* free_string = *free_strings_pointers;
if(item != NULL)
{
give_print(item, target, source, (*window_pointers) + DIALOGUE_WINDOW_VALUE, free_string);
clearWindowTiles_buffer((*window_pointers) + DIALOGUE_WINDOW_VALUE);
addedSize = -1;
}
else // Not really needed, but will just make the game not print anything instead of softlocking
addedSize = 2;
break;
case LOAD_BUFFER:
// 5C FF: Load buffer
load_pixels_overworld();
break;
case PRINT_MAIN_WINDOW:
// 5B FF: Print main window (if enabled) without restore of window buffer
generic_reprinting_first_menu_talk_to_highlight();
addedSize = 2;
break;
case RESTORE_DIALOGUE:
// 5A FF: Restore the dialogue window
dialogue_window = (*window_pointers) + DIALOGUE_WINDOW_VALUE;
dialogue_window->text_x = 0;
dialogue_window->text_y = 0;
dialogue_window->vwf_skip = false;
m2_drawwindow(dialogue_window);
addedSize = 2;
break;
case RESET_STORED_GOODS:
// 59 FF: Set stored goods window's data so it prints the header from scratch
inv_window = (*window_pointers) + INV_WINDOW_VALUE;
inv_window->pixel_x = 0xFF;
addedSize = 2;
break;
default:
break;
}
return addedSize;
}

55
src/c/custom_codes.h Normal file
View File

@ -0,0 +1,55 @@
#ifndef HEADER_CUSTOM_CODES_INCLUDED
#define HEADER_CUSTOM_CODES_INCLUDED
#include "types.h"
#include "locs.h"
#include "window.h"
#include "battle_data.h"
#define INV_WINDOW_VALUE 4
#define DIALOGUE_WINDOW_VALUE 2
#define PAULA 1
#define MALE 1
#define FEMALE 2
#define NEUTRAL 3
#define NO_THE 1
#define KING 0xA0
#define PORKY 0xD8
#define ENEMY_PLURALITY 1
#define BATTLE_USER_THE 2
#define BATTLE_TARGET_THE 3
#define BATTLE_USER_GENDER 4
#define BATTLE_TARGET_GENDER 5
#define RESET_STORED_GOODS 0x59
#define RESTORE_DIALOGUE 0x5A
#define PRINT_MAIN_WINDOW 0x5B
#define LOAD_BUFFER 0x5C
#define CALL_GIVE_TEXT 0x5D
#define STORE_TO_WINDOW_DATA 0x5E
#define SET_PIXEL_X_RENDERER 0x5F
#define ADD_PIXEL_X_RENDERER 0x60
#define BASE_GRAPHICS_ADDRESS 0x6000000
int custom_codes_parse(int code, char* parserAddress, WINDOW* window);
int custom_codes_parse_generic(int code, char* parserAddress, WINDOW* window, byte* dest);
extern void load_pixels_overworld();
extern void generic_reprinting_first_menu_talk_to_highlight();
extern byte m2_sub_daf84(short value);
extern unsigned short m2_enemy_attributes[];
extern short m2_is_battle;
extern byte m2_cstm_last_pc;
extern BATTLE_DATA* m2_btl_user_ptr;
extern BATTLE_DATA* m2_btl_target_ptr;
extern byte m2_btl_enemies_size;
extern byte m2_source_pc;
extern byte m2_active_window_pc;
#endif

View File

@ -13,16 +13,18 @@ void __attribute__((naked)) m2_soundeffect(int index) {}
int __attribute__((naked)) m2_div(int dividend, int divisor) {}
int __attribute__((naked)) m2_remainder(int dividend, int divisor) {}
void __attribute__((naked)) m2_formatnumber(int value, byte* strDest, int length) {}
int __attribute__((naked)) m2_sub_a334c(int value) {}
int __attribute__((naked)) m2_store_to_win_memory(int value) {}
int __attribute__((naked)) m2_sub_a3384(int value) {}
void __attribute__((naked)) m2_sub_d3c50() {}
void __attribute__((naked)) m2_sub_d6844() {}
byte __attribute__((naked)) m2_sub_daf84(short value) {}
int __attribute__((naked)) m2_setupwindow(WINDOW* window, short window_x, short window_y, short window_width, short window_height) {}
int __attribute__((naked)) m2_clearwindowtiles(WINDOW* window) {}
int __attribute__((naked)) customcodes_parse_generic(int code, char* parserAddress, WINDOW* window, int* dest) {}
void __attribute__((naked)) m2_printstr(WINDOW* window, byte* str, unsigned short x, unsigned short y, bool highlight) {}
void __attribute__((naked)) m2_setupbattlename(short value) {}
void __attribute__((naked)) store_pixels_overworld() {}
void __attribute__((naked)) load_pixels_overworld() {}
void __attribute__((naked)) generic_reprinting_first_menu_talk_to_highlight() {}
void __attribute__((naked)) m12_dim_palette(short* palette, int total, int dimmingFactor) {}
int __attribute__((naked)) m2_jump_to_offset(byte* character) {}
byte* __attribute__((naked)) m2_malloc(int size) {}

View File

@ -257,7 +257,7 @@ int goods_inner_process(WINDOW *window, unsigned short *items)
{
window->counter = 0;
window->vwf_skip = false;
m2_sub_a334c(0);
m2_store_to_win_memory(0);
m2_sub_a3384(0);
return -1;
}
@ -446,7 +446,7 @@ int goods_inner_process(WINDOW *window, unsigned short *items)
window->counter = 0;
window->vwf_skip = false;
m2_soundeffect(0x12E);
m2_sub_a334c(0);
m2_store_to_win_memory(0);
m2_sub_a3384(0);
return -1;
}
@ -456,7 +456,7 @@ int goods_inner_process(WINDOW *window, unsigned short *items)
window->counter = 0xFFFF;
window->vwf_skip = false;
m2_soundeffect(0x12D);
m2_sub_a334c(*active_window_party_member + 1);
m2_store_to_win_memory(*active_window_party_member + 1);
int selected_index = cursor_col + window->cursor_y * 2 + 1;
m2_sub_a3384(selected_index);

View File

@ -46,7 +46,7 @@ byte *readCharacterGive(byte *outputString, byte chr, byte source, byte target,
extern void m2_soundeffect(int index);
extern int m2_div(int dividend, int divisor);
extern int m2_sub_a334c(int value);
extern int m2_store_to_win_memory(int value);
extern int m2_sub_a3384(int value);
extern void m2_clearwindowtiles(WINDOW* window);
extern int bin_to_bcd(int value, int* digit_count);

View File

@ -2,6 +2,7 @@
#include "status.h"
#include "number-selector.h"
#include "locs.h"
#include "custom_codes.h"
void printNumberOfStatus(int maxLength, int value, int blankX, int y, int strX, int width)
{
@ -234,7 +235,7 @@ int statusWindowText(WINDOW* window)
byte *str = window->text_start + window->text_offset;
if((*(str + 1)) == 0xFF)
{
int returnedLength = customcodes_parse_generic(*str, str, window, (byte*)(OVERWORLD_BUFFER - ((*tile_offset) * TILESET_OFFSET_BUFFER_MULTIPLIER)));
int returnedLength = custom_codes_parse_generic(*str, str, window, (byte*)(OVERWORLD_BUFFER - ((*tile_offset) * TILESET_OFFSET_BUFFER_MULTIPLIER)));
if(returnedLength != 0)
{
if(returnedLength < 0)

View File

@ -2,6 +2,7 @@
#include "vwf.h"
#include "number-selector.h"
#include "locs.h"
#include "custom_codes.h"
byte decode_character(byte chr)
{
@ -1464,7 +1465,7 @@ byte print_character_with_codes(WINDOW* window, byte* dest)
window->text_offset += m2_jump_to_offset(character);
else
{
returnedLength = customcodes_parse_generic(code, character, window, dest);
returnedLength = custom_codes_parse_generic(code, character, window, dest);
if(returnedLength == 0)
returnedLength = 2;
else if(returnedLength < 0)
@ -2002,7 +2003,7 @@ int print_alphabet_buffer(WINDOW* window)
if(str[1] == 0xFF)
{
byte returnedVal = customcodes_parse_generic(str[0], str, window, dest);
byte returnedVal = custom_codes_parse_generic(str[0], str, window, dest);
if(returnedVal != 0)
{
window->text_offset += returnedVal;

View File

@ -172,7 +172,6 @@ extern int m2_div(int dividend, int divisor);
extern int m2_remainder(int dividend, int divisor);
extern void m2_soundeffect(int index);
extern void m2_printstr(WINDOW* window, byte* str, unsigned short x, unsigned short y, bool highlight);
extern int customcodes_parse_generic(int code, char* parserAddress, WINDOW* window, byte* dest);
extern int m2_jump_to_offset(byte* character);
extern void m2_sub_d3c50();
extern void m2_sub_d6844();

View File

@ -1,210 +0,0 @@
//==============================================================================
// int parse_generic(int code, char* parserAddress, WINDOW* window, byte* dest)
// In:
// r0: code
// r1: parser address
// r2: window
// r3: memory_destionation for handle_first_window_buffer
// Out:
// r0: control code length (0 if not matched)
//==============================================================================
customcodes_parse:
push {r3,lr}
ldr r3,=#0x6000000
bl customcodes_parse_generic
pop {r3,pc}
customcodes_parse_generic:
push {r1-r5,lr}
mov r5,r3
mov r3,0
mov r4,r0
//--------------------------------
// 60 FF XX: Add XX pixels to the renderer
cmp r4,0x60
bne @@next
// 60 FF should be treated as a renderable code
push {r0-r3}
mov r0,r2
mov r1,r5
bl handle_first_window_buffer
pop {r0-r3}
mov r3,3
// Get the current X offset
ldrh r4,[r2,2]
// Get the current X tile
ldrh r5,[r2,0x2A]
lsl r5,r5,3
add r4,r4,r5 // Current X location (in pixels)
// Get the value to add
ldrb r5,[r1,2] // Control code parameter
add r4,r4,r5 // New X location
// Store the pixel offset of the new location
@@store_x:
lsl r5,r4,29
lsr r5,r5,29
strh r5,[r2,2]
// Store the X tile of the new location
lsr r4,r4,3
strh r4,[r2,0x2A]
b @@end
@@next:
//--------------------------------
// 5F FF XX: Set the X value of the renderer
cmp r4,0x5F
bne @@next2
// 5F FF should be treated as a renderable code
push {r0-r3}
mov r1,r5
mov r0,r2
bl handle_first_window_buffer
pop {r0-r3}
mov r3,3
// Get the new X value
ldrb r4,[r1,2]
b @@store_x
@@next2:
//--------------------------------
// 5E FF XX: Load value into memory
cmp r4,0x5E
bne @@next3
mov r3,3
// Get the argument
ldrb r4,[r1,2]
cmp r4,1
bne @@end
// 01: load enemy plurality
ldr r1,=0x2025038
ldrb r1,[r1] // number of enemies at start of battle
cmp r1,4
blt @@small
mov r1,3
@@small:
mov r0,r1 // the jump table is 1-indexed
mov r4,r3
bl 0x80A334C // store to window memory
mov r3,r4
b @@end
@@next3:
//--------------------------------
// 5D FF: Print give text
cmp r4,0x5D
bne @@next4
// 5D FF should be treated as a renderable code
push {r0-r3}
mov r1,r5
mov r0,r2
bl handle_first_window_buffer
pop {r0-r3}
ldr r3,=#0x30009FB
ldrb r3,[r3,#0] //Source
ldr r2,=#m2_active_window_pc //Target
ldrb r2,[r2,#0]
ldr r1,=#0x3005230
ldr r1,[r1,#0x10] //Inventory Window
ldrh r4,[r1,#0x36] //Cursor Y
ldrh r1,[r1,#0x34] //Cursor X
lsl r4,r4,#1
cmp r1,#0
beq @@continue
add r4,r4,#1 //Selected Item number in inventory
@@continue:
lsl r4,r4,#1
ldr r0,=#0x3005200
ldr r0,[r0,#0]
push {r0} //String address
ldr r0,=#0x3001D40
mov r1,#0x6C
mul r1,r3
add r0,#0x14
add r0,r0,r1 //Inventory of source
add r0,r0,r4 //Item address
ldrh r0,[r0,#0] //Item
cmp r0,#0
beq @@EndOf5D
mov r1,r2
mov r2,r3
ldr r3,=#0x3005230
ldr r3,[r3,#0x08] //Dialogue Window
bl give_print
@@EndOf5D:
pop {r0}
mov r3,#0
sub r3,r3,#1 //r3 is now -1
b @@end
@@next4:
//--------------------------------
// 5C FF: Load buffer
cmp r4,#0x5C
bne @@next5
bl load_pixels_overworld
b @@end
@@next5:
//--------------------------------
// 5B FF: Print main window (if enabled) without restore of window buffer
cmp r4,#0x5B
bne @@next6
bl generic_reprinting_first_menu_talk_to_highlight
mov r3,#2
b @@end
@@next6:
//--------------------------------
// 5A FF: Restore the dialogue window
cmp r4,#0x5A
bne @@next7
ldr r0,=#0x3005230
ldr r0,[r0,#8]
mov r1,#0
strh r1,[r0,#0x2A]
strh r1,[r0,#0x2C]
strb r1,[r0,#3]
bl m2_drawwindow
mov r3,#2
b @@end
@@next7:
//--------------------------------
// 59 FF: Set stored goods window's data so it prints the header from scratch
cmp r4,#0x59
bne @@end
ldr r0,=#0x3005230
ldr r0,[r0,#0x10]
mov r1,#0xFF //Set pixel_x as 0xFF
strb r1,[r0,#2]
mov r3,#2
//--------------------------------
@@end:
mov r0,r3
pop {r1-r5,pc}
.pool

View File

@ -985,20 +985,9 @@ pop {r4,pc}
.org 0x80DB0D2 :: strb r5,[r4,2]
.org 0x80DB0D6 :: strb r0,[r4,3]
// "The" flag checks
.org 0x80DB084 :: bl db04c_theflag :: nop :: nop
.org 0x80DB110 :: bl dae9c_king_0_the
.org 0x80DB156 :: bl db156_party_0_the //Not needed anymore, but is a good measure
.org 0x80DAE30 :: bl db04c_theflag :: nop :: nop
.org 0x80DAE9C :: bl dae9c_king_0_the
.org 0x80DAEDA :: bl daeda_party_0_the //Not needed anymore, but is a good measure
.org 0x80EC93C :: bl ec93c_party_0_the //Leveling up - Not needed anymore, but is a good measure
// "The" flag checks - for target window
.org 0x80DCD5C :: bl dcd5c_theflag :: nop :: nop
.org 0x80DB08E :: bl db08e_theflagflag
.org 0x80DAE3A :: bl db08e_theflagflag
.org 0x80DCD66 :: bl db08e_theflagflag
.org 0x80C9C58 :: bl c9c58_9f_ad_minThe
.org 0x80C9C84 :: bl c9c58_9f_ad_minThe
.org 0x80CA442 :: bl ca442_store_letter
// Ignore the hard-coded Japanese "and cohorts"
@ -2335,7 +2324,9 @@ disclaimer_map:
//==============================================================================
.definelabel buffer_subtractor ,0x0000800
.definelabel m2_btl_enemies_size ,0x2025038
.definelabel m2_hall_line_size ,0x3000374
.definelabel m2_source_pc ,0x30009FB
.definelabel m2_ness_data ,0x3001D54
.definelabel m2_ness_name ,0x3001F10
.definelabel m2_old_paula_name ,0x3001F16
@ -2351,12 +2342,16 @@ disclaimer_map:
.definelabel m2_old_rockin ,0x3001F3A
.definelabel m2_rockin ,0x3001F3C
.definelabel m2_old_japanese_name ,0x3001F42
.definelabel m2_cstm_last_pc ,0x3001F4E
.definelabel m2_cstm_last_printed ,0x3001F4F
.definelabel m2_player1 ,0x3001F50
.definelabel m2_buffer_counter ,0x3002A4C
.definelabel m2_script_readability ,0x3004F08
.definelabel m2_psi_exist ,0x300525C
.definelabel m2_active_window_pc ,0x3005264
.definelabel m2_is_battle ,0x3005344
.definelabel m2_btl_user_ptr ,0x300538C
.definelabel m2_btl_target_ptr ,0x3005390
.definelabel m2_setup_naming_mem ,0x8001D5C
.definelabel m2_soundeffect ,0x8001720
.definelabel m2_copy_names_perm_mem ,0x8002088
@ -2371,7 +2366,7 @@ disclaimer_map:
.definelabel m2_title_quick_setup ,0x8011BFC
.definelabel m12_dim_palette ,0x80137DC
.definelabel m2_enable_script ,0x80A1F6C
.definelabel m2_sub_a334c ,0x80A334C
.definelabel m2_store_to_win_memory ,0x80A334C
.definelabel m2_sub_a3384 ,0x80A3384
.definelabel m2_jump_to_offset ,0x80A6C24
.definelabel m2_get_selected_item ,0x80A469C
@ -2400,6 +2395,7 @@ disclaimer_map:
.definelabel m2_hpwindow_up ,0x80D3F0C
.definelabel m2_curhpwindow_down ,0x80D41D8
.definelabel m2_sub_d6844 ,0x80D6844
.definelabel m2_sub_daf84 ,0x80DAF84
.definelabel m2_setupbattlename ,0x80DCD00
.definelabel m2_stat_symb_checker ,0x8B0EDA4
.definelabel vblank ,0x80F47E4
@ -2424,7 +2420,6 @@ disclaimer_map:
.include "m2-vwf-entries.asm"
.include "m2-bugfixes.asm"
.include "m2-formatting.asm"
.include "m2-customcodes.asm"
.include "m2-compiled.asm"
.include "m2-flyover.asm"
.include "m12-intro.asm"

View File

@ -3,7 +3,7 @@ c980c_custom_codes:
push {r1-r2,lr}
mov r1,r7
mov r2,r5
bl customcodes_parse
bl custom_codes_parse
ldr r1,[r6]
// If 0, return [r6]+2; otherwise, return [r6]+r0
@ -34,7 +34,7 @@ ldrb r0,[r2]
mov r5,r0
mov r1,r2
mov r2,r4
bl customcodes_parse
bl custom_codes_parse
cmp r0,0
beq @@next
mov r2,r12
@ -902,6 +902,7 @@ pop {pc}
// Use new pointer for user/target strings
ebfd4_user_pointer:
push {lr}
bl save_last_pc_overworld
mov r4,0x4C
lsl r4,r4,4
add r0,r0,r4
@ -975,6 +976,40 @@ add r0,r0,r7
bx lr
.pool
//==============================================================================
//Saves the last loaded pc for the overworld
save_last_pc_overworld:
push {r0-r1,lr}
ldr r1,=m2_is_battle
ldrh r1,[r1]
cmp r1,#0 //Are we in the overworld?
bne @@total_end
mov r1,0 //If we are, find out which pc it is...
ldr r0,=m2_ness_name //Ness
cmp r0,r2
beq @@end
mov r1,1
add r0,7 //Paula
cmp r0,r2
beq @@end
mov r1,2
add r0,7 //Jeff
cmp r0,r2
beq @@end
mov r1,3
add r0,7 //Poo
cmp r0,r2
beq @@end
mov r1,0xFF
@@end:
ldr r0,=m2_cstm_last_pc //Save it here
strb r1,[r0]
@@total_end:
pop {r0-r1,pc}
//==============================================================================
//Sets the names' background to a default
_215a_load_names:
@ -988,7 +1023,7 @@ pop {pc}
dcd00_enemy_letter:
push {r1-r2,lr}
ldrb r1,[r5,#0]
cmp r1,#1 //In case the name has a "The " at the beginning, remove it
cmp r1,#1 //In case the name has a "the " at the beginning, remove it
bne @@end
mov r2,sp
add r2,#0xC //Get where the writing stack for the name starts
@ -1014,29 +1049,14 @@ pop {r1-r2,pc}
//==============================================================================
// Add a space between enemy name and letter in multi-enemy fights for 9F FF and AD FF. Only enemies call this.
dae00_enemy_letter:
push {r1-r2,lr}
ldrb r1,[r4,#0]
cmp r1,#1 //In case the name has a "The " at the beginning, remove it
bne @@end
mov r2,sp
add r2,#0xC //Get where the writing stack for the name starts
sub r4,r4,#4
@@cycle: //The removed and shifted everything by 4 bytes
ldr r1,[r2,#4]
str r1,[r2,#0]
add r2,#4
cmp r2,r4
ble @@cycle
@@end:
sub r4,r4,#2 //The the flag must be accounted for. It moves the pointer by 2, so we put it back
push {lr}
sub r0,0x90
strb r0,[r4,#1] //Put the letter near the enemy writing space
mov r0,#0x50 //Store the space
strb r0,[r4]
mov r0,#0 //Store the the flag as 0
strb r0,[r4,#4]
pop {r1-r2,pc}
pop {pc}
.pool
//==============================================================================
@ -1066,33 +1086,6 @@ add r0,4
pop {r4,pc}
.pool
//==============================================================================
// "The" flag checks for AD FF and 9F FF
db04c_theflag:
push {r4,lr}
// Clobbered code: get enemy string pointer
lsl r4,r2,1
bl 0x80BE260
mov r1,r0
mov r0,sp
add r0,8
// Check for "The" flag
ldr r3,=m2_enemy_attributes
ldrb r3,[r3,r4] // "The" flag
cmp r3,0
beq @@next
// Write "The " before the enemy name
ldr r2,=0x50959884
str r2,[r0]
add r0,4
@@next:
pop {r4,pc}
.pool
//==============================================================================
db08e_theflagflag: //Puts a flag at the end of the name that is 1 if the has been added. 0 otherwise. (called right after db04c_theflag or dcd5c_theflag)
push {r3,lr}
@ -1104,135 +1097,6 @@ mov r3,r0
pop {pc}
.pool
//==============================================================================
dae9c_king_0_the: //King is different than the other chosen ones, it's needed to operate on the stack before it goes to the proper address because its branch reconnects with the enemies' routine.
push {r1,lr}
ldmia [r0]!,r2,r3 //Loads and stores King's name
stmia [r1]!,r2,r3
pop {r0}
bl _add_0_end_of_name
pop {pc}
_get_pointer_to_stack: //r0 has the value r1 will have
push {r1,lr}
mov r1,r0
ldr r0,=#0x3005220
ldr r0,[r0,#0]
lsl r1,r1,#4
add r0,r0,r1 //Writing stack address
pop {r1,pc}
_add_0_end_of_name: //assumes r0 has the address to the stack. Stores 0 after the end of the name.
push {r1,lr}
@@cycle: //Get to the end of the name
ldrb r1,[r0,#0]
cmp r1,#0
beq @@end_of_cycle
@@keep_going:
add r0,#1
b @@cycle
@@end_of_cycle:
ldrb r1,[r0,#1]
cmp r1,#0xFF
bne @@keep_going
mov r1,#0 //Store 0 after the 0xFF00
strb r1,[r0,#2]
pop {r1,pc}
//==============================================================================
daeda_party_0_the:
push {lr}
bl 0x80DB01C
mov r0,#0x50
bl _get_pointer_to_stack
bl _add_0_end_of_name
pop {pc}
//==============================================================================
ec93c_party_0_the:
push {lr}
bl 0x80EC010
mov r0,#0x50
bl _get_pointer_to_stack
bl _add_0_end_of_name
pop {pc}
//==============================================================================
db156_party_0_the:
push {lr}
bl 0x80DB02C
mov r0,#0x4C
bl _get_pointer_to_stack
bl _add_0_end_of_name
pop {pc}
//==============================================================================
c9c58_9f_ad_minThe: //Routine that changes The to the and viceversa if need be for 9F FF and for AD FF
push {r2,lr}
ldr r0,=#0x3005220
cmp r4,#0x9F //If this is 9F, then load the user string pointer
bne @@ad_setup
bl custom_user_pointer //Load the user string pointer
b @@common
@@ad_setup: //If this is AD, then load the target string pointer
push {r7}
bl c980c_target_pointer //Load the target string pointer
pop {r7}
mov r1,r0
@@common:
mov r2,#0
@@cycle:
ldrb r0,[r1,r2]
cmp r0,#0xFF
beq @@next //Find its end
add r2,#1
b @@cycle
@@next:
add r2,#1
ldrb r0,[r1,r2]
cmp r0,#1 //Does this string have the the flag? If it does not, then proceed to the end
bne @@end
ldr r2,=0x50959884 //"The "
ldr r0,[r1,#0]
sub r2,r0,r2
cmp r2,#0
beq @@next_found_the //Does this string have "The "? If it does, proceed accordingly
cmp r2,#0x20
beq @@next_found_the //Does this string have "the "? If it does, proceed accordingly
//For the other languages: add the other things to compare to here...? Maybe you can do it in a smarter way though...
//No articles found. Go to the end
b @@end
@@next_found_the: //A starting "The " or "the " has been found
//Assumes the uppercase and lowercase characters are 0x20 apart
ldr r0,=m2_cstm_last_printed
ldrb r0,[r0,#0]
cmp r0,#0x70 //Is the previous character an @?
beq @@Upper
mov r0,#0x20
sub r2,r0,r2 //Is this "t"? If it is, this will be 0. Otherwise, it will be 0x20
ldr r0,[r1,#0]
add r0,r0,r2 //Ensure it is the
strb r0,[r1,#0]
b @@end
@@Upper:
ldr r0,[r1,#0]
sub r0,r0,r2 //Ensure it is The
strb r0,[r1,#0]
@@end:
ldr r0,[r6,#0] //Clobbered code
add r0,#2
pop {r2,pc}
.pool
//==============================================================================
ca442_store_letter:
push {r1,lr}
@ -1641,7 +1505,7 @@ pop {pc}
//Routine which gives the address to the party member's inventory
get_inventory_selected:
push {r3,lr}
ldr r0,=#0x30009FB //Load source pc
ldr r0,=m2_source_pc //Load source pc
ldrb r0,[r0,#0]
ldr r3,=#0x3001D40 //Get inventory
mov r2,#0x6C
@ -1663,7 +1527,7 @@ ldr r2,[r3,#0]
lsl r2,r2,#0x10
asr r2,r2,#0x10
push {r2}
ldr r2,=#0x30009FB //Load source pc
ldr r2,=m2_source_pc //Load source pc
ldrb r2,[r2,#0]
str r2,[r3,#0] //Store it
@ -2503,7 +2367,7 @@ pop {pc}
//==============================================================================
c7ea2_shop_clear:
push {lr}
bl m2_sub_a334c
bl m2_store_to_win_memory
ldr r0,=#0x3005230 //Window generic address
ldr r0,[r0,#8] //Load the dialogue window
bl clear_window

View File

@ -1104,216 +1104,216 @@
^L1106^[86 FF _L3944_]@You need a good running approach for this to[01 FF] work.[00 FF]
^L1107^[86 FF _L3944_]@You don't need a running approach to use this.[01 FF]@It is also called the <Tornado Teleport.>[00 FF]
^L1108^[00 FF]
^L1109^@[9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00].[02 FF]@But nothing happened.[02 FF][00 FF]
^L1110^@[9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00].[02 FF]@But nothing happened.[02 FF][00 FF]
^L1111^[C1 FF][87 FF]@[9F FF] tried[01 FF] to use the [90 FF 00][1A FF 02 00].[02 FF]@but [9F FF] could not use[01 FF] the [90 FF 00][1A FF 02 00] very well.[02 FF][00 FF]
^L1112^[FC FF 08 00][82 FF _L3462_][D4 FF 19 00]@[9F FF] is[01 FF] attacking![D4 FF 1A 00][02 FF][00 FF]
^L1113^[D4 FF 18 00]@[9F FF] attacks![D4 FF 1B 00][02 FF][00 FF]
^L1114^@[9F FF] spies on[01 FF] [AD FF]![02 FF][00 FF]
^L1115^[D4 FF 1C 00]@[9F FF] prayed[01 FF] with her whole heart![02 FF][00 FF]
^L1116^@[9F FF] is on guard.[00 FF]
^L1117^[FC FF 3B 00][82 FF _L3463_]^L9003^[FC FF 08 00][82 FF _L3464_][D4 FF 37 00]@[9F FF] tried[01 FF][C1 FF][87 FF] [2D FF]![02 FF][80 FF _L3465_]
^L1118^[D4 FF 19 00]@[9F FF] called[01 FF] for help![D4 FF 48 00][02 FF][00 FF]
^L1119^[D4 FF 19 00]@[9F FF] sowed[01 FF] some seeds around itself![D4 FF 48 00][02 FF][00 FF]
^L1120^[D4 FF 19 00]@[9F FF] exploded[01 FF] into bits![D4 FF 5B 00][02 FF][1B FF 1E 00][00 FF]
^L1121^[D4 FF 19 00]@[9F FF] burst[01 FF] into flames![D4 FF 4B 00][02 FF][1B FF 1E 00][00 FF]
^L1122^@[9F FF][C1 FF][82 FF _L3506_][87 FF] stole a[01 FF] [90 FF 00][1A FF 02 00][02 FF] in the confusion of the battle![02 FF][00 FF]
^L1123^[D4 FF 19 00]@[9F FF] froze[01 FF] you in time![C4 FF 00 04][02 FF][1B FF 01 00][00 FF]
^L1124^[D4 FF 19 00]@[9F FF] glared[01 FF] with its eerie eyes![02 FF][1B FF 01 00][00 FF]
^L1125^[D4 FF 19 00]@[9F FF] generated[01 FF] a mysterious electric field![D4 FF 96 00][02 FF][1B FF 01 00][00 FF]
^L1126^[D4 FF 19 00]@[9F FF] stumbled,[01 FF] but fired a strange beam.[D4 FF 96 00][02 FF][1B FF 01 00][00 FF]
^L1127^[D4 FF 19 00]@[9F FF] burped[01 FF] and blew his nauseating breath at you![D4 FF 4E 00][02 FF][1B FF 01 00][00 FF]
^L1128^[D4 FF 19 00]@[9F FF] stung[01 FF] with its poison stinger![02 FF][1B FF 01 00][00 FF]
^L1129^[D4 FF 19 00]@[9F FF] gave[01 FF] the kiss of death![02 FF][1B FF 01 00][00 FF]
^L1130^[D4 FF 19 00]@[9F FF] exhaled[01 FF] [86 FF _userpossessive_] arctic-cold breath![D4 FF 51 00][02 FF][1B FF 01 00][00 FF]
^L1131^[D4 FF 19 00]@[9F FF] scattered[01 FF] some spores![D4 FF 52 00][02 FF][1B FF 01 00][00 FF]
^L1132^[D4 FF 19 00]@[9F FF] tried to[01 FF] possess you in a frightening manner.[D4 FF 60 00][02 FF][1B FF 01 00][00 FF]
^L1133^[D4 FF 19 00]@[9F FF] sprinkled around some[01 FF] wonderful-smelling powder.[D4 FF 52 00][02 FF][1B FF 01 00][00 FF]
^L1134^[D4 FF 19 00]@[9F FF] scattered[01 FF] some mold spores![D4 FF 52 00][02 FF][1B FF 01 00][00 FF]
^L1135^[D4 FF 19 00]@[9F FF] employed[01 FF] a binding attack![02 FF][1B FF 01 00][00 FF]
^L1136^[D4 FF 19 00]@[9F FF] spit out a[01 FF] sticky mucus![D4 FF 51 00][02 FF][1B FF 01 00][00 FF]
^L1137^[D4 FF 19 00]@[9F FF] spewed[01 FF] <Fly Honey> out of his mouth![D4 FF 51 00][02 FF][1B FF 01 00][00 FF]
^L1138^[D4 FF 19 00]@[9F FF] shot[01 FF] spider silk out of its body![02 FF][00 FF]
^L1139^[D4 FF 19 00]@[9F FF] said[01 FF] something really scary![D4 FF 54 00][02 FF][1B FF 01 00][00 FF]
^L1140^[D4 FF 19 00]@[9F FF] did[01 FF] something very mysterious![D4 FF 55 00][02 FF][1B FF 01 00][00 FF]
^L1141^[D4 FF 19 00]@[9F FF] disrupted[01 FF] your senses![02 FF][00 FF]
^L1142^[D4 FF 19 00]@[9F FF] is[01 FF] sizing up the situation![02 FF][00 FF]
^L1143^[D4 FF 19 00]@[9F FF] exhaled[01 FF] a blast of stinky breath![D4 FF 5C 00][02 FF][1B FF 01 00][00 FF]
^L1144^[D4 FF 19 00]@[9F FF] summoned[01 FF] a storm![D4 FF 56 00][02 FF][1B FF 01 00][00 FF]
^L1145^[D4 FF 19 00]@[9F FF] spilled[01 FF] some scalding hot espresso![02 FF][00 FF]
^L1146^[D4 FF 19 00]@[9F FF] played[01 FF] a haunting melody![02 FF][1B FF 01 00][00 FF]
^L1147^[D4 FF 19 00]@[9F FF] dispensed[01 FF] an extinguishing blast![D4 FF 58 00][02 FF][1B FF 01 00][00 FF]
^L1148^[D4 FF 19 00]@[9F FF] used a[01 FF] Crashing Boom Bang attack![02 FF][00 FF]
^L1149^[D4 FF 19 00]@[9F FF] shot out[01 FF] a spray of fire![D4 FF 4B 00][02 FF][1B FF 01 00][00 FF]
^L1150^[D4 FF 19 00]@[9F FF] breathed[01 FF] fire![D4 FF 4B 00][02 FF][1B FF 01 00][00 FF]
^L1151^[D4 FF 19 00]@[9F FF] made[01 FF] something spin around![02 FF][00 FF]
^L1152^[D4 FF 19 00]@[9F FF] lost[01 FF] his temper![02 FF][00 FF]
^L1153^[D4 FF 19 00]@[9F FF] said[01 FF] something nasty![D4 FF 54 00][02 FF][1B FF 01 00][00 FF]
^L1154^[D4 FF 19 00]@[9F FF] used a[01 FF] vacuum attack![02 FF][00 FF]
^L1155^[D4 FF 19 00]@[9F FF] replenished[01 FF] a fuel supply![D4 FF 59 00][02 FF][1B FF 01 00][00 FF]
^L1156^[D4 FF 19 00]@[9F FF] took a bite[01 FF] using its poisonous fangs![02 FF][00 FF]
^L1157^[D4 FF 19 00]@[9F FF] fired[01 FF] a missile, making itself dizzy.[D4 FF 46 00][02 FF][1B FF 01 00][00 FF]
^L1158^[D4 FF 19 00]@[9F FF] started a[01 FF] continuous attack![02 FF][00 FF]
^L1159^[D4 FF 19 00]@[9F FF] is[01 FF] on guard.[02 FF][00 FF]
^L1160^[D4 FF 19 00]@[9F FF] spewed out[01 FF] a flaming fireball![D4 FF 4B 00][02 FF][1B FF 01 00][00 FF]
^L1161^[D4 FF 19 00]@[9F FF] rushed in,[01 FF] and intertwined with you![02 FF][00 FF]
^L1162^[D4 FF 19 00]@[9F FF] attacked[01 FF] with a crushing chop![02 FF][00 FF]
^L1163^[D4 FF 19 00]@[9F FF] grappled and[01 FF] used his submission hold![02 FF][00 FF]
^L1164^[D4 FF 19 00]@[9F FF] revved and accelerated![01 FF][02 FF][00 FF]
^L1165^[D4 FF 19 00]@[9F FF] brandished[01 FF] a knife![02 FF][00 FF]
^L1166^[D4 FF 19 00]@[9F FF] tore[01 FF] into you![02 FF][00 FF]
^L1167^[D4 FF 19 00]@[9F FF] used a[01 FF] biting attack![02 FF][00 FF]
^L1168^[D4 FF 19 00]@[9F FF] clawed[01 FF] with [86 FF _userpossessive_] sharp nails![02 FF][00 FF]
^L1169^[D4 FF 19 00]@[9F FF] swung[01 FF] [86 FF _userpossessive_] tail very hard![02 FF][00 FF]
^L1170^[D4 FF 19 00]@[9F FF] growled[01 FF] and lunged forward![02 FF][00 FF]
^L1171^[D4 FF 19 00]@[9F FF] wielded[01 FF] a shopping bag![02 FF][00 FF]
^L1172^[D4 FF 19 00]@[9F FF] swung[01 FF] a club![02 FF][00 FF]
^L1173^[D4 FF 19 00]@[9F FF] generated[01 FF] a tornado![D4 FF 5A 00][02 FF][00 FF]
^L1174^[D4 FF 19 00]@[9F FF] sprayed a[01 FF] gigantic blast of water![01 FF][02 FF][00 FF]
^L1175^[D4 FF 19 00]@[9F FF] flashed[01 FF] a menacing smile![02 FF][00 FF]
^L1176^[D4 FF 19 00]@[9F FF] started[01 FF] laughing hysterically![02 FF][00 FF]
^L1177^[D4 FF 19 00]@[9F FF] edged[01 FF] closer![02 FF][00 FF]
^L1178^[D4 FF 19 00]@[9F FF] whispered[01 FF][61 FF 02 00] <3...>[61 FF 01 00][02 FF][00 FF]
^L1179^[D4 FF 19 00]@[9F FF] murmured[01 FF][61 FF 02 00] <2...>[61 FF 01 00][02 FF][00 FF]
^L1180^[D4 FF 19 00]@[9F FF] muttered[01 FF][61 FF 02 00] <1...>[61 FF 01 00][02 FF][00 FF]
^L1181^[D4 FF 19 00]@[9F FF] fell down![D4 FF 22 00][02 FF][00 FF]
^L1182^[D4 FF 19 00]@[9F FF] is being[01 FF] absentminded.[02 FF][00 FF]
^L1183^[D4 FF 19 00]@[9F FF] generated[01 FF] a burst of steam![02 FF][00 FF]
^L1184^[D4 FF 19 00]@[9F FF] is[01 FF] wobbly.[02 FF][00 FF]
^L1185^[D4 FF 19 00]@[9F FF] is[01 FF] reeling.[02 FF][00 FF]
^L1186^[D4 FF 19 00]@[9F FF] has[01 FF] a big grin on [86 FF _userpossessive_] face.[02 FF][00 FF]
^L1187^[D4 FF 19 00]@[9F FF] is taking deep[01 FF] breaths for the next assault.[01 FF][02 FF][00 FF]
^L1188^[D4 FF 19 00]@[9F FF] sends[01 FF] a greeting![02 FF][00 FF]
^L1189^[D4 FF 19 00]@[9F FF] is[01 FF] making a loud, piercing howl.[02 FF][00 FF]
^L1190^[D4 FF 19 00]@[9F FF] is[01 FF] saying <tick-tock.>[02 FF][00 FF]
^L1191^[FC FF 3B 00][82 FF _L3512_][C1 FF][87 FF][E3 FF][9A FF 02 00][81 FF _L3513_][E4 FF][81 FF _L3514_][E5 FF][81 FF _L3515_]@[9F FF] took[01 FF] the [90 FF 00][1A FF 02 00] out and[02 FF]@[AD FF] ate it.[D4 FF 44 00][02 FF][00 FF]
^L1192^[FC FF 3B 00][82 FF _L3507_]@[9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![02 FF][00 FF]
^L1193^[FC FF 3B 00][82 FF _L3508_]@[9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 36 00][1B FF 1E 00][F0 FF 00 00 01 00][1B FF 3C 00][02 FF][00 FF]
^L1194^[FC FF 3B 00][82 FF _L3511_]@[9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 63 00][F0 FF 00 00 1B 00][1B FF 3C 00][02 FF][00 FF]
^L1195^[FC FF 3B 00][82 FF _L3509_]@[9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 3B 00][F0 FF 00 00 04 00][1B FF 3C 00][02 FF][00 FF]
^L1196^[C1 FF][87 FF]@[9F FF] lashed out[01 FF] with the [90 FF 00][1A FF 02 00]![02 FF][00 FF]
^L1197^@[9F FF][C1 FF][87 FF] fired[01 FF] the [90 FF 00][1A FF 02 00]![D4 FF 46 00][02 FF][00 FF]
^L1198^@[9F FF][C1 FF][87 FF] fired[01 FF] the [90 FF 00][1A FF 02 00]![D4 FF 46 00][1B FF 08 00][D4 FF 46 00][1B FF 08 00][D4 FF 46 00][1B FF 08 00][D4 FF 46 00][1B FF 08 00][D4 FF 46 00][1B FF 08 00][02 FF][00 FF]
^L1199^@[9F FF][C1 FF][87 FF] fired[01 FF] the [90 FF 00][1A FF 02 00]![D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][02 FF][00 FF]
^L1200^@[9F FF][C1 FF][87 FF] threw[01 FF] the [90 FF 00][1A FF 02 00]![D4 FF 46 00][02 FF][00 FF]
^L1201^@[9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00]![02 FF]@Then, something sticky[01 FF] stuck to the enemy![02 FF][00 FF]
^L1202^@[9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00]![02 FF]@Suddenly, some Trout Yogurt[01 FF] was produced![02 FF][00 FF]
^L1203^[C1 FF][87 FF]@[9F FF] took a snake[01 FF] out of the [90 FF 00][1A FF 02 00][02 FF] and threw it![02 FF][00 FF]
^L1204^@[9F FF][C1 FF][87 FF] used[01 FF] [90 FF 00][1A FF 02 00] and [86 FF _userpossessive_] teeth[02 FF]@were white and breath was fresh![02 FF]@The brightness of[01 FF] [9F FF]'s teeth[02 FF]@made the enemy scared![02 FF][00 FF]
^L1205^@[9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00]![02 FF]@Suddenly, something unknown burst[01 FF] from the box.[02 FF][00 FF]
^L1206^[FC FF 3B 00][82 FF _L3510_]@[9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 3B 00][F0 FF 00 00 1E 00][1B FF 3C 00][02 FF][00 FF]
^L1207^@[9F FF][C1 FF][87 FF] sprinkled[01 FF] the [90 FF 00][1A FF 02 00] over [86 FF _userpossessive_] head.[02 FF]@Yoicks!! [9F FF] turned[01 FF] into a gigantic, fire-breathing dragon![02 FF][00 FF]
^L1208^@[9F FF][C1 FF][87 FF] sprayed a blast of[01 FF] [90 FF 00][1A FF 02 00]![D4 FF 47 00][02 FF][00 FF]
^L1209^[FC FF 3B 00][82 FF _L3550_]@[9F FF][C1 FF][87 FF] used [90 FF 00][1A FF 02 00]![02 FF]@Now, [86 FF _userpersonal_] can figure out the length of[01 FF] things easily.[02 FF][00 FF]
^L1210^[FC FF 3B 00][82 FF _L3551_]@[9F FF][C1 FF][87 FF] used the [90 FF 00][1A FF 02 00]![02 FF]@Now, he can fairly easily figure out the[01 FF] angle of various things.[02 FF][00 FF]
^L1109^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00].[02 FF]@But nothing happened.[02 FF][00 FF]
^L1110^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00].[02 FF]@But nothing happened.[02 FF][00 FF]
^L1111^[C1 FF][87 FF]@[86 FF _userupperthe_][9F FF] tried[01 FF] to use the [90 FF 00][1A FF 02 00].[02 FF]@but [86 FF _userlowerthe_][9F FF] could not use[01 FF] the [90 FF 00][1A FF 02 00] very well.[02 FF][00 FF]
^L1112^[FC FF 08 00][82 FF _L3462_][D4 FF 19 00]@[86 FF _userupperthe_][9F FF] is[01 FF] attacking![D4 FF 1A 00][02 FF][00 FF]
^L1113^[D4 FF 18 00]@[86 FF _userupperthe_][9F FF] attacks![D4 FF 1B 00][02 FF][00 FF]
^L1114^@[86 FF _userupperthe_][9F FF] spies on[01 FF] [86 FF _targetlowerthe_][AD FF]![02 FF][00 FF]
^L1115^[D4 FF 1C 00]@[86 FF _userupperthe_][9F FF] prayed[01 FF] with her whole heart![02 FF][00 FF]
^L1116^@[86 FF _userupperthe_][9F FF] is on guard.[00 FF]
^L1117^[FC FF 3B 00][82 FF _L3463_]^L9003^[FC FF 08 00][82 FF _L3464_][D4 FF 37 00]@[86 FF _userupperthe_][9F FF] tried[01 FF][C1 FF][87 FF] [2D FF]![02 FF][80 FF _L3465_]
^L1118^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] called[01 FF] for help![D4 FF 48 00][02 FF][00 FF]
^L1119^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] sowed[01 FF] some seeds around itself![D4 FF 48 00][02 FF][00 FF]
^L1120^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] exploded[01 FF] into bits![D4 FF 5B 00][02 FF][1B FF 1E 00][00 FF]
^L1121^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] burst[01 FF] into flames![D4 FF 4B 00][02 FF][1B FF 1E 00][00 FF]
^L1122^@[86 FF _userupperthe_][9F FF][C1 FF][82 FF _L3506_][87 FF] stole a[01 FF] [90 FF 00][1A FF 02 00][02 FF] in the confusion of the battle![02 FF][00 FF]
^L1123^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] froze[01 FF] you in time![C4 FF 00 04][02 FF][1B FF 01 00][00 FF]
^L1124^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] glared[01 FF] with its eerie eyes![02 FF][1B FF 01 00][00 FF]
^L1125^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] generated[01 FF] a mysterious electric field![D4 FF 96 00][02 FF][1B FF 01 00][00 FF]
^L1126^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] stumbled,[01 FF] but fired a strange beam.[D4 FF 96 00][02 FF][1B FF 01 00][00 FF]
^L1127^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] burped[01 FF] and blew his nauseating breath at you![D4 FF 4E 00][02 FF][1B FF 01 00][00 FF]
^L1128^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] stung[01 FF] with its poison stinger![02 FF][1B FF 01 00][00 FF]
^L1129^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] gave[01 FF] the kiss of death![02 FF][1B FF 01 00][00 FF]
^L1130^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] exhaled[01 FF] [86 FF _userpossessive_] arctic-cold breath![D4 FF 51 00][02 FF][1B FF 01 00][00 FF]
^L1131^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] scattered[01 FF] some spores![D4 FF 52 00][02 FF][1B FF 01 00][00 FF]
^L1132^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] tried to[01 FF] possess you in a frightening manner.[D4 FF 60 00][02 FF][1B FF 01 00][00 FF]
^L1133^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] sprinkled around some[01 FF] wonderful-smelling powder.[D4 FF 52 00][02 FF][1B FF 01 00][00 FF]
^L1134^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] scattered[01 FF] some mold spores![D4 FF 52 00][02 FF][1B FF 01 00][00 FF]
^L1135^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] employed[01 FF] a binding attack![02 FF][1B FF 01 00][00 FF]
^L1136^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] spit out a[01 FF] sticky mucus![D4 FF 51 00][02 FF][1B FF 01 00][00 FF]
^L1137^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] spewed[01 FF] <Fly Honey> out of his mouth![D4 FF 51 00][02 FF][1B FF 01 00][00 FF]
^L1138^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] shot[01 FF] spider silk out of its body![02 FF][00 FF]
^L1139^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] said[01 FF] something really scary![D4 FF 54 00][02 FF][1B FF 01 00][00 FF]
^L1140^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] did[01 FF] something very mysterious![D4 FF 55 00][02 FF][1B FF 01 00][00 FF]
^L1141^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] disrupted[01 FF] your senses![02 FF][00 FF]
^L1142^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] is[01 FF] sizing up the situation![02 FF][00 FF]
^L1143^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] exhaled[01 FF] a blast of stinky breath![D4 FF 5C 00][02 FF][1B FF 01 00][00 FF]
^L1144^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] summoned[01 FF] a storm![D4 FF 56 00][02 FF][1B FF 01 00][00 FF]
^L1145^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] spilled[01 FF] some scalding hot espresso![02 FF][00 FF]
^L1146^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] played[01 FF] a haunting melody![02 FF][1B FF 01 00][00 FF]
^L1147^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] dispensed[01 FF] an extinguishing blast![D4 FF 58 00][02 FF][1B FF 01 00][00 FF]
^L1148^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] used a[01 FF] Crashing Boom Bang attack![02 FF][00 FF]
^L1149^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] shot out[01 FF] a spray of fire![D4 FF 4B 00][02 FF][1B FF 01 00][00 FF]
^L1150^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] breathed[01 FF] fire![D4 FF 4B 00][02 FF][1B FF 01 00][00 FF]
^L1151^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] made[01 FF] something spin around![02 FF][00 FF]
^L1152^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] lost[01 FF] his temper![02 FF][00 FF]
^L1153^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] said[01 FF] something nasty![D4 FF 54 00][02 FF][1B FF 01 00][00 FF]
^L1154^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] used a[01 FF] vacuum attack![02 FF][00 FF]
^L1155^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] replenished[01 FF] a fuel supply![D4 FF 59 00][02 FF][1B FF 01 00][00 FF]
^L1156^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] took a bite[01 FF] using its poisonous fangs![02 FF][00 FF]
^L1157^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] fired[01 FF] a missile, making itself dizzy.[D4 FF 46 00][02 FF][1B FF 01 00][00 FF]
^L1158^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] started a[01 FF] continuous attack![02 FF][00 FF]
^L1159^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] is[01 FF] on guard.[02 FF][00 FF]
^L1160^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] spewed out[01 FF] a flaming fireball![D4 FF 4B 00][02 FF][1B FF 01 00][00 FF]
^L1161^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] rushed in,[01 FF] and intertwined with you![02 FF][00 FF]
^L1162^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] attacked[01 FF] with a crushing chop![02 FF][00 FF]
^L1163^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] grappled and[01 FF] used his submission hold![02 FF][00 FF]
^L1164^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] revved and accelerated![01 FF][02 FF][00 FF]
^L1165^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] brandished[01 FF] a knife![02 FF][00 FF]
^L1166^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] tore[01 FF] into you![02 FF][00 FF]
^L1167^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] used a[01 FF] biting attack![02 FF][00 FF]
^L1168^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] clawed[01 FF] with [86 FF _userpossessive_] sharp nails![02 FF][00 FF]
^L1169^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] swung[01 FF] [86 FF _userpossessive_] tail very hard![02 FF][00 FF]
^L1170^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] growled[01 FF] and lunged forward![02 FF][00 FF]
^L1171^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] wielded[01 FF] a shopping bag![02 FF][00 FF]
^L1172^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] swung[01 FF] a club![02 FF][00 FF]
^L1173^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] generated[01 FF] a tornado![D4 FF 5A 00][02 FF][00 FF]
^L1174^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] sprayed a[01 FF] gigantic blast of water![01 FF][02 FF][00 FF]
^L1175^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] flashed[01 FF] a menacing smile![02 FF][00 FF]
^L1176^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] started[01 FF] laughing hysterically![02 FF][00 FF]
^L1177^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] edged[01 FF] closer![02 FF][00 FF]
^L1178^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] whispered[01 FF][61 FF 02 00] <3...>[61 FF 01 00][02 FF][00 FF]
^L1179^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] murmured[01 FF][61 FF 02 00] <2...>[61 FF 01 00][02 FF][00 FF]
^L1180^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] muttered[01 FF][61 FF 02 00] <1...>[61 FF 01 00][02 FF][00 FF]
^L1181^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] fell down![D4 FF 22 00][02 FF][00 FF]
^L1182^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] is being[01 FF] absentminded.[02 FF][00 FF]
^L1183^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] generated[01 FF] a burst of steam![02 FF][00 FF]
^L1184^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] is[01 FF] wobbly.[02 FF][00 FF]
^L1185^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] is[01 FF] reeling.[02 FF][00 FF]
^L1186^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] has[01 FF] a big grin on [86 FF _userpossessive_] face.[02 FF][00 FF]
^L1187^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] is taking deep[01 FF] breaths for the next assault.[01 FF][02 FF][00 FF]
^L1188^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] sends[01 FF] a greeting![02 FF][00 FF]
^L1189^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] is[01 FF] making a loud, piercing howl.[02 FF][00 FF]
^L1190^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] is[01 FF] saying <tick-tock.>[02 FF][00 FF]
^L1191^[FC FF 3B 00][82 FF _L3512_][C1 FF][87 FF][E3 FF][9A FF 02 00][81 FF _L3513_][E4 FF][81 FF _L3514_][E5 FF][81 FF _L3515_]@[86 FF _userupperthe_][9F FF] took[01 FF] the [90 FF 00][1A FF 02 00] out and[02 FF]@[86 FF _targetupperthe_][AD FF] ate it.[D4 FF 44 00][02 FF][00 FF]
^L1192^[FC FF 3B 00][82 FF _L3507_]@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![02 FF][00 FF]
^L1193^[FC FF 3B 00][82 FF _L3508_]@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 36 00][1B FF 1E 00][F0 FF 00 00 01 00][1B FF 3C 00][02 FF][00 FF]
^L1194^[FC FF 3B 00][82 FF _L3511_]@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 63 00][F0 FF 00 00 1B 00][1B FF 3C 00][02 FF][00 FF]
^L1195^[FC FF 3B 00][82 FF _L3509_]@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 3B 00][F0 FF 00 00 04 00][1B FF 3C 00][02 FF][00 FF]
^L1196^[C1 FF][87 FF]@[86 FF _userupperthe_][9F FF] lashed out[01 FF] with the [90 FF 00][1A FF 02 00]![02 FF][00 FF]
^L1197^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] fired[01 FF] the [90 FF 00][1A FF 02 00]![D4 FF 46 00][02 FF][00 FF]
^L1198^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] fired[01 FF] the [90 FF 00][1A FF 02 00]![D4 FF 46 00][1B FF 08 00][D4 FF 46 00][1B FF 08 00][D4 FF 46 00][1B FF 08 00][D4 FF 46 00][1B FF 08 00][D4 FF 46 00][1B FF 08 00][02 FF][00 FF]
^L1199^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] fired[01 FF] the [90 FF 00][1A FF 02 00]![D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][D4 FF 46 00][1B FF 04 00][02 FF][00 FF]
^L1200^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] threw[01 FF] the [90 FF 00][1A FF 02 00]![D4 FF 46 00][02 FF][00 FF]
^L1201^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00]![02 FF]@Then, something sticky[01 FF] stuck to the enemy![02 FF][00 FF]
^L1202^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00]![02 FF]@Suddenly, some Trout Yogurt[01 FF] was produced![02 FF][00 FF]
^L1203^[C1 FF][87 FF]@[86 FF _userupperthe_][9F FF] took a snake[01 FF] out of the [90 FF 00][1A FF 02 00][02 FF] and threw it![02 FF][00 FF]
^L1204^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used[01 FF] [90 FF 00][1A FF 02 00] and [86 FF _userpossessive_] teeth[02 FF]@were white and breath was fresh![02 FF]@The brightness of[01 FF] [86 FF _userlowerthe_][9F FF]'s teeth[02 FF]@made the enemy scared![02 FF][00 FF]
^L1205^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00]![02 FF]@Suddenly, something unknown burst[01 FF] from the box.[02 FF][00 FF]
^L1206^[FC FF 3B 00][82 FF _L3510_]@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 3B 00][F0 FF 00 00 1E 00][1B FF 3C 00][02 FF][00 FF]
^L1207^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] sprinkled[01 FF] the [90 FF 00][1A FF 02 00] over [86 FF _userpossessive_] head.[02 FF]@Yoicks!! [86 FF _userupperthe_][9F FF] turned[01 FF] into a gigantic, fire-breathing dragon![02 FF][00 FF]
^L1208^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] sprayed a blast of[01 FF] [90 FF 00][1A FF 02 00]![D4 FF 47 00][02 FF][00 FF]
^L1209^[FC FF 3B 00][82 FF _L3550_]@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used [90 FF 00][1A FF 02 00]![02 FF]@Now, [86 FF _userpersonal_] can figure out the length of[01 FF] things easily.[02 FF][00 FF]
^L1210^[FC FF 3B 00][82 FF _L3551_]@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used the [90 FF 00][1A FF 02 00]![02 FF]@Now, he can fairly easily figure out the[01 FF] angle of various things.[02 FF][00 FF]
^L1211^[8D FF 02 00][9A FF 09 00][82 FF _L3526_][86 FF _L3527_][00 FF]
^L1212^@[9F FF][C1 FF][87 FF] put[01 FF] the [90 FF 00][1A FF 02 00] on [86 FF _userpossessive_] nose![D4 FF 73 00][02 FF]@[9F FF] searched for the[01 FF] smell of the magic truffle.[02 FF][FF FF][82 FF _L3529_][88 FF][9A FF 01 00][81 FF _L3530_][89 FF][9A FF 0A 00][81 FF _L3531_][89 FF]@(It must be a little further[01 FF] [BD FF 09 _L1108_ _L3532_ _L3533_ _L3534_ _L3535_ _L3536_ _L3537_ _L3538_ _L3539_][1D FF][00 FF]
^L1213^[1C FF FB 02 _L3540_][1C FF 49 00 _L3540_][1C FF 74 01 _L2155_][86 FF _L3541_][81 FF _L3542_][1C FF BE 01 _L3542_][1C FF 86 02 _L3542_][1C FF 87 02 _L3542_][1C FF 88 02 _L3542_]@[9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00]![02 FF]@A customer is heading this[01 FF] way.[1D FF][C6 FF][F6 FF 03 00][95 FF 03 _L3543_ _L3544_ _L3545_][CF FF 04 00][08 FF BE 01][08 FF F2 02][00 FF]
^L1212^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] put[01 FF] the [90 FF 00][1A FF 02 00] on [86 FF _userpossessive_] nose![D4 FF 73 00][02 FF]@[86 FF _userupperthe_][9F FF] searched for the[01 FF] smell of the magic truffle.[02 FF][FF FF][82 FF _L3529_][88 FF][9A FF 01 00][81 FF _L3530_][89 FF][9A FF 0A 00][81 FF _L3531_][89 FF]@(It must be a little further[01 FF] [BD FF 09 _L1108_ _L3532_ _L3533_ _L3534_ _L3535_ _L3536_ _L3537_ _L3538_ _L3539_][1D FF][00 FF]
^L1213^[1C FF FB 02 _L3540_][1C FF 49 00 _L3540_][1C FF 74 01 _L2155_][86 FF _L3541_][81 FF _L3542_][1C FF BE 01 _L3542_][1C FF 86 02 _L3542_][1C FF 87 02 _L3542_][1C FF 88 02 _L3542_]@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00]![02 FF]@A customer is heading this[01 FF] way.[1D FF][C6 FF][F6 FF 03 00][95 FF 03 _L3543_ _L3544_ _L3545_][CF FF 04 00][08 FF BE 01][08 FF F2 02][00 FF]
^L1214^@This book should be required[01 FF] reading for any quiet, shy[01 FF] person.[02 FF][00 FF]
^L1215^@You felt sad and empty.[02 FF][00 FF]
^L1216^@(If you get this message, it[01 FF] means that something is[01 FF] wrong.)[02 FF][00 FF]
^L1217^[D4 FF 65 00]@Seeing chicks makes you happy.[D4 FF 65 00][02 FF][00 FF]
^L1218^[D4 FF 68 00][1B FF 0A 00][D4 FF 68 00]@A chicken ran away as fast as[01 FF] it could.[02 FF][00 FF]
^L1219^@(Do you want to see the Debug[01 FF] Menu?)[03 FF 00 00][04 FF _L3661_][05 FF _useatmcard_]^useatmcard^@To use this, go to a cash[01 FF] machine and insert the card.[02 FF][00 FF]
^L1220^@[9F FF][C1 FF][87 FF] placed the[01 FF] [90 FF 00][1A FF 02 00] on the floor.[D4 FF 73 00][1B FF 01 00][02 FF][08 FF 7C 00][6D FF FF 00 A6 00][00 FF]
^L1221^@[9F FF][C1 FF][87 FF] used the [90 FF 00][1A FF 02 00]![D4 FF 95 00][1B FF 01 00][1D FF][C6 FF][1B FF 01 00][6D FF FF 00 A9 00][08 FF 20 01][86 FF _L3546_][08 FF FC 01][00 FF]
^L1222^[8D FF 02 00][81 FF _L3547_][8D FF 01 00][92 FF 00 02 02][81 FF _L3548_]@[9F FF] rode a bicycle.[1B FF 1E 00][7D FF][00 FF]
^L1223^[D4 FF 19 00]@[9F FF] emitted[01 FF] a glorious light![02 FF][00 FF]
^L1224^[D4 FF 19 00]@[9F FF] used an[01 FF] electrical shock attack![02 FF][00 FF]
^L1225^[D4 FF 19 00]@[9F FF] scattered[01 FF] its pollen around![D4 FF 52 00][02 FF][1B FF 01 00][00 FF]
^L1226^[D4 FF 19 00]@[9F FF] reached[01 FF] out with its icy hand.[02 FF][00 FF]
^L1227^[D4 FF 19 00]@[9F FF] played[01 FF] a flute with [86 FF _userpossessive_] poisonous breath![02 FF][00 FF]
^L1228^[D4 FF 19 00]@[9F FF] spewed[01 FF] exhaust fumes![02 FF][00 FF]
^L1229^[D4 FF 19 00]@[9F FF] started[01 FF] laughing maniacally![02 FF][00 FF]
^L1230^[D4 FF 19 00]@[9F FF] breathed[01 FF] in through [86 FF _userpossessive_] flute![02 FF][00 FF]
^L1231^[D4 FF 19 00]@[9F FF] leaped[01 FF] forward and spread its wings![02 FF][00 FF]
^L1232^[D4 FF 19 00]@[9F FF] became[01 FF] friendly and affectionate![02 FF]@You backed off.[01 FF][02 FF][00 FF]
^L1233^[D4 FF 19 00]@[9F FF] made a[01 FF] loud rumble![02 FF][00 FF]
^L1234^[D4 FF 19 00]@[9F FF] gave you[01 FF] a great big hug.[02 FF][00 FF]
^L1235^[D4 FF 19 00]@[9F FF] let loose[01 FF] with a hacking cough.[02 FF][00 FF]
^L1236^[D4 FF 19 00]@[9F FF] used[01 FF] [86 FF _userpossessive_] misery attack![02 FF][00 FF]
^L1237^[D4 FF 19 00]@[9F FF] utilized a[01 FF] paint attack![02 FF][00 FF]
^L1238^[D4 FF 19 00]@[9F FF] came out[01 FF] swinging![02 FF][00 FF]
^L1239^[D4 FF 19 00]@[9F FF] scratched[01 FF] with its claws![02 FF][00 FF]
^L1240^[D4 FF 19 00]@[9F FF] pecked[01 FF] at your eyes![02 FF][00 FF]
^L1241^[D4 FF 19 00]@[9F FF] rammed and trampled[01 FF] you![02 FF][00 FF]
^L1242^[D4 FF 19 00]@[9F FF] threw[01 FF] a punch![02 FF][00 FF]
^L1243^[D4 FF 19 00]@[9F FF] spit[01 FF] its pumpkin seeds![02 FF][00 FF]
^L1244^[D4 FF 19 00]@[9F FF] fired[01 FF] a beam![D4 FF 96 00][02 FF][1B FF 01 00][00 FF]
^L1245^[D4 FF 19 00]@[9F FF] jabbed[01 FF] with a spear![02 FF][00 FF]
^L1246^[D4 FF 19 00]@[9F FF] stomped[01 FF] with [86 FF _userpossessive_] huge foot![02 FF][00 FF]
^L1247^[D4 FF 19 00]@[9F FF] swung[01 FF] his hula hoop.[D4 FF 1A 00][02 FF][00 FF]
^L1248^[D4 FF 19 00]@[9F FF] charged[01 FF] forward![02 FF][00 FF]
^L1249^[D4 FF 19 00]@[9F FF] shredded[01 FF] fiercely on a skateboard![02 FF][00 FF]
^L1250^[D4 FF 19 00]@[9F FF] bit you[01 FF] hard![02 FF][00 FF]
^L1251^[D4 FF 19 00]@[9F FF] grumbled[01 FF] about today's youth![D4 FF 54 00][02 FF][00 FF]
^L1252^[D4 FF 19 00]@[9F FF] started[01 FF] lecturing you![D4 FF 54 00][02 FF][00 FF]
^L1253^[D4 FF 19 00]@[9F FF] scowled[01 FF] sharply![D4 FF 54 00][02 FF][00 FF]
^L1254^[D4 FF 19 00]@[9F FF] vented[01 FF] a terrible odor![02 FF][00 FF]
^L1255^[D4 FF 19 00]@[9F FF] shouted[01 FF] in a loud voice![02 FF][00 FF]
^L1256^[D4 FF 19 00]@[9F FF] shrieked a war cry![02 FF][00 FF]
^L1257^[D4 FF 19 00]@[9F FF] knitted[01 FF] its brow![02 FF][00 FF]
^L1220^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] placed the[01 FF] [90 FF 00][1A FF 02 00] on the floor.[D4 FF 73 00][1B FF 01 00][02 FF][08 FF 7C 00][6D FF FF 00 A6 00][00 FF]
^L1221^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used the [90 FF 00][1A FF 02 00]![D4 FF 95 00][1B FF 01 00][1D FF][C6 FF][1B FF 01 00][6D FF FF 00 A9 00][08 FF 20 01][86 FF _L3546_][08 FF FC 01][00 FF]
^L1222^[8D FF 02 00][81 FF _L3547_][8D FF 01 00][92 FF 00 02 02][81 FF _L3548_]@[86 FF _userupperthe_][9F FF] rode a bicycle.[1B FF 1E 00][7D FF][00 FF]
^L1223^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] emitted[01 FF] a glorious light![02 FF][00 FF]
^L1224^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] used an[01 FF] electrical shock attack![02 FF][00 FF]
^L1225^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] scattered[01 FF] its pollen around![D4 FF 52 00][02 FF][1B FF 01 00][00 FF]
^L1226^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] reached[01 FF] out with its icy hand.[02 FF][00 FF]
^L1227^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] played[01 FF] a flute with [86 FF _userpossessive_] poisonous breath![02 FF][00 FF]
^L1228^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] spewed[01 FF] exhaust fumes![02 FF][00 FF]
^L1229^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] started[01 FF] laughing maniacally![02 FF][00 FF]
^L1230^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] breathed[01 FF] in through [86 FF _userpossessive_] flute![02 FF][00 FF]
^L1231^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] leaped[01 FF] forward and spread its wings![02 FF][00 FF]
^L1232^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] became[01 FF] friendly and affectionate![02 FF]@You backed off.[01 FF][02 FF][00 FF]
^L1233^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] made a[01 FF] loud rumble![02 FF][00 FF]
^L1234^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] gave you[01 FF] a great big hug.[02 FF][00 FF]
^L1235^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] let loose[01 FF] with a hacking cough.[02 FF][00 FF]
^L1236^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] used[01 FF] [86 FF _userpossessive_] misery attack![02 FF][00 FF]
^L1237^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] utilized a[01 FF] paint attack![02 FF][00 FF]
^L1238^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] came out[01 FF] swinging![02 FF][00 FF]
^L1239^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] scratched[01 FF] with its claws![02 FF][00 FF]
^L1240^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] pecked[01 FF] at your eyes![02 FF][00 FF]
^L1241^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] rammed and trampled[01 FF] you![02 FF][00 FF]
^L1242^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] threw[01 FF] a punch![02 FF][00 FF]
^L1243^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] spit[01 FF] its pumpkin seeds![02 FF][00 FF]
^L1244^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] fired[01 FF] a beam![D4 FF 96 00][02 FF][1B FF 01 00][00 FF]
^L1245^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] jabbed[01 FF] with a spear![02 FF][00 FF]
^L1246^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] stomped[01 FF] with [86 FF _userpossessive_] huge foot![02 FF][00 FF]
^L1247^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] swung[01 FF] his hula hoop.[D4 FF 1A 00][02 FF][00 FF]
^L1248^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] charged[01 FF] forward![02 FF][00 FF]
^L1249^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] shredded[01 FF] fiercely on a skateboard![02 FF][00 FF]
^L1250^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] bit you[01 FF] hard![02 FF][00 FF]
^L1251^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] grumbled[01 FF] about today's youth![D4 FF 54 00][02 FF][00 FF]
^L1252^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] started[01 FF] lecturing you![D4 FF 54 00][02 FF][00 FF]
^L1253^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] scowled[01 FF] sharply![D4 FF 54 00][02 FF][00 FF]
^L1254^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] vented[01 FF] a terrible odor![02 FF][00 FF]
^L1255^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] shouted[01 FF] in a loud voice![02 FF][00 FF]
^L1256^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] shrieked a war cry![02 FF][00 FF]
^L1257^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] knitted[01 FF] its brow![02 FF][00 FF]
^L1258^[F6 FF 03 00][95 FF 03 _L1317_ _L1318_ _L1319_][80 FF _L1316_]
^L1259^[D4 FF 19 00]@[9F FF] shot a[01 FF] beam`that`causes`night-time`stuffiness![02 FF][00 FF]
^L1260^[D4 FF 19 00]@[9F FF] coiled[01 FF] around you and attacked![02 FF][00 FF]
^L1259^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] shot a[01 FF] beam`that`causes`night-time`stuffiness![02 FF][00 FF]
^L1260^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] coiled[01 FF] around you and attacked![02 FF][00 FF]
^L1261^[00 FF]
^L1262^[E8 FF 04 00 02 00]@Suddenly, [10 FF] swooped down[01 FF] from the sky![00 FF]
^L1263^[D4 FF 19 00]@[9F FF] emitted[01 FF] a pale green light![02 FF][00 FF]
^L1263^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] emitted[01 FF] a pale green light![02 FF][00 FF]
^L1264^[FC FF 3B 00][82 FF _L3518_]@[86 FF _L11000_][C1 FF][87 FF] ate[01 FF] the [90 FF 00][1A FF 02 00] together.[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L1265^[F6 FF 03 00][95 FF 03 _L3574_ _L3575_ _L3576_]@[9F FF] misses home.[02 FF][00 FF]
^L1266^@[9F FF]'s body is[01 FF] numb and [86 FF _userpersonal_] can't move![02 FF][00 FF]
^L1267^@[9F FF] has[01 FF] fallen asleep![02 FF][00 FF]
^L1268^@[9F FF] cannot[01 FF] move around![02 FF][00 FF]
^L1269^@[9F FF] was[01 FF] able to move![D4 FF 25 00][02 FF][00 FF]
^L1265^[F6 FF 03 00][95 FF 03 _L3574_ _L3575_ _L3576_]@[86 FF _userupperthe_][9F FF] misses home.[02 FF][00 FF]
^L1266^@[86 FF _userupperthe_][9F FF]'s body is[01 FF] numb and [86 FF _userpersonal_] can't move![02 FF][00 FF]
^L1267^@[86 FF _userupperthe_][9F FF] has[01 FF] fallen asleep![02 FF][00 FF]
^L1268^@[86 FF _userupperthe_][9F FF] cannot[01 FF] move around![02 FF][00 FF]
^L1269^@[86 FF _userupperthe_][9F FF] was[01 FF] able to move![D4 FF 25 00][02 FF][00 FF]
^L1270^[FC FF 08 00][82 FF _L3572_][D4 FF 37 00][80 FF _L3573_]
^L1271^@[9F FF] lost[01 FF] his mind by wolfing down <Fly Honey>![02 FF][00 FF]
^L1272^[AB FF 00 00][87 FF]@[9F FF][87 FF] touched the[01 FF] [90 FF 00][1A FF 02 00] to his forehead[01 FF] and gathered his thoughts.[02 FF][FC FF 09 00][00 FF]
^L1271^@[86 FF _userupperthe_][9F FF] lost[01 FF] his mind by wolfing down <Fly Honey>![02 FF][00 FF]
^L1272^[AB FF 00 00][87 FF]@[86 FF _userupperthe_][9F FF][87 FF] touched the[01 FF] [90 FF 00][1A FF 02 00] to his forehead[01 FF] and gathered his thoughts.[02 FF][FC FF 09 00][00 FF]
^L1273^[88 FF][FD FF][82 FF _L3552_][1C FF 0A 03 _L3553_][83 FF B4 00][81 FF _L3554_][83 FF B5 00][81 FF _L3555_][83 FF 85 02][81 FF _L3555_][83 FF BE 01][81 FF _L3556_][83 FF 86 02][81 FF _L3556_][83 FF 87 02][81 FF _L3556_][83 FF 88 02][81 FF _L3556_][83 FF A3 02][81 FF _L3554_][83 FF B6 02][81 FF _L3555_][83 FF B7 02][81 FF _L3555_][1C FF FE 02 _L3557_][FC FF 05 00]@(The mouse found the way out[01 FF] and waved for you to follow.)[02 FF][14 FF 7E 00][89 FF][B9 FF 00 00 00 00][09 FF 00 02][FC FF 06 00][86 FF _L3558_][00 FF]
^L1274^[F6 FF 08 00][95 FF 08 _L1275_ _L1276_ _L1277_ _L3577_ _L3578_ _L3579_ _L3580_ _L3581_]@Pokey used [0D FF][01 FF] as a shield![02 FF][00 FF]
^L1275^@Pokey played dead![02 FF][00 FF]
^L1276^@Pokey pretended[01 FF] to cry![02 FF][00 FF]
^L1277^@Pokey apologized[01 FF] profusely![02 FF][00 FF]
^L1278^@[9F FF] is[01 FF] barking![02 FF][00 FF]
^L1279^@[9F FF] is[01 FF] chanting a magic spell![02 FF][00 FF]
^L1278^@[86 FF _userupperthe_][9F FF] is[01 FF] barking![02 FF][00 FF]
^L1279^@[86 FF _userupperthe_][9F FF] is[01 FF] chanting a magic spell![02 FF][00 FF]
^L1280^[00 FF]
^L1281^@[9F FF] is[01 FF] scratching his head![02 FF][00 FF]
^L1282^@[9F FF][C1 FF][87 FF] threw[01 FF] the [90 FF 00][1A FF 02 00]![02 FF]@The [90 FF 00][1A FF 02 00] is[01 FF] biting![02 FF][00 FF]
^L1281^@[86 FF _userupperthe_][9F FF] is[01 FF] scratching his head![02 FF][00 FF]
^L1282^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] threw[01 FF] the [90 FF 00][1A FF 02 00]![02 FF]@The [90 FF 00][1A FF 02 00] is[01 FF] biting![02 FF][00 FF]
^L1283^[87 FF]@[90 FF 00][1A FF 01 00] read the hieroglyphs.[02 FF]@<To fight against the invaders,[01 FF] we built this pyramid fortress.[02 FF]@However, our efforts were[01 FF] futile, and we lost.[02 FF]@Nonetheless, our pyramid was[01 FF] protected by the gods of[01 FF] Scaraba.[02 FF]@The invaders will be reborn[01 FF] every millennium and will attack[01 FF] again.[02 FF]@Even now, the invaders hide[01 FF] beyond space and time and build[01 FF] their evil stronghold.[02 FF]@A place out of time is beyond[01 FF] the Dark, and is even farther[01 FF] beyond the Lost Underworld.[02 FF]@The Deep Darkness is shrouded,[01 FF] it is without light.[02 FF]@Only one with the [90 FF A9][1A FF 02 00] can[01 FF] pierce the dark.[02 FF]@The Sphinx now watches over[01 FF] everything,[02 FF]@waiting for the coming of a[01 FF] truly brave hero.[02 FF]@ #[01 FF] 4 3[01 FF] 2 5[02 FF]@Dance in front of the Sphinx!>[1D FF][00 FF]
^L1284^[FC FF 07 00][82 FF _L3559_][00 FF]
^L1285^[D4 FF 19 00]@[9F FF] discharged[01 FF] a very stinky gas![02 FF][00 FF]
^L1286^[86 FF _L1314_][68 FF]@You cannot grasp the true form[01 FF] of [9F FF]' attack![F0 FF 31 00 00 00][1B FF 78 00][F0 FF 36 00 00 00][D4 FF 51 00][1B FF 28 00][D4 FF 51 00][00 FF]
^L1285^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] discharged[01 FF] a very stinky gas![02 FF][00 FF]
^L1286^[86 FF _L1314_][68 FF]@You cannot grasp the true form[01 FF] of [86 FF _userlowerthe_][9F FF]' attack![F0 FF 31 00 00 00][1B FF 78 00][F0 FF 36 00 00 00][D4 FF 51 00][1B FF 28 00][D4 FF 51 00][00 FF]
^L1287^[FC FF 2A 00][C7 FF][69 FF][1B FF 28 00]@I understand you guys are[01 FF] already claiming to be heroes.[22 FF][01 FF]@Well, it is a gazillion years too[01 FF] early for you to oppose Giygas![22 FF][01 FF]@You must feel pretty stupid to[01 FF] keep fighting without even[01 FF] knowing[22 FF][01 FF]@what Giygas looks like![22 FF][01 FF]@If you were to ever see Giygas,[01 FF] you'd be so petrified with fear,[22 FF][01 FF]@you'd never be able to run[01 FF] away![22 FF][01 FF]@...That's how scary it is![22 FF][01 FF]@So, do you want me to turn off[01 FF] the <Devil's Machine?>[22 FF][01 FF]@Well, prepare to be amazed![D4 FF 4A 00][1B FF 96 00][C7 FF][FC FF 2B 00][69 FF][00 FF]
^L1288^@[86 FF _L11000_] tried to get[01 FF] away,[1B FF 3C 00][02 FF]@and did![02 FF][00 FF]
^L1289^@[9F FF] relaxed[01 FF] and took a deep breath.[02 FF][00 FF]
^L1289^@[86 FF _userupperthe_][9F FF] relaxed[01 FF] and took a deep breath.[02 FF][00 FF]
^L1290^@The Suporma sang the song[01 FF] <Ode to Orange Kid.>[02 FF]@As soon as it finished, the[01 FF] machine broke down.[6D FF FF 00 94 00][1D FF][00 FF]
^L1291^@By using the Insignificant[01 FF] Present, you had a very fruitful[01 FF] experience[02 FF]@that cannot be understood by[01 FF] someone who does not use[01 FF] something insignificant.[1D FF][00 FF]
^L1292^ [9F FF] used the Monkey Love.[02 FF] All of a sudden, a monkey came along,[02 FF] and pinned the enemy down with its[01 FF] tiny monkey body.[02 FF][00 FF]
^L1292^ [86 FF _userupperthe_][9F FF] used the Monkey Love.[02 FF] All of a sudden, a monkey came along,[02 FF] and pinned the enemy down with its[01 FF] tiny monkey body.[02 FF][00 FF]
^L1293^@It smelled so unbelievably bad[01 FF] that you could not eat it.[1D FF][00 FF]
^L1294^@You would probably regret it if you ate[01 FF] this now...[02 FF][00 FF]
^L1295^@This phone only receives calls.[01 FF] You cannot make outgoing calls[01 FF] from it.[02 FF][00 FF]
^L1296^@(Dear [0D FF],[01 FF] How are you?[02 FF]@Since you left home on your[01 FF] journey, things have changed[01 FF] around here.[02 FF]@For example, I don't have as[01 FF] much laundry.[02 FF]@Also, we don't seem to eat[01 FF] [11 FF] as much as we[01 FF] used to.[02 FF]@I heard that you defeated some[01 FF] universal evil character--what[01 FF] was it,[02 FF]@Googi, or something like that?[02 FF]@Well, that sounds really great![01 FF] I want to hear all the details, so[01 FF] hurry home, okay?[02 FF]@Tracy, [15 FF] and I are[01 FF] waiting for you.[02 FF]@ Love,[01 FF] Mama)[1D FF][00 FF]
^L1297^@(Dear [0F FF],[01 FF] Everything's really going great[01 FF] here.[02 FF]@I wish I could have gone with[01 FF] you on your adventure, even[01 FF] just part of the way,[02 FF]@but instead I'm sitting here,[01 FF] waiting for you in Winters.[02 FF]@I want to see you again as soon[01 FF] as possible. I can't wait to see[01 FF] your cheerful face.[02 FF]@I bet your glasses are dirty... If[01 FF] you come back, I'll clean them[01 FF] for you![02 FF]@Like I said, I'm waiting for you.[02 FF]@ Yours truly,[01 FF] Tony [02 FF][01 FF]@P.S. Don't show this letter to[01 FF] anyone!)[1D FF][00 FF]
^L1298^@(Dear [0E FF],[01 FF] How are you doing?[01 FF] I'm fine.[02 FF]@I fine too![02 FF]@So are me![02 FF]@Me also![02 FF]@Me okay.[02 FF]@Please come and play with us[01 FF] again at the Polestar Preschool.[02 FF]@Oh yeah, one more thing, bring[01 FF] us some presents ...if you have[01 FF] any.[02 FF]@ Sincerely,[01 FF] Your friends at the[01 FF] Polestar Preschool)[1D FF][00 FF]
^L1299^@All of a sudden,[02 FF]@[9F FF] gave off[01 FF] a rainbow of colors![D4 FF 41 00][F0 FF 28 00 00 00][1B FF 1E 00][D4 FF 41 00][F0 FF 28 00 00 00][1B FF 1E 00][D4 FF 41 00][F0 FF 28 00 00 00][1B FF 1E 00][00 FF]
^L1300^[D4 FF 1C 00]@[9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please give us strength,[22 FF][01 FF]@if it is possible...[01 FF] Please...>[22 FF][01 FF]@<................[01 FF] Somebody... help us...>[61 FF 01 00][1B FF 96 00][00 FF]
^L1301^[D4 FF 1C 00]@[9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please give us strength![22 FF][01 FF]@Anyone who can hear our plea...[01 FF] Help us...>[61 FF 01 00][1B FF 96 00][00 FF]
^L1302^[D4 FF 1C 00]@[9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please give us strength![22 FF][01 FF]@Speed this prayer[01 FF] to all the people of the earth.>[61 FF 01 00][1B FF 96 00][00 FF]
^L1303^[D4 FF 1C 00]@[9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please give us strength![22 FF][01 FF]@Anyone who can hear our plea...[01 FF] Help us...>[61 FF 01 00][1B FF 96 00][00 FF]
^L1304^[D4 FF 1C 00]@[9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please grant us power![22 FF][01 FF]@Anyone who can hear our plea...[01 FF] Help us...>[61 FF 01 00][1B FF 96 00][00 FF]
^L1305^[D4 FF 1C 00]@[9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please grant us strength![22 FF][01 FF]@Anyone who can hear our plea...[01 FF] We ask for this...>[61 FF 01 00][1B FF 96 00][00 FF]
^L1306^[D4 FF 1C 00]@[9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please grant us power![22 FF][01 FF]@Speed this prayer[01 FF] to all the people of the earth...>[61 FF 01 00][1B FF 96 00][00 FF]
^L1307^[D4 FF 1C 00]@[9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<I can't think of[01 FF] anyone else...[22 FF][01 FF]@...Someone, anyone...[01 FF] ...please help us.>[61 FF 01 00][1B FF 96 00][C6 FF][00 FF]
^L1308^[D4 FF 1C 00]@[9F FF] prayed[01 FF] from the bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<Someone... can you hear me?![22 FF][01 FF]@Please, give us strength!>[61 FF 01 00][1B FF 96 00][00 FF]
^L1309^[86 FF _L1311_][1B FF 28 00][68 FF]@You cannot grasp the true form[01 FF] of [9F FF]' attack![F0 FF 31 00 00 00][1B FF 78 00][F0 FF 36 00 00 00][D4 FF 51 00][1B FF 28 00][D4 FF 51 00][00 FF]
^L1310^[86 FF _L1311_][1B FF 28 00][68 FF][86 FF _L1311_][1B FF 28 00][68 FF][86 FF _L1311_][1B FF 28 00][68 FF]@You cannot grasp the true form[01 FF] of [9F FF]' attack![F0 FF 31 00 00 00][1B FF 78 00][F0 FF 36 00 00 00][D4 FF 51 00][1B FF 28 00][D4 FF 51 00][00 FF]
^L1299^@All of a sudden,[02 FF]@[86 FF _userupperthe_][9F FF] gave off[01 FF] a rainbow of colors![D4 FF 41 00][F0 FF 28 00 00 00][1B FF 1E 00][D4 FF 41 00][F0 FF 28 00 00 00][1B FF 1E 00][D4 FF 41 00][F0 FF 28 00 00 00][1B FF 1E 00][00 FF]
^L1300^[D4 FF 1C 00]@[86 FF _userupperthe_][9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please give us strength,[22 FF][01 FF]@if it is possible...[01 FF] Please...>[22 FF][01 FF]@<................[01 FF] Somebody... help us...>[61 FF 01 00][1B FF 96 00][00 FF]
^L1301^[D4 FF 1C 00]@[86 FF _userupperthe_][9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please give us strength![22 FF][01 FF]@Anyone who can hear our plea...[01 FF] Help us...>[61 FF 01 00][1B FF 96 00][00 FF]
^L1302^[D4 FF 1C 00]@[86 FF _userupperthe_][9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please give us strength![22 FF][01 FF]@Speed this prayer[01 FF] to all the people of the earth.>[61 FF 01 00][1B FF 96 00][00 FF]
^L1303^[D4 FF 1C 00]@[86 FF _userupperthe_][9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please give us strength![22 FF][01 FF]@Anyone who can hear our plea...[01 FF] Help us...>[61 FF 01 00][1B FF 96 00][00 FF]
^L1304^[D4 FF 1C 00]@[86 FF _userupperthe_][9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please grant us power![22 FF][01 FF]@Anyone who can hear our plea...[01 FF] Help us...>[61 FF 01 00][1B FF 96 00][00 FF]
^L1305^[D4 FF 1C 00]@[86 FF _userupperthe_][9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please grant us strength![22 FF][01 FF]@Anyone who can hear our plea...[01 FF] We ask for this...>[61 FF 01 00][1B FF 96 00][00 FF]
^L1306^[D4 FF 1C 00]@[86 FF _userupperthe_][9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<...Please grant us power![22 FF][01 FF]@Speed this prayer[01 FF] to all the people of the earth...>[61 FF 01 00][1B FF 96 00][00 FF]
^L1307^[D4 FF 1C 00]@[86 FF _userupperthe_][9F FF] prayed[01 FF] from bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<I can't think of[01 FF] anyone else...[22 FF][01 FF]@...Someone, anyone...[01 FF] ...please help us.>[61 FF 01 00][1B FF 96 00][C6 FF][00 FF]
^L1308^[D4 FF 1C 00]@[86 FF _userupperthe_][9F FF] prayed[01 FF] from the bottom of her heart![02 FF][1B FF 3C 00][61 FF 02 00]@<Someone... can you hear me?![22 FF][01 FF]@Please, give us strength!>[61 FF 01 00][1B FF 96 00][00 FF]
^L1309^[86 FF _L1311_][1B FF 28 00][68 FF]@You cannot grasp the true form[01 FF] of [86 FF _userlowerthe_][9F FF]' attack![F0 FF 31 00 00 00][1B FF 78 00][F0 FF 36 00 00 00][D4 FF 51 00][1B FF 28 00][D4 FF 51 00][00 FF]
^L1310^[86 FF _L1311_][1B FF 28 00][68 FF][86 FF _L1311_][1B FF 28 00][68 FF][86 FF _L1311_][1B FF 28 00][68 FF]@You cannot grasp the true form[01 FF] of [86 FF _userlowerthe_][9F FF]' attack![F0 FF 31 00 00 00][1B FF 78 00][F0 FF 36 00 00 00][D4 FF 51 00][1B FF 28 00][D4 FF 51 00][00 FF]
^L1311^[F6 FF 0D 00][95 FF 0D _L3593_ _L3594_ _L3595_ _L3596_ _L3597_ _L3598_ _L3599_ _L3600_ _L3601_ _L3602_ _L3603_ _L3604_ _L3605_]^L1314^[61 FF 02 00]@<.....[0D FF][1B FF 01 00]...>[61 FF 01 00][02 FF][00 FF]
^L1312^[86 FF _L1311_][1B FF 28 00][68 FF][86 FF _L1311_][1B FF 28 00][68 FF][86 FF _L1311_][1B FF 28 00][68 FF][00 FF]
^L1313^@[9F FF][C1 FF][87 FF] fired[01 FF] the [90 FF 00][1A FF 02 00]![D4 FF 46 00][02 FF][00 FF]
^L1315^@[9F FF] ate a[01 FF] bologne sandwich![D4 FF 44 00][02 FF][86 FF _L1576_][00 FF]
^L1316^[D4 FF 19 00]@[9F FF] lost[01 FF] a gear and some bolts![02 FF][00 FF]
^L1317^[D4 FF 19 00]@[9F FF] re-applied[01 FF] a bandage![02 FF][00 FF]
^L1318^[D4 FF 19 00]@[9F FF] cleaned[01 FF] the area![02 FF][00 FF]
^L1319^[D4 FF 19 00]@[9F FF] wanted to go[01 FF] and get a battery![02 FF][00 FF]
^L1313^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] fired[01 FF] the [90 FF 00][1A FF 02 00]![D4 FF 46 00][02 FF][00 FF]
^L1315^@[86 FF _userupperthe_][9F FF] ate a[01 FF] bologne sandwich![D4 FF 44 00][02 FF][86 FF _L1576_][00 FF]
^L1316^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] lost[01 FF] a gear and some bolts![02 FF][00 FF]
^L1317^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] re-applied[01 FF] a bandage![02 FF][00 FF]
^L1318^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] cleaned[01 FF] the area![02 FF][00 FF]
^L1319^[D4 FF 19 00]@[86 FF _userupperthe_][9F FF] wanted to go[01 FF] and get a battery![02 FF][00 FF]
^L1320^ <[90 FF 02][1A FF 02 00]>[02 FF][86 FF _L3947_][1D FF][00 FF]
^L1321^ <[90 FF 03][1A FF 02 00]>[02 FF][86 FF _L3947_][1D FF][00 FF]
^L1322^ <[90 FF 04][1A FF 02 00]>[02 FF][86 FF _L3947_][1D FF][00 FF]
@ -1570,7 +1570,7 @@
^L1573^@...So [0D FF] buddy,[1B FF 0F 00] I've[01 FF] found proof of a great[01 FF] treasure... a huge haul...[02 FF]@yah,[1B FF 0F 00] hah,[1B FF 0A 00] hah...[1B FF 14 00][01 FF] I'll show you,[1B FF 0F 00] but you're the[01 FF] only one.[1B FF 14 00] C'mon.[02 FF][C6 FF][86 FF _L2382_][09 FF 33 01][08 FF 34 01][00 FF]
^L1574^[D4 FF 22 00]@Just missed![02 FF][00 FF]
^L1575^[1C FF FB 02 _L4041_][74 FF][D4 FF 08 00][A0 FF D0 07 14 00 01 00][86 FF _L4040_][84 FF 11 00 FA 02 01 00][85 FF 16 00 06 00][D4 FF 09 00][CA FF][DB FF 11 00 01 00 01 00][CE FF 11 00 00 00][C3 FF 01 02 11 00][D8 FF 01 00 00 00][EA FF FF 00][1B FF 01 00][A4 FF 11 00][08 FF 61 00][08 FF 2D 01][09 FF 27 01][08 FF D3 01][08 FF 13 02][09 FF D9 01][86 FF _L16_][C6 FF][00 FF]
^L1576^@[AD FF]'s HP are[01 FF] maxed out![D4 FF 24 00][02 FF][00 FF]
^L1576^@[86 FF _targetupperthe_][AD FF]'s HP are[01 FF] maxed out![D4 FF 24 00][02 FF][00 FF]
^L1577^[8D FF 03 00][9A FF 07 00][82 FF _L2197_][FC FF 33 00][C3 FF 01 01 07 00][D8 FF 01 00 00 00][C3 FF 05 01 07 00][D8 FF 05 00 00 00]@Awo[1B FF 05 00]o[1B FF 05 00]o[1B FF 05 00]o[1B FF 05 00]of![02 FF]@(If I knew this was going to be[01 FF] such a scary place,[02 FF]@I wouldn't have come along...[1B FF 14 00][01 FF] I'm outta here!)[1D FF][86 FF _L4044_][C6 FF][A0 FF 2A 00 7C 00 01 00][9E FF][A1 FF 7C 00 10 00][08 FF 30 01][FC FF 34 00][00 FF]
^L1578^[A3 FF 65 00][9E FF][00 FF]
^L1579^[FC FF 08 00][82 FF _L3591_][D4 FF 37 00][80 FF _L3592_]
@ -1946,33 +1946,33 @@
^L1951^[83 FF C5 00][82 FF _L2197_][08 FF 0C 02][A2 FF _L5617_][FC FF 05 00][1C FF 80 01 _L2197_][9D FF 01 1F _L5625_][00 FF]
^L1952^[1C FF 49 00 _L2197_][9D FF 01 0E _L5614_][00 FF]
^L10000^[5E FF 01][95 FF 03 _L10001_ _L10002_ _L10003_][00 FF]
^L10001^[9F FF][00 FF]
^L10002^[9F FF] and its cohort[00 FF]
^L10003^[9F FF] and its cohorts[00 FF]
^L10001^[86 FF _useruppertheignore_][9F FF][00 FF]
^L10002^[86 FF _useruppertheignore_][9F FF] and its cohort[00 FF]
^L10003^[86 FF _useruppertheignore_][9F FF] and its cohorts[00 FF]
^L10004^[5E FF 01][95 FF 03 _L10005_ _L10006_ _L10007_][00 FF]
^L10005^[9F FF][00 FF]
^L10006^[9F FF][01 FF] and its cohort[00 FF]
^L10007^[9F FF][01 FF] and its cohorts[00 FF]
^L10008^[5E FF 01][95 FF 03 _L10009_ _L10010_ _L10011_]^L10011^[9F FF][01 FF] and its cohorts's[00 FF]
^L10009^[9F FF]'s[01 FF] [00 FF]
^L10010^[9F FF][01 FF] and its cohort's[00 FF]
^L10005^[86 FF _userlowertheignore_][9F FF][00 FF]
^L10006^[86 FF _userlowertheignore_][9F FF][01 FF] and its cohort[00 FF]
^L10007^[86 FF _userlowertheignore_][9F FF][01 FF] and its cohorts[00 FF]
^L10008^[5E FF 01][95 FF 03 _L10009_ _L10010_ _L10011_]^L10011^[86 FF _userlowertheignore_][9F FF][01 FF] and its cohorts's[00 FF]
^L10009^[86 FF _userlowertheignore_][9F FF]'s[01 FF] [00 FF]
^L10010^[86 FF _userlowertheignore_][9F FF][01 FF] and its cohort's[00 FF]
^L1953^@[86 FF _L10000_][01 FF] attacked![02 FF][00 FF]
^L1954^@[86 FF _L10000_] trapped you![02 FF][00 FF]
^L1955^@[AD FF] turned[01 FF] back to normal![D4 FF 21 00][00 FF]
^L1956^@[AD FF] was[01 FF] defeated![D4 FF 21 00][00 FF]
^L1957^@[AD FF] became[01 FF] tame![D4 FF 21 00][00 FF]
^L1955^@[86 FF _targetupperthe_][AD FF] turned[01 FF] back to normal![D4 FF 21 00][00 FF]
^L1956^@[86 FF _targetupperthe_][AD FF] was[01 FF] defeated![D4 FF 21 00][00 FF]
^L1957^@[86 FF _targetupperthe_][AD FF] became[01 FF] tame![D4 FF 21 00][00 FF]
^L1958^@You encounter [86 FF _L10004_].[02 FF][00 FF]
^L1959^@[AD FF] stopped[01 FF] moving![D4 FF 21 00][00 FF]
^L1959^@[86 FF _targetupperthe_][AD FF] stopped[01 FF] moving![D4 FF 21 00][00 FF]
^L1960^@You confront [86 FF _L10004_].[02 FF][00 FF]
^L1961^@[AD FF] was broken[01 FF] into pieces![D4 FF 21 00][00 FF]
^L1962^@The figure of [AD FF][01 FF] melted into thin air![D4 FF 21 00][00 FF]
^L1963^@[AD FF][01 FF] disappeared![D4 FF 21 00][00 FF]
^L1964^@[AD FF] was[01 FF] destroyed![D4 FF 21 00][00 FF]
^L1965^@[AD FF] was totally[01 FF] scrapped![D4 FF 21 00][00 FF]
^L1966^@[AD FF] returned to the dust[01 FF] of the earth![D4 FF 21 00][00 FF]
^L1967^@[AD FF] got hurt[01 FF] and collapsed...[D4 FF 20 00][09 FF 4B 02][02 FF][1C FF CF 00 _L3582_][1C FF CE 00 _L3583_][1C FF CD 00 _L3584_][1C FF CC 00 _L3585_][08 FF CC 00][86 FF _L3586_][00 FF]
^L1968^@[AD FF] became[01 FF] a pile of fluff...[D4 FF 20 00][02 FF][6D FF FF 00 B9 00][00 FF]
^L1969^@[AD FF] became[01 FF] a big pile of fluff...[D4 FF 20 00][02 FF][6D FF FF 00 B1 00][00 FF]
^L1961^@[86 FF _targetupperthe_][AD FF] was broken[01 FF] into pieces![D4 FF 21 00][00 FF]
^L1962^@The figure of [86 FF _targetlowerthe_][AD FF][01 FF] melted into thin air![D4 FF 21 00][00 FF]
^L1963^@[86 FF _targetupperthe_][AD FF][01 FF] disappeared![D4 FF 21 00][00 FF]
^L1964^@[86 FF _targetupperthe_][AD FF] was[01 FF] destroyed![D4 FF 21 00][00 FF]
^L1965^@[86 FF _targetupperthe_][AD FF] was totally[01 FF] scrapped![D4 FF 21 00][00 FF]
^L1966^@[86 FF _targetupperthe_][AD FF] returned to the dust[01 FF] of the earth![D4 FF 21 00][00 FF]
^L1967^@[86 FF _targetupperthe_][AD FF] got hurt[01 FF] and collapsed...[D4 FF 20 00][09 FF 4B 02][02 FF][1C FF CF 00 _L3582_][1C FF CE 00 _L3583_][1C FF CD 00 _L3584_][1C FF CC 00 _L3585_][08 FF CC 00][86 FF _L3586_][00 FF]
^L1968^@[86 FF _targetupperthe_][AD FF] became[01 FF] a pile of fluff...[D4 FF 20 00][02 FF][6D FF FF 00 B9 00][00 FF]
^L1969^@[86 FF _targetupperthe_][AD FF] became[01 FF] a big pile of fluff...[D4 FF 20 00][02 FF][6D FF FF 00 B1 00][00 FF]
^L1970^@A very subtle light engulfed[01 FF] [86 FF _L11000_]![02 FF][00 FF]
^L1971^@A warm light surrounded[01 FF] [86 FF _L11000_]![02 FF][00 FF]
^L1972^@A mysterious light enveloped[01 FF] [86 FF _L11000_]![02 FF][00 FF]
@ -1989,9 +1989,9 @@
^L1983^@[0D FF] learned how to[01 FF] use PSI Teleportation.[1D FF][C6 FF][E8 FF 01 00 01 00][08 FF 13 01][DB FF 05 03 01 00 FF 00][CE FF 05 03 00 00][B0 FF 05 03 CC 00][1B FF 3C 00][B3 FF 05 03][A1 FF 05 03 4C 00][9E FF]@Kyaho![02 FF]@(Great![1B FF 14 00] Okay,[1B FF 0F 00] the teacher is[01 FF] going home now.)[1D FF][C6 FF][A1 FF 05 03 F8 02][09 FF 02 00][09 FF 67 02][09 FF 65 02][00 FF]
^L1984^[80 FF _L1267_]
^L1985^[00 FF]
^L1986^@[AD FF] began to[01 FF] feel strange![02 FF][00 FF]
^L1987^@[9F FF] began to[01 FF] feel strange![02 FF][00 FF]
^L1988^@[9F FF] felt[01 FF] a little strange...[02 FF][00 FF]
^L1986^@[86 FF _targetupperthe_][AD FF] began to[01 FF] feel strange![02 FF][00 FF]
^L1987^@[86 FF _userupperthe_][9F FF] began to[01 FF] feel strange![02 FF][00 FF]
^L1988^@[86 FF _userupperthe_][9F FF] felt[01 FF] a little strange...[02 FF][00 FF]
^L1989^@[86 FF _L11000_] tried to get[01 FF] away,[1B FF 3C 00][02 FF]@but couldn't![02 FF][00 FF]
^L1990^[D4 FF 3D 00][F0 FF 2E 00 21 00][1B FF 16 00][D4 FF 3F 00][1B FF 1E 00][00 FF]
^L1991^[D4 FF 3E 00][F0 FF 2E 00 22 00][1B FF 16 00][D4 FF 3F 00][1B FF 17 00][D4 FF 3F 00][1B FF 1E 00][00 FF]
@ -2000,36 +2000,36 @@
^L1994^[E5 FF][82 FF _L3520_]@It didn't taste very good.[02 FF]^L3520^[00 FF]
^L1995^ The Teleport Box started to[01 FF] groan.[D4 FF 63 00][02 FF][01 FF][F0 FF 30 00 00 00] The Teleport Box shattered into[01 FF] pieces with a loud explosion.[D4 FF 63 00][F0 FF 23 00 00 00][1D FF][00 FF]
^L1996^ The Teleport Box began to[01 FF] groan.[D4 FF 63 00][02 FF][01 FF][F0 FF 30 00 00 00] The Teleport Box didn't work[01 FF] quite right...[D4 FF 05 00][1D FF][00 FF]
^L1997^[C1 FF][87 FF]@[9F FF] equipped[01 FF] the [90 FF 00][1A FF 02 00] instead.[D4 FF 73 00][02 FF][00 FF]
^L1998^[C1 FF][87 FF]@[9F FF] could not[01 FF] equip the [90 FF 00][1A FF 02 00].[02 FF]@Since there was no alternative,[01 FF] [86 FF _userpersonal_] fought with [86 FF _userpossessive_] revious weapon.[02 FF][00 FF]
[C1 FF][87 FF]@[9F FF] tried[01 FF] to equip the [90 FF 00][1A FF 02 00].[02 FF]@but [90 FF 00][1A FF 02 00] wasn't meant[01 FF] for [9F FF].[02 FF][00 FF]
^L1999^@[9F FF] could not use[01 FF] the [90 FF 00][1A FF 02 00] very[01 FF] well.[02 FF][00 FF]
^L2000^@Black smoke poured from[01 FF] [9F FF]'s body![22 FF][01 FF]@[86 FF _L11000_] was[01 FF] overcome by the smoke![22 FF][01 FF]@You can't see a thing![22 FF][00 FF]
^L1997^[C1 FF][87 FF]@[86 FF _userupperthe_][9F FF] equipped[01 FF] the [90 FF 00][1A FF 02 00] instead.[D4 FF 73 00][02 FF][00 FF]
^L1998^[C1 FF][87 FF]@[86 FF _userupperthe_][9F FF] could not[01 FF] equip the [90 FF 00][1A FF 02 00].[02 FF]@Since there was no alternative,[01 FF] [86 FF _userpersonal_] fought with [86 FF _userpossessive_] revious weapon.[02 FF][00 FF]
[C1 FF][87 FF]@[86 FF _userupperthe_][9F FF] tried[01 FF] to equip the [90 FF 00][1A FF 02 00].[02 FF]@but [90 FF 00][1A FF 02 00] wasn't meant[01 FF] for [86 FF _userlowerthe_][9F FF].[02 FF][00 FF]
^L1999^@[86 FF _userupperthe_][9F FF] could not use[01 FF] the [90 FF 00][1A FF 02 00] very[01 FF] well.[02 FF][00 FF]
^L2000^@Black smoke poured from[01 FF] [86 FF _userlowerthe_][9F FF]'s body![22 FF][01 FF]@[86 FF _L11000_] was[01 FF] overcome by the smoke![22 FF][01 FF]@You can't see a thing![22 FF][00 FF]
^L2001^@All of a sudden,[01 FF] some guys rushed into the room![22 FF][C4 FF 00 95][1B FF 3C 00]@It was the Runaway Five![22 FF][C7 FF][1B FF 1E 00][69 FF][FC FF 2A 00]@Lucky quickly ducked behind[01 FF] the robot![22 FF][D4 FF 0B 00][1B FF 3C 00][68 FF]@<I flipped the switch, and it[01 FF] stopped.>[02 FF]@<Ha ha ha hah...[01 FF] Geez, what a loser robot. It[01 FF] was so easy to stop!>[1B FF 14 00][22 FF][68 FF]@<That was quick thinking!>[22 FF][1B FF 3C 00][C7 FF][69 FF][FC FF 2B 00][08 FF 3E 01][00 FF]
^L2002^@[10 FF] used his new power,[22 FF][01 FF] PSI Starstorm![22 FF][01 FF][00 FF]
^L2003^[D4 FF 2E 00]@[AC FF] HP of damage[01 FF] to [AD FF]![02 FF][00 FF]
^L2004^[D4 FF 1E 00]@[AC FF] HP of damage[01 FF] to [AD FF]![02 FF][00 FF]
^L2005^[D4 FF 2E 00]@[AC FF] HP of damage[01 FF] to [AD FF]![02 FF][00 FF]
^L2006^[D4 FF 1E 00]@[AC FF] HP of damage[01 FF] to [AD FF]![02 FF][00 FF]
^L2007^[D4 FF 2F 00]@[AC FF] HP of mortal damage[01 FF] to [AD FF]![02 FF][00 FF]
^L2003^[D4 FF 2E 00]@[AC FF] HP of damage[01 FF] to [86 FF _targetlowerthe_][AD FF]![02 FF][00 FF]
^L2004^[D4 FF 1E 00]@[AC FF] HP of damage[01 FF] to [86 FF _targetlowerthe_][AD FF]![02 FF][00 FF]
^L2005^[D4 FF 2E 00]@[AC FF] HP of damage[01 FF] to [86 FF _targetlowerthe_][AD FF]![02 FF][00 FF]
^L2006^[D4 FF 1E 00]@[AC FF] HP of damage[01 FF] to [86 FF _targetlowerthe_][AD FF]![02 FF][00 FF]
^L2007^[D4 FF 2F 00]@[AC FF] HP of mortal damage[01 FF] to [86 FF _targetlowerthe_][AD FF]![02 FF][00 FF]
^L2008^[D4 FF 1F 00][20 FF][02 FF][00 FF]
^L2009^[20 FF][D4 FF 2F 00][02 FF][00 FF]
^L2010^[D4 FF 23 00]@[AD FF] dodged[01 FF] quickly![02 FF][00 FF]
^L2011^@It did not work[01 FF] on [AD FF]![02 FF][00 FF]
^L2012^@It had no visible effect[01 FF] on [AD FF]![02 FF][00 FF]
^L2010^[D4 FF 23 00]@[86 FF _targetupperthe_][AD FF] dodged[01 FF] quickly![02 FF][00 FF]
^L2011^@It did not work[01 FF] on [86 FF _targetlowerthe_][AD FF]![02 FF][00 FF]
^L2012^@It had no visible effect[01 FF] on [86 FF _targetlowerthe_][AD FF]![02 FF][00 FF]
^L2013^[D4 FF 22 00]@...narrowly missed[01 FF] hitting the target![02 FF][00 FF]
^L2014^@But [AD FF] was[01 FF] already gone...[02 FF][00 FF]
^L2015^@[9F FF] drained [86 FF _userpossessive_] own HP![02 FF][00 FF]
^L2016^@Drained [AC FF] HP[01 FF] from [AD FF]![02 FF][00 FF]
^L2017^@Drained [AC FF] PP[01 FF] from [AD FF]![02 FF][00 FF]
^L2018^@[AD FF] lost[01 FF] [AC FF] PP![02 FF][00 FF]
^L2019^@[9F FF] felt sick[01 FF] and took [AC FF] HP damage![02 FF][00 FF]
^L2020^@[AD FF] felt pain[01 FF] from the poison[02 FF] and took [AC FF] HP damage.[02 FF][00 FF]
^L2021^@[AD FF] felt dizzy[01 FF] and weak and received [AC FF] HP damage![02 FF][00 FF]
^L2022^@[AD FF] sneezed[01 FF] and received [AC FF] HP damage![02 FF][00 FF]
^L2023^@[AD FF] recovered[01 FF] [AC FF] HP![D4 FF 24 00][02 FF][00 FF]
^L2024^@[AD FF] recovered[01 FF] [AC FF] PP![D4 FF 24 00][02 FF][00 FF]
^L2025^@[AD FF]'s[01 FF] Offense is [AC FF]![02 FF][00 FF]
^L2014^@But [86 FF _targetlowerthe_][AD FF] was[01 FF] already gone...[02 FF][00 FF]
^L2015^@[86 FF _userupperthe_][9F FF] drained [86 FF _userpossessive_] own HP![02 FF][00 FF]
^L2016^@Drained [AC FF] HP[01 FF] from [86 FF _targetlowerthe_][AD FF]![02 FF][00 FF]
^L2017^@Drained [AC FF] PP[01 FF] from [86 FF _targetlowerthe_][AD FF]![02 FF][00 FF]
^L2018^@[86 FF _targetupperthe_][AD FF] lost[01 FF] [AC FF] PP![02 FF][00 FF]
^L2019^@[86 FF _userupperthe_][9F FF] felt sick[01 FF] and took [AC FF] HP damage![02 FF][00 FF]
^L2020^@[86 FF _targetupperthe_][AD FF] felt pain[01 FF] from the poison[02 FF] and took [AC FF] HP damage.[02 FF][00 FF]
^L2021^@[86 FF _targetupperthe_][AD FF] felt dizzy[01 FF] and weak and received [AC FF] HP damage![02 FF][00 FF]
^L2022^@[86 FF _targetupperthe_][AD FF] sneezed[01 FF] and received [AC FF] HP damage![02 FF][00 FF]
^L2023^@[86 FF _targetupperthe_][AD FF] recovered[01 FF] [AC FF] HP![D4 FF 24 00][02 FF][00 FF]
^L2024^@[86 FF _targetupperthe_][AD FF] recovered[01 FF] [AC FF] PP![D4 FF 24 00][02 FF][00 FF]
^L2025^@[86 FF _targetupperthe_][AD FF]'s[01 FF] Offense is [AC FF]![02 FF][00 FF]
^L2026^@Defense is [AC FF]![02 FF][00 FF]
^L2027^@Vulnerable to PSI Fire![02 FF][00 FF]
^L2028^@Vulnerable to PSI Freeze![02 FF][00 FF]
@ -2037,66 +2037,66 @@
^L2030^@Vulnerable to Paralysis![02 FF][00 FF]
^L2031^@Open to Hypnosis![02 FF][00 FF]
^L2032^@Susceptible to Brain Shock.[02 FF][00 FF]
^L2033^@Yikes! [9F FF] turned into[01 FF] [AD FF]![02 FF][00 FF]
^L2034^@[9F FF] could not turn[01 FF] into [AD FF]![02 FF][00 FF]
^L2035^@[AD FF] was[01 FF] diamondized![D4 FF 53 00][02 FF][00 FF]
^L2036^@[AD FF]'s body[01 FF] became numb![D4 FF 53 00][02 FF][00 FF]
^L2037^@[AD FF] felt[01 FF] somewhat nauseous...[D4 FF 53 00][02 FF][00 FF]
^L2038^@[AD FF] got[01 FF] poisoned![D4 FF 53 00][02 FF][00 FF]
^L2039^@[AD FF] caught a cold![D4 FF 53 00][02 FF][00 FF]
^L2040^@[AD FF] began to[01 FF] feel strange![D4 FF 53 00][02 FF][00 FF]
^L2041^@[AD FF] was[01 FF] possessed by a mini-ghost![D4 FF 53 00][02 FF][00 FF]
^L2042^@[AD FF] could not[01 FF] stop crying![D4 FF 53 00][02 FF][00 FF]
^L2043^@[AD FF] suddenly[01 FF] could not move![D4 FF 53 00][02 FF][00 FF]
^L2044^@[AD FF]'s body[01 FF] solidified![D4 FF 53 00][02 FF][00 FF]
^L2045^@[AD FF] was[01 FF] not able to concentrate![D4 FF 53 00][02 FF]@[AD FF] was[01 FF] not able to use PSI![02 FF][00 FF]
^L2046^@[AD FF] felt[01 FF] a little strange...[D4 FF 53 00][02 FF][00 FF]
^L2047^@[AD FF] fell[01 FF] asleep![D4 FF 53 00][02 FF][00 FF]
^L2048^@[AD FF] got hurt and collapsed...[D4 FF 20 00][02 FF][00 FF]
^L2049^@[AD FF]'s body[01 FF] returned to normal![D4 FF 25 00][02 FF][00 FF]
^L2050^@[AD FF]'s[01 FF] numbness is gone![D4 FF 25 00][02 FF][00 FF]
^L2051^@[AD FF] felt[01 FF] much better![D4 FF 25 00][02 FF][00 FF]
^L2052^@The poison was removed from[01 FF] [AD FF]'s body![D4 FF 25 00][02 FF][00 FF]
^L2053^@[AD FF] got over[01 FF] the cold![D4 FF 25 00][02 FF][00 FF]
^L2054^@[AD FF] finally[01 FF] stopped crying...[D4 FF 25 00][02 FF][00 FF]
^L2055^@[AD FF]'s body[01 FF] again moved freely![D4 FF 25 00][02 FF][00 FF]
^L2056^@[AD FF] went[01 FF] back to normal![D4 FF 25 00][02 FF][00 FF]
^L2057^@[AD FF]'s[01 FF] sunstroke was cured![D4 FF 25 00][02 FF][00 FF]
^L2058^@[AD FF] woke up![D4 FF 25 00][02 FF][00 FF]
^L2059^@[AD FF] was[01 FF] able to concentrate![D4 FF 25 00][02 FF][00 FF]
^L2060^@[AD FF] was revived![D4 FF 25 00][02 FF][00 FF]
^L2033^@Yikes! [86 FF _userupperthe_][9F FF] turned into[01 FF] [86 FF _targetlowerthe_][AD FF]![02 FF][00 FF]
^L2034^@[86 FF _userupperthe_][9F FF] could not turn[01 FF] into [86 FF _targetlowerthe_][AD FF]![02 FF][00 FF]
^L2035^@[86 FF _targetupperthe_][AD FF] was[01 FF] diamondized![D4 FF 53 00][02 FF][00 FF]
^L2036^@[86 FF _targetupperthe_][AD FF]'s body[01 FF] became numb![D4 FF 53 00][02 FF][00 FF]
^L2037^@[86 FF _targetupperthe_][AD FF] felt[01 FF] somewhat nauseous...[D4 FF 53 00][02 FF][00 FF]
^L2038^@[86 FF _targetupperthe_][AD FF] got[01 FF] poisoned![D4 FF 53 00][02 FF][00 FF]
^L2039^@[86 FF _targetupperthe_][AD FF] caught a cold![D4 FF 53 00][02 FF][00 FF]
^L2040^@[86 FF _targetupperthe_][AD FF] began to[01 FF] feel strange![D4 FF 53 00][02 FF][00 FF]
^L2041^@[86 FF _targetupperthe_][AD FF] was[01 FF] possessed by a mini-ghost![D4 FF 53 00][02 FF][00 FF]
^L2042^@[86 FF _targetupperthe_][AD FF] could not[01 FF] stop crying![D4 FF 53 00][02 FF][00 FF]
^L2043^@[86 FF _targetupperthe_][AD FF] suddenly[01 FF] could not move![D4 FF 53 00][02 FF][00 FF]
^L2044^@[86 FF _targetupperthe_][AD FF]'s body[01 FF] solidified![D4 FF 53 00][02 FF][00 FF]
^L2045^@[86 FF _targetupperthe_][AD FF] was[01 FF] not able to concentrate![D4 FF 53 00][02 FF]@[86 FF _targetupperthe_][AD FF] was[01 FF] not able to use PSI![02 FF][00 FF]
^L2046^@[86 FF _targetupperthe_][AD FF] felt[01 FF] a little strange...[D4 FF 53 00][02 FF][00 FF]
^L2047^@[86 FF _targetupperthe_][AD FF] fell[01 FF] asleep![D4 FF 53 00][02 FF][00 FF]
^L2048^@[86 FF _targetupperthe_][AD FF] got hurt and collapsed...[D4 FF 20 00][02 FF][00 FF]
^L2049^@[86 FF _targetupperthe_][AD FF]'s body[01 FF] returned to normal![D4 FF 25 00][02 FF][00 FF]
^L2050^@[86 FF _targetupperthe_][AD FF]'s[01 FF] numbness is gone![D4 FF 25 00][02 FF][00 FF]
^L2051^@[86 FF _targetupperthe_][AD FF] felt[01 FF] much better![D4 FF 25 00][02 FF][00 FF]
^L2052^@The poison was removed from[01 FF] [86 FF _targetlowerthe_][AD FF]'s body![D4 FF 25 00][02 FF][00 FF]
^L2053^@[86 FF _targetupperthe_][AD FF] got over[01 FF] the cold![D4 FF 25 00][02 FF][00 FF]
^L2054^@[86 FF _targetupperthe_][AD FF] finally[01 FF] stopped crying...[D4 FF 25 00][02 FF][00 FF]
^L2055^@[86 FF _targetupperthe_][AD FF]'s body[01 FF] again moved freely![D4 FF 25 00][02 FF][00 FF]
^L2056^@[86 FF _targetupperthe_][AD FF] went[01 FF] back to normal![D4 FF 25 00][02 FF][00 FF]
^L2057^@[86 FF _targetupperthe_][AD FF]'s[01 FF] sunstroke was cured![D4 FF 25 00][02 FF][00 FF]
^L2058^@[86 FF _targetupperthe_][AD FF] woke up![D4 FF 25 00][02 FF][00 FF]
^L2059^@[86 FF _targetupperthe_][AD FF] was[01 FF] able to concentrate![D4 FF 25 00][02 FF][00 FF]
^L2060^@[86 FF _targetupperthe_][AD FF] was revived![D4 FF 25 00][02 FF][00 FF]
^L2061^@It didn't work...[02 FF][00 FF]
^L2062^@[AD FF]'s body[01 FF] was protected by the shield of light![02 FF][00 FF]
^L2063^@[AD FF]'s shield[01 FF] became stronger![02 FF][00 FF]
^L2064^@[AD FF]'s body[01 FF] was protected by the power shield![02 FF][00 FF]
^L2065^@[AD FF]'s power[01 FF] shield became stronger![02 FF][00 FF]
^L2066^@[AD FF]'s body[01 FF] was protected by the psychic shield![02 FF][00 FF]
^L2067^@[AD FF]'s psychic[01 FF] shield became stronger![02 FF][00 FF]
^L2068^@[AD FF]'s body[01 FF] was protected by[02 FF] the psychic power shield![02 FF][00 FF]
^L2069^@[AD FF]'s psychic[01 FF] power shield became stronger![02 FF][00 FF]
^L2070^@[AD FF]'s shield[01 FF] disappeared![02 FF][00 FF]
^L2062^@[86 FF _targetupperthe_][AD FF]'s body[01 FF] was protected by the shield of light![02 FF][00 FF]
^L2063^@[86 FF _targetupperthe_][AD FF]'s shield[01 FF] became stronger![02 FF][00 FF]
^L2064^@[86 FF _targetupperthe_][AD FF]'s body[01 FF] was protected by the power shield![02 FF][00 FF]
^L2065^@[86 FF _targetupperthe_][AD FF]'s power[01 FF] shield became stronger![02 FF][00 FF]
^L2066^@[86 FF _targetupperthe_][AD FF]'s body[01 FF] was protected by the psychic shield![02 FF][00 FF]
^L2067^@[86 FF _targetupperthe_][AD FF]'s psychic[01 FF] shield became stronger![02 FF][00 FF]
^L2068^@[86 FF _targetupperthe_][AD FF]'s body[01 FF] was protected by[02 FF] the psychic power shield![02 FF][00 FF]
^L2069^@[86 FF _targetupperthe_][AD FF]'s psychic[01 FF] power shield became stronger![02 FF][00 FF]
^L2070^@[86 FF _targetupperthe_][AD FF]'s shield[01 FF] disappeared![02 FF][00 FF]
^L2071^@The power shield[01 FF] deflected the attack![D4 FF 5D 00][1B FF 1E 00][02 FF][00 FF]
^L2072^@The psychic power shield[01 FF][C1 FF][87 FF] deflected [2D FF]![D4 FF 5D 00][02 FF][00 FF]
^L2073^@[AD FF]'s psychic[01 FF] shield made[C1 FF][87 FF] [2D FF][01 FF] disappear![02 FF][00 FF]
^L2074^@The effects of PSI on[01 FF] [AD FF] is gone![D4 FF 29 00][02 FF][00 FF]
^L2073^@[86 FF _targetupperthe_][AD FF]'s psychic[01 FF] shield made[C1 FF][87 FF] [2D FF][01 FF] disappear![02 FF][00 FF]
^L2074^@The effects of PSI on[01 FF] [86 FF _targetlowerthe_][AD FF] is gone![D4 FF 29 00][02 FF][00 FF]
^L2075^@[10 FF] returned[01 FF] to his original form![02 FF][00 FF]
^L2076^@The Franklin Badge deflected[01 FF] the lightning![D4 FF 5D 00][02 FF][00 FF]
^L2077^@[AD FF]'s offense[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2078^@[AD FF]'s defense[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2079^@[AD FF]'s IQ[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2080^@[AD FF]'s guts[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2081^@[AD FF]'s guts[01 FF] went down by [AC FF]![D4 FF 29 00][02 FF][00 FF]
^L2082^@Amazingly enough,[01 FF] [AD FF]'s guts became [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2083^@[AD FF]'s speed[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2084^@[AD FF]'s vitality[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2085^@[AD FF]'s luck[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2086^@[AD FF]'s offense[01 FF] went down by [AC FF]![D4 FF 29 00][02 FF][00 FF]
^L2087^@[AD FF]'s defense[01 FF] went down by [AC FF]![D4 FF 29 00][02 FF][00 FF]
^L2088^@[9F FF] opened[01 FF] the jar of <Fly Honey>![02 FF]@Master Belch grabbed[01 FF] the <Fly Honey>![02 FF][00 FF]
^L2089^@[9F FF] opened[01 FF] the jar of <Fly Honey>![02 FF]@It didn't smell like[01 FF] something [86 FF _userpersonal_] would like![02 FF][00 FF]
^L2077^@[86 FF _targetupperthe_][AD FF]'s offense[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2078^@[86 FF _targetupperthe_][AD FF]'s defense[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2079^@[86 FF _targetupperthe_][AD FF]'s IQ[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2080^@[86 FF _targetupperthe_][AD FF]'s guts[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2081^@[86 FF _targetupperthe_][AD FF]'s guts[01 FF] went down by [AC FF]![D4 FF 29 00][02 FF][00 FF]
^L2082^@Amazingly enough,[01 FF] [86 FF _targetlowerthe_][AD FF]'s guts became [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2083^@[86 FF _targetupperthe_][AD FF]'s speed[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2084^@[86 FF _targetupperthe_][AD FF]'s vitality[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2085^@[86 FF _targetupperthe_][AD FF]'s luck[01 FF] went up by [AC FF]![D4 FF 28 00][02 FF][00 FF]
^L2086^@[86 FF _targetupperthe_][AD FF]'s offense[01 FF] went down by [AC FF]![D4 FF 29 00][02 FF][00 FF]
^L2087^@[86 FF _targetupperthe_][AD FF]'s defense[01 FF] went down by [AC FF]![D4 FF 29 00][02 FF][00 FF]
^L2088^@[86 FF _userupperthe_][9F FF] opened[01 FF] the jar of <Fly Honey>![02 FF]@Master Belch grabbed[01 FF] the <Fly Honey>![02 FF][00 FF]
^L2089^@[86 FF _userupperthe_][9F FF] opened[01 FF] the jar of <Fly Honey>![02 FF]@It didn't smell like[01 FF] something [86 FF _userpersonal_] would like![02 FF][00 FF]
^L2090^@Not enough PP![02 FF][00 FF]
^L2091^@It didn't hit anyone![02 FF][00 FF]
^L2092^@[AD FF] does not[01 FF] have any PP![02 FF][00 FF]
^L2092^@[86 FF _targetupperthe_][AD FF] does not[01 FF] have any PP![02 FF][00 FF]
^L2093^[FC FF 2A 00][1B FF 50 00]@So, isn't this terrifying?[1B FF 1E 00][01 FF] I'm terrified, too.[22 FF][01 FF]@Giygas cannot think rationally[01 FF] any more,[22 FF][01 FF]@and he isn't even aware of[01 FF] what he is doing now.[22 FF][01 FF]@His own mind was destroyed by[01 FF] his incredible power.[22 FF][01 FF]@What an all-mighty idiot![1B FF 1E 00][22 FF][01 FF]@Yep, that's what he is![22 FF][01 FF]@Heh heh heh heh...[1B FF 1E 00][01 FF] and you... you will be...[1B FF 1E 00][01 FF] just another meal to him![1B FF 96 00][C7 FF][FC FF 2B 00][69 FF][00 FF]
^L2094^[C7 FF][FC FF 2A 00][69 FF][1B FF 3C 00]@Heh heh heh heh.[1B FF 1E 00][01 FF] You must really be[01 FF] at the end of your rope.[22 FF][01 FF]@In this bizarre dimension,[01 FF] you four are the only force[01 FF] fighting for justice...[22 FF][01 FF]@And here you stand,[22 FF][01 FF]@waiting to be burned up with all[01 FF] the rest of the garbage of this[01 FF] universe...[22 FF][01 FF]@Haaaaah![1B FF 1E 00][01 FF] That's so sad. I can't help[01 FF] but shed a tear.[22 FF][01 FF]@You know, my heart is beating[01 FF] incredibly fast,[1B FF 1E 00][01 FF][22 FF][01 FF]@...I must be experiencing[01 FF] absolute terror![22 FF][01 FF]@Do you want to scream for[01 FF] help here in the dark?![22 FF][01 FF]@Ha ha ha ha ha![22 FF][01 FF]@Why not call your mommy,[01 FF] [0D FF]![22 FF][01 FF]@Say, <Mommy! Daddy![01 FF] I'm so frightened! [1B FF 1E 00]I think[01 FF] I'm gonna wet my pants!>[22 FF][01 FF]@I know you have telepathy, or[01 FF] something, so just try and call[01 FF] for help,[22 FF][01 FF]@you pathetically weak[01 FF] heroes of so-called justice![22 FF][01 FF]@No one will help you now![22 FF][01 FF]@Ha ha ha haah...[22 FF][01 FF]@Don't worry, your pitiful[01 FF] suffering will be over soon![1B FF 96 00][C7 FF][FC FF 2B 00][00 FF]
^L2095^[C7 FF][FC FF 2A 00][1B FF 3C 00]@[0D FF]![1B FF 1E 00] Now, I...[01 FF] well... [1B FF 14 00]It's going to seem like[01 FF] I'm running away.[22 FF][01 FF]@But perhaps I'll just sneak away[01 FF] to another era to think about[01 FF] my next plan.[22 FF][01 FF]@It's a good bet that we will see[01 FF] each other again...[22 FF][1B FF 1E 00][01 FF]@All right! I'll be seeing you![22 FF][01 FF]@So now which one of us do you[01 FF] think is the cool guy?![1B FF 96 00][D4 FF 41 00][C7 FF][FC FF 2B 00][00 FF]
@ -2106,8 +2106,8 @@
^L2099^[1B FF 3C 00]@[BC FF 01 00]^L3620^[67 FF][82 FF _L3618_][A8 FF 01][87 FF][9A FF 12 00][82 FF _prayerplayer-5_][01 FF] ^prayerplayer-5^[F6 FF 63 00][DD FF 14 00 00 00 00 00 00 00][82 FF _L3619_][1F FF 00 00]^L3621^[C0 FF][80 FF _L3620_]
^L2100^[1B FF 3C 00]@[86 FF _playername_][BC FF 0A 00][67 FF][82 FF _prayerplayer-7_][01 FF] ^prayerplayer-7^ kept praying.[1B FF 96 00][C6 FF][00 FF]
^L2101^@Giygas' defense became[01 FF] unstable.[D4 FF 5A 00][1B FF 46 00][D4 FF 5A 00][1B FF 41 00][D4 FF 5A 00][1B FF 4A 00][D4 FF 5A 00][00 FF]
^L2102^@[AD FF] joined the battle.[02 FF][00 FF]
^L2103^@[AD FF] started[01 FF] to grow.[02 FF][00 FF]
^L2102^@[86 FF _targetupperthe_][AD FF] joined the battle.[02 FF][00 FF]
^L2103^@[86 FF _targetupperthe_][AD FF] started[01 FF] to grow.[02 FF][00 FF]
^L2104^@But no one came.[02 FF][00 FF]
^L2105^@But, the seed didn't sprout.[02 FF][00 FF]
^L2106^[C4 FF 00 62]@Time started again.[02 FF][00 FF]
@ -2141,7 +2141,7 @@
^L2122^@[86 FF _L3628_]Maximum PP went up by [AC FF]![22 FF][00 FF]
^L2123^[D4 FF 67 00][C1 FF][87 FF]@[AD FF] learned the power of[01 FF] [2D FF].[22 FF][00 FF]
^L2124^@The enemy left a present![22 FF][01 FF][D4 FF 10 00][1B FF 01 00]@Inside the present,[01 FF][C1 FF][87 FF] there was a [90 FF 00][1A FF 02 00]![22 FF][01 FF][91 FF FF][82 FF _L3632_][88 FF][86 FF _L3633_][81 FF _L3634_][89 FF][87 FF]@[90 FF 00][1A FF 01 00][87 FF] took it.[93 FF 00 00][D4 FF 74 00][22 FF][00 FF]
^L2125^@[9F FF] saw[01 FF] a present behind the enemy.[02 FF][D4 FF 10 00]@Inside the present,[01 FF][C1 FF][87 FF] there was a [90 FF 00][1A FF 02 00].[02 FF]@[90 FF 03][1A FF 01 00] takes it.[93 FF 03 00][D4 FF 74 00][02 FF][00 FF]
^L2125^@[86 FF _userupperthe_][9F FF] saw[01 FF] a present behind the enemy.[02 FF][D4 FF 10 00]@Inside the present,[01 FF][C1 FF][87 FF] there was a [90 FF 00][1A FF 02 00].[02 FF]@[90 FF 03][1A FF 01 00] takes it.[93 FF 03 00][D4 FF 74 00][02 FF][00 FF]
^L2126^@Escargo Express![02 FF]@<We treat your package like it[01 FF] was our only child>...[02 FF]@I'm here with your Pencil[01 FF] Eraser.[02 FF][91 FF FF][82 FF _L4022_][93 FF 00 AA][D4 FF 76 00]@Here you are.[02 FF]@Thank you very much![1D FF][09 FF B6 02][09 FF B4 02][C6 FF][86 FF _L4023_][86 FF _L4024_][00 FF]
^L2127^@Escargo Express.[02 FF]@<We treat your package like it[01 FF] was our only child>...[02 FF]@I'm here to deliver[01 FF] the [90 FF A9][1A FF 02 00].[02 FF][91 FF FF][82 FF _L4025_][93 FF 00 A9][D4 FF 76 00]@Here you are.[02 FF]@Thank you very much![1D FF][C6 FF][09 FF B7 02][09 FF B5 02][86 FF _L4023_][86 FF _L4024_][00 FF]
^L2128^[09 FF B6 02][09 FF F2 02][00 FF]
@ -2165,7 +2165,7 @@
^L2146^[88 FF][AB FF 00 00][87 FF][9A FF C4 00][81 FF _L5456_][89 FF][AB FF 00 00][B7 FF 00][82 FF _L5457_][89 FF][B9 FF 00 00 00 00][88 FF][86 FF _L3633_][81 FF _L5458_][89 FF][87 FF]@[90 FF 00][1A FF 01 00] got rid of[01 FF] the [87 FF][90 FF 00][1A FF 02 00].[1D FF][00 FF]
^L2147^[AB FF 00 00][87 FF]@[90 FF 00][1A FF 01 00] is the only one who[01 FF] should carry[01 FF] the [87 FF][90 FF 00][1A FF 02 00].[1D FF][00 FF]
^L2148^[AB FF 00 00]@The [90 FF 00][1A FF 02 00] is one[01 FF] of the items that can be[01 FF] equipped.[1D FF][00 FF]
^L2149^@Alert![02 FF]@[9F FF]'s condition is[01 FF] critical.[02 FF]@[86 FF _userpersonalcapital_] will collapse if [86 FF _userpossessive_][01 FF] condition isn't treated.[02 FF]@Be careful![1D FF][00 FF]
^L2149^@Alert![02 FF]@[86 FF _userupperthe_][9F FF]'s condition is[01 FF] critical.[02 FF]@[86 FF _userpersonalcapital_] will collapse if [86 FF _userpossessive_][01 FF] condition isn't treated.[02 FF]@Be careful![1D FF][00 FF]
^L2150^@You should ride your bike in a[01 FF] less confining area.[1D FF][00 FF]
^L2151^[1C FF F2 02 _L5460_][FC FF 2B 00][61 FF 02 00]@You cannot teleport here.[1D FF][61 FF 01 00][FC FF 2A 00][00 FF]
^L2152^[8D FF 01 00][87 FF]@[90 FF 00][1A FF 01 00] got off the bike.[1D FF][C7 FF][1B FF 1E 00][00 FF]
@ -3147,9 +3147,9 @@
^L3459^@(There are books other than[01 FF] <Overcoming shyness.>)[1D FF][00 FF]
^L3460^@(You found the book[01 FF] <Overcoming Shyness>!)[02 FF][91 FF FF][82 FF _L3461_][93 FF 00 D1][8A FF][86 FF _L2238_][1D FF][08 FF 59 00][09 FF FE 02][09 FF 33 00][00 FF]
^L3461^@(But look, at this glorious[01 FF] moment you have no more[01 FF] room.)[02 FF][00 FF]
^L3462^[D4 FF 18 00]@[9F FF] attacks![D4 FF 1A 00][02 FF][00 FF]
^L3463^[FC FF 08 00][82 FF _L3504_][D4 FF 37 00]@[9F FF] tried[01 FF][C1 FF][87 FF] [2D FF]![02 FF][80 FF _L3505_]
^L3464^[D4 FF 1D 00]@[9F FF] tried[01 FF][C1 FF][87 FF] [2D FF]![02 FF]^L3465^[87 FF][BD FF 32 _L3466_ _L3467_ _L3468_ _L3469_ _L3470_ _L3471_ _L3472_ _L3473_ _L3474_ _L3475_ _L3476_ _L3477_ _L3478_ _L3478_ _L3478_ _L3478_ _L3479_ _L3480_ _L3481_ _L3482_ _L3483_ _L3484_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3486_ _L3487_ _L3488_ _L3489_ _L3490_ _L3491_ _L3492_ _L3493_ _L3485_ _L3485_ _L3494_ _L3495_ _L3496_ _L3497_ _L3498_ _L3499_ _L3500_ _L3501_ _L3502_ _L3503_][00 FF]
^L3462^[D4 FF 18 00]@[86 FF _userupperthe_][9F FF] attacks![D4 FF 1A 00][02 FF][00 FF]
^L3463^[FC FF 08 00][82 FF _L3504_][D4 FF 37 00]@[86 FF _userupperthe_][9F FF] tried[01 FF][C1 FF][87 FF] [2D FF]![02 FF][80 FF _L3505_]
^L3464^[D4 FF 1D 00]@[86 FF _userupperthe_][9F FF] tried[01 FF][C1 FF][87 FF] [2D FF]![02 FF]^L3465^[87 FF][BD FF 32 _L3466_ _L3467_ _L3468_ _L3469_ _L3470_ _L3471_ _L3472_ _L3473_ _L3474_ _L3475_ _L3476_ _L3477_ _L3478_ _L3478_ _L3478_ _L3478_ _L3479_ _L3480_ _L3481_ _L3482_ _L3483_ _L3484_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3486_ _L3487_ _L3488_ _L3489_ _L3490_ _L3491_ _L3492_ _L3493_ _L3485_ _L3485_ _L3494_ _L3495_ _L3496_ _L3497_ _L3498_ _L3499_ _L3500_ _L3501_ _L3502_ _L3503_][00 FF]
^L3466^[F0 FF 00 00 13 00][1B FF 0A 00][D4 FF 30 00][1B FF 20 00][D4 FF 4A 00][1B FF 02 00][D4 FF 30 00][F0 FF 2A 00 00 00][1B FF 20 00][D4 FF 4A 00][1B FF 0E 00][D4 FF 5B 00][00 FF]
^L3467^[D4 FF 30 00][F0 FF 00 00 14 00][1B FF 20 00][D4 FF 4A 00][1B FF 02 00][D4 FF 30 00][1B FF 1D 00][D4 FF 4A 00][1B FF 02 00][D4 FF 31 00][F0 FF 2A 00 00 00][1B FF 1D 00][D4 FF 31 00][1B FF 19 00][D4 FF 5B 00][00 FF]
^L3468^[F0 FF 00 00 15 00][1B FF 05 00][D4 FF 31 00][1B FF 20 00][D4 FF 32 00][1B FF 1A 00][D4 FF 47 00][1B FF 07 00][D4 FF 47 00][1B FF 07 00][D4 FF 47 00][1B FF 07 00][D4 FF 47 00][1B FF 07 00][D4 FF 47 00][1B FF 07 00][F0 FF 2A 00 00 00][D4 FF 47 00][1B FF 07 00][D4 FF 47 00][1B FF 07 00][D4 FF 47 00][1B FF 03 00][D4 FF 5B 00][1B FF 03 00][D4 FF 5B 00][1B FF 05 00][D4 FF 5B 00][00 FF]
@ -3188,25 +3188,25 @@
^L3501^[D4 FF 4F 00][F0 FF 00 00 18 00][1B FF 3C 00][F0 FF 2B 00 00 00][1B FF 46 00][00 FF]
^L3502^[1B FF 14 00][D4 FF 2D 00][F0 FF 00 00 02 00][1B FF 14 00][F0 FF 2F 00 00 00][1B FF 4C 00][00 FF]
^L3503^[1B FF 14 00][D4 FF 50 00][F0 FF 00 00 03 00][1B FF 28 00][F0 FF 2F 00 00 00][1B FF 80 00][00 FF]
^L3504^[D4 FF 1D 00]@[9F FF] tried[01 FF][C1 FF][87 FF] [2D FF]![02 FF]^L3505^[87 FF][BD FF 32 _L3466_ _L3467_ _L3468_ _L3469_ _L3470_ _L3471_ _L3472_ _L3473_ _L3474_ _L3475_ _L3476_ _L3477_ _L3478_ _L3478_ _L3478_ _L3478_ _L3479_ _L3480_ _L3481_ _L3482_ _L3483_ _L3484_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3486_ _L3487_ _L3488_ _L3489_ _L3490_ _L3491_ _L3492_ _L3493_ _L3485_ _L3485_ _L3494_ _L3495_ _L3496_ _L3497_ _L3498_ _L3499_ _L3500_ _L3501_ _L3502_ _L3503_][00 FF]
^L3504^[D4 FF 1D 00]@[86 FF _userupperthe_][9F FF] tried[01 FF][C1 FF][87 FF] [2D FF]![02 FF]^L3505^[87 FF][BD FF 32 _L3466_ _L3467_ _L3468_ _L3469_ _L3470_ _L3471_ _L3472_ _L3473_ _L3474_ _L3475_ _L3476_ _L3477_ _L3478_ _L3478_ _L3478_ _L3478_ _L3479_ _L3480_ _L3481_ _L3482_ _L3483_ _L3484_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3485_ _L3486_ _L3487_ _L3488_ _L3489_ _L3490_ _L3491_ _L3492_ _L3493_ _L3485_ _L3485_ _L3494_ _L3495_ _L3496_ _L3497_ _L3498_ _L3499_ _L3500_ _L3501_ _L3502_ _L3503_][00 FF]
^L3506^ tried to[01 FF] steal something, but failed![02 FF][00 FF]
^L3507^@[9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![02 FF][00 FF]
^L3508^@[9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 36 00][1B FF 1E 00][F0 FF 00 00 01 00][1B FF 3C 00][02 FF][00 FF]
^L3509^@[9F FF] used the[01 FF][C1 FF][87 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 3B 00][F0 FF 00 00 04 00][1B FF 3C 00][02 FF][00 FF]
^L3510^@[9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 3B 00][F0 FF 00 00 1E 00][1B FF 3C 00][02 FF][00 FF]
^L3511^@[9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00][1B FF 1E 00][D4 FF 63 00][F0 FF 00 00 1B 00][1B FF 3C 00][02 FF][00 FF]
^L3512^[C1 FF][87 FF][E3 FF][9A FF 02 00][81 FF _L3521_][E4 FF][81 FF _L3522_][E5 FF][81 FF _L3523_]@[9F FF] took[01 FF] the [90 FF 00][1A FF 02 00] out and[02 FF]@[AD FF] ate it.[D4 FF 44 00][02 FF][00 FF]
^L3513^[E5 FF][81 FF _L3517_]@[9F FF][C1 FF][87 FF] took[01 FF] the [90 FF 00][1A FF 02 00][02 FF]@and [AD FF] drank it.[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3514^[87 FF][88 FF][E5 FF][81 FF _L3516_][88 FF]@[9F FF] took[01 FF] the [90 FF 00][1A FF 02 00],[02 FF][C1 FF][87 FF] used it on[01 FF] [90 FF 00][1A FF 02 00] and[02 FF]@[AD FF] ate it.[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3515^@[9F FF][C1 FF][87 FF] ate[01 FF] the [90 FF 00][1A FF 02 00].[D4 FF 44 00][02 FF][1B FF 01 00][00 FF]
^L3516^@[9F FF] took[01 FF] the [90 FF 00][1A FF 02 00][02 FF][C1 FF][87 FF]@and used it on[01 FF] the [90 FF 00][1A FF 02 00].[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3517^@[9F FF][C1 FF][87 FF] drank[01 FF] the [90 FF 00][1A FF 02 00].[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3507^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![02 FF][00 FF]
^L3508^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 36 00][1B FF 1E 00][F0 FF 00 00 01 00][1B FF 3C 00][02 FF][00 FF]
^L3509^@[86 FF _userupperthe_][9F FF] used the[01 FF][C1 FF][87 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 3B 00][F0 FF 00 00 04 00][1B FF 3C 00][02 FF][00 FF]
^L3510^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00]![1B FF 1E 00][D4 FF 3B 00][F0 FF 00 00 1E 00][1B FF 3C 00][02 FF][00 FF]
^L3511^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used the[01 FF] [90 FF 00][1A FF 02 00][1B FF 1E 00][D4 FF 63 00][F0 FF 00 00 1B 00][1B FF 3C 00][02 FF][00 FF]
^L3512^[C1 FF][87 FF][E3 FF][9A FF 02 00][81 FF _L3521_][E4 FF][81 FF _L3522_][E5 FF][81 FF _L3523_]@[86 FF _userupperthe_][9F FF] took[01 FF] the [90 FF 00][1A FF 02 00] out and[02 FF]@[86 FF _targetupperthe_][AD FF] ate it.[D4 FF 44 00][02 FF][00 FF]
^L3513^[E5 FF][81 FF _L3517_]@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] took[01 FF] the [90 FF 00][1A FF 02 00][02 FF]@and [86 FF _targetlowerthe_][AD FF] drank it.[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3514^[87 FF][88 FF][E5 FF][81 FF _L3516_][88 FF]@[86 FF _userupperthe_][9F FF] took[01 FF] the [90 FF 00][1A FF 02 00],[02 FF][C1 FF][87 FF] used it on[01 FF] [90 FF 00][1A FF 02 00] and[02 FF]@[86 FF _targetupperthe_][AD FF] ate it.[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3515^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] ate[01 FF] the [90 FF 00][1A FF 02 00].[D4 FF 44 00][02 FF][1B FF 01 00][00 FF]
^L3516^@[86 FF _userupperthe_][9F FF] took[01 FF] the [90 FF 00][1A FF 02 00][02 FF][C1 FF][87 FF]@and used it on[01 FF] the [90 FF 00][1A FF 02 00].[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3517^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] drank[01 FF] the [90 FF 00][1A FF 02 00].[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3518^@[86 FF _L11000_][C1 FF][87 FF] ate[01 FF] the [90 FF 00][1A FF 02 00] together.[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3521^[E5 FF][81 FF _L3525_]@[9F FF][C1 FF][87 FF] took[01 FF] the [90 FF 00][1A FF 02 00][02 FF]@and [AD FF] drank it.[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3522^[87 FF][88 FF][E5 FF][81 FF _L3524_][88 FF]@[9F FF] took[01 FF] the [90 FF 00][1A FF 02 00],[02 FF][C1 FF][87 FF] used it on[01 FF] [90 FF 00][1A FF 02 00] and[02 FF]@[AD FF] ate it.[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3523^@[9F FF][C1 FF][87 FF] ate[01 FF] the [90 FF 00][1A FF 02 00].[D4 FF 44 00][02 FF][1B FF 01 00][00 FF]
^L3524^@[9F FF] took[01 FF] the [90 FF 00][1A FF 02 00][02 FF][C1 FF][87 FF]@and used it on[01 FF] the [90 FF 00][1A FF 02 00].[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3525^@[9F FF][C1 FF][87 FF] drank[01 FF] the [90 FF 00][1A FF 02 00].[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3521^[E5 FF][81 FF _L3525_]@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] took[01 FF] the [90 FF 00][1A FF 02 00][02 FF]@and [86 FF _targetlowerthe_][AD FF] drank it.[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3522^[87 FF][88 FF][E5 FF][81 FF _L3524_][88 FF]@[86 FF _userupperthe_][9F FF] took[01 FF] the [90 FF 00][1A FF 02 00],[02 FF][C1 FF][87 FF] used it on[01 FF] [90 FF 00][1A FF 02 00] and[02 FF]@[86 FF _targetupperthe_][AD FF] ate it.[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3523^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] ate[01 FF] the [90 FF 00][1A FF 02 00].[D4 FF 44 00][02 FF][1B FF 01 00][00 FF]
^L3524^@[86 FF _userupperthe_][9F FF] took[01 FF] the [90 FF 00][1A FF 02 00][02 FF][C1 FF][87 FF]@and used it on[01 FF] the [90 FF 00][1A FF 02 00].[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3525^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] drank[01 FF] the [90 FF 00][1A FF 02 00].[D4 FF 44 00][1B FF 01 00][02 FF][00 FF]
^L3526^[80 FF _L3528_]
^L3527^[83 FF 16 00][82 FF _L3528_]@(The bubble monkey took a[01 FF] piece of bubble gum,[02 FF]@chewed it and started blowing.)[02 FF][C6 FF][1C FF 52 01 _L4137_][CB FF 09 00 06 00][A0 FF C8 00 98 00 01 00][9E FF][D4 FF 0E 00][A5 FF C8 00 06 00][A0 FF C8 00 99 00 01 00][A0 FF B4 02 9A 00 01 00][9E FF][A5 FF C8 00 06 00][A5 FF B4 02 06 00][CC FF 09 00 01 00][00 FF]
^L3528^[8D FF 01 00][A8 FF 00]@[90 FF 00][1A FF 01 00] chewed a piece of[01 FF] bubble gum,[1B FF 0F 00] but it wasn't as[01 FF] satisfying as food.[1D FF][00 FF]
@ -3223,7 +3223,7 @@
^L3539^up and left.)[00 FF]
^L3540^@For a long time, this <For Sale>[01 FF] sign has been useful...[02 FF]@Now, it is old, its message[01 FF] made unreadable by the[01 FF] passage of time.[02 FF]@It has now lost its[01 FF] effectiveness.[02 FF]@Thank you, sign.[01 FF] Good bye, sign.[1D FF][00 FF]
^L3541^[83 FF B4 00][81 FF _L5528_][83 FF B5 00][81 FF _L5528_][83 FF 85 02][81 FF _L5528_][83 FF BE 01][81 FF _L5528_][83 FF 86 02][81 FF _L5528_][83 FF 87 02][81 FF _L5528_][83 FF 88 02][81 FF _L5528_][83 FF A3 02][81 FF _L5528_][83 FF B6 02][81 FF _L5528_][83 FF B7 02][81 FF _L5528_]^L5528^[00 FF]
^L3542^@[9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00]![02 FF]@Wait! Someone is already[01 FF] heading this way. Wait for[01 FF] them to get here first.[1D FF][00 FF]
^L3542^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used[01 FF] the [90 FF 00][1A FF 02 00]![02 FF]@Wait! Someone is already[01 FF] heading this way. Wait for[01 FF] them to get here first.[1D FF][00 FF]
^L3543^[CF FF 05 00][08 FF 86 02][08 FF F2 02][00 FF]
^L3544^[CF FF 06 00][08 FF 87 02][08 FF F2 02][00 FF]
^L3545^[CF FF 07 00][08 FF 88 02][08 FF F2 02][00 FF]
@ -3231,8 +3231,8 @@
^L3547^[86 FF _L3549_][00 FF]
^L3548^@If you are not feeling well, you[01 FF] should not ride a bicycle.[1D FF][00 FF]
^L3549^@There is only one seat,[1B FF 0F 00] so you[01 FF] can't ride the bike now.[1D FF][00 FF]
^L3550^@[9F FF][C1 FF][87 FF] used [90 FF 00][1A FF 02 00]![02 FF]@Now, [86 FF _userpersonal_] can figure out the[01 FF] length of things easily.[02 FF][00 FF]
^L3551^@[9F FF][C1 FF][87 FF] used the [90 FF 00][1A FF 02 00]![02 FF]@Now, he can fairly easily figure[01 FF] out the angle of various things.[02 FF][00 FF]
^L3550^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used [90 FF 00][1A FF 02 00]![02 FF]@Now, [86 FF _userpersonal_] can figure out the[01 FF] length of things easily.[02 FF][00 FF]
^L3551^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] used the [90 FF 00][1A FF 02 00]![02 FF]@Now, he can fairly easily figure[01 FF] out the angle of various things.[02 FF][00 FF]
^L3552^@(The Exit Mouse cannot do its[01 FF] job[02 FF]@unless it is in a hole, cave, or[01 FF] some place with an exit!)[1D FF][00 FF]
^L3553^@(At this point in time, the[01 FF] mouse is fast asleep.)[1D FF][00 FF]
^L3554^@You shouldn't let the mouse go[01 FF] until the pizza has arrived.[1D FF][00 FF]
@ -3252,10 +3252,10 @@
^L3569^[A8 FF 01]@There was a [90 FF 00][1A FF 02 00] in[01 FF] the locker.[02 FF][91 FF FF][82 FF _L3570_][88 FF][93 FF 00 00][89 FF][87 FF]@[90 FF 00][1A FF 01 00][87 FF] got it.[1D FF][D4 FF 74 00][1B FF 01 00][00 FF]
^L3570^@However, you already have too[01 FF] many things to carry.[02 FF][8D FF 01 00][87 FF]@[90 FF 00][1A FF 01 00][87 FF] left it in the locker.[1D FF][00 FF]
^L3571^[86 FF _L2200_][1B FF 3C 00][D8 FF 02 00 05 00][1B FF 3C 00][6B FF 03 00][FC FF 29 00][1B FF 01 00][A0 FF D0 07 8E 00 01 00][9E FF][AA FF D0 07][1B FF 78 00]@I'm calling out to you who I've[01 FF] never met...[02 FF]@I'm calling our friend who we've[01 FF] never met...[02 FF]@[0F FF]![1B FF 1E 00] [0F FF]![1B FF 14 00][01 FF] We need your help![02 FF]@I am [0E FF] and I am with[01 FF] another friend,[1B FF 0F 00] [0D FF]...[02 FF]@We are trying to contact you...[1D FF][1B FF 1E 00][C6 FF][1B FF 01 00][A5 FF D0 07 06 00][CB FF FF 00 06 00][14 FF 11 00][A0 FF D0 07 8F 00 01 00][86 FF _L4040_][14 FF 12 00][A0 FF D0 07 90 00 01 00][86 FF _L4040_][09 FF 0B 00][FC FF 06 00][80 FF _L4134_]
^L3572^[D4 FF 1D 00]^L3573^@[9F FF][C1 FF][87 FF] tried[01 FF] [2D FF]![D4 FF 57 00][02 FF]@But it didn't work very well![02 FF][00 FF]
^L3574^@[9F FF] suddenly thought about his[01 FF] Mom.[02 FF][00 FF]
^L3575^@[9F FF] thought about eating some[01 FF] [11 FF] and started craving it.[02 FF][00 FF]
^L3576^@[9F FF] lost all motivation[01 FF] in battle.[02 FF][00 FF]
^L3572^[D4 FF 1D 00]^L3573^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] tried[01 FF] [2D FF]![D4 FF 57 00][02 FF]@But it didn't work very well![02 FF][00 FF]
^L3574^@[86 FF _userupperthe_][9F FF] suddenly thought about his[01 FF] Mom.[02 FF][00 FF]
^L3575^@[86 FF _userupperthe_][9F FF] thought about eating some[01 FF] [11 FF] and started craving it.[02 FF][00 FF]
^L3576^@[86 FF _userupperthe_][9F FF] lost all motivation[01 FF] in battle.[02 FF][00 FF]
^L3577^@Pokey thought[01 FF] to himself![02 FF][00 FF]
^L3578^@Pokey acted[01 FF] all innocent![02 FF][00 FF]
^L3579^@Pokey smiled[01 FF] insincerely![02 FF][00 FF]
@ -3270,7 +3270,7 @@
^L3588^[89 FF][9A FF 0D 00][82 FF _L3589_][AF FF 0D][00 FF]
^L3589^[89 FF][9A FF 0E 00][82 FF _L3590_][AF FF 0E][00 FF]
^L3590^[AF FF 0F][00 FF]
^L3591^[D4 FF 1D 00]^L3592^@[9F FF][C1 FF][87 FF] tried[01 FF] [2D FF]![02 FF]@But, [86 FF _userpersonal_] didn't have enough PP.[02 FF][00 FF]
^L3591^[D4 FF 1D 00]^L3592^@[86 FF _userupperthe_][9F FF][C1 FF][87 FF] tried[01 FF] [2D FF]![02 FF]@But, [86 FF _userpersonal_] didn't have enough PP.[02 FF][00 FF]
^L3593^[61 FF 02 00]@<It hurts,[1B FF 1E 00][01 FF] [0D FF][1B FF 01 00]...>[61 FF 01 00][02 FF][00 FF]
^L3594^[61 FF 02 00]@<...I'm h...[1B FF 0A 00] a...[1B FF 0A 00] p...[1B FF 0A 00] p...[1B FF 0A 00] y...>[61 FF 01 00][02 FF][00 FF]
^L3595^[61 FF 02 00]@<...[1B FF 14 00]friends...>[61 FF 01 00][02 FF][00 FF]
@ -5208,17 +5208,25 @@
^L5860^[1C FF BA 00 _L5847_][1C FF 3A 00 _L5846_][1C FF 5B 00 _L5845_][1C FF 8C 00 _L5844_]^L5843^@At the Dinosaur Museum in[01 FF] Fourside...[02 FF]@A man called called Mr. Spoon[01 FF] has a heavy mustache...[86 FF _L5856_][00 FF]
^L5861^[F6 FF 01 00][00 FF]
^L5862^ my dear.[1D FF][00 FF]
^userlowerthe^[5E FF 02][00][95 FF 02 _none_ _lowerthe_]^none^[00 FF]
^userlowertheignore^[5E FF 02][01][95 FF 02 _none_ _lowerthe_][00 FF]
^lowerthe^the [00 FF]
^userupperthe^[5E FF 02][00][95 FF 02 _none_ _upperthe_][00 FF]
^useruppertheignore^[5E FF 02][01][95 FF 02 _none_ _upperthe_][00 FF]
^upperthe^The [00 FF]
^targetlowerthe^[5E FF 03][95 FF 02 _none_ _lowerthe_][00 FF]
^targetupperthe^[5E FF 03][95 FF 02 _none_ _upperthe_][00 FF]
^sirmaam^[9A FF 02 00][81 FF _maam_]sir[00 FF]
^maam^ma'am[00 FF]
^heshe^[9A FF 02 00][81 FF _she_]he[00 FF]
^she^she[00 FF]
^userpersonal^[95 FF 03 _he_ _she_ _it_]^he^he[00 FF]
^userpersonal^[5E FF 04][95 FF 03 _he_ _she_ _it_]^he^he[00 FF]
^it^it[00 FF]
^userpersonalcapital^[95 FF 03 _hecapital_ _shecapital_ _itcapital_]^hecapital^He[00 FF]
^userpersonalcapital^[5E FF 04][95 FF 03 _hecapital_ _shecapital_ _itcapital_]^hecapital^He[00 FF]
^shecapital^She[00 FF]
^itcapital^It[00 FF]
^hisher^[9A FF 02 00][81 FF _her_]his[00 FF]
^userpossessive^[95 FF 03 _his_ _her_ _its_]^his^his[00 FF]
^userpossessive^[5E FF 04][95 FF 03 _his_ _her_ _its_]^his^his[00 FF]
^its^its[00 FF]
^himher^[9A FF 02 00][81 FF _her_]him[00 FF]
^her^her[00 FF]