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

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

Fish Eat Fish.swf

This is the info page for
Flash #31449

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


Text
Games Good Enough to Eat

Yumtastic

eat

Play Game

Instructions

Credits

Instructions

Eat Fish Food Pellets:

Fish Food pellets are a good way to
keep your fish full, and growing.
However Fish Food Pellets do not earn
you points.

Eat Other Fish:

Eating fish will not only keep you
full and growing but you will earn
points based on the size of the fish
you eat. You can only eat fish
smaller than you though.

Keep Track Of Your Hunger:

Make sure you watch your hunger indicator in
the top right corner. If your fish does not
get fed quick enough you will either die or
lose growth points. Every five time you eat
either a Fish Food Pellet or another fish
you will grow to the next size.

Main Menu

Credits

Thanks to everyone who helped to test
this game!

Dave Jackson

Contribution:
Illustrations
Graphics

Joey Chappel

Contribution:
Action Scripting
Animation

Yumtastic

www.YumtasticGames.com

Website:

Creators:

lives:3

growth:

score: 0

score: 0

Game Over

Click to try again

Main Menu

or

score: 0

Congratulations you have became
the biggest fish!

Click to play again

score: 0

Congratulations you have became
the biggest fish!

ActionScript [AS1/AS2]

Frame 1
stop(); Yumtastic.onRelease = function () { getURL ("http://www.YumtasticGames.com", "_blank"); };
Frame 2
playGame.onRelease = function () { gotoAndStop ("PlayGame"); }; instructions.onRelease = function () { gotoAndStop ("Instructions"); }; credits.onRelease = function () { gotoAndStop ("Credits"); }; stop();
Frame 3
mainMenu.onRelease = function () { gotoAndStop ("MainMenu"); };
Frame 4
mainMenu.onRelease = function () { gotoAndStop ("MainMenu"); }; yumtastic.onRelease = function () { getURL ("http://www.YumtasticGames.com", _blank); };
Frame 5
function moveStuff() { if ((((fishStartXPos > fishLeft) and (fishStartXPos < fishRight)) and (fishStartYPos > fishTop)) and (fishStartYPos < fishBottom)) { if (Key.isDown(37)) { fish.fishInside._xscale = -100; bubbleMouthSide = -bubbleMove; fishStartXPos = fishStartXPos - moveSpeed; } if (Key.isDown(39)) { fish.fishInside._xscale = 100; bubbleMouthSide = bubbleMove; fishStartXPos = fishStartXPos + moveSpeed; } if (Key.isDown(38)) { fishStartYPos = fishStartYPos - moveSpeed; } if (Key.isDown(40)) { fishStartYPos = fishStartYPos + moveSpeed; } } } function keepFishInBounds() { if (fishStartXPos < fishLeft) { fishStartXPos = fishLeft + 1; } if (fishStartXPos > fishRight) { fishStartXPos = fishRight - 1; } if (fishStartYPos < fishTop) { fishStartYPos = fishTop + 1; } if (fishStartYPos > fishBottom) { fishStartYPos = fishBottom - 1; } } function checkIfGameWon() { if (fish._xscale >= 105) { win(); } } function checkIfGameOver() { if (fishLivesLeft == 0) { GameOver(); } } function openMouthPellet() { fish.fishInside.gotoAndPlay("eat"); eatingSound.start(); } function openMouthFish() { fish.fishInside.gotoAndPlay("eatFish"); eatingSound.start(); } function fishScore(eatenFishSize) { switch (eatenFishSize) { case 0 : totalScore = totalScore + 110; break; case 10 : totalScore = totalScore + 10; break; case 20 : totalScore = totalScore + 20; break; case 30 : totalScore = totalScore + 30; break; case 40 : totalScore = totalScore + 40; break; case 50 : totalScore = totalScore + 50; break; case 60 : totalScore = totalScore + 60; break; case 70 : totalScore = totalScore + 70; break; case 80 : totalScore = totalScore + 80; break; case 90 : totalScore = totalScore + 90; break; case 100 : totalScore = totalScore + 100; break; default : totalScore = totalScore + 0; } totalScoreDisplay = "score: " + totalScore; untilExtraScore = (extraLifeScore - totalScore) + " points until extra life"; if (totalScore >= extraLifeScore) { extraLifeScore = extraLifeScore + (1000 + extraLifeScoredificculty); extraLifeScoredificculty = extraLifeScoredificculty + 500; extraLife(); totalScoreDisplay = "score: " + totalScore; untilExtraScore = (extraLifeScore - totalScore) + " points until extra life"; } } function fishGrowHungry() { if (fishHungerStart == "yes") { if (FishHunger.FishHungerLevel._xscale == 0) { stomachEmptyTimer++; if (stomachEmptyTimer >= 7) { FishHunger.HungerSign.gotoAndPlay("Hungry"); } if (stomachEmptyTimer == 14) { stomachEmptyTimer = 0; minusLife(); } } else { stomachEmptyTimer++; if (stomachEmptyTimer == 14) { FishHunger.FishHungerLevel._xscale = FishHunger.FishHungerLevel._xscale - 20; stomachEmptyTimer = 0; } } } } function fishGrow() { fishHungerStart = "yes"; FishHunger.HungerSign.gotoAndStop("notHungry"); FishHunger.FishHungerLevel._xscale = FishHunger.FishHungerLevel._xscale + 20; stomachEmptyTimer = 0; if (FishHunger.FishHungerLevel._xscale == 100) { FishHunger.FishHungerLevel._xscale = 0; fish._xscale = fish._xscale + fishGrowWidthAmount; fish._yscale = fish._yscale + fishGrowHeightAmount; fishWidth = fish._width; fishHeight = fish._height; bubbleMove = bubbleMove + 1.5; } } function feedFood() { food = attachMovie("Food", "Food" + foodNumber, getNextHighestDepth()); foodPosRan = random(650) + 25; food._x = foodPosRan; food._y = 10; movingFood = setInterval(moveFood, 50); } function moveFood() { food._y = food._y + foodSpeed; if (food._y > 510) { foodGone = "Gone"; removeMovieClip(food); clearInterval(movingFood); } } function createBubbles() { bubble = attachMovie("Bubble", "Bubble" + foodNumber, getNextHighestDepth()); bubble._x = fish._x + bubbleMouthSide; bubble._y = fish._y; if (bubbleMouthSide == -50) { bubble._xscale = -100; } movingBubbles = setInterval(moveBubbles, 50); } function moveBubbles() { bubble._y = bubble._y - bubbleSpeed; if (bubble._y < -10) { bubbleGone = "Gone"; removeMovieClip(bubble); clearInterval(movingBubbles); } } function colorOfFish(fishSize) { switch (fishSize) { case 0 : badFish.badFish.gotoAndPlay("BrownFish"); break; case 10 : badFish.badFish.gotoAndPlay("BrownFish"); break; case 20 : badFish.badFish.gotoAndPlay("GreenFish"); break; case 30 : badFish.badFish.gotoAndPlay("RedFish"); break; case 40 : badFish.badFish.gotoAndPlay("BrownFish"); break; case 50 : badFish.badFish.gotoAndPlay("GreenFish"); break; case 60 : badFish.badFish.gotoAndPlay("RedFish"); break; case 70 : badFish.badFish.gotoAndPlay("BrownFish"); break; case 80 : badFish.badFish.gotoAndPlay("GreenFish"); break; case 90 : badFish.badFish.gotoAndPlay("RedFish"); break; case 100 : badFish.badFish.gotoAndPlay("BrownFish"); break; default : totalScore = totalScore + 0; } } function openMouthColorFish(fishSize) { switch (fishSize) { case 0 : fish.fishInside.fishEaten.gotoAndPlay("brownFish"); break; case 10 : fish.fishInside.fishEaten.gotoAndPlay("brownFish"); break; case 20 : fish.fishInside.fishEaten.gotoAndPlay("greenFish"); break; case 30 : fish.fishInside.fishEaten.gotoAndPlay("redFish"); break; case 40 : fish.fishInside.fishEaten.gotoAndPlay("brownFish"); break; case 50 : fish.fishInside.fishEaten.gotoAndPlay("greenFish"); break; case 60 : fish.fishInside.fishEaten.gotoAndPlay("redFish"); break; case 70 : fish.fishInside.fishEaten.gotoAndPlay("brownFish"); break; case 80 : fish.fishInside.fishEaten.gotoAndPlay("greenFish"); break; case 90 : fish.fishInside.fishEaten.gotoAndPlay("redFish"); break; case 100 : fish.fishInside.fishEaten.gotoAndPlay("brownFish"); break; default : fish.fishInside.fishEaten.gotoAndPlay("brownFish"); } } function newFish() { if (getTimer() > nextFishTime) { attachMovie("badFish", "badFish" + nextFish, getNextHighestDepth()); if (Math.random() < 0.5) { _root["badFish" + nextFish]._x = -100; fishDir = -100; dx = int(Math.random(3)) + 3; } else { _root["badFish" + nextFish]._x = 770; fishDir = 100; dx = -(int(Math.random(3)) + 3); } fishSize = Math.round(Math.random() * 10) * 10; _root["badFish" + nextFish]._y = int(Math.random() * 480) + 20; enemyFishArray.push({clip:"badFish" + nextFish, d:dx, fishDirection:fishDir, fishScale:fishSize}); nextFish++; nextFishTime = getTimer() + 2000; } } function moveEnemyFishs() { i = enemyFishArray.length - 1; while (i >= 0) { sizeOfFish = enemyFishArray[i].fishScale; fishSpeed = enemyFishArray[i].d; fishFaces = enemyFishArray[i].fishDirection; badFish = _root[enemyFishArray[i].clip]; badFish._x = badFish._x + fishSpeed; badFish.badFish._xscale = fishFaces; badFish._xscale = sizeOfFish; badFish._yscale = sizeOfFish; if (bad) { badFish.removeMovieClip(); enemyFishArray.splice(i, 1); } if ((dx < 0) and (badFish._x < -70)) { badFish.removeMovieClip(); enemyFishArray.splice(i, 1); } else if ((dx > 0) and (badFish._x > 740)) { badFish.removeMovieClip(); enemyFishArray.splice(i, 1); } colorOfFish(sizeOfFish); yourFishSize = fish._width; badFishSize = badFish._width; if (yourFishSize > badFishSize) { if (fish.fishInside.FishMouth.hitTest(badFish)) { fishScore(sizeOfFish); openMouthFish(); badFish.removeMovieClip(); enemyFishArray.splice(i, 1); fishGrow(); openMouthColorFish(sizeOfFish); } } if (yourFishSize < badFishSize) { if (badFish.badFish.FishMouth.hitTest(fish.fishInside.EatArea)) { FishHunger.FishHungerLevel._xscale = 0; minusLife(); eatingSound.start(); stomachEmptyTimer = 0; } } i--; } } function extraLife() { fishLivesLeft++; lives = "lives: " + fishLivesLeft; } function minusLife() { fishHungerStart = "no"; fish._x = 267.2; fish._y = -126.1; fishStartXPos = 277.2; fishStartYPos = 203.9; fishLivesLeft--; lives = "lives: " + fishLivesLeft; splashingSound.start(); FishHunger.HungerSign.gotoAndStop("notHungry"); } function win() { i = enemyFishArray.length; while (i >= 0) { clearInterval(newFishs); clearInterval(moveEnemyFish); badFish = _root[enemyFishArray[i].clip]; badFish.removeMovieClip(); enemyFishArray.splice(i, 1); i--; } clearInterval(movingFood); clearInterval(fishInBounds); clearInterval(newFishs); clearInterval(moveEnemyFish); clearInterval(movingBubbles); clearInterval(fishHungerGrow); clearInterval(gameLost); clearInterval(gameWin); bubble.removeMovieClip(); food.removeMovieClip(); gotoAndStop ("Win"); } function GameOver() { i = enemyFishArray.length; while (i >= 0) { clearInterval(newFishs); clearInterval(moveEnemyFish); badFish = _root[enemyFishArray[i].clip]; badFish.removeMovieClip(); enemyFishArray.splice(i, 1); i--; } clearInterval(movingFood); clearInterval(fishInBounds); clearInterval(newFishs); clearInterval(moveEnemyFish); clearInterval(movingBubbles); clearInterval(fishHungerGrow); clearInterval(gameLost); clearInterval(gameWin); bubble.removeMovieClip(); food.removeMovieClip(); gotoAndStop ("GameOver"); } foodSpeed = 1; foodGone = "Gone"; bubbleSpeed = 2; bubbleGone = "Gone"; bubbleMouthSide = 10; fishGrowWidthAmount = 5; fishGrowHeightAmount = 5; bubbleMove = 10; fishRight = 671; fishLeft = 25; fishTop = 25; fishBottom = 470; extraLifeScore = 1000; extraLifeScoredificculty = 500; totalScore = 0; totalScoreDisplay = "score: " + totalScore; untilExtraScore = (extraLifeScore - totalScore) + " points until extra life"; sizeOfTheFish = 20; fish._xscale = sizeOfTheFish; fish._yscale = sizeOfTheFish; originalFishScale = 10; fishLivesLeft = 3; lives = "lives: " + fishLivesLeft; stomachEmptyTimer = 0; FishHunger.FishHungerLevel._xscale = 0; fishHungerStart = "no"; eatingSound = new Sound(); eatingSound.attachSound("Eating"); eatingSound.setVolume(5); splashingSound = new Sound(); splashingSound.attachSound("DropInWater"); splashingSound.setVolume(5); splashingSound.start(); div = 10; moveSpeed = 7.25; foodTimeElapsed = 0; fishStartXPos = 277.2; fishStartYPos = 203.9; getKeys = new Object(); getKeys.onKeyDown = function () { }; Key.addListener(getKeys); fishInBounds = setInterval(keepFishInBounds, 200); gameWin = setInterval(checkIfGameWon, 200); gameLost = setInterval(checkIfGameOver, 200); onEnterFrame = function () { fish._x = fish._x + ((fishStartXPos - fish._x) / div); fish._y = fish._y + ((fishStartYPos - fish._y) / div); if (foodTimeElapsed == 0) { randomFoodTime = random(90) + 36; } foodTimeElapsed++; if (foodTimeElapsed == randomFoodTime) { foodTimeElapsed = 0; if (foodGone == "Gone") { feedFood(); foodGone = "Not Gone"; } } if (fish.fishInside.FishMouth.hitTest(food)) { removeMovieClip(food); foodGone = "Gone"; clearInterval(movingFood); fishGrow(); openMouthPellet(); } if (bubbleGone == "Gone") { createBubbles(); bubbleGone = "Not Gone"; } }; fish.onEnterFrame = moveStuff; fishHungerGrow = setInterval(fishGrowHungry, 1000); nextFishTime = 0; nextFish = 0; enemyFishArray = []; numenemyFishArray = 10; newFishs = setInterval(newFish, 50); moveEnemyFish = setInterval(moveEnemyFishs, 20); stop();
Frame 6
tryAgain.onRelease = function () { clearInterval(movingFood); clearInterval(fishInBounds); clearInterval(newFishs); clearInterval(moveEnemyFish); clearInterval(movingBubbles); clearInterval(fishHungerGrow); clearInterval(gameLost); clearInterval(gameWin); gotoAndStop ("PlayGame"); }; mainMenu.onRelease = function () { clearInterval(movingFood); clearInterval(fishInBounds); clearInterval(newFishs); clearInterval(moveEnemyFish); clearInterval(movingBubbles); clearInterval(fishHungerGrow); clearInterval(gameLost); clearInterval(gameWin); gotoAndStop ("MainMenu"); }; foodGone = "Not Gone"; stop();
Frame 7
playAgain.onRelease = function () { clearInterval(movingFood); clearInterval(fishInBounds); clearInterval(newFishs); clearInterval(moveEnemyFish); clearInterval(movingBubbles); clearInterval(fishHungerGrow); clearInterval(gameLost); clearInterval(gameWin); gotoAndStop ("PlayGame"); }; mainMenu.onRelease = function () { clearInterval(movingFood); clearInterval(fishInBounds); clearInterval(newFishs); clearInterval(moveEnemyFish); clearInterval(movingBubbles); clearInterval(fishHungerGrow); clearInterval(gameLost); clearInterval(gameWin); gotoAndStop ("MainMenu"); }; foodGone = "Not Gone"; stop();
Symbol 29 MovieClip Frame 10
gotoAndPlay ("BrownFish");
Symbol 29 MovieClip Frame 12
gotoAndPlay ("BrownFish");
Symbol 29 MovieClip Frame 24
gotoAndPlay ("GreenFish");
Symbol 29 MovieClip Frame 26
gotoAndPlay ("GreenFish");
Symbol 29 MovieClip Frame 39
gotoAndPlay ("RedFish");
Symbol 29 MovieClip Frame 41
gotoAndPlay ("RedFish");
Symbol 42 MovieClip Frame 40
stop(); _root.gotoAndPlay("MainMenu");
Symbol 54 MovieClip Frame 1
stop();
Symbol 54 MovieClip Frame 5
stop();
Symbol 54 MovieClip Frame 10
stop();
Symbol 73 MovieClip Frame 1
stop();
Symbol 73 MovieClip Frame 30
gotoAndPlay ("Hungry");
Symbol 124 MovieClip Frame 14
gotoAndPlay ("swim");
Symbol 124 MovieClip Frame 16
gotoAndPlay ("swim");
Symbol 124 MovieClip Frame 20
gotoAndPlay ("swim");

Library Items

Symbol 1 Sound [Eating]
Symbol 2 Sound [DropInWater]
Symbol 3 GraphicUsed by:4
Symbol 4 MovieClipUses:3Used by:29
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClipUses:5Used by:29 54
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:29
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:9Used by:29 124
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:29
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:29 97 133
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:29 54 97 133
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:17Used by:29 97 133
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:19Used by:29
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClipUses:21Used by:29 59 97 133
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:29 54 59 97 133
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:25Used by:29 59 97 133
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:29
Symbol 29 MovieClipUses:4 6 8 10 12 14 16 18 20 22 24 26 28Used by:30
Symbol 30 MovieClip [badFish]Uses:29
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClip [Food]Uses:31Used by:84 97 124
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClip [Bubble]Uses:33Used by:59 84 97 133
Symbol 35 GraphicUsed by:44  Timeline
Symbol 36 GraphicUsed by:42
Symbol 37 FontUsed by:38 39 93
Symbol 38 TextUses:37Used by:41 97
Symbol 39 TextUses:37Used by:41
Symbol 40 GraphicUsed by:41 97
Symbol 41 MovieClipUses:38 39 40Used by:42
Symbol 42 MovieClipUses:36 41Used by:43
Symbol 43 MovieClipUses:42Used by:Timeline
Symbol 44 ButtonUses:35Used by:Timeline
Symbol 45 GraphicUsed by:59 84 97 133
Symbol 46 GraphicUsed by:59 133
Symbol 47 GraphicUsed by:50
Symbol 48 GraphicUsed by:50  Timeline
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:47 48 49Used by:59 84 97 133  Timeline
Symbol 51 GraphicUsed by:59
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:59 84 97 124 133
Symbol 54 MovieClipUses:6 16 24Used by:59 84 97 124 133
Symbol 55 GraphicUsed by:59
Symbol 56 FontUsed by:57
Symbol 57 TextUses:56Used by:59 84 97  Timeline
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:45 46 50 51 53 54 34 55 57 58 22 24 26Used by:Timeline
Symbol 60 FontUsed by:61 62 63 78 80 82 85 88 89 90 91 92 94 95 96 111 114 115 116 127 128 129 130 134 135 137
Symbol 61 TextUses:60Used by:Timeline
Symbol 62 TextUses:60Used by:Timeline
Symbol 63 TextUses:60Used by:Timeline
Symbol 64 GraphicUsed by:65
Symbol 65 ButtonUses:64Used by:Timeline
Symbol 66 GraphicUsed by:84
Symbol 67 GraphicUsed by:84 97
Symbol 68 FontUsed by:69 79 81 83 87 90 92 131 136
Symbol 69 TextUses:68Used by:84
Symbol 70 GraphicUsed by:77
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:71Used by:73
Symbol 73 MovieClipUses:72Used by:77 113
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:77 113
Symbol 76 GraphicUsed by:77 113
Symbol 77 MovieClipUses:70 73 75 76Used by:84
Symbol 78 TextUses:60Used by:84
Symbol 79 TextUses:68Used by:84
Symbol 80 TextUses:60Used by:84
Symbol 81 TextUses:68Used by:84
Symbol 82 TextUses:60Used by:84
Symbol 83 TextUses:68Used by:84
Symbol 84 MovieClipUses:45 66 57 67 53 54 34 50 69 77 32 78 79 80 81 82 83Used by:Timeline
Symbol 85 TextUses:60Used by:Timeline
Symbol 86 GraphicUsed by:97
Symbol 87 TextUses:68Used by:97
Symbol 88 TextUses:60Used by:97
Symbol 89 TextUses:60Used by:97
Symbol 90 TextUses:60 68Used by:97
Symbol 91 TextUses:60Used by:97
Symbol 92 TextUses:60 68Used by:97
Symbol 93 TextUses:37Used by:97
Symbol 94 TextUses:60Used by:97
Symbol 95 TextUses:60Used by:97
Symbol 96 TextUses:60Used by:97
Symbol 97 MovieClipUses:45 86 57 67 53 54 34 50 87 88 89 90 91 92 22 24 26 14 16 18 38 93 40 32 94 95 96Used by:Timeline
Symbol 98 GraphicUsed by:Timeline
Symbol 99 GraphicUsed by:Timeline
Symbol 100 BitmapUsed by:101
Symbol 101 GraphicUses:100Used by:102
Symbol 102 MovieClipUses:101Used by:Timeline
Symbol 103 GraphicUsed by:Timeline
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:Timeline
Symbol 106 GraphicUsed by:Timeline
Symbol 107 GraphicUsed by:Timeline
Symbol 108 GraphicUsed by:Timeline
Symbol 109 GraphicUsed by:110
Symbol 110 MovieClipUses:109Used by:Timeline
Symbol 111 EditableTextUses:60Used by:Timeline
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112 73 75 76Used by:Timeline
Symbol 114 TextUses:60Used by:Timeline
Symbol 115 EditableTextUses:60Used by:Timeline
Symbol 116 EditableTextUses:60Used by:Timeline
Symbol 117 GraphicUsed by:Timeline
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:118Used by:124
Symbol 120 GraphicUsed by:121
Symbol 121 MovieClipUses:120Used by:124
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:124
Symbol 124 MovieClipUses:119 121 123 10 53 32 54Used by:125
Symbol 125 MovieClipUses:124Used by:Timeline
Symbol 126 GraphicUsed by:Timeline
Symbol 127 TextUses:60Used by:Timeline
Symbol 128 TextUses:60Used by:Timeline
Symbol 129 TextUses:60Used by:Timeline
Symbol 130 TextUses:60Used by:Timeline
Symbol 131 EditableTextUses:68Used by:Timeline
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:45 46 50 132 53 54 34 22 24 26 14 16 18Used by:Timeline
Symbol 134 TextUses:60Used by:Timeline
Symbol 135 TextUses:60Used by:Timeline
Symbol 136 EditableTextUses:68Used by:Timeline
Symbol 137 TextUses:60Used by:Timeline

Instance Names

"Site"Frame 1Symbol 43 MovieClip
"Yumtastic"Frame 1Symbol 44 Button
"playGame"Frame 2Symbol 65 Button
"instructions"Frame 2Symbol 65 Button
"credits"Frame 2Symbol 65 Button
"mainMenu"Frame 3Symbol 65 Button
"yumtastic"Frame 4Symbol 65 Button
"lives"Frame 5Symbol 111 EditableText
"FishHunger"Frame 5Symbol 113 MovieClip
"totalScoreDisplay"Frame 5Symbol 115 EditableText
"untilExtraScore"Frame 5Symbol 116 EditableText
"fish"Frame 5Symbol 125 MovieClip
"totalScoreDisplay"Frame 6Symbol 131 EditableText
"tryAgain"Frame 6Symbol 65 Button
"mainMenu"Frame 6Symbol 65 Button
"totalScoreDisplay"Frame 7Symbol 136 EditableText
"playAgain"Frame 7Symbol 65 Button
"FishMouth"Symbol 29 MovieClip Frame 1Symbol 10 MovieClip
"badFish"Symbol 30 MovieClip [badFish] Frame 1Symbol 29 MovieClip
"fishEaten"Symbol 59 MovieClip Frame 1Symbol 54 MovieClip
"HungerSign"Symbol 77 MovieClip Frame 1Symbol 73 MovieClip
"FishHungerLevel"Symbol 77 MovieClip Frame 1Symbol 75 MovieClip
"fishEaten"Symbol 84 MovieClip Frame 1Symbol 54 MovieClip
"FishHunger"Symbol 84 MovieClip Frame 1Symbol 77 MovieClip
"fishEaten"Symbol 84 MovieClip Frame 1Symbol 54 MovieClip
"fishEaten"Symbol 97 MovieClip Frame 1Symbol 54 MovieClip
"HungerSign"Symbol 113 MovieClip Frame 1Symbol 73 MovieClip
"FishHungerLevel"Symbol 113 MovieClip Frame 1Symbol 75 MovieClip
"FishMouth"Symbol 124 MovieClip Frame 1Symbol 10 MovieClip
"EatArea"Symbol 124 MovieClip Frame 1Symbol 10 MovieClip
"fishEaten"Symbol 124 MovieClip Frame 18Symbol 54 MovieClip
"fishInside"Symbol 125 MovieClip Frame 1Symbol 124 MovieClip
"fishEaten"Symbol 133 MovieClip Frame 1Symbol 54 MovieClip
"fishEaten"Symbol 133 MovieClip Frame 1Symbol 54 MovieClip
"fishEaten"Symbol 133 MovieClip Frame 1Symbol 54 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "Eating"
ExportAssets (56)Timeline Frame 1Symbol 2 as "DropInWater"
ExportAssets (56)Timeline Frame 1Symbol 30 as "badFish"
ExportAssets (56)Timeline Frame 1Symbol 32 as "Food"
ExportAssets (56)Timeline Frame 1Symbol 34 as "Bubble"

Labels

"MainMenu"Frame 2
"Instructions"Frame 3
"Credits"Frame 4
"PlayGame"Frame 5
"GameOver"Frame 6
"Win"Frame 7
"BrownFish"Symbol 29 MovieClip Frame 1
"BrownFishEat"Symbol 29 MovieClip Frame 11
"GreenFish"Symbol 29 MovieClip Frame 15
"GreenFishEat"Symbol 29 MovieClip Frame 25
"RedFish"Symbol 29 MovieClip Frame 30
"RedFishEat"Symbol 29 MovieClip Frame 40
"brownFish"Symbol 54 MovieClip Frame 1
"greenFish"Symbol 54 MovieClip Frame 5
"redFish"Symbol 54 MovieClip Frame 10
"notHungry"Symbol 73 MovieClip Frame 1
"Hungry"Symbol 73 MovieClip Frame 2
"Swim"Symbol 124 MovieClip Frame 1
"eat"Symbol 124 MovieClip Frame 15
"eatFish"Symbol 124 MovieClip Frame 18

Dynamic Text Variables

livesSymbol 111 EditableText"lives:3"
totalScoreDisplaySymbol 115 EditableText"score: 0"
untilExtraScoreSymbol 116 EditableText"score: 0"
totalScoreDisplaySymbol 131 EditableText"score: 0"
totalScoreDisplaySymbol 136 EditableText"score: 0"




http://swfchan.com/7/31449/info.shtml
Created: 18/5 -2019 15:22:02 Last modified: 18/5 -2019 15:22:02 Server time: 13/05 -2024 19:43:23