STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228131
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5121

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/97467147?noj=FRM97467147-16DC" width="1" height="1"></div>

Evolve - A Strategy Game.swf

This is the info page for
Flash #76336

(Click the ID number above for more basic data on this flash file.)


Text
Rowland Rose © 2006

Start Game

Instructions

enter

EVOLVE

EVOLVE

You and a computer
controlled opponent each
start the game with control of
a species of slime. That
species inhabits one square.
Every turn, it will grow in
populaton, until it spread to
adjacent squares. Every turn
you gain EVO points based
on the health of your species
(population and # of squares
inhabited).
press select to continue >>

You can spend these EVO
points in a variety of ways.
For example, you could
evolve your creature to have
legs, allowing it to grow on
mountain tiles. The point of
the game is to have the most
tiles colonized by the time
every square is filled up.
Good Luck!
press select to return >>

Choose a color:

Population:

EVO points:

Tiles inhabited:

Next turn

Spend EVO points

End game

Current turn:

EVOLVE

Adapt to forests

EVO Store

Adapt to mountains

Adapt to rocky plains

Adapt to desert

Adapt to snowy tundra

EVO points:

Back to game

cost:

Are you sure you want to
quit your game?

Yes

No

Your tiles:

Opponent's tiles:

Press select to continue...

ActionScript [AS1/AS2]

Frame 1
Frame 2
var music_1 = new Sound(); music_1.attachSound("game_music_1_linkage"); var music_2 = new Sound(); music_2.attachSound("game_music_2_linkage"); music_2.stop(); music_1.start(0, 999); gotoAndPlay (3);
Frame 3
function fn_increment_cursor(temp_increment) { _root.cursor_state = _root.cursor_state + temp_increment; if (_root.cursor_state > _root.num_cursor_states) { _root.cursor_state = 1; } else if (_root.cursor_state < 1) { _root.cursor_state = _root.num_cursor_states; } _root.cursor_2_mc._y = 71 + ((_root.cursor_state - 1) * 20); } function fn_execute(temp_state) { if (temp_state == 1) { fn_new_game(); } else if (temp_state == 2) { fn_instructions(); } } function fn_new_game() { _root.menu_items_mc.removeMovieClip(); _root.cursor_2_mc.removeMovieClip(); gotoAndPlay (6); } function fn_instructions() { _root.menu_items_mc.removeMovieClip(); _root.cursor_2_mc.removeMovieClip(); gotoAndPlay (4); } _root.start_menu = false; _root.activate_select = false; _root.num_cursor_states = 2; _root.cursor_state = 1; _root.onEnterFrame = function () { if (_root.start_menu == true) { _root.attachMovie("menu_items_linkage", "menu_items_mc", 10); _root.menu_items_mc._x = 55; _root.menu_items_mc._y = 62; _root.attachMovie("cursor_2_linkage", "cursor_2_mc", 11); _root.cursor_2_mc._x = 51; _root.cursor_2_mc._y = 71; _root.start_menu = false; _root.activate_select = true; _root.cursor_state = 1; } }; Key.removeListener(control_listener); var control_listener_start = new Object(); control_listener_start.onKeyDown = function () { if (Key.getCode() == 38) { fn_increment_cursor(-1); } else if (Key.getCode() == 40) { fn_increment_cursor(1); } else if (Key.getCode() == 13) { if (_root.activate_select == true) { fn_execute(_root.cursor_state); } } }; Key.addListener(control_listener_start); stop();
Frame 4
Key.removeListener(control_listener); Key.removeListener(control_listener_start); var control_listener = new Object(); control_listener.onKeyDown = function () { if (Key.getCode() == 13) { gotoAndPlay (5); } }; Key.addListener(control_listener); stop();
Frame 5
Key.removeListener(control_listener); Key.removeListener(control_listener_start); var control_listener = new Object(); control_listener.onKeyDown = function () { if (Key.getCode() == 13) { gotoAndPlay (3); } }; Key.addListener(control_listener); stop();
Frame 6
function fn_increment_cursor(temp_increment) { _root.cursor_state = _root.cursor_state + temp_increment; if (_root.cursor_state > _root.num_cursor_states) { _root.cursor_state = 1; } else if (_root.cursor_state < 1) { _root.cursor_state = _root.num_cursor_states; } _root.cursor._y = 65.6 + ((_root.cursor_state - 1) * 50); } function fn_execute(temp_state) { if (temp_state == 1) { _root.chosen_color = "purple"; gotoAndPlay (7); } else if (temp_state == 2) { _root.chosen_color = "red"; gotoAndPlay (7); } else if (temp_state == 3) { _root.chosen_color = "yellow"; gotoAndPlay (7); } } Key.removeListener(control_listener_start); _root.chosen_color = ""; _root.cursor_state = 1; _root.num_cursor_states = 3; Key.removeListener(control_listener); var control_listener = new Object(); control_listener.onKeyDown = function () { if (Key.getCode() == 38) { fn_increment_cursor(-1); } else if (Key.getCode() == 40) { fn_increment_cursor(1); } else if (Key.getCode() == 13) { fn_execute(_root.cursor_state); } }; Key.addListener(control_listener); stop();
Frame 7
function fn_random_perimiter_top() { if (Math.random() >= 0.5) { return("water"); } return("ice"); } function fn_random_perimiter_bottom() { if (Math.random() >= 0.5) { return("water"); } return("sand"); } function fn_random_perimiter_sides() { n = Math.random(); if (n > 0.5) { return("water"); } n = Math.random(); if (n > 0.75) { return("grass"); } if (n > 0.5) { return("mountain"); } if (n > 0.25) { return("rock"); } return("tree"); } function fn_random_top_1() { n = Math.random(); if (n > 0.5) { return("ice"); } n = Math.random(); if (n > 0.75) { return("grass"); } if (n > 0.5) { return("mountain"); } if (n > 0.25) { return("rock"); } return("tree"); } function fn_random_top_2() { n = Math.random(); if (n > 0.75) { return("ice"); } n = Math.random(); if (n > 0.75) { return("grass"); } if (n > 0.5) { return("mountain"); } if (n > 0.25) { return("rock"); } return("tree"); } function fn_random_bottom_1() { n = Math.random(); if (n > 0.5) { return("sand"); } n = Math.random(); if (n > 0.75) { return("grass"); } if (n > 0.5) { return("mountain"); } if (n > 0.25) { return("rock"); } return("tree"); } function fn_random_bottom_2() { n = Math.random(); if (n > 0.75) { return("sand"); } n = Math.random(); if (n > 0.75) { return("grass"); } if (n > 0.5) { return("mountain"); } if (n > 0.25) { return("rock"); } return("tree"); } function fn_random_body() { n = Math.random(); if (n > 0.75) { return("grass"); } if (n > 0.5) { return("mountain"); } if (n > 0.25) { return("rock"); } return("tree"); } music_1.stop(); music_2.start(0, 999); Key.removeListener(control_listener); _root.evo_cost = 10000; _root.opp_evo_cost = 10000; _root.player_population = 0; _root.player_evo_points = 0; _root.player_tiles = 0; _root.player_grass = true; _root.player_water = false; _root.player_tree = false; _root.player_rock = false; _root.player_mountain = false; _root.player_sand = false; _root.player_ice = false; _root.opponent_population = 0; _root.opponent_evo_points = 0; _root.opponent_tiles = 0; _root.opponent_grass = true; _root.opponent_water = false; _root.opponent_tree = false; _root.opponent_rock = false; _root.opponent_mountain = false; _root.opponent_sand = false; _root.opponent_ice = false; _root.total_tiles = 0; _root.current_turn = 1; var num_row = 11; var num_col = 17; var map = new Array(num_row); i = 0; while (i < num_row) { map[i] = new Array(num_col); j = 0; while (j < num_col) { map[i][j] = new Object(); map[i][j].player_pop = 0; map[i][j].opponent_pop = 0; if ((((i == 0) || (j == 0)) || (i == 10)) || (j == 16)) { map[i][j].tile = "water"; } else if (((i == 1) && ((j == 1) || (j == 15))) || ((i == 9) && ((j == 1) || (j == 15)))) { map[i][j].tile = "water"; } else if (i == 1) { map[i][j].tile = fn_random_perimiter_top(); } else if (i == 9) { map[i][j].tile = fn_random_perimiter_bottom(); } else if ((j == 1) || (j == 15)) { map[i][j].tile = fn_random_perimiter_sides(); } else if (i == 2) { map[i][j].tile = fn_random_top_1(); } else if (i == 3) { map[i][j].tile = fn_random_top_2(); } else if (i == 8) { map[i][j].tile = fn_random_bottom_1(); } else if (i == 7) { map[i][j].tile = fn_random_bottom_2(); } else if ((((i == 4) && (j == 2)) || ((i == 5) && (j == 3))) || ((i == 6) && (j == 2))) { map[i][j].tile = "grass"; } else if ((i == 5) && (j == 2)) { map[i][j].tile = "grass"; map[i][j].player_pop = 1000; } else if ((((i == 6) && (j == 14)) || ((i == 5) && (j == 13))) || ((i == 4) && (j == 14))) { map[i][j].tile = "grass"; } else if ((i == 5) && (j == 14)) { map[i][j].tile = "grass"; map[i][j].opponent_pop = 1000; } else { map[i][j].tile = fn_random_body(); } j++; } i++; } i = 0; while (i < num_row) { j = 0; while (j < num_col) { if (map[i][j].tile != "water") { _root.total_tiles++; } j++; } i++; }
Frame 8
function fn_attach_tile(temp_row, temp_col) { temp_tile = map[temp_row][temp_col].tile; temp_depth = temp_col + (temp_row * 100); _root.attachMovie("overlay_tile_linkage", (("overlay_" + temp_row) + "_") + temp_col, temp_depth + 10000); if (temp_tile == "water") { if (map[temp_row - 1][temp_col].tile == "water") { if (map[temp_row][temp_col + 1].tile == "water") { if (map[temp_row + 1][temp_col].tile == "water") { if (map[temp_row][temp_col - 1].tile == "water") { _root.attachMovie("tile_water_open_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } else { _root.attachMovie("tile_water_left_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } } else if (map[temp_row][temp_col - 1].tile == "water") { _root.attachMovie("tile_water_down_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } else { _root.attachMovie("tile_water_down_left_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } } else if (map[temp_row + 1][temp_col].tile == "water") { if (map[temp_row][temp_col - 1].tile == "water") { _root.attachMovie("tile_water_right_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } else { _root.attachMovie("tile_water_left_right_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } } else if (map[temp_row][temp_col - 1].tile == "water") { _root.attachMovie("tile_water_down_right_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } else { _root.attachMovie("tile_water_down_left_right_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } } else if (map[temp_row][temp_col + 1].tile == "water") { if (map[temp_row + 1][temp_col].tile == "water") { if (map[temp_row][temp_col - 1].tile == "water") { _root.attachMovie("tile_water_up_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } else { _root.attachMovie("tile_water_up_left_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } } else if (map[temp_row][temp_col - 1].tile == "water") { _root.attachMovie("tile_water_up_down_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } else { _root.attachMovie("tile_water_up_down_left_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } } else if (map[temp_row + 1][temp_col].tile == "water") { if (map[temp_row][temp_col - 1].tile == "water") { _root.attachMovie("tile_water_up_right_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } else { _root.attachMovie("tile_water_up_left_right_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } } else if (map[temp_row][temp_col - 1].tile == "water") { _root.attachMovie("tile_water_up_down_right_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } else { _root.attachMovie("tile_water_full_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } } else if (temp_tile == "grass") { _root.attachMovie("tile_grass_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } else if (temp_tile == "ice") { _root.attachMovie("tile_ice_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } else if (temp_tile == "mountain") { _root.attachMovie("tile_mountain_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } else if (temp_tile == "rock") { _root.attachMovie("tile_rock_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } else if (temp_tile == "sand") { _root.attachMovie("tile_sand_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } else if (temp_tile == "tree") { _root.attachMovie("tile_tree_linkage", (("tile_" + temp_row) + "_") + temp_col, temp_depth); } _root[(("tile_" + temp_row) + "_") + temp_col]._x = 3.4 + (temp_col * 10); _root[(("tile_" + temp_row) + "_") + temp_col]._y = 96.3 + (temp_row * 10); _root[(("overlay_" + temp_row) + "_") + temp_col]._x = 3.4 + (temp_col * 10); _root[(("overlay_" + temp_row) + "_") + temp_col]._y = 96.3 + (temp_row * 10); } function fn_display_creature() { if (_root.player_rock == true) { if (_root.player_mountain == true) { if (_root.player_sand == true) { if (_root.player_ice == true) { if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_complete_fur_linkage", "torso_mc", 20000); _root.torso_mc._x = 12; _root.torso_mc._y = 37; } else { _root.attachMovie(_root.chosen_color + "_torso_fur_linkage", "torso_mc", 20001); _root.torso_mc._x = 18; _root.torso_mc._y = 35; _root.attachMovie(_root.chosen_color + "_legs_long_fur_linkage", "legs_mc", 20000); _root.legs_mc._x = 15; _root.legs_mc._y = 63; } } else if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_complete_linkage", "torso_mc", 20000); _root.torso_mc._x = 12; _root.torso_mc._y = 36; } else { _root.attachMovie(_root.chosen_color + "_torso_linkage", "torso_mc", 20001); _root.torso_mc._x = 20; _root.torso_mc._y = 37; _root.attachMovie(_root.chosen_color + "_legs_long_linkage", "legs_mc", 20000); _root.legs_mc._x = 17; _root.legs_mc._y = 65; } } else if (_root.player_ice == true) { if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_torso_fur_linkage", "torso_mc", 20003); _root.torso_mc._x = 18; _root.torso_mc._y = 44; _root.attachMovie(_root.chosen_color + "_legs_small_fur_linkage", "legs_mc", 20002); _root.legs_mc._x = 15; _root.legs_mc._y = 73; _root.attachMovie(_root.chosen_color + "_arm_up_left_fur_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 6; _root.left_arm_mc._y = 53; _root.attachMovie(_root.chosen_color + "_arm_up_right_fur_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 32; _root.right_arm_mc._y = 53; } else { _root.attachMovie(_root.chosen_color + "_torso_fur_linkage", "torso_mc", 20001); _root.torso_mc._x = 18; _root.torso_mc._y = 44; _root.attachMovie(_root.chosen_color + "_legs_small_fur_linkage", "legs_mc", 20000); _root.legs_mc._x = 15; _root.legs_mc._y = 73; } } else if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_torso_linkage", "torso_mc", 20003); _root.torso_mc._x = 20; _root.torso_mc._y = 47; _root.attachMovie(_root.chosen_color + "_legs_small_linkage", "legs_mc", 20002); _root.legs_mc._x = 17; _root.legs_mc._y = 75; _root.attachMovie(_root.chosen_color + "_arm_up_left_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 8; _root.left_arm_mc._y = 55; _root.attachMovie(_root.chosen_color + "_arm_up_right_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 34; _root.right_arm_mc._y = 55; } else { _root.attachMovie(_root.chosen_color + "_torso_linkage", "torso_mc", 20001); _root.torso_mc._x = 20; _root.torso_mc._y = 47; _root.attachMovie(_root.chosen_color + "_legs_small_linkage", "legs_mc", 20000); _root.legs_mc._x = 17; _root.legs_mc._y = 75; } } else if (_root.player_sand == true) { if (_root.player_ice == true) { if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_arm_up_left_fur_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 4; _root.left_arm_mc._y = 43; _root.attachMovie(_root.chosen_color + "_arm_up_right_fur_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 30; _root.right_arm_mc._y = 43; _root.attachMovie(_root.chosen_color + "_smart_tall_fur_linkage", "torso_mc", 20003); _root.torso_mc._x = 16; _root.torso_mc._y = 35; } else { _root.attachMovie(_root.chosen_color + "_smart_tall_fur_linkage", "torso_mc", 20000); _root.torso_mc._x = 18; _root.torso_mc._y = 37; } } else if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_arm_up_left_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 6; _root.left_arm_mc._y = 45; _root.attachMovie(_root.chosen_color + "_arm_up_right_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 32; _root.right_arm_mc._y = 45; _root.attachMovie(_root.chosen_color + "_smart_tall_linkage", "torso_mc", 20003); _root.torso_mc._x = 18; _root.torso_mc._y = 37; } else { _root.attachMovie(_root.chosen_color + "_smart_tall_linkage", "torso_mc", 20000); _root.torso_mc._x = 18; _root.torso_mc._y = 37; } } else if (_root.player_ice == true) { if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_torso_fur_linkage", "torso_mc", 20002); _root.torso_mc._x = 16; _root.torso_mc._y = 52; _root.attachMovie(_root.chosen_color + "_arm_up_left_fur_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 4; _root.left_arm_mc._y = 60; _root.attachMovie(_root.chosen_color + "_arm_up_right_fur_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 34; _root.right_arm_mc._y = 60; } else { _root.attachMovie(_root.chosen_color + "_torso_fur_linkage", "torso_mc", 20000); _root.torso_mc._x = 16; _root.torso_mc._y = 52; } } else if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_torso_linkage", "torso_mc", 20002); _root.torso_mc._x = 18; _root.torso_mc._y = 55; _root.attachMovie(_root.chosen_color + "_arm_up_left_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 6; _root.left_arm_mc._y = 63; _root.attachMovie(_root.chosen_color + "_arm_up_right_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 36; _root.right_arm_mc._y = 63; } else { _root.attachMovie(_root.chosen_color + "_torso_linkage", "torso_mc", 20000); _root.torso_mc._x = 18; _root.torso_mc._y = 55; } } else if (_root.player_mountain == true) { if (_root.player_sand == true) { if (_root.player_ice == true) { if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_slime_tall_fur_linkage", "torso_mc", 20003); _root.torso_mc._x = 16; _root.torso_mc._y = 36; _root.attachMovie(_root.chosen_color + "_legs_small_fur_linkage", "legs_mc", 20002); _root.legs_mc._x = 15; _root.legs_mc._y = 73; _root.attachMovie(_root.chosen_color + "_arm_up_left_fur_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 4; _root.left_arm_mc._y = 38; _root.attachMovie(_root.chosen_color + "_arm_up_right_fur_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 34; _root.right_arm_mc._y = 38; } else { _root.attachMovie(_root.chosen_color + "_slime_tall_fur_linkage", "torso_mc", 20001); _root.torso_mc._x = 16; _root.torso_mc._y = 37; _root.attachMovie(_root.chosen_color + "_legs_small_fur_linkage", "legs_mc", 20000); _root.legs_mc._x = 15; _root.legs_mc._y = 73; } } else if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_slime_tall_linkage", "torso_mc", 20003); _root.torso_mc._x = 18; _root.torso_mc._y = 39; _root.attachMovie(_root.chosen_color + "_legs_small_linkage", "legs_mc", 20002); _root.legs_mc._x = 17; _root.legs_mc._y = 75; _root.attachMovie(_root.chosen_color + "_arm_up_left_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 6; _root.left_arm_mc._y = 40; _root.attachMovie(_root.chosen_color + "_arm_up_right_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 36; _root.right_arm_mc._y = 40; } else { _root.attachMovie(_root.chosen_color + "_slime_tall_linkage", "torso_mc", 20001); _root.torso_mc._x = 18; _root.torso_mc._y = 39; _root.attachMovie(_root.chosen_color + "_legs_small_linkage", "legs_mc", 20000); _root.legs_mc._x = 17; _root.legs_mc._y = 75; } } else if (_root.player_ice == true) { if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_arm_up_left_fur_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 4; _root.left_arm_mc._y = 58; _root.attachMovie(_root.chosen_color + "_arm_up_right_fur_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 34; _root.right_arm_mc._y = 58; _root.attachMovie(_root.chosen_color + "_legs_small_fur_linkage", "legs_mc", 20002); _root.legs_mc._x = 15; _root.legs_mc._y = 73; _root.attachMovie(_root.chosen_color + "_slime_fur_linkage", "torso_mc", 20003); _root.torso_mc._x = 16; _root.torso_mc._y = 58; } else { _root.attachMovie(_root.chosen_color + "_legs_small_fur_linkage", "legs_mc", 20000); _root.legs_mc._x = 15; _root.legs_mc._y = 73; _root.attachMovie(_root.chosen_color + "_slime_fur_linkage", "torso_mc", 20001); _root.torso_mc._x = 16; _root.torso_mc._y = 58; } } else if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_arm_up_left_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 6; _root.left_arm_mc._y = 58; _root.attachMovie(_root.chosen_color + "_arm_up_right_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 36; _root.right_arm_mc._y = 58; _root.attachMovie(_root.chosen_color + "_legs_small_linkage", "legs_mc", 20002); _root.legs_mc._x = 17; _root.legs_mc._y = 75; _root.attachMovie(_root.chosen_color + "_slime_linkage", "torso_mc", 20003); _root.torso_mc._x = 18; _root.torso_mc._y = 60; } else { _root.attachMovie(_root.chosen_color + "_legs_small_linkage", "legs_mc", 20000); _root.legs_mc._x = 17; _root.legs_mc._y = 75; _root.attachMovie(_root.chosen_color + "_slime_linkage", "torso_mc", 20001); _root.torso_mc._x = 18; _root.torso_mc._y = 60; } } else if (_root.player_sand == true) { if (_root.player_ice == true) { if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_slime_tall_fur_linkage", "torso_mc", 20002); _root.torso_mc._x = 16; _root.torso_mc._y = 45; _root.attachMovie(_root.chosen_color + "_arm_up_left_fur_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 4; _root.left_arm_mc._y = 48; _root.attachMovie(_root.chosen_color + "_arm_up_right_fur_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 34; _root.right_arm_mc._y = 48; } else { _root.attachMovie(_root.chosen_color + "_slime_tall_fur_linkage", "torso_mc", 20000); _root.torso_mc._x = 16; _root.torso_mc._y = 45; } } else if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_slime_tall_linkage", "torso_mc", 20002); _root.torso_mc._x = 18; _root.torso_mc._y = 45; _root.attachMovie(_root.chosen_color + "_arm_up_left_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 6; _root.left_arm_mc._y = 48; _root.attachMovie(_root.chosen_color + "_arm_up_right_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 36; _root.right_arm_mc._y = 48; } else { _root.attachMovie(_root.chosen_color + "_slime_tall_linkage", "torso_mc", 20000); _root.torso_mc._x = 18; _root.torso_mc._y = 45; } } else if (_root.player_ice == true) { if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_slime_fur_linkage", "torso_mc", 20002); _root.torso_mc._x = 15; _root.torso_mc._y = 65; _root.attachMovie(_root.chosen_color + "_arm_up_left_fur_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 4; _root.left_arm_mc._y = 64; _root.attachMovie(_root.chosen_color + "_arm_up_right_fur_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 34; _root.right_arm_mc._y = 64; } else { _root.attachMovie(_root.chosen_color + "_slime_fur_linkage", "torso_mc", 20000); _root.torso_mc._x = 15; _root.torso_mc._y = 65; } } else if (_root.player_tree == true) { _root.attachMovie(_root.chosen_color + "_slime_linkage", "torso_mc", 20002); _root.torso_mc._x = 18; _root.torso_mc._y = 65; _root.attachMovie(_root.chosen_color + "_arm_up_left_linkage", "left_arm_mc", 20001); _root.left_arm_mc._x = 6; _root.left_arm_mc._y = 68; _root.attachMovie(_root.chosen_color + "_arm_up_right_linkage", "right_arm_mc", 20000); _root.right_arm_mc._x = 36; _root.right_arm_mc._y = 68; } else { _root.attachMovie(_root.chosen_color + "_slime_linkage", "torso_mc", 20000); _root.torso_mc._x = 18; _root.torso_mc._y = 65; } } if ((_root.chosen_color == "purple") || (_root.chosen_color == "red")) { _root.opponent_color = "yellow"; } else { _root.opponent_color = "red"; } i = 0; while (i < num_row) { j = 0; while (j < num_col) { fn_attach_tile(i, j); j++; } i++; } var temp_pop = 0; var temp_opp_pop = 0; var temp_inhab = 0; var temp_inhab_opp = 0; i = 0; while (i < num_row) { j = 0; while (j < num_col) { temp_pop = temp_pop + map[i][j].player_pop; temp_opp_pop = temp_opp_pop + map[i][j].opponent_pop; if (map[i][j].player_pop >= 1000) { _root[(("overlay_" + i) + "_") + j].gotoAndStop(_root.chosen_color); temp_inhab = temp_inhab + 1; } else if (map[i][j].opponent_pop >= 1000) { _root[(("overlay_" + i) + "_") + j].gotoAndStop(_root.opponent_color); temp_inhab_opp = temp_inhab_opp + 1; } j++; } i++; } _root.evo_points.text = _root.player_evo_points; _root.player_population = temp_pop; _root.opponent_population = temp_opp_pop; _root.opponent_tiles = temp_inhab_opp; _root.player_tiles = temp_inhab; _root.population.text = _root.player_population; _root.tiles_inhabited.text = _root.player_tiles; _root.turns.text = _root.current_turn; _root.torso_mc.removeMovieClip(); _root.left_arm_mc.removeMovieClip(); _root.right_arm_mc.removeMovieClip(); _root.legs_mc.removeMovieClip(); fn_display_creature();
Frame 9
function fn_increment_cursor(temp_increment) { _root.cursor_state = _root.cursor_state + temp_increment; if (_root.cursor_state > _root.num_cursor_states) { _root.cursor_state = 1; } else if (_root.cursor_state < 1) { _root.cursor_state = _root.num_cursor_states; } _root.cursor._y = 51 + ((_root.cursor_state - 1) * 10); } function fn_execute(temp_state) { if (temp_state == 1) { fn_next_turn(); } else if (temp_state == 2) { fn_evo_store(); } else if (temp_state == 3) { fn_exit_play(); } } function fn_evo_store() { i = 0; while (i < num_row) { j = 0; while (j < num_col) { _root[(("tile_" + i) + "_") + j].removeMovieClip(); _root[(("overlay_" + i) + "_") + j].removeMovieClip(); j++; } i++; } _root.torso_mc.removeMovieClip(); _root.left_arm_mc.removeMovieClip(); _root.right_arm_mc.removeMovieClip(); _root.legs_mc.removeMovieClip(); gotoAndPlay (10); } function fn_next_turn() { if ((_root.player_tiles + _root.opponent_tiles) == _root.total_tiles) { _root.torso_mc.removeMovieClip(); _root.left_arm_mc.removeMovieClip(); _root.right_arm_mc.removeMovieClip(); _root.legs_mc.removeMovieClip(); gotoAndPlay (12); } else { i = 0; while (i < num_row) { j = 0; while (j < num_col) { var _local2 = 0; var _local3 = 0; if ((map[i][j].player_pop < 1000) && (map[i][j].opponent_pop < 1000)) { if (_root["player_" + map[i][j].tile] == true) { if (map[i - 1][j].player_pop >= 1000) { _local2 = _local2 + 80; } if (map[i + 1][j].player_pop >= 1000) { _local2 = _local2 + 80; } if (map[i][j - 1].player_pop >= 1000) { _local2 = _local2 + 80; } if (map[i][j + 1].player_pop >= 1000) { _local2 = _local2 + 80; } map[i][j].player_pop = map[i][j].player_pop + _local2; } if (_root["opponent_" + map[i][j].tile] == true) { if (map[i - 1][j].opponent_pop >= 1000) { _local3 = _local3 + 80; } if (map[i + 1][j].opponent_pop >= 1000) { _local3 = _local3 + 80; } if (map[i][j - 1].opponent_pop >= 1000) { _local3 = _local3 + 80; } if (map[i][j + 1].opponent_pop >= 1000) { _local3 = _local3 + 80; } } map[i][j].opponent_pop = map[i][j].opponent_pop + _local3; if ((map[i][j].player_pop >= 1000) && (map[i][j].opponent_pop >= 1000)) { if (Math.random() >= 0.5) { map[i][j].player_pop = 1000; map[i][j].opponent_pop = 0; } else { map[i][j].opponent_pop = 1000; map[i][j].player_pop = 0; } } else if (map[i][j].player_pop >= 1000) { map[i][j].player_pop = 1000; map[i][j].opponent_pop = map[i][j].opponent_pop / 2; } else if (map[i][j].opponent_pop >= 1000) { map[i][j].opponent_pop = 1000; map[i][j].player_pop = map[i][j].player_pop / 2; } } j++; } i++; } if ((_root.opponent_evo_points >= _root.opp_evo_cost) && (_root.opp_evo_cost < 55000)) { _root.opponent_evo_points = _root.opponent_evo_points - _root.opp_evo_cost; _root.opp_evo_cost = _root.opp_evo_cost + 10000; temp_counter = 0; var _local4 = new Array(); if (_root.opponent_tree == false) { _local4[temp_counter] = "tree"; temp_counter++; } if (_root.opponent_mountain == false) { _local4[temp_counter] = "mountain"; temp_counter++; } if (_root.opponent_rock == false) { _local4[temp_counter] = "rock"; temp_counter++; } if (_root.opponent_sand == false) { _local4[temp_counter] = "sand"; temp_counter++; } if (_root.opponent_ice == false) { _local4[temp_counter] = "ice"; temp_counter++; } temp_random = Math.floor(Math.random() * _local4.length); if (temp_random == _local4.length) { temp_random--; } _root["opponent_" + _local4[temp_random]] = true; } _root.player_evo_points = _root.player_evo_points + Math.floor(_root.player_population / 32); _root.opponent_evo_points = _root.opponent_evo_points + Math.floor(_root.opponent_population / 32); _root.current_turn++; gotoAndPlay (8); } } function fn_exit_play() { i = 0; while (i < num_row) { j = 0; while (j < num_col) { _root[(("tile_" + i) + "_") + j].removeMovieClip(); _root[(("overlay_" + i) + "_") + j].removeMovieClip(); j++; } i++; } _root.torso_mc.removeMovieClip(); _root.left_arm_mc.removeMovieClip(); _root.right_arm_mc.removeMovieClip(); _root.legs_mc.removeMovieClip(); gotoAndPlay (11); } Key.removeListener(control_listener); _root.cursor_state = 1; _root.num_cursor_states = 3; var control_listener = new Object(); control_listener.onKeyDown = function () { if (Key.getCode() == 38) { fn_increment_cursor(-1); } else if (Key.getCode() == 40) { fn_increment_cursor(1); } else if (Key.getCode() == 13) { if (_root.activate_select == true) { fn_execute(_root.cursor_state); } } }; Key.addListener(control_listener); stop();
Frame 10
function fn_increment_cursor(temp_increment) { _root.cursor_state = _root.cursor_state + temp_increment; if (_root.cursor_state > _root.num_cursor_states) { _root.cursor_state = 1; } else if (_root.cursor_state < 1) { _root.cursor_state = _root.num_cursor_states; } _root.cursor_3._y = 70 + ((_root.cursor_state - 1) * 13); } function fn_execute(temp_state) { if (temp_state == 1) { fn_adapt("tree"); } else if (temp_state == 2) { fn_adapt("mountain"); } else if (temp_state == 3) { fn_adapt("rock"); } else if (temp_state == 4) { fn_adapt("sand"); } else if (temp_state == 5) { fn_adapt("ice"); } else if (temp_state == 6) { gotoAndPlay (8); } } function fn_adapt(temp_type) { if ((_root.player_evo_points >= _root.evo_cost) && (_root["player_" + temp_type] == false)) { _root["player_" + temp_type] = true; _root.player_evo_points = _root.player_evo_points - _root.evo_cost; _root.evo_cost = _root.evo_cost + 10000; _root.cost.text = _root.evo_cost; _root.evo_points.text = _root.player_evo_points; _root["check_" + temp_type].gotoAndStop(2); } } if (_root.player_tree == true) { _root.check_tree.gotoAndStop(2); } if (_root.player_mountain == true) { _root.check_mountain.gotoAndStop(2); } if (_root.player_rock == true) { _root.check_rock.gotoAndStop(2); } if (_root.player_sand == true) { _root.check_sand.gotoAndStop(2); } if (_root.player_ice == true) { _root.check_ice.gotoAndStop(2); } _root.cost.text = _root.evo_cost; _root.evo_points.text = _root.player_evo_points; Key.removeListener(control_listener); _root.cursor_state = 1; _root.num_cursor_states = 6; var control_listener = new Object(); control_listener.onKeyDown = function () { if (Key.getCode() == 38) { fn_increment_cursor(-1); } else if (Key.getCode() == 40) { fn_increment_cursor(1); } else if (Key.getCode() == 13) { if (_root.activate_select == true) { fn_execute(_root.cursor_state); } } }; Key.addListener(control_listener); stop();
Frame 11
function fn_increment_cursor(temp_increment) { _root.cursor_state = _root.cursor_state + temp_increment; if (_root.cursor_state > _root.num_cursor_states) { _root.cursor_state = 1; } else if (_root.cursor_state < 1) { _root.cursor_state = _root.num_cursor_states; } _root.cursor_2._y = 86 + ((_root.cursor_state - 1) * 20); } function fn_execute(temp_state) { if (temp_state == 1) { i = 0; while (i < num_row) { j = 0; while (j < num_col) { _root[(("tile_" + i) + "_") + j].removeMovieClip(); _root[(("overlay_" + i) + "_") + j].removeMovieClip(); j++; } i++; } _root.torso_mc.removeMovieClip(); gotoAndPlay (3); } else if (temp_state == 2) { gotoAndPlay (8); } } function fn_exit_play() { gotoAndPlay (2); } Key.removeListener(control_listener); _root.cursor_state = 2; _root.num_cursor_states = 2; var control_listener = new Object(); control_listener.onKeyDown = function () { if (Key.getCode() == 38) { fn_increment_cursor(-1); } else if (Key.getCode() == 40) { fn_increment_cursor(1); } else if (Key.getCode() == 13) { if (_root.activate_select == true) { fn_execute(_root.cursor_state); } } }; Key.addListener(control_listener); stop();
Frame 12
Key.removeListener(control_listener); _root.final_select_ok = false; _root.player_final.text = _root.player_tiles; _root.opponent_final.text = _root.opponent_tiles; if (_root.player_tiles > _root.opponent_tiles) { _root.outcome.text = "You won!"; } else if (_root.player_tiles < _root.opponent_tiles) { _root.outcome.text = "Try again!"; } else if (_root.player_tiles == _root.opponent_tiles) { _root.outcome.text = "It's a tie!"; } _root.onEnterFrame = function () { if (_root.final_select_ok == true) { if (Key.isDown(13)) { i = 0; while (i < num_row) { j = 0; while (j < num_col) { _root[(("tile_" + i) + "_") + j].removeMovieClip(); _root[(("overlay_" + i) + "_") + j].removeMovieClip(); j++; } i++; } _root.final_select_ok = false; gotoAndPlay (2); } } }; stop();
Symbol 9 Button
on (release) { getURL ("http://www.newgrounds.com", "blank"); }
Symbol 14 Button
on (release) { _root.gotoAndPlay(2); }
Symbol 15 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { bar._xscale = PercentLoaded; } else { gotoAndStop ("loaded"); }
Symbol 15 MovieClip Frame 2
gotoAndPlay (1);
Symbol 296 MovieClip [overlay_tile_linkage] Frame 1
stop();
Symbol 296 MovieClip [overlay_tile_linkage] Frame 2
stop();
Symbol 296 MovieClip [overlay_tile_linkage] Frame 3
stop();
Symbol 296 MovieClip [overlay_tile_linkage] Frame 4
stop();
Symbol 299 MovieClip Frame 1
stop();
Symbol 303 MovieClip Frame 615
gotoAndPlay (2);
Symbol 306 MovieClip Frame 1000
gotoAndPlay (2);
Symbol 311 MovieClip Frame 699
gotoAndPlay (2);
Symbol 314 MovieClip Frame 550
gotoAndPlay (2);
Symbol 317 MovieClip Frame 400
gotoAndPlay (2);
Symbol 338 MovieClip Frame 45
_root.start_menu = true; stop();
Symbol 372 MovieClip Frame 1
stop();
Symbol 372 MovieClip Frame 2
stop();
Symbol 385 MovieClip Frame 22
_root.final_select_ok = true; stop();

Library Items

Symbol 1 GraphicUsed by:15
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:15
Symbol 4 GraphicUsed by:15
Symbol 5 GraphicUsed by:8 9
Symbol 6 GraphicUsed by:8 9
Symbol 7 GraphicUsed by:8 9
Symbol 8 MovieClipUses:5 6 7Used by:9
Symbol 9 ButtonUses:8 5 6 7Used by:15
Symbol 10 GraphicUsed by:14
Symbol 11 GraphicUsed by:14
Symbol 12 GraphicUsed by:14
Symbol 13 GraphicUsed by:14
Symbol 14 ButtonUses:10 11 12 13Used by:15
Symbol 15 MovieClipUses:1 3 4 9 14Used by:Timeline
Symbol 16 FontUsed by:17 24 347 348 349 350 351 352 353 354 355 356 357 362 363 364 365 366 367 368 369 370 373 374 375 376 377 378 379 384
Symbol 17 TextUses:16Used by:Timeline
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClip [cursor_2_linkage]Uses:18Used by:Timeline
Symbol 20 GraphicUsed by:25
Symbol 21 FontUsed by:22 23 340 341 342
Symbol 22 TextUses:21Used by:25
Symbol 23 TextUses:21Used by:25
Symbol 24 TextUses:16Used by:25
Symbol 25 MovieClip [menu_items_linkage]Uses:20 22 23 24Used by:Timeline
Symbol 26 BitmapUsed by:27
Symbol 27 GraphicUses:26Used by:28
Symbol 28 MovieClip [tile_grass_linkage]Uses:27Used by:Timeline
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:31
Symbol 31 MovieClip [tile_ice_linkage]Uses:30Used by:Timeline
Symbol 32 BitmapUsed by:33
Symbol 33 GraphicUses:32Used by:34
Symbol 34 MovieClip [tile_mountain_linkage]Uses:33Used by:Timeline
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:37
Symbol 37 MovieClip [tile_rock_linkage]Uses:36Used by:Timeline
Symbol 38 BitmapUsed by:39
Symbol 39 GraphicUses:38Used by:40
Symbol 40 MovieClip [tile_sand_linkage]Uses:39Used by:Timeline
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:43
Symbol 43 MovieClip [tile_tree_linkage]Uses:42Used by:Timeline
Symbol 44 BitmapUsed by:45
Symbol 45 GraphicUses:44Used by:46
Symbol 46 MovieClip [tile_water_down_linkage]Uses:45Used by:Timeline
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:49
Symbol 49 MovieClip [tile_water_down_left_linkage]Uses:48Used by:Timeline
Symbol 50 BitmapUsed by:51
Symbol 51 GraphicUses:50Used by:52
Symbol 52 MovieClip [tile_water_down_left_right_linkage]Uses:51Used by:Timeline
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:55
Symbol 55 MovieClip [tile_water_down_right_linkage]Uses:54Used by:Timeline
Symbol 56 BitmapUsed by:57
Symbol 57 GraphicUses:56Used by:58
Symbol 58 MovieClip [tile_water_full_linkage]Uses:57Used by:Timeline
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:61
Symbol 61 MovieClip [tile_water_left_linkage]Uses:60Used by:Timeline
Symbol 62 BitmapUsed by:63
Symbol 63 GraphicUses:62Used by:64
Symbol 64 MovieClip [tile_water_left_right_linkage]Uses:63Used by:Timeline
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:67
Symbol 67 MovieClip [tile_water_open_linkage]Uses:66Used by:Timeline
Symbol 68 BitmapUsed by:69
Symbol 69 GraphicUses:68Used by:70
Symbol 70 MovieClip [tile_water_right_linkage]Uses:69Used by:Timeline
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:73
Symbol 73 MovieClip [tile_water_up_linkage]Uses:72Used by:Timeline
Symbol 74 BitmapUsed by:75
Symbol 75 GraphicUses:74Used by:76
Symbol 76 MovieClip [tile_water_up_down_linkage]Uses:75Used by:Timeline
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:79
Symbol 79 MovieClip [tile_water_up_down_left_linkage]Uses:78Used by:Timeline
Symbol 80 BitmapUsed by:81
Symbol 81 GraphicUses:80Used by:82
Symbol 82 MovieClip [tile_water_up_down_right_linkage]Uses:81Used by:Timeline
Symbol 83 BitmapUsed by:84
Symbol 84 GraphicUses:83Used by:85
Symbol 85 MovieClip [tile_water_up_left_linkage]Uses:84Used by:Timeline
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:88
Symbol 88 MovieClip [tile_water_up_left_right_linkage]Uses:87Used by:Timeline
Symbol 89 BitmapUsed by:90
Symbol 90 GraphicUses:89Used by:91
Symbol 91 MovieClip [tile_water_up_right_linkage]Uses:90Used by:Timeline
Symbol 92 BitmapUsed by:93
Symbol 93 GraphicUses:92Used by:94
Symbol 94 MovieClip [purple_arm_down_left_linkage]Uses:93Used by:Timeline
Symbol 95 BitmapUsed by:96
Symbol 96 GraphicUses:95Used by:97
Symbol 97 MovieClip [purple_arm_down_left_fur_linkage]Uses:96Used by:Timeline
Symbol 98 BitmapUsed by:99
Symbol 99 GraphicUses:98Used by:100
Symbol 100 MovieClip [purple_arm_down_right_linkage]Uses:99Used by:Timeline
Symbol 101 BitmapUsed by:102
Symbol 102 GraphicUses:101Used by:103
Symbol 103 MovieClip [purple_arm_down_right_fur_linkage]Uses:102Used by:Timeline
Symbol 104 BitmapUsed by:105
Symbol 105 GraphicUses:104Used by:106
Symbol 106 MovieClip [purple_arm_up_left_linkage]Uses:105Used by:Timeline
Symbol 107 BitmapUsed by:108
Symbol 108 GraphicUses:107Used by:109
Symbol 109 MovieClip [purple_arm_up_left_fur_linkage]Uses:108Used by:Timeline
Symbol 110 BitmapUsed by:111
Symbol 111 GraphicUses:110Used by:112
Symbol 112 MovieClip [purple_arm_up_right_linkage]Uses:111Used by:Timeline
Symbol 113 BitmapUsed by:114
Symbol 114 GraphicUses:113Used by:115
Symbol 115 MovieClip [purple_arm_up_right_fur_linkage]Uses:114Used by:Timeline
Symbol 116 BitmapUsed by:117
Symbol 117 GraphicUses:116Used by:118
Symbol 118 MovieClip [purple_complete_linkage]Uses:117Used by:Timeline
Symbol 119 BitmapUsed by:120
Symbol 120 GraphicUses:119Used by:121
Symbol 121 MovieClip [purple_complete_fur_linkage]Uses:120Used by:Timeline
Symbol 122 BitmapUsed by:123
Symbol 123 GraphicUses:122Used by:124
Symbol 124 MovieClip [purple_legs_long_linkage]Uses:123Used by:Timeline
Symbol 125 BitmapUsed by:126
Symbol 126 GraphicUses:125Used by:127
Symbol 127 MovieClip [purple_legs_long_fur_linkage]Uses:126Used by:Timeline
Symbol 128 BitmapUsed by:129
Symbol 129 GraphicUses:128Used by:130
Symbol 130 MovieClip [purple_legs_small_linkage]Uses:129Used by:Timeline
Symbol 131 BitmapUsed by:132
Symbol 132 GraphicUses:131Used by:133
Symbol 133 MovieClip [purple_legs_small_fur_linkage]Uses:132Used by:Timeline
Symbol 134 BitmapUsed by:135
Symbol 135 GraphicUses:134Used by:136
Symbol 136 MovieClip [purple_slime_linkage]Uses:135Used by:Timeline
Symbol 137 BitmapUsed by:138
Symbol 138 GraphicUses:137Used by:139
Symbol 139 MovieClip [purple_slime_fur_linkage]Uses:138Used by:Timeline
Symbol 140 BitmapUsed by:141
Symbol 141 GraphicUses:140Used by:142
Symbol 142 MovieClip [purple_slime_tall_linkage]Uses:141Used by:Timeline
Symbol 143 BitmapUsed by:144
Symbol 144 GraphicUses:143Used by:145
Symbol 145 MovieClip [purple_slime_tall_fur_linkage]Uses:144Used by:Timeline
Symbol 146 BitmapUsed by:147
Symbol 147 GraphicUses:146Used by:148
Symbol 148 MovieClip [purple_smart_tall_linkage]Uses:147Used by:Timeline
Symbol 149 BitmapUsed by:150
Symbol 150 GraphicUses:149Used by:151
Symbol 151 MovieClip [purple_smart_tall_fur_linkage]Uses:150Used by:Timeline
Symbol 152 BitmapUsed by:153
Symbol 153 GraphicUses:152Used by:154
Symbol 154 MovieClip [purple_torso_linkage]Uses:153Used by:Timeline
Symbol 155 BitmapUsed by:156
Symbol 156 GraphicUses:155Used by:157
Symbol 157 MovieClip [purple_torso_fur_linkage]Uses:156Used by:Timeline
Symbol 158 BitmapUsed by:159
Symbol 159 GraphicUses:158Used by:160
Symbol 160 MovieClip [red_arm_down_left_linkage]Uses:159Used by:Timeline
Symbol 161 BitmapUsed by:162
Symbol 162 GraphicUses:161Used by:163
Symbol 163 MovieClip [red_arm_down_left_fur_linkage]Uses:162Used by:Timeline
Symbol 164 BitmapUsed by:165
Symbol 165 GraphicUses:164Used by:166
Symbol 166 MovieClip [red_arm_down_right_linkage]Uses:165Used by:Timeline
Symbol 167 BitmapUsed by:168
Symbol 168 GraphicUses:167Used by:169
Symbol 169 MovieClip [red_arm_down_right_fur_linkage]Uses:168Used by:Timeline
Symbol 170 BitmapUsed by:171
Symbol 171 GraphicUses:170Used by:172
Symbol 172 MovieClip [red_arm_up_left_linkage]Uses:171Used by:Timeline
Symbol 173 BitmapUsed by:174
Symbol 174 GraphicUses:173Used by:175
Symbol 175 MovieClip [red_arm_up_left_fur_linkage]Uses:174Used by:Timeline
Symbol 176 BitmapUsed by:177
Symbol 177 GraphicUses:176Used by:178
Symbol 178 MovieClip [red_arm_up_right_linkage]Uses:177Used by:Timeline
Symbol 179 BitmapUsed by:180
Symbol 180 GraphicUses:179Used by:181
Symbol 181 MovieClip [red_arm_up_right_fur_linkage]Uses:180Used by:Timeline
Symbol 182 BitmapUsed by:183
Symbol 183 GraphicUses:182Used by:184
Symbol 184 MovieClip [red_complete_linkage]Uses:183Used by:Timeline
Symbol 185 BitmapUsed by:186
Symbol 186 GraphicUses:185Used by:187
Symbol 187 MovieClip [red_complete_fur_linkage]Uses:186Used by:Timeline
Symbol 188 BitmapUsed by:189
Symbol 189 GraphicUses:188Used by:190
Symbol 190 MovieClip [red_legs_long_linkage]Uses:189Used by:Timeline
Symbol 191 BitmapUsed by:192
Symbol 192 GraphicUses:191Used by:193
Symbol 193 MovieClip [red_legs_long_fur_linkage]Uses:192Used by:Timeline
Symbol 194 BitmapUsed by:195
Symbol 195 GraphicUses:194Used by:196
Symbol 196 MovieClip [red_legs_small_linkage]Uses:195Used by:Timeline
Symbol 197 BitmapUsed by:198
Symbol 198 GraphicUses:197Used by:199
Symbol 199 MovieClip [red_legs_small_fur_linkage]Uses:198Used by:Timeline
Symbol 200 BitmapUsed by:201
Symbol 201 GraphicUses:200Used by:202
Symbol 202 MovieClip [red_slime_linkage]Uses:201Used by:Timeline
Symbol 203 BitmapUsed by:204
Symbol 204 GraphicUses:203Used by:205
Symbol 205 MovieClip [red_slime_fur_linkage]Uses:204Used by:Timeline
Symbol 206 BitmapUsed by:207
Symbol 207 GraphicUses:206Used by:208
Symbol 208 MovieClip [red_slime_tall_linkage]Uses:207Used by:Timeline
Symbol 209 BitmapUsed by:210
Symbol 210 GraphicUses:209Used by:211
Symbol 211 MovieClip [red_slime_tall_fur_linkage]Uses:210Used by:Timeline
Symbol 212 BitmapUsed by:213
Symbol 213 GraphicUses:212Used by:214
Symbol 214 MovieClip [red_smart_tall_linkage]Uses:213Used by:Timeline
Symbol 215 BitmapUsed by:216
Symbol 216 GraphicUses:215Used by:217
Symbol 217 MovieClip [red_smart_tall_fur_linkage]Uses:216Used by:Timeline
Symbol 218 BitmapUsed by:219
Symbol 219 GraphicUses:218Used by:220
Symbol 220 MovieClip [red_torso_linkage]Uses:219Used by:Timeline
Symbol 221 BitmapUsed by:222
Symbol 222 GraphicUses:221Used by:223
Symbol 223 MovieClip [red_torso_fur_linkage]Uses:222Used by:Timeline
Symbol 224 BitmapUsed by:225
Symbol 225 GraphicUses:224Used by:226
Symbol 226 MovieClip [yellow_arm_down_left_linkage]Uses:225Used by:Timeline
Symbol 227 BitmapUsed by:228
Symbol 228 GraphicUses:227Used by:229
Symbol 229 MovieClip [yellow_arm_down_left_fur_linkage]Uses:228Used by:Timeline
Symbol 230 BitmapUsed by:231
Symbol 231 GraphicUses:230Used by:232
Symbol 232 MovieClip [yellow_arm_down_right_linkage]Uses:231Used by:Timeline
Symbol 233 BitmapUsed by:234
Symbol 234 GraphicUses:233Used by:235
Symbol 235 MovieClip [yellow_arm_down_right_fur_linkage]Uses:234Used by:Timeline
Symbol 236 BitmapUsed by:237
Symbol 237 GraphicUses:236Used by:238
Symbol 238 MovieClip [yellow_arm_up_left_linkage]Uses:237Used by:Timeline
Symbol 239 BitmapUsed by:240
Symbol 240 GraphicUses:239Used by:241
Symbol 241 MovieClip [yellow_arm_up_left_fur_linkage]Uses:240Used by:Timeline
Symbol 242 BitmapUsed by:243
Symbol 243 GraphicUses:242Used by:244
Symbol 244 MovieClip [yellow_arm_up_right_linkage]Uses:243Used by:Timeline
Symbol 245 BitmapUsed by:246
Symbol 246 GraphicUses:245Used by:247
Symbol 247 MovieClip [yellow_arm_up_right_fur_linkage]Uses:246Used by:Timeline
Symbol 248 BitmapUsed by:249
Symbol 249 GraphicUses:248Used by:250
Symbol 250 MovieClip [yellow_complete_linkage]Uses:249Used by:Timeline
Symbol 251 BitmapUsed by:252
Symbol 252 GraphicUses:251Used by:253
Symbol 253 MovieClip [yellow_complete_fur_linkage]Uses:252Used by:Timeline
Symbol 254 BitmapUsed by:255
Symbol 255 GraphicUses:254Used by:256
Symbol 256 MovieClip [yellow_legs_long_linkage]Uses:255Used by:Timeline
Symbol 257 BitmapUsed by:258
Symbol 258 GraphicUses:257Used by:259
Symbol 259 MovieClip [yellow_legs_long_fur_linkage]Uses:258Used by:Timeline
Symbol 260 BitmapUsed by:261
Symbol 261 GraphicUses:260Used by:262
Symbol 262 MovieClip [yellow_legs_small_linkage]Uses:261Used by:Timeline
Symbol 263 BitmapUsed by:264
Symbol 264 GraphicUses:263Used by:265
Symbol 265 MovieClip [yellow_legs_small_fur_linkage]Uses:264Used by:Timeline
Symbol 266 BitmapUsed by:267
Symbol 267 GraphicUses:266Used by:268
Symbol 268 MovieClip [yellow_slime_linkage]Uses:267Used by:Timeline
Symbol 269 BitmapUsed by:270
Symbol 270 GraphicUses:269Used by:271
Symbol 271 MovieClip [yellow_slime_fur_linkage]Uses:270Used by:Timeline
Symbol 272 BitmapUsed by:273
Symbol 273 GraphicUses:272Used by:274
Symbol 274 MovieClip [yellow_slime_tall_linkage]Uses:273Used by:Timeline
Symbol 275 BitmapUsed by:276
Symbol 276 GraphicUses:275Used by:277
Symbol 277 MovieClip [yellow_slime_tall_fur_linkage]Uses:276Used by:Timeline
Symbol 278 BitmapUsed by:279
Symbol 279 GraphicUses:278Used by:280
Symbol 280 MovieClip [yellow_smart_tall_linkage]Uses:279Used by:Timeline
Symbol 281 BitmapUsed by:282
Symbol 282 GraphicUses:281Used by:283
Symbol 283 MovieClip [yellow_smart_tall_fur_linkage]Uses:282Used by:Timeline
Symbol 284 BitmapUsed by:285
Symbol 285 GraphicUses:284Used by:286
Symbol 286 MovieClip [yellow_torso_linkage]Uses:285Used by:Timeline
Symbol 287 BitmapUsed by:288
Symbol 288 GraphicUses:287Used by:289
Symbol 289 MovieClip [yellow_torso_fur_linkage]Uses:288Used by:Timeline
Symbol 290 GraphicUsed by:291
Symbol 291 MovieClip [overlay_purple_linkage]Uses:290Used by:296
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClip [overlay_red_linkage]Uses:292Used by:296
Symbol 294 GraphicUsed by:295
Symbol 295 MovieClip [overlay_yellow_linkage]Uses:294Used by:296
Symbol 296 MovieClip [overlay_tile_linkage]Uses:291 293 295Used by:Timeline
Symbol 297 Sound [game_music_1_linkage]Used by:299
Symbol 298 Sound [game_music_2_linkage]Used by:299
Symbol 299 MovieClipUses:297 298Used by:Timeline
Symbol 300 GraphicUsed by:339
Symbol 301 GraphicUsed by:302
Symbol 302 MovieClipUses:301Used by:303
Symbol 303 MovieClipUses:302Used by:339
Symbol 304 GraphicUsed by:305
Symbol 305 MovieClipUses:304Used by:306
Symbol 306 MovieClipUses:305Used by:339
Symbol 307 GraphicUsed by:310
Symbol 308 GraphicUsed by:309
Symbol 309 MovieClipUses:308Used by:310 313 316
Symbol 310 MovieClipUses:307 309Used by:311
Symbol 311 MovieClipUses:310Used by:339
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312 309Used by:314
Symbol 314 MovieClipUses:313Used by:339
Symbol 315 GraphicUsed by:316
Symbol 316 MovieClipUses:315 309Used by:317
Symbol 317 MovieClipUses:316Used by:339
Symbol 318 GraphicUsed by:339
Symbol 319 GraphicUsed by:327
Symbol 320 GraphicUsed by:327
Symbol 321 GraphicUsed by:327
Symbol 322 GraphicUsed by:327
Symbol 323 GraphicUsed by:327
Symbol 324 GraphicUsed by:327
Symbol 325 GraphicUsed by:327
Symbol 326 GraphicUsed by:327
Symbol 327 MovieClipUses:319 320 321 322 323 324 325 326Used by:328
Symbol 328 MovieClipUses:327Used by:329
Symbol 329 MovieClipUses:328Used by:339
Symbol 330 GraphicUsed by:331
Symbol 331 MovieClipUses:330Used by:338
Symbol 332 FontUsed by:333 334
Symbol 333 TextUses:332Used by:335
Symbol 334 TextUses:332Used by:335
Symbol 335 MovieClipUses:333 334Used by:338
Symbol 336 GraphicUsed by:337
Symbol 337 MovieClipUses:336Used by:338
Symbol 338 MovieClipUses:331 335 337Used by:339
Symbol 339 MovieClipUses:300 303 306 311 314 317 318 329 338Used by:Timeline
Symbol 340 TextUses:21Used by:Timeline
Symbol 341 TextUses:21Used by:Timeline
Symbol 342 TextUses:21Used by:Timeline
Symbol 343 GraphicUsed by:Timeline
Symbol 344 BitmapUsed by:345
Symbol 345 GraphicUses:344Used by:346
Symbol 346 MovieClip [background_big_linkage]Uses:345Used by:Timeline
Symbol 347 TextUses:16Used by:Timeline
Symbol 348 TextUses:16Used by:Timeline
Symbol 349 TextUses:16Used by:Timeline
Symbol 350 EditableTextUses:16Used by:Timeline
Symbol 351 EditableTextUses:16Used by:Timeline
Symbol 352 EditableTextUses:16Used by:Timeline
Symbol 353 TextUses:16Used by:Timeline
Symbol 354 TextUses:16Used by:Timeline
Symbol 355 TextUses:16Used by:Timeline
Symbol 356 TextUses:16Used by:Timeline
Symbol 357 EditableTextUses:16Used by:Timeline
Symbol 358 FontUsed by:359
Symbol 359 TextUses:358Used by:360
Symbol 360 MovieClipUses:359Used by:Timeline
Symbol 361 GraphicUsed by:Timeline
Symbol 362 TextUses:16Used by:Timeline
Symbol 363 TextUses:16Used by:Timeline
Symbol 364 TextUses:16Used by:Timeline
Symbol 365 TextUses:16Used by:Timeline
Symbol 366 TextUses:16Used by:Timeline
Symbol 367 TextUses:16Used by:Timeline
Symbol 368 TextUses:16Used by:Timeline
Symbol 369 EditableTextUses:16Used by:Timeline
Symbol 370 TextUses:16Used by:Timeline
Symbol 371 GraphicUsed by:372
Symbol 372 MovieClipUses:371Used by:Timeline
Symbol 373 TextUses:16Used by:Timeline
Symbol 374 EditableTextUses:16Used by:Timeline
Symbol 375 TextUses:16Used by:Timeline
Symbol 376 TextUses:16Used by:Timeline
Symbol 377 TextUses:16Used by:Timeline
Symbol 378 TextUses:16Used by:Timeline
Symbol 379 TextUses:16Used by:Timeline
Symbol 380 FontUsed by:381 382 383
Symbol 381 EditableTextUses:380Used by:Timeline
Symbol 382 EditableTextUses:380Used by:Timeline
Symbol 383 EditableTextUses:380Used by:Timeline
Symbol 384 TextUses:16Used by:385
Symbol 385 MovieClipUses:384Used by:Timeline

Instance Names

"intro_mc"Frame 3Symbol 339 MovieClip
"purple"Frame 6Symbol 136 MovieClip [purple_slime_linkage]
"red"Frame 6Symbol 202 MovieClip [red_slime_linkage]
"yellow"Frame 6Symbol 268 MovieClip [yellow_slime_linkage]
"cursor"Frame 6Symbol 19 MovieClip [cursor_2_linkage]
"tiles_inhabited"Frame 8Symbol 350 EditableText
"population"Frame 8Symbol 351 EditableText
"evo_points"Frame 8Symbol 352 EditableText
"cursor"Frame 8Symbol 19 MovieClip [cursor_2_linkage]
"turns"Frame 8Symbol 357 EditableText
"cursor_3"Frame 10Symbol 19 MovieClip [cursor_2_linkage]
"evo_points"Frame 10Symbol 369 EditableText
"check_tree"Frame 10Symbol 372 MovieClip
"check_mountain"Frame 10Symbol 372 MovieClip
"check_rock"Frame 10Symbol 372 MovieClip
"check_sand"Frame 10Symbol 372 MovieClip
"check_ice"Frame 10Symbol 372 MovieClip
"cost"Frame 10Symbol 374 EditableText
"cursor_2"Frame 11Symbol 19 MovieClip [cursor_2_linkage]
"player_final"Frame 12Symbol 381 EditableText
"opponent_final"Frame 12Symbol 382 EditableText
"outcome"Frame 12Symbol 383 EditableText
"bar"Symbol 15 MovieClip Frame 1Symbol 3 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 2Symbol 19 as "cursor_2_linkage"
ExportAssets (56)Timeline Frame 2Symbol 25 as "menu_items_linkage"
ExportAssets (56)Timeline Frame 2Symbol 28 as "tile_grass_linkage"
ExportAssets (56)Timeline Frame 2Symbol 31 as "tile_ice_linkage"
ExportAssets (56)Timeline Frame 2Symbol 34 as "tile_mountain_linkage"
ExportAssets (56)Timeline Frame 2Symbol 37 as "tile_rock_linkage"
ExportAssets (56)Timeline Frame 2Symbol 40 as "tile_sand_linkage"
ExportAssets (56)Timeline Frame 2Symbol 43 as "tile_tree_linkage"
ExportAssets (56)Timeline Frame 2Symbol 46 as "tile_water_down_linkage"
ExportAssets (56)Timeline Frame 2Symbol 49 as "tile_water_down_left_linkage"
ExportAssets (56)Timeline Frame 2Symbol 52 as "tile_water_down_left_right_linkage"
ExportAssets (56)Timeline Frame 2Symbol 55 as "tile_water_down_right_linkage"
ExportAssets (56)Timeline Frame 2Symbol 58 as "tile_water_full_linkage"
ExportAssets (56)Timeline Frame 2Symbol 61 as "tile_water_left_linkage"
ExportAssets (56)Timeline Frame 2Symbol 64 as "tile_water_left_right_linkage"
ExportAssets (56)Timeline Frame 2Symbol 67 as "tile_water_open_linkage"
ExportAssets (56)Timeline Frame 2Symbol 70 as "tile_water_right_linkage"
ExportAssets (56)Timeline Frame 2Symbol 73 as "tile_water_up_linkage"
ExportAssets (56)Timeline Frame 2Symbol 76 as "tile_water_up_down_linkage"
ExportAssets (56)Timeline Frame 2Symbol 79 as "tile_water_up_down_left_linkage"
ExportAssets (56)Timeline Frame 2Symbol 82 as "tile_water_up_down_right_linkage"
ExportAssets (56)Timeline Frame 2Symbol 85 as "tile_water_up_left_linkage"
ExportAssets (56)Timeline Frame 2Symbol 88 as "tile_water_up_left_right_linkage"
ExportAssets (56)Timeline Frame 2Symbol 91 as "tile_water_up_right_linkage"
ExportAssets (56)Timeline Frame 2Symbol 94 as "purple_arm_down_left_linkage"
ExportAssets (56)Timeline Frame 2Symbol 97 as "purple_arm_down_left_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 100 as "purple_arm_down_right_linkage"
ExportAssets (56)Timeline Frame 2Symbol 103 as "purple_arm_down_right_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 106 as "purple_arm_up_left_linkage"
ExportAssets (56)Timeline Frame 2Symbol 109 as "purple_arm_up_left_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 112 as "purple_arm_up_right_linkage"
ExportAssets (56)Timeline Frame 2Symbol 115 as "purple_arm_up_right_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 118 as "purple_complete_linkage"
ExportAssets (56)Timeline Frame 2Symbol 121 as "purple_complete_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 124 as "purple_legs_long_linkage"
ExportAssets (56)Timeline Frame 2Symbol 127 as "purple_legs_long_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 130 as "purple_legs_small_linkage"
ExportAssets (56)Timeline Frame 2Symbol 133 as "purple_legs_small_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 136 as "purple_slime_linkage"
ExportAssets (56)Timeline Frame 2Symbol 139 as "purple_slime_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 142 as "purple_slime_tall_linkage"
ExportAssets (56)Timeline Frame 2Symbol 145 as "purple_slime_tall_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 148 as "purple_smart_tall_linkage"
ExportAssets (56)Timeline Frame 2Symbol 151 as "purple_smart_tall_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 154 as "purple_torso_linkage"
ExportAssets (56)Timeline Frame 2Symbol 157 as "purple_torso_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 160 as "red_arm_down_left_linkage"
ExportAssets (56)Timeline Frame 2Symbol 163 as "red_arm_down_left_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 166 as "red_arm_down_right_linkage"
ExportAssets (56)Timeline Frame 2Symbol 169 as "red_arm_down_right_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 172 as "red_arm_up_left_linkage"
ExportAssets (56)Timeline Frame 2Symbol 175 as "red_arm_up_left_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 178 as "red_arm_up_right_linkage"
ExportAssets (56)Timeline Frame 2Symbol 181 as "red_arm_up_right_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 184 as "red_complete_linkage"
ExportAssets (56)Timeline Frame 2Symbol 187 as "red_complete_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 190 as "red_legs_long_linkage"
ExportAssets (56)Timeline Frame 2Symbol 193 as "red_legs_long_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 196 as "red_legs_small_linkage"
ExportAssets (56)Timeline Frame 2Symbol 199 as "red_legs_small_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 202 as "red_slime_linkage"
ExportAssets (56)Timeline Frame 2Symbol 205 as "red_slime_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 208 as "red_slime_tall_linkage"
ExportAssets (56)Timeline Frame 2Symbol 211 as "red_slime_tall_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 214 as "red_smart_tall_linkage"
ExportAssets (56)Timeline Frame 2Symbol 217 as "red_smart_tall_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 220 as "red_torso_linkage"
ExportAssets (56)Timeline Frame 2Symbol 223 as "red_torso_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 226 as "yellow_arm_down_left_linkage"
ExportAssets (56)Timeline Frame 2Symbol 229 as "yellow_arm_down_left_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 232 as "yellow_arm_down_right_linkage"
ExportAssets (56)Timeline Frame 2Symbol 235 as "yellow_arm_down_right_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 238 as "yellow_arm_up_left_linkage"
ExportAssets (56)Timeline Frame 2Symbol 241 as "yellow_arm_up_left_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 244 as "yellow_arm_up_right_linkage"
ExportAssets (56)Timeline Frame 2Symbol 247 as "yellow_arm_up_right_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 250 as "yellow_complete_linkage"
ExportAssets (56)Timeline Frame 2Symbol 253 as "yellow_complete_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 256 as "yellow_legs_long_linkage"
ExportAssets (56)Timeline Frame 2Symbol 259 as "yellow_legs_long_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 262 as "yellow_legs_small_linkage"
ExportAssets (56)Timeline Frame 2Symbol 265 as "yellow_legs_small_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 268 as "yellow_slime_linkage"
ExportAssets (56)Timeline Frame 2Symbol 271 as "yellow_slime_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 274 as "yellow_slime_tall_linkage"
ExportAssets (56)Timeline Frame 2Symbol 277 as "yellow_slime_tall_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 280 as "yellow_smart_tall_linkage"
ExportAssets (56)Timeline Frame 2Symbol 283 as "yellow_smart_tall_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 286 as "yellow_torso_linkage"
ExportAssets (56)Timeline Frame 2Symbol 289 as "yellow_torso_fur_linkage"
ExportAssets (56)Timeline Frame 2Symbol 291 as "overlay_purple_linkage"
ExportAssets (56)Timeline Frame 2Symbol 293 as "overlay_red_linkage"
ExportAssets (56)Timeline Frame 2Symbol 295 as "overlay_yellow_linkage"
ExportAssets (56)Timeline Frame 2Symbol 296 as "overlay_tile_linkage"
ExportAssets (56)Timeline Frame 2Symbol 297 as "game_music_1_linkage"
ExportAssets (56)Timeline Frame 2Symbol 298 as "game_music_2_linkage"
ExportAssets (56)Timeline Frame 8Symbol 346 as "background_big_linkage"

Labels

"loaded"Symbol 15 MovieClip Frame 3
"purple"Symbol 296 MovieClip [overlay_tile_linkage] Frame 2
"red"Symbol 296 MovieClip [overlay_tile_linkage] Frame 3
"yellow"Symbol 296 MovieClip [overlay_tile_linkage] Frame 4




http://swfchan.com/16/76336/info.shtml
Created: 5/4 -2019 02:56:07 Last modified: 5/4 -2019 02:56:07 Server time: 16/05 -2024 10:44:09