gr-sim: make transparent color GREY2

this allows black in sprites at expense of a few cycles

also allows susie
This commit is contained in:
Vince Weaver 2018-07-18 01:23:20 -04:00
parent 73e3998e7c
commit 8d04eedfcf
4 changed files with 366 additions and 344 deletions

View File

@ -1125,18 +1125,21 @@ int grsim_put_sprite_page(int page, unsigned char *sprite_data, int xpos, int yp
for(i=0;i<x;i++) {
a=*ptr;
cycles+=17;
if (a==0) {
// all transparent, skip
if (a==0xaa) {
}
else if ((a&0xf0)==0) {
// bottom transparent
else if ((a&0xf0)==0xa0) {
cycles+=8;
ram[address]&=0xf0;
ram[address]|=a;
ram[address]|=(a&0xf);
cycles+=19;
}
else if ((a&0x0f)==0) {
// top transparent
else if ((a&0x0f)==0xa) {
cycles+=8;
ram[address]&=0x0f;
ram[address]|=a;
ram[address]|=(a&0xf0);
cycles+=19;
}
else {

View File

@ -261,10 +261,12 @@ static int draw_battle_bottom(int enemy_type) {
// print("DEATER");
print(nameo);
vtab(23);
htab(15);
move_cursor();
print("SUSIE");
if (susie_out) {
vtab(23);
htab(15);
move_cursor();
print("SUSIE");
}
if (menu_state==MENU_NONE) {
@ -1540,7 +1542,12 @@ int boss_battle(void) {
/* Draw sky */
color_equals(COLOR_BLACK);
for(i=0;i<40;i++) {
for(i=0;i<20;i++) {
hlin_double(ram[DRAW_PAGE],0,39,i);
}
color_equals(COLOR_ORANGE);
for(i=20;i<39;i++) {
hlin_double(ram[DRAW_PAGE],0,39,i);
}
@ -1572,6 +1579,8 @@ int boss_battle(void) {
grsim_put_sprite(tfv_led_sword,ax-5,20);
}
grsim_put_sprite(susie_left,28,30);
if ((enemy_count&0xf)<4) {
grsim_put_sprite(roboknee1,enemy_x,16);
}

View File

@ -1,220 +1,227 @@
/* TFV Sprites */
unsigned char tfv_stand_right[]={
0x4,0x6,
0x00,0xDD,0xBD,0x00,
0x00,0xDD,0xDB,0x0B,
0x00,0x22,0x00,0x00,
0x00,0x22,0x02,0x0B,
0x00,0x22,0x00,0x00,
0x00,0x82,0x80,0x00,
0xAA,0xDD,0xBD,0xAA,
0xAA,0xDD,0xDB,0xAB,
0xAA,0x22,0xAA,0xAA,
0xAA,0x22,0xA2,0xAB,
0xAA,0x22,0xAA,0xAA,
0xAA,0x82,0x8A,0xAA,
};
unsigned char tfv_walk_right[]={
0x4,0x6,
0x00,0xDD,0xBD,0x00,
0x00,0xDD,0xDB,0x0B,
0x00,0x22,0x00,0x00,
0x00,0x22,0x02,0xB0,
0x22,0x02,0x20,0x00,
0x82,0x00,0x82,0x00,
0xAA,0xDD,0xBD,0xAA,
0xAA,0xDD,0xDB,0xAB,
0xAA,0x22,0xAA,0xAA,
0xAA,0x22,0xA2,0xBA,
0x22,0xA2,0x2A,0xAA,
0x82,0xAA,0x82,0xAA,
};
unsigned char tfv_stand_left[]={
0x4,0x6,
0x00,0xBD,0xDD,0x00,
0x0B,0xDB,0xDD,0x00,
0x00,0x00,0x22,0x00,
0x0B,0x02,0x22,0x00,
0x00,0x00,0x22,0x00,
0x00,0x80,0x82,0x00,
0xAA,0xBD,0xDD,0xAA,
0xAB,0xDB,0xDD,0xAA,
0xAA,0xAA,0x22,0xAA,
0xAB,0xA2,0x22,0xAA,
0xAA,0xAA,0x22,0xAA,
0xAA,0x8A,0x82,0xAA,
};
unsigned char tfv_walk_left[]={
0x4,0x6,
0x00,0xBD,0xDD,0x00,
0x0B,0xDB,0xDD,0x00,
0x00,0x00,0x22,0x00,
0xB0,0x02,0x22,0x00,
0x00,0x20,0x02,0x22,
0x00,0x82,0x00,0x82,
0xAA,0xBD,0xDD,0xAA,
0xAB,0xDB,0xDD,0xAA,
0xAA,0xAA,0x22,0xAA,
0xBA,0xA2,0x22,0xAA,
0xAA,0x2A,0xA2,0x22,
0xAA,0x82,0xAA,0x82,
};
unsigned char tfv_victory[]={
0x4,0x6,
0x00,0xBD,0x2b,0x00,
0x0B,0xDB,0x22,0x00,
0x00,0x00,0x22,0x00,
0x00,0x00,0x22,0x00,
0x00,0x20,0x02,0x22,
0x00,0x82,0x00,0x82,
0xAA,0xBD,0x2b,0xAA,
0xAB,0xDB,0x22,0xAA,
0xAA,0xAA,0x22,0xAA,
0xAA,0xAA,0x22,0xAA,
0xAA,0x2A,0xA2,0x22,
0xAA,0x82,0xAA,0x82,
};
unsigned char tfv_defeat[]={
0x7,0x3,
0x00,0x00,0x00,0x2b,0x00,0x00,0x00,
0x88,0x00,0x00,0x22,0xb0,0xb0,0xd0,
0xAA,0xAA,0xAA,0x2b,0xAA,0xAA,0xAA,
0x88,0xAA,0xAA,0x22,0xbA,0xbA,0xdA,
0x88,0x22,0x22,0x22,0xdd,0xdb,0xdd,
};
unsigned char tfv_led_sword[]={
0x5,0x3,
0x10,0x00,0x10,0x00,0x00,
0x10,0x01,0x10,0x10,0x10,
0x00,0x00,0x11,0x01,0x10,
0x1A,0xAA,0x1A,0xAA,0xAA,
0x1A,0xA1,0x1A,0x1A,0x1A,
0xAA,0xAA,0x11,0xA1,0x1A,
};
/* TFG Sprites */
unsigned char tfg_stand_right[]={
0x4,0x6,
0x00,0x88,0xb8,0x00,
0x00,0x88,0xbb,0x0B,
0x88,0x11,0x00,0x00,
0x00,0x11,0x01,0x0B,
0x10,0x11,0x11,0x00,
0x01,0x81,0x81,0x00,
0xAA,0x88,0xb8,0xAA,
0xAA,0x88,0xbb,0xAB,
0x88,0x11,0xAA,0xAA,
0xAA,0x11,0xA1,0xAB,
0x1A,0x11,0x11,0xAA,
0xA1,0x81,0x81,0xAA,
};
unsigned char tfg_walk_right[]={
0x4,0x6,
0x00,0x88,0xB8,0x00,
0x00,0x88,0xbb,0x0B,
0x88,0x11,0x00,0x00,
0x00,0x11,0x01,0xB0,
0x11,0x11,0x10,0x00,
0x81,0x01,0x81,0x00,
0xAA,0x88,0xB8,0xAA,
0xAA,0x88,0xbb,0xAB,
0x88,0x11,0xAA,0xAA,
0xAA,0x11,0xA1,0xBA,
0x11,0x11,0x1A,0xAA,
0x81,0xA1,0x81,0xAA,
};
unsigned char tfg_stand_left[]={
0x4,0x6,
0x00,0xb8,0x88,0x00,
0x0B,0xbb,0x88,0x00,
0x00,0x00,0x11,0x88,
0x0B,0x01,0x11,0x00,
0x00,0x11,0x11,0x10,
0x00,0x81,0x81,0x01,
0xAA,0xb8,0x88,0xAA,
0xAB,0xbb,0x88,0xAA,
0xAA,0xAA,0x11,0x88,
0xAB,0xA1,0x11,0xAA,
0xAA,0x11,0x11,0x1A,
0xAA,0x81,0x81,0xA1,
};
unsigned char tfg_walk_left[]={
0x4,0x6,
0x00,0xb8,0x88,0x00,
0x0b,0xbb,0x88,0x00,
0x00,0x00,0x11,0x88,
0xb0,0x01,0x11,0x00,
0x00,0x10,0x11,0x11,
0x00,0x81,0x01,0x81,
0xAA,0xb8,0x88,0xAA,
0xAb,0xbb,0x88,0xAA,
0xAA,0xAA,0x11,0x88,
0xbA,0xA1,0x11,0xAA,
0xAA,0x1A,0x11,0x11,
0xAA,0x81,0xA1,0x81,
};
unsigned char tfg_victory[]={
0x4,0x6,
0x00,0xb8,0x1b,0x00,
0x0B,0xbb,0x11,0x00,
0x00,0x00,0x11,0x88,
0x00,0x00,0x11,0x00,
0x00,0x10,0x11,0x11,
0x00,0x81,0x01,0x81,
0xAA,0xb8,0x1b,0xAA,
0xAB,0xbb,0x11,0xAA,
0xAA,0xAA,0x11,0x88,
0xAA,0xAA,0x11,0xAA,
0xAA,0x1A,0x11,0x11,
0xAA,0x81,0xA1,0x81,
};
unsigned char tfg_defeat[]={
0x7,0x3,
0x00,0x00,0x00,0x1b,0x00,0x00,0x00,
0x88,0x00,0x00,0x11,0xb0,0xb0,0x08,
0xAA,0xAA,0xAA,0x1b,0xAA,0xAA,0xAA,
0x88,0xAA,0xAA,0x11,0xbA,0xbA,0xA8,
0x88,0x11,0x11,0x81,0x8b,0x8b,0x88,
};
/* Bird Sprites */
unsigned char bird_stand_right[] = {
0x6,0x7,
0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0xdd,0x90,
0x00,0x00,0x00,0x00,0xdd,0x00,
0x0d,0xdd,0xdd,0xdd,0xdd,0x00,
0x00,0x00,0x0d,0xdd,0x0d,0x00,
0x00,0x00,0x00,0x99,0x00,0x00,
0x00,0x00,0x00,0x99,0x90,0x00,
0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
0xAA,0xAA,0xAA,0xAA,0xdd,0x9A,
0xAA,0xAA,0xAA,0xAA,0xdd,0xAA,
0xAd,0xdd,0xdd,0xdd,0xdd,0xAA,
0xAA,0xAA,0xAd,0xdd,0xAd,0xAA,
0xAA,0xAA,0xAA,0x99,0xAA,0xAA,
0xAA,0xAA,0xAA,0x99,0x9A,0xAA,
};
unsigned char bird_stand_left[] = {
0x6,0x7,
0x00,0x00,0x00,0x00,0x00,0x00,
0x90,0xdd,0x00,0x00,0x00,0x00,
0x00,0xdd,0x00,0x00,0x00,0x00,
0x00,0xdd,0xdd,0xdd,0xdd,0x0d,
0x00,0x0d,0xdd,0x0d,0x00,0x00,
0x00,0x00,0x99,0x00,0x00,0x00,
0x00,0x90,0x99,0x00,0x00,0x00,
0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
0x9A,0xdd,0xAA,0xAA,0xAA,0xAA,
0xAA,0xdd,0xAA,0xAA,0xAA,0xAA,
0xAA,0xdd,0xdd,0xdd,0xdd,0xAd,
0xAA,0xAd,0xdd,0xAd,0xAA,0xAA,
0xAA,0xAA,0x99,0xAA,0xAA,0xAA,
0xAA,0x9A,0x99,0xAA,0xAA,0xAA,
};
unsigned char bird_walk_right[] = {
0x6,0x7,
0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0xdd,0x90,
0x00,0x00,0x00,0x00,0xdd,0x00,
0x0d,0xdd,0xdd,0xdd,0xdd,0x00,
0x00,0x00,0x0d,0xdd,0x0d,0x00,
0x00,0x00,0x00,0x99,0x00,0x00,
0x00,0x00,0x99,0x00,0x99,0x00,
0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
0xAA,0xAA,0xAA,0xAA,0xdd,0x9A,
0xAA,0xAA,0xAA,0xAA,0xdd,0xAA,
0xAd,0xdd,0xdd,0xdd,0xdd,0xAA,
0xAA,0xAA,0xAd,0xdd,0xAd,0xAA,
0xAA,0xAA,0xAA,0x99,0xAA,0xAA,
0xAA,0xAA,0x99,0xAA,0x99,0xAA,
};
unsigned char bird_walk_left[] = {
0x6,0x7,
0x00,0x00,0x00,0x00,0x00,0x00,
0x90,0xdd,0x00,0x00,0x00,0x00,
0x00,0xdd,0x00,0x00,0x00,0x00,
0x00,0xdd,0xdd,0xdd,0xdd,0x0d,
0x00,0x0d,0xdd,0x0d,0x00,0x00,
0x00,0x00,0x99,0x00,0x00,0x00,
0x00,0x99,0x00,0x99,0x00,0x00,
0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
0x9A,0xdd,0xAA,0xAA,0xAA,0xAA,
0xAA,0xdd,0xAA,0xAA,0xAA,0xAA,
0xAA,0xdd,0xdd,0xdd,0xdd,0xAd,
0xAA,0xAd,0xdd,0xAd,0xAA,0xAA,
0xAA,0xAA,0x99,0xAA,0xAA,0xAA,
0xAA,0x99,0xAA,0x99,0xAA,0xAA,
};
/* with rider */
unsigned char bird_rider_stand_right[] = {
0x6,0x7,
0x00,0xdd,0xbd,0x00,0x00,0x00,
0x00,0xdd,0xdb,0x00,0xdd,0x90,
0x00,0x00,0x22,0x02,0xdd,0x00,
0x0d,0xdd,0xd2,0x22,0xdd,0x00,
0x00,0x00,0x0d,0x82,0x8d,0x00,
0x00,0x00,0x00,0x99,0x00,0x00,
0x00,0x00,0x00,0x99,0x90,0x00,
0xAA,0xdd,0xbd,0xAA,0xAA,0xAA,
0xAA,0xdd,0xdb,0xAA,0xdd,0x9A,
0xAA,0xAA,0x22,0xA2,0xdd,0xAA,
0xAd,0xdd,0xd2,0x22,0xdd,0xAA,
0xAA,0xAA,0xAd,0x82,0x8d,0xAA,
0xAA,0xAA,0xAA,0x99,0xAA,0xAA,
0xAA,0xAA,0xAA,0x99,0x9A,0xAA,
};
unsigned char bird_rider_walk_right[] = {
0x6,0x7,
0x00,0xdd,0xbd,0x00,0x00,0x00,
0x00,0xdd,0xdb,0x00,0xdd,0x90,
0x00,0x00,0x22,0x02,0xdd,0x00,
0x0d,0xdd,0xd2,0x22,0xdd,0x00,
0x00,0x00,0x0d,0x82,0x8d,0x00,
0x00,0x00,0x00,0x99,0x00,0x00,
0x00,0x00,0x99,0x00,0x99,0x00,
0xAA,0xdd,0xbd,0xAA,0xAA,0xAA,
0xAA,0xdd,0xdb,0xAA,0xdd,0x9A,
0xAA,0xAA,0x22,0xA2,0xdd,0xAA,
0xAd,0xdd,0xd2,0x22,0xdd,0xAA,
0xAA,0xAA,0xAd,0x82,0x8d,0xAA,
0xAA,0xAA,0xAA,0x99,0xAA,0xAA,
0xAA,0xAA,0x99,0xAA,0x99,0xAA,
};
unsigned char bird_rider_stand_left[] = {
0x6,0x7,
0x00,0x00,0x00,0xbd,0xdd,0x00,
0x90,0xdd,0x00,0xdb,0xdd,0x00,
0x00,0xdd,0x02,0x22,0x00,0x00,
0x00,0xdd,0x22,0xd2,0xdd,0x0d,
0x00,0x8d,0x82,0x0d,0x00,0x00,
0x00,0x00,0x99,0x00,0x00,0x00,
0x00,0x90,0x99,0x00,0x00,0x00,
0xAA,0xAA,0xAA,0xbd,0xdd,0xAA,
0x9A,0xdd,0xAA,0xdb,0xdd,0xAA,
0xAA,0xdd,0xA2,0x22,0xAA,0xAA,
0xAA,0xdd,0x22,0xd2,0xdd,0xAd,
0xAA,0x8d,0x82,0xAd,0xAA,0xAA,
0xAA,0xAA,0x99,0xAA,0xAA,0xAA,
0xAA,0x9A,0x99,0xAA,0xAA,0xAA,
};
unsigned char bird_rider_walk_left[] = {
0x6,0x7,
0x00,0x00,0x00,0xbd,0xdd,0x00,
0x90,0xdd,0x00,0xdb,0xdd,0x00,
0x00,0xdd,0x02,0x22,0x00,0x00,
0x00,0xdd,0x22,0xd2,0xdd,0x0d,
0x00,0x8d,0x82,0x0d,0x00,0x00,
0x00,0x00,0x99,0x00,0x00,0x00,
0x00,0x99,0x00,0x99,0x00,0x00,
0xAA,0xAA,0xAA,0xbd,0xdd,0xAA,
0x9A,0xdd,0xAA,0xdb,0xdd,0xAA,
0xAA,0xdd,0xA2,0x22,0xAA,0xAA,
0xAA,0xdd,0x22,0xd2,0xdd,0xAd,
0xAA,0x8d,0x82,0xAd,0xAA,0xAA,
0xAA,0xAA,0x99,0xAA,0xAA,0xAA,
0xAA,0x99,0xAA,0x99,0xAA,0xAA,
};
/* Susie */
unsigned char susie_left[]={
0xb,0x4,
0xAA,0x0A,0x50,0x0f,0x50,0x00,0x00,0x00,0x00,0x00,0x0A,
0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,
0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xAA,0xAA,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xAA,
};
@ -224,9 +231,9 @@ unsigned char bird_rider_walk_left[] = {
#if 0
unsigned char test_sprite[]={
0x8,0x4,
0x55,0x50,0x00,0x00,0x00,0x00,0x00,0x00,
0x55,0x55,0x55,0x00,0x00,0x00,0x00,0x00,
0xff,0x1f,0x4f,0x2f,0xff,0x22,0x20,0x00,
0x55,0x5A,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
0x55,0x55,0x55,0xAA,0xAA,0xAA,0xAA,0xAA,
0xff,0x1f,0x4f,0x2f,0xff,0x22,0x2A,0xAA,
0x5f,0x5f,0x5f,0x5f,0xff,0xf2,0xf2,0xf2,
};
#endif
@ -234,171 +241,171 @@ unsigned char test_sprite[]={
unsigned char splash_forward[]={
0x7,0x2,
0x00,0xee,0x00,0x00,0x00,0xee,0x00,
0xee,0x00,0x00,0x00,0x00,0x00,0xee,
0xAA,0xee,0xAA,0xAA,0xAA,0xee,0xAA,
0xee,0xAA,0xAA,0xAA,0xAA,0xAA,0xee,
};
unsigned char splash_right[]={
0x7,0x2,
0x00,0x00,0x00,0x00,0x00,0xee,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0xee,
0xAA,0xAA,0xAA,0xAA,0xAA,0xee,0xAA,
0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xee,
};
unsigned char splash_left[]={
0x7,0x2,
0x00,0xee,0x00,0x00,0x00,0x00,0x00,
0xee,0x00,0x00,0x00,0x00,0x00,0x00,
0xAA,0xee,0xAA,0xAA,0xAA,0xAA,0xAA,
0xee,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
};
unsigned char shadow_forward[]={
0x3,0x2,
0x00,0xaa,0x00,
0xa0,0xaa,0xa0,
0xAA,0xaa,0xAA,
0xaA,0xaa,0xaA,
};
unsigned char shadow_right[]={
0x3,0x2,
0xa0,0x00,0xaa,
0x00,0x0a,0xa0,
0xaA,0xAA,0xaa,
0xAA,0xAa,0xaA,
};
unsigned char shadow_left[]={
0x3,0x2,
0xaa,0x00,0xa0,
0xa0,0x0a,0x00,
0xaa,0xAA,0xaA,
0xaA,0xAa,0xAA,
};
unsigned char ship_forward[]={
0x9,0x5,
0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x66,0xff,0x66,0x00,0x00,0x00,
0x00,0x00,0x70,0x2f,0x12,0x2f,0x70,0x00,0x00,
0xf0,0xf7,0xf7,0xf2,0xd9,0xf2,0xf7,0xf7,0xf0,
0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,
0xAA,0xAA,0xAA,0xAA,0xff,0xAA,0xAA,0xAA,0xAA,
0xAA,0xAA,0xAA,0x66,0xff,0x66,0xAA,0xAA,0xAA,
0xAA,0xAA,0x7A,0x2f,0x12,0x2f,0x7A,0xAA,0xAA,
0xfA,0xf7,0xf7,0xf2,0xd9,0xf2,0xf7,0xf7,0xfA,
0xAA,0xAA,0xAA,0xAA,0xAd,0xAA,0xAA,0xAA,0xAA,
};
unsigned char ship_right[]={
0x9,0x5,
0x00,0x00,0x00,0x00,0x00,0x60,0x60,0xf0,0x00,
0x00,0xf0,0x70,0x70,0xf6,0xf6,0x6f,0x66,0x00,
0x00,0x07,0xff,0x2f,0x12,0x27,0xf6,0x00,0x00,
0x00,0x00,0x00,0xdd,0xd9,0xf2,0x77,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x0f,0xff,0x70,0x00,
0xAA,0xAA,0xAA,0xAA,0xAA,0x6A,0x6A,0xfA,0xAA,
0xAA,0xfA,0x7A,0x7A,0xf6,0xf6,0x6f,0x66,0xAA,
0xAA,0xA7,0xff,0x2f,0x12,0x27,0xf6,0xAA,0xAA,
0xAA,0xAA,0xAA,0xdd,0xd9,0xf2,0x77,0xAA,0xAA,
0xAA,0xAA,0xAA,0xAA,0xAA,0xAf,0xff,0x7A,0xAA,
};
unsigned char ship_left[]={
0x9,0x5,
0x00,0xf0,0x60,0x60,0x00,0x00,0x00,0x00,0x00,
0x00,0x66,0x6f,0xf6,0xf6,0x70,0x70,0xf0,0x00,
0x00,0x00,0xf6,0x27,0x12,0x2f,0xff,0x07,0x00,
0x00,0x00,0x77,0xf2,0xd9,0xdd,0x00,0x00,0x00,
0x00,0x70,0xff,0x0f,0x00,0x00,0x00,0x00,0x00,
0xAA,0xfA,0x6A,0x6A,0xAA,0xAA,0xAA,0xAA,0xAA,
0xAA,0x66,0x6f,0xf6,0xf6,0x7A,0x7A,0xfA,0xAA,
0xAA,0xAA,0xf6,0x27,0x12,0x2f,0xff,0xA7,0xAA,
0xAA,0xAA,0x77,0xf2,0xd9,0xdd,0xAA,0xAA,0xAA,
0xAA,0x7A,0xff,0xAf,0xAA,0xAA,0xAA,0xAA,0xAA,
};
/* Enemies */
unsigned char killer_crab[]={
0x9,0x6,
0x99,0x00,0x99,0x00,0x00,0x00,0x99,0x00,0x99,
0x06,0x60,0x06,0x00,0x00,0x00,0x06,0x60,0x06,
0x00,0x06,0x40,0x49,0x44,0x49,0x40,0x06,0x00,
0x06,0x04,0x44,0x44,0x44,0x44,0x44,0x04,0x06,
0x00,0x60,0x04,0x64,0x04,0x64,0x04,0x60,0x00,
0x44,0x00,0x40,0x04,0x00,0x04,0x40,0x00,0x44,
0x99,0xAA,0x99,0xAA,0xAA,0xAA,0x99,0xAA,0x99,
0xA6,0x6A,0xA6,0xAA,0xAA,0xAA,0xA6,0x6A,0xA6,
0xAA,0xA6,0x4A,0x49,0x44,0x49,0x4A,0xA6,0xAA,
0xA6,0xA4,0x44,0x44,0x44,0x44,0x44,0xA4,0xA6,
0xAA,0x6A,0xA4,0x64,0xA4,0x64,0xA4,0x6A,0xAA,
0x44,0xAA,0x4A,0xA4,0xAA,0xA4,0x4A,0xAA,0x44,
};
unsigned char plain_fish[]={
0x9,0x6,
0x60,0x00,0x09,0x69,0x60,0x60,0x00,0x00,0x00,
0x64,0x60,0x66,0x66,0x66,0x66,0x66,0x60,0x00,
0x64,0x66,0x66,0x66,0x46,0x66,0x64,0x66,0x00,
0x6A,0xAA,0xA9,0x69,0x6A,0x6A,0xAA,0xAA,0xAA,
0x64,0x6A,0x66,0x66,0x66,0x66,0x66,0x6A,0xAA,
0x64,0x66,0x66,0x66,0x46,0x66,0x64,0x66,0xAA,
0x64,0x66,0x66,0x44,0x66,0x66,0x66,0x66,0xee,
0x64,0x66,0x66,0x66,0x64,0x66,0x66,0x6e,0x05,
0x64,0x00,0x06,0x66,0x66,0x66,0x06,0x00,0x00,
0x64,0x66,0x66,0x66,0x64,0x66,0x66,0x6e,0xA5,
0x64,0xAA,0xA6,0x66,0x66,0x66,0xA6,0xAA,0xAA,
};
unsigned char evil_tree[]={
0x9,0x6,
0x80,0x44,0x88,0x44,0x44,0x44,0x88,0x44,0x80,
0x8A,0x44,0x88,0x44,0x44,0x44,0x88,0x44,0x8A,
0x48,0x84,0x84,0x44,0x44,0x44,0x84,0x84,0x48,
0x04,0x04,0x44,0x98,0x88,0x98,0x44,0x04,0x04,
0x00,0x08,0x08,0x88,0x88,0x88,0x08,0x08,0x00,
0x00,0x00,0x00,0x88,0x89,0x88,0x00,0x00,0x00,
0x00,0x00,0x00,0x88,0x88,0x88,0x00,0x00,0x00,
0xA4,0xA4,0x44,0x98,0x88,0x98,0x44,0xA4,0xA4,
0xAA,0xA8,0xA8,0x88,0x88,0x88,0xA8,0xA8,0xAA,
0xAA,0xAA,0xAA,0x88,0x89,0x88,0xAA,0xAA,0xAA,
0xAA,0xAA,0xAA,0x88,0x88,0x88,0xAA,0xAA,0xAA,
};
unsigned char wood_elf[]={
0x9,0x6,
0x00,0x00,0x00,0x00,0xdd,0xbd,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0xdd,0xbb,0x0b,0x00,0x00,
0x00,0x00,0x00,0x00,0xdd,0x4b,0x44,0x00,0x00,
0x00,0x00,0xd0,0xdd,0x4d,0x44,0x00,0x00,0x00,
0x00,0x40,0x4d,0x4d,0x44,0xb4,0x00,0x00,0x00,
0x04,0x04,0x00,0x00,0x00,0xbb,0x30,0x00,0x00,
0xAA,0xAA,0xAA,0xAA,0xdd,0xbd,0xAA,0xAA,0xAA,
0xAA,0xAA,0xAA,0xAA,0xdd,0xbb,0xAb,0xAA,0xAA,
0xAA,0xAA,0xAA,0xAA,0xdd,0x4b,0x44,0xAA,0xAA,
0xAA,0xAA,0xdA,0xdd,0x4d,0x44,0xAA,0xAA,0xAA,
0xAA,0x4A,0x4d,0x4d,0x44,0xb4,0xAA,0xAA,0xAA,
0xA4,0xA4,0xAA,0xAA,0xAA,0xbb,0x3A,0xAA,0xAA,
};
unsigned char giant_bee[]={
0x9,0x6,
0x00,0x60,0xe0,0x00,0x00,0x00,0x00,0x00,0x80,
0x00,0x86,0x66,0x6e,0xe0,0xd0,0x80,0x55,0x00,
0xdd,0x88,0x88,0xd6,0x86,0xd6,0x88,0x85,0x00,
0xdd,0x88,0x88,0xdd,0x88,0xdd,0xd8,0x55,0x06,
0x0d,0x88,0x88,0xdd,0x88,0xdd,0x0d,0x00,0x00,
0x50,0x05,0x00,0x50,0x05,0x00,0x05,0x50,0x00,
0xAA,0x6A,0xeA,0xAA,0xAA,0xAA,0xAA,0xAA,0x8A,
0xAA,0x86,0x66,0x6e,0xeA,0xdA,0x8A,0x55,0xAA,
0xdd,0x88,0x88,0xd6,0x86,0xd6,0x88,0x85,0xAA,
0xdd,0x88,0x88,0xdd,0x88,0xdd,0xd8,0x55,0xA6,
0xAd,0x88,0x88,0xdd,0x88,0xdd,0xAd,0xAA,0xAA,
0x5A,0xA5,0xAA,0x5A,0xA5,0xAA,0xA5,0x5A,0xAA,
};
unsigned char procrastinon[]={
0x9,0x6,
0x00,0x00,0x00,0x50,0x85,0x88,0x80,0x00,0x00,
0x00,0x00,0x55,0x88,0x88,0x88,0x88,0xdd,0x00,
0x00,0x00,0x55,0x88,0x88,0x88,0x88,0xdd,0x00,
0x00,0x00,0x05,0x88,0x88,0x88,0xd8,0x0d,0x00,
0x00,0x00,0x00,0x00,0x08,0x0d,0x00,0x00,0x00,
0x00,0x00,0x00,0x50,0x50,0x50,0x50,0x00,0x00,
0xAA,0xAA,0xAA,0x5A,0x85,0x88,0x8A,0xAA,0xAA,
0xAA,0xAA,0x55,0x88,0x88,0x88,0x88,0xdd,0xAA,
0xAA,0xAA,0x55,0x88,0x88,0x88,0x88,0xdd,0xAA,
0xAA,0xAA,0xA5,0x88,0x88,0x88,0xd8,0xAd,0xAA,
0xAA,0xAA,0xAA,0xAA,0xA8,0xAd,0xAA,0xAA,0xAA,
0xAA,0xAA,0xAA,0x5A,0x5A,0x5A,0x5A,0xAA,0xAA,
};
unsigned char ice_fish[]={
0x9,0x6,
0x10,0x00,0x01,0x71,0x70,0x70,0x00,0x00,0x00,
0x17,0x70,0x77,0x77,0x77,0x77,0x77,0x70,0x00,
0x17,0x77,0x77,0x77,0xf7,0x77,0x71,0x77,0x00,
0x1A,0xAA,0xA1,0x71,0x7A,0x7A,0xAA,0xAA,0xAA,
0x17,0x7A,0x77,0x77,0x77,0x77,0x77,0x7A,0xAA,
0x17,0x77,0x77,0x77,0xf7,0x77,0x71,0x77,0xAA,
0x17,0x77,0x77,0xff,0x77,0x77,0x77,0x77,0x55,
0x17,0x77,0x77,0x77,0x7f,0x77,0x77,0x75,0x01,
0x17,0x00,0x07,0x77,0x77,0x77,0x07,0x00,0x00,
0x17,0x77,0x77,0x77,0x7f,0x77,0x77,0x75,0xA1,
0x17,0xAA,0xA7,0x77,0x77,0x77,0xA7,0xAA,0xAA,
};
unsigned char evil_penguin[]={
0x9,0x6,
0x00,0x00,0x00,0x00,0x00,0x50,0x50,0x00,0x00,
0x00,0x00,0x00,0x00,0x50,0x55,0x7c,0xc0,0x00,
0x00,0x00,0x00,0x50,0x55,0x77,0x00,0x00,0x00,
0x00,0x00,0x00,0x77,0x55,0x77,0x00,0x00,0x00,
0x00,0x00,0x55,0x55,0x77,0x07,0x00,0x00,0x00,
0x00,0x00,0x00,0xcc,0xc0,0x00,0x00,0x00,0x00,
0xAA,0xAA,0xAA,0xAA,0xAA,0x5A,0x5A,0xAA,0xAA,
0xAA,0xAA,0xAA,0xAA,0x5A,0x55,0x7c,0xcA,0xAA,
0xAA,0xAA,0xAA,0x5A,0x55,0x77,0xAA,0xAA,0xAA,
0xAA,0xAA,0xAA,0x77,0x55,0x77,0xAA,0xAA,0xAA,
0xAA,0xAA,0x55,0x55,0x77,0xA7,0xAA,0xAA,0xAA,
0xAA,0xAA,0xAA,0xcc,0xcA,0xAA,0xAA,0xAA,0xAA,
};
unsigned char roboknee1[]={
0x9,0xb,
0x55,0x55,0xb5,0x00,0x00,0x00,0x00,0x00,0x00,
0x55,0xbb,0xbb,0x0b,0x00,0x50,0xd5,0x05,0x50,
0x05,0xb5,0x0b,0x00,0x00,0x55,0xd0,0x0d,0x55,
0x88,0x88,0x88,0x00,0x00,0x50,0x05,0x05,0x00,
0x88,0x88,0x88,0x08,0x0b,0x05,0x00,0x00,0x00,
0x88,0x88,0x88,0x80,0xb0,0x00,0x00,0x00,0x00,
0x58,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,
0x55,0xe1,0xe7,0x00,0x00,0x00,0x00,0x00,0x00,
0x55,0x7e,0x4e,0x00,0x00,0x00,0x00,0x00,0x00,
0xf5,0x07,0xf7,0x00,0x00,0x00,0x00,0x00,0x00,
0x88,0x88,0x88,0x88,0x00,0x00,0x00,0x00,0x00,
0x55,0x55,0xb5,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
0x55,0xbb,0xbb,0xAb,0xAA,0x5A,0xd5,0xA5,0x5A,
0xA5,0xb5,0xAb,0xAA,0xAA,0x55,0xdA,0xAd,0x55,
0x88,0x88,0x88,0xAA,0xAA,0x5A,0xA5,0xA5,0xAA,
0x88,0x88,0x88,0xA8,0xAb,0xA5,0xAA,0xAA,0xAA,
0x88,0x88,0x88,0x8A,0xbA,0xAA,0xAA,0xAA,0xAA,
0x58,0x78,0x78,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
0x55,0xe1,0xe7,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
0x55,0x7e,0x4e,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
0xf5,0xA7,0xf7,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
0x88,0x88,0x88,0x88,0xAA,0xAA,0xAA,0xAA,0xAA,
};
unsigned char roboknee2[]={
0x9,0xb,
0x55,0x55,0xb5,0x00,0x00,0x50,0xd5,0x05,0x50,
0x55,0xbb,0xbb,0x0b,0x00,0x55,0xd0,0x0d,0x55,
0x05,0xb5,0x0b,0x00,0x00,0x50,0x05,0x05,0x00,
0x88,0x88,0x88,0x80,0xb0,0x05,0x00,0x00,0x00,
0x88,0x88,0x88,0x08,0x0b,0x00,0x00,0x00,0x00,
0x88,0x88,0x88,0x00,0x00,0x00,0x00,0x00,0x00,
0x58,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,
0x55,0xe1,0x17,0xe0,0x00,0x00,0x00,0x00,0x00,
0x55,0x7e,0x0e,0x7e,0x2e,0x00,0x00,0x00,0x00,
0xf5,0x07,0x00,0x87,0x87,0x00,0x00,0x00,0x00,
0x88,0x88,0x00,0x08,0x08,0x00,0x00,0x00,0x00,
0x55,0x55,0xb5,0xAA,0xAA,0x5A,0xd5,0xA5,0x5A,
0x55,0xbb,0xbb,0xAb,0xAA,0x55,0xdA,0xAd,0x55,
0xA5,0xb5,0xAb,0xAA,0xAA,0x5A,0xA5,0xA5,0xAA,
0x88,0x88,0x88,0x8A,0xbA,0xA5,0xAA,0xAA,0xAA,
0x88,0x88,0x88,0xA8,0xAb,0xAA,0xAA,0xAA,0xAA,
0x88,0x88,0x88,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
0x58,0x78,0x78,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
0x55,0xe1,0x17,0xeA,0xAA,0xAA,0xAA,0xAA,0xAA,
0x55,0x7e,0xAe,0x7e,0x2e,0xAA,0xAA,0xAA,0xAA,
0xf5,0xA7,0xAA,0x87,0x87,0xAA,0xAA,0xAA,0xAA,
0x88,0x88,0xAA,0xA8,0xA8,0xAA,0xAA,0xAA,0xAA,
};
@ -407,33 +414,33 @@ unsigned char roboknee2[]={
/* Summons */
unsigned char metrocat[]={
0xb,0x9,
0x88,0x80,0x00,0x00,0x00,0x50,0x00,0x00,0x00,0x80,0x88,
0x88,0x8A,0xAA,0xAA,0xAA,0x5A,0xAA,0xAA,0xAA,0x8A,0x88,
0x88,0x58,0x55,0x88,0x55,0x55,0x55,0x88,0x55,0x58,0x88,
0x58,0x55,0x55,0x55,0x88,0x55,0x88,0x55,0x55,0x55,0x58,
0x58,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x58,
0x88,0xdd,0x88,0xdd,0x55,0x75,0x55,0xdd,0x88,0xdd,0x88,
0x88,0xdd,0x00,0xdd,0x55,0x75,0x55,0xdd,0x00,0xdd,0x88,
0x85,0x55,0x55,0x55,0x55,0x77,0x55,0x55,0x55,0x55,0x85,
0x88,0x55,0x85,0x55,0xb5,0xb7,0xb5,0x55,0x85,0x55,0x88,
0x00,0x55,0x55,0xf5,0xff,0x8b,0xff,0xf5,0x55,0x55,0x00,
0x00,0x00,0x05,0x57,0xf8,0xf7,0xf8,0x57,0x05,0x00,0x00,
0xAA,0x55,0x55,0xf5,0xff,0x8b,0xff,0xf5,0x55,0x55,0xAA,
0xAA,0xAA,0xA5,0x57,0xf8,0xf7,0xf8,0x57,0xA5,0xAA,0xAA,
};
unsigned char vortex_cannon[]={
0x5,0x7,
0x88,0x98,0x98,0x80,0x00,
0x88,0x98,0x98,0x8A,0xAA,
0xdd,0xd8,0x89,0x99,0x88,
0xdd,0xdd,0xd8,0x98,0x88,
0xdd,0x55,0xdd,0x99,0x88,
0xdd,0x55,0xdd,0x99,0x88,
0x0d,0xdd,0xdd,0x99,0x88,
0x00,0x0d,0xdd,0x89,0x88,
0xAd,0xdd,0xdd,0x99,0x88,
0xAA,0xAd,0xdd,0x89,0x88,
};
unsigned char vortex[]={
0x3,0x3,
0x10,0x01,0x10,
0x11,0x00,0x11,
0x01,0x10,0x01,
0x1A,0xA1,0x1A,
0x11,0xAA,0x11,
0xA1,0x1A,0xA1,
};
/****************************************/
@ -443,92 +450,92 @@ unsigned char vortex[]={
/* Palm Tree */
unsigned char palm_tree[]={
0x08,0x07,
0x00,0x00,0x00,0x00,0x00,0x40,0x04,0x40,
0x00,0x40,0x04,0x44,0x84,0x40,0x00,0x00,
0x04,0x00,0x40,0x05,0x88,0x00,0x04,0x40,
0x00,0x44,0x00,0x00,0x08,0x80,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x88,0x00,0x00,
0x00,0x00,0x00,0x00,0x80,0x08,0x00,0x00,
0x00,0x00,0x00,0x00,0x88,0x00,0x00,0x00,
0x8,0x7,
0xAA,0xAA,0xAA,0xAA,0xAA,0x4A,0xA4,0x4A,
0xAA,0x4A,0xA4,0x44,0x84,0x4A,0xAA,0xAA,
0xA4,0xAA,0x4A,0xA5,0x88,0xAA,0xA4,0x4A,
0xAA,0x44,0xAA,0xAA,0xA8,0x8A,0xAA,0xAA,
0xAA,0xAA,0xAA,0xAA,0xAA,0x88,0xAA,0xAA,
0xAA,0xAA,0xAA,0xAA,0x8A,0xA8,0xAA,0xAA,
0xAA,0xAA,0xAA,0xAA,0x88,0xAA,0xAA,0xAA,
};
/* Pine Tree */
unsigned char pine_tree[]={
0x07,0x06,
0x00,0x00,0x00,0x44,0x00,0x00,0x00,
0x00,0x00,0x00,0x44,0x00,0x00,0x00,
0x00,0x00,0x44,0x44,0x44,0x00,0x00,
0x00,0x04,0x44,0x44,0x44,0x04,0x00,
0x04,0x04,0x04,0x84,0x04,0x04,0x04,
0x00,0x00,0x00,0x88,0x00,0x00,0x00,
0x7,0x6,
0xAA,0xAA,0xAA,0x44,0xAA,0xAA,0xAA,
0xAA,0xAA,0xAA,0x44,0xAA,0xAA,0xAA,
0xAA,0xAA,0x44,0x44,0x44,0xAA,0xAA,
0xAA,0xA4,0x44,0x44,0x44,0xA4,0xAA,
0xA4,0xA4,0xA4,0x84,0xA4,0xA4,0xA4,
0xAA,0xAA,0xAA,0x88,0xAA,0xAA,0xAA,
};
/* Snowy Tree */
unsigned char snowy_tree[]={
0x07,0x06,
0x00,0x00,0x00,0x77,0x00,0x00,0x00,
0x00,0x00,0x00,0x77,0x00,0x00,0x00,
0x00,0x00,0x77,0x44,0x44,0x00,0x00,
0x00,0x07,0x44,0x44,0x44,0x04,0x00,
0x07,0x04,0x04,0x84,0x04,0x04,0x04,
0x00,0x00,0x00,0x88,0x00,0x00,0x00,
0x7,0x6,
0xAA,0xAA,0xAA,0x77,0xAA,0xAA,0xAA,
0xAA,0xAA,0xAA,0x77,0xAA,0xAA,0xAA,
0xAA,0xAA,0x77,0x44,0x44,0xAA,0xAA,
0xAA,0xA7,0x44,0x44,0x44,0xA4,0xAA,
0xA7,0xA4,0xA4,0x84,0xA4,0xA4,0xA4,
0xAA,0xAA,0xAA,0x88,0xAA,0xAA,0xAA,
};
/* Cactus */
unsigned char cactus[]={
0x05,0x06,
0x00,0x00,0x44,0x00,0x00,
0x44,0x00,0x44,0x00,0x40,
0x44,0x00,0x44,0x00,0x44,
0x04,0x04,0x44,0x04,0x04,
0x00,0x00,0x44,0x00,0x00,
0x00,0x00,0x44,0x00,0x00,
0x5,0x6,
0xAA,0xAA,0x44,0xAA,0xAA,
0x44,0xAA,0x44,0xAA,0x4A,
0x44,0xAA,0x44,0xAA,0x44,
0xA4,0xA4,0x44,0xA4,0xA4,
0xAA,0xAA,0x44,0xAA,0xAA,
0xAA,0xAA,0x44,0xAA,0xAA,
};
/* Mountain */
unsigned char mountain[]={
0x0d,0x07,
0x00,0x00,0x00,0x00,0x00,0x70,0xf7,0x70,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x77,0xff,0xff,0x77,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x90,0x8D,0x88,0x48,0x58,0x85,0x50,0x00,0x00,0x00,
0x00,0x00,0xD0,0x9D,0x88,0x88,0x88,0x48,0x88,0x55,0x50,0x00,0x00,
0x00,0xD0,0x89,0x88,0x88,0x89,0x88,0x88,0x88,0x88,0x85,0x75,0x00,
0xD0,0x89,0x98,0x88,0x98,0x88,0x84,0x88,0x88,0x88,0x85,0x88,0x55,
0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x88,0x88,0x88,0x08,0x00,0x00,
0xd,0x7,
0xAA,0xAA,0xAA,0xAA,0xAA,0x7A,0xf7,0x7A,0xAA,0xAA,0xAA,0xAA,0xAA,
0xAA,0xAA,0xAA,0xAA,0x77,0xff,0xff,0x77,0xAA,0xAA,0xAA,0xAA,0xAA,
0xAA,0xAA,0xAA,0x9A,0x8D,0x88,0x48,0x58,0x85,0x5A,0xAA,0xAA,0xAA,
0xAA,0xAA,0xDA,0x9D,0x88,0x88,0x88,0x48,0x88,0x55,0x5A,0xAA,0xAA,
0xAA,0xDA,0x89,0x88,0x88,0x89,0x88,0x88,0x88,0x88,0x85,0x75,0xAA,
0xDA,0x89,0x98,0x88,0x98,0x88,0x84,0x88,0x88,0x88,0x85,0x88,0x55,
0xAA,0xAA,0xA8,0xA8,0xA8,0xA8,0xA8,0x88,0x88,0x88,0xA8,0xAA,0xAA,
};
/* Lightning, @25,4 */
unsigned char lightning[]={
0x06,0x05,
0x00,0x00,0xdd,0x00,0x00,0x00,
0x00,0x00,0x00,0xdd,0x00,0x00,
0x00,0x00,0xdd,0x00,0xdd,0x00,
0x00,0xdd,0x00,0x00,0xdd,0x00,
0xdd,0x00,0x00,0x0d,0x00,0xdd,
0x6,0x5,
0xAA,0xAA,0xdd,0xAA,0xAA,0xAA,
0xAA,0xAA,0xAA,0xdd,0xAA,0xAA,
0xAA,0xAA,0xdd,0xAA,0xdd,0xAA,
0xAA,0xdd,0xAA,0xAA,0xdd,0xAA,
0xdd,0xAA,0xAA,0xAd,0xAA,0xdd,
};
/* Spool Coffee Table */
unsigned char spool[]={
0x0a,0x06,
0x00,0xd0,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0xd0,0x00,
0x0d,0x0d,0xd8,0xd8,0xd8,0xd8,0xd8,0xd8,0x0d,0x0d,
0x00,0x00,0x00,0x00,0x88,0x88,0x00,0x00,0x00,0x00,
0x00,0x00,0xD0,0xD0,0x88,0x88,0xd0,0xd0,0x00,0x00,
0xd0,0xdd,0x88,0x88,0x88,0x88,0x88,0x88,0xdd,0xd0,
0x00,0x00,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x00,0x00,
0xa,0x6,
0xAA,0xdA,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0xdA,0xAA,
0xAd,0xAd,0xd8,0xd8,0xd8,0xd8,0xd8,0xd8,0xAd,0xAd,
0xAA,0xAA,0xAA,0xAA,0x88,0x88,0xAA,0xAA,0xAA,0xAA,
0xAA,0xAA,0xDA,0xDA,0x88,0x88,0xdA,0xdA,0xAA,0xAA,
0xdA,0xdd,0x88,0x88,0x88,0x88,0x88,0x88,0xdd,0xdA,
0xAA,0xAA,0xAd,0xAd,0xAd,0xAd,0xAd,0xAd,0xAA,0xAA,
};
/* Jen and Lizbeth */
unsigned char jen_liz[]={
0x08,0x07,
0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,
0x88,0xb8,0x00,0x00,0xb0,0xbb,0x88,0x08,
0x88,0xbb,0x0b,0x00,0x00,0xfb,0x88,0x08,
0x08,0xdd,0xd0,0xb0,0x00,0xff,0x08,0x08,
0x00,0x8d,0x00,0x00,0x00,0x8b,0x00,0x00,
0x08,0xb8,0x08,0x00,0x08,0xb8,0x08,0x00,
0x00,0x8f,0x80,0x00,0x80,0x8f,0x00,0x00,
0x8,0x7,
0xAA,0xAA,0xAA,0xAA,0xAA,0x8A,0x8A,0xAA,
0x88,0xb8,0xAA,0xAA,0xbA,0xbb,0x88,0xA8,
0x88,0xbb,0xAb,0xAA,0xAA,0xfb,0x88,0xA8,
0xA8,0xdd,0xdA,0xbA,0xAA,0xff,0xA8,0xA8,
0xAA,0x8d,0xAA,0xAA,0xAA,0x8b,0xAA,0xAA,
0xA8,0xb8,0xA8,0xAA,0xA8,0xb8,0xA8,0xAA,
0xAA,0x8f,0x8A,0xAA,0x8A,0x8f,0xAA,0xAA,
};
@ -549,21 +556,21 @@ unsigned char numbers[10][11]={
[0]={
0x3,0x3,
0x55,0x05,0x55,
0x55,0x00,0x55,
0x05,0x05,0x05,
0x55,0xA5,0x55,
0x55,0xAA,0x55,
0xA5,0xA5,0xA5,
},
[1]={
0x3,0x3,
0x50,0x55,0x00,
0x00,0x55,0x00,
0x05,0x05,0x05,
0x5A,0x55,0xAA,
0xAA,0x55,0xAA,
0xA5,0xA5,0xA5,
},
[2]={
0x3,0x3,
0x05,0x05,0x50,
0x50,0x05,0x05,
0x05,0x05,0x05,
0xA5,0xA5,0x5A,
0x5A,0xA5,0xA5,
0xA5,0xA5,0xA5,
},
[3]={
0x3,0x3,
@ -579,9 +586,9 @@ unsigned char numbers[10][11]={
},
[5]={
0x3,0x3,
0x55,0x05,0x05,
0x05,0x05,0x00,
0x50,0x50,0x05,
0x55,0xA5,0xA5,
0xA5,0xA5,0xAA,
0x5A,0x5A,0xA5,
},
[6]={
0x3,0x3,
@ -612,67 +619,67 @@ unsigned char numbers[10][11]={
unsigned char small_tree[]={
0x3,0x3,
0x00,0xCC,0x00,
0xAA,0xCC,0xAA,
0xCC,0xCC,0xCC,
0x00,0x88,0x00,
0xAA,0x88,0xAA,
};
unsigned char big_tree[]={
0x5,0x5,
0x00,0x00,0xCC,0x00,0x00,
0x00,0xC0,0xCC,0xC0,0x00,
0x00,0xCC,0xCC,0xCC,0x00,
0xc0,0xCC,0xCC,0xCC,0xc0,
0x00,0x00,0x88,0x00,0x00,
0xAA,0xAA,0xCC,0xAA,0xAA,
0xAA,0xCA,0xCC,0xCA,0xAA,
0xAA,0xCC,0xCC,0xCC,0xAA,
0xcA,0xCC,0xCC,0xCC,0xcA,
0xAA,0xAA,0x88,0xAA,0xAA,
};
unsigned char magic_health[]={
0x5,0x6,
0x00,0x00,0x0E,0x00,0x0C,
0x00,0x0e,0x00,0x0c,0x00,
0x0e,0x00,0x0c,0x00,0x0e,
0x00,0x0c,0x00,0x0e,0x00,
0x0c,0x00,0x0e,0x00,0x0c,
0x00,0x0e,0x00,0x0c,0x00,
0xAA,0xAA,0xAE,0xAA,0xAC,
0xAA,0xAe,0xAA,0xAc,0xAA,
0xAe,0xAA,0xAc,0xAA,0xAe,
0xAA,0xAc,0xAA,0xAe,0xAA,
0xAc,0xAA,0xAe,0xAA,0xAc,
0xAA,0xAe,0xAA,0xAc,0xAA,
};
unsigned char magic_fire[]={
0x5,0x6,
0x00,0x00,0xf0,0x00,0x00,
0xf0,0x00,0xff,0x00,0xf0,
0x0f,0xf0,0xff,0xf0,0x0f,
0x00,0xff,0xfe,0xff,0x00,
0xff,0x00,0xff,0x00,0xff,
0x00,0x00,0xff,0x00,0x00,
0xAA,0xAA,0xfA,0xAA,0xAA,
0xfA,0xAA,0xff,0xAA,0xfA,
0xAf,0xfA,0xff,0xfA,0xAf,
0xAA,0xff,0xfe,0xff,0xAA,
0xff,0xAA,0xff,0xAA,0xff,
0xAA,0xAA,0xff,0xAA,0xAA,
};
unsigned char magic_ice[]={
0x5,0x6,
0x00,0x0d,0xd0,0x00,0x00,
0x00,0xdd,0xdd,0xdd,0xd0,
0xd0,0xdd,0x9d,0xdd,0xdd,
0xAA,0xAd,0xdA,0xAA,0xAA,
0xAA,0xdd,0xdd,0xdd,0xdA,
0xdA,0xdd,0x9d,0xdd,0xdd,
0xdd,0xdd,0x99,0x99,0xdd,
0x00,0x99,0x99,0x99,0xdd,
0x00,0x0d,0x99,0x99,0x0d,
0xAA,0x99,0x99,0x99,0xdd,
0xAA,0xAd,0x99,0x99,0xAd,
};
unsigned char magic_bolt[]={
0x5,0x6,
0x55,0x55,0x55,0x55,0x55,
0x05,0x05,0xd5,0x05,0x05,
0x00,0x00,0x0d,0xd0,0x00,
0x00,0xd0,0x0d,0xd0,0x00,
0xd0,0x0d,0x00,0x0d,0xd0,
0x0d,0x00,0x00,0x00,0x0d,
0xA5,0xA5,0xd5,0xA5,0xA5,
0xAA,0xAA,0xAd,0xdA,0xAA,
0xAA,0xdA,0xAd,0xdA,0xAA,
0xdA,0xAd,0xAA,0xAd,0xdA,
0xAd,0xAA,0xAA,0xAA,0xAd,
};
unsigned char magic_malaise[]={
0x5,0x6,
0x00,0x50,0x50,0x50,0x00,
0xAA,0x5A,0x5A,0x5A,0xAA,
0x55,0x52,0x55,0x52,0x55,
0x55,0x55,0x52,0x55,0x55,
0x05,0x22,0x52,0x22,0x05,
0x00,0x05,0x05,0x05,0x00,
0x00,0x00,0x00,0x00,0x00,
0xA5,0x22,0x52,0x22,0xA5,
0xAA,0xA5,0xA5,0xA5,0xAA,
0xAA,0xAA,0xAA,0xAA,0xAA,
};

View File

@ -23,6 +23,9 @@ extern unsigned char bird_walk_right[];
extern unsigned char bird_stand_left[];
extern unsigned char bird_walk_left[];
extern unsigned char susie_left[];
extern unsigned char susie_right[];
extern unsigned char ship_forward[];
extern unsigned char ship_right[];
extern unsigned char ship_left[];