STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
This is the info page for Flash #54701 |
click mouse to move bush |
Angry journalists are throwing shoes at you. Try to avoid them as long as you can and earn points according to the size of the shoe. Move your mouse pointer and click to dodge inbound projectiles. |
YOU WERE HIT! GAME OVER! |
BEST EVER |
SCORE |
ActionScript [AS1/AS2]
Frame 2var message_fmt = new TextFormat(); message_fmt.color = 0; message_fmt.bold = true; message_fmt.size = 12; message_fmt.align = "center"; var livescore_fmt = new TextFormat(); livescore_fmt.color = 16777215 /* 0xFFFFFF */; livescore_fmt.bold = true; livescore_fmt.size = 12; livescore_fmt.align = "center"; var porukaPlus = new Array(); porukaPlus[1] = "You missed!"; porukaPlus[2] = "You hit like a girl..."; porukaPlus[3] = "You taking steroids?"; porukaPlus[4] = "Playing BINGO?"; porukaPlus[5] = "Cheer up!"; porukaPlus[6] = "Duh!"; porukaPlus[7] = "Nice perfume."; porukaPlus[8] = "I like you."; porukaPlus[9] = "Keep practicing..."; porukaPlus[10] = "I get angry!"; porukaPlus[11] = "Your place or mine?"; porukaPlus[12] = "What's your sign?"; porukaPlus[13] = "Ick!"; porukaPlus[14] = "You are fat."; porukaPlus[15] = "You work three jobs?"; porukaPlus[16] = "You misunderestimated me."; porukaPlus[17] = "Humans and fish can coexist peacefully."; porukaPlus[18] = "I will not withdraw!!!"; porukaPlus[19] = "Do you have blacks, too?"; porukaPlus[20] = "This is an impressive crowd."; porukaPlus[21] = "I trust God speaks through me."; gameStart = function () { attachMovie("naslovni", "naslovni", this.getNextHighestDepth()); naslovni._x = 0; naslovni._y = 0; }; gameInit = function () { pozadina.removeMovieClip(); livescore.removeMovieClip(); bush.removeMovieClip(); sto.removeMovieClip(); publika.removeMovieClip(); oblak.removeMovieClip(); bushX = 275; bushY = 135; attachMovie("pozadina", "pozadina", this.getNextHighestDepth()); pozadina._x = 0; pozadina._y = 0; attachMovie("livescore", "livescore", this.getNextHighestDepth()); livescore._x = 10; livescore._y = 10; attachMovie("bush", "bush", this.getNextHighestDepth()); bush._x = bushX; bush._y = bushY; bush.brzinaBeg = 20; bush.kraj = false; bush.score = 0; bush.best = 0; attachMovie("sto", "sto", this.getNextHighestDepth()); sto._x = 275; sto._y = 300; attachMovie("publika", "publika", this.getNextHighestDepth()); publika._x = 275; publika._y = 302; attachMovie("oblak", "oblak", this.getNextHighestDepth()); oblak._x = 260; oblak._y = 10; oblak._alpha = 0; if (Math.floor(bush.score) != bush.score) { scoreText = bush.score; } else { scoreText = bush.score + ".0"; } while (scoreText.length < 6) { scoreText = "0" + scoreText; } livescore.score.text = scoreText; livescore.score.setTextFormat(livescore_fmt); bestEver = SharedObject.getLocal("gb_sd_best"); bush.best = bestEver.data.score; if (bush.best == null) { bush.best = 0; } if (Math.floor(bush.best) != bush.best) { scoreText = bush.best + ""; } else { scoreText = bush.best + ".0"; } while (scoreText.length < 6) { scoreText = "0" + scoreText; } livescore.bestever.text = scoreText; livescore.bestever.setTextFormat(livescore_fmt); krajIgre = false; ucestalost = 50; brojacCiklusa = 0; brojacCipela = 100; bush.onMouseDown = bush_cilj; this.onEnterFrame = gameplay; }; cipela_pad = function () { this._y = this._y + (this.brzina / 2); this.brzina++; if (this._y > 400) { oblak.poruka.text = porukaPlus[Math.floor(Math.random() * 21) + 1]; oblak._alpha = 100; if (bush.kraj and (!kraj._x)) { attachMovie("kraj", "kraj", getNextHighestDepth()); kraj._x = 30; kraj._y = 140; krajIgre = true; oblak.removeMovieClip(); } this.removeMovieClip(); } }; cipela_odbitak = function () { this._x = this._x + (this.dx / 2); this._y = this._y + this.dy; this.dy = this.dy + 1; if (this._y > 300) { this.swapDepths(publika); this.onEnterFrame = cipela_pad; } this._yscale = this._yscale * 1.01; this._xscale = this._xscale * 1.01; this._rotation = this._rotation + this.dUgao; }; dodaj_cipelu = function () { brojacCipela++; tipCipela = Math.floor(Math.random() * 7) + 1; attachMovie("cipela" + [tipCipela], "cipela" + [brojacCipela], getNextHighestDepth()); ugao = (Math.PI/2) + ((0.75 - (Math.random() * 1.5)) * Math.PI); eval ("cipela" + brojacCipela).redni = brojacCipela; eval ("cipela" + brojacCipela).tip = tipCipela; eval ("cipela" + brojacCipela).velicina = (Math.floor((Math.random() * 16) + 1) / 2) + 7; pw = eval ("cipela" + brojacCipela)._width; eval ("cipela" + brojacCipela)._width = 10 * eval ("cipela" + brojacCipela).velicina; eval ("cipela" + brojacCipela)._height = eval ("cipela" + brojacCipela)._height * (eval ("cipela" + brojacCipela)._width / pw); eval ("cipela" + brojacCipela).xCilj = bush._x; eval ("cipela" + brojacCipela).yCilj = bush._y; eval ("cipela" + brojacCipela)._xscale = 120; eval ("cipela" + brojacCipela)._yscale = 120; eval ("cipela" + brojacCipela).dx = 500 * Math.cos(ugao); eval ("cipela" + brojacCipela).dy = 500 * Math.sin(ugao); eval ("cipela" + brojacCipela)._x = eval ("cipela" + brojacCipela).xCilj + eval ("cipela" + brojacCipela).dx; eval ("cipela" + brojacCipela)._y = eval ("cipela" + brojacCipela).yCilj + eval ("cipela" + brojacCipela).dy; eval ("cipela" + brojacCipela).brzina = (Math.floor(Math.random() * 50) / 10) + 20; eval ("cipela" + brojacCipela).dx = (-eval ("cipela" + brojacCipela).dx) * (eval ("cipela" + brojacCipela).brzina / 500); eval ("cipela" + brojacCipela).dy = (-eval ("cipela" + brojacCipela).dy) * (eval ("cipela" + brojacCipela).brzina / 500); eval ("cipela" + brojacCipela).dUgao = Math.floor(Math.random() * 10) + 2; this.createEmptyMovieClip("line" + [brojacCipela], this.getNextHighestDepth()); eval ("line" + brojacCipela)._alpha = 30; eval ("line" + brojacCipela).beginFill(16711680); eval ("line" + brojacCipela).moveTo(eval ("cipela" + brojacCipela)._x - 20, eval ("cipela" + brojacCipela)._y - 20); eval ("line" + brojacCipela).lineTo(eval ("cipela" + brojacCipela).xCilj, eval ("cipela" + brojacCipela).yCilj); eval ("line" + brojacCipela).lineTo(eval ("cipela" + brojacCipela).xCilj + 2, eval ("cipela" + brojacCipela).yCilj + 2); eval ("line" + brojacCipela).lineTo(eval ("cipela" + brojacCipela)._x, eval ("cipela" + brojacCipela)._y); eval ("cipela" + brojacCipela).onEnterFrame = function () { this._x = this._x + this.dx; this._y = this._y + this.dy; this.dx = this.dx * 0.97; this.dy = this.dy * 0.97; px = this._x - this.xCilj; py = this._y - this.yCilj; s = Math.sqrt((px * px) + (py * py)); if (s < 20) { if (bush.hitTest(this._x, this._y, true)) { bush.bush_telo.attachMovie("bush_udarac", "bush_udarac", this.getNextHighestDepth()); if (bush.score > bush.best) { bestEver = SharedObject.getLocal("gb_sd_best"); bestEver.data.score = bush.score; } eval ("line" + this.redni).removeMovieClip(); pxCilj = 5 * this.dx; if (Math.abs(pxCilj) > 50) { pxCilj = 50 * (Math.abs(pxCilj) / pxCilj); } else if (Math.abs(pxCilj) < 20) { pxCilj = 20 * (Math.abs(pxCilj) / pxCilj); } if (this.dy > 0) { pyCilj = this.dy; } else { pyCilj = 0; } bush.xCilj = bush._x + pxCilj; bush.yCilj = bush._y + pyCilj; dx = this.xCilj - bushX; dy = this.yCilj - bushY; sd = Math.sqrt((dx * dx) + (dy * dy)); ugao = Math.asin((-dy) / sd); if (dx > 0) { ugaoStep = (-(ugao / Math.PI)) * 180; } else { ugaoStep = (ugao / Math.PI) * 180; } bush.ugao = ugaoStep; bush.kraj = true; bush.onMouseDown = null; bush.onEnterFrame = bush_beg; this.dx = this.dx * -1; this.dy = Math.abs(this.dy); this.onEnterFrame = cipela_odbitak; } if (s < 10) { oblak.poruka.text = ("Shoe size is " + this.velicina) + " ! ! !"; oblak.poruka.setTextFormat(message_fmt); oblak._x = 245 + (Math.floor(Math.random() * 5) * 5); oblak._y = 5 + (Math.floor(Math.random() * 5) * 5); oblak._alpha = 100; bush.score = bush.score + this.velicina; scoreText = ""; if (Math.floor(bush.score) != bush.score) { scoreText = bush.score + ""; } else { scoreText = bush.score + ".0"; } while (scoreText.length < 6) { scoreText = "0" + scoreText; } livescore.score.text = scoreText; livescore.score.setTextFormat(livescore_fmt); if (this.getDepth() > bush.getDepth()) { this.swapDepths(publika); this.swapDepths(sto); this.swapDepths(bush); } eval ("line" + this.redni).removeMovieClip(); this.onEnterFrame = cipela_pad; } } this._yscale = ((this.velicina * 3) + (s / 3)) + 30; this._xscale = this._yscale; this._rotation = this._rotation + this.dUgao; }; }; gameplay = function () { if (bush.kraj) { this.onEnterFrame = null; } else { brojacCiklusa++; if ((brojacCiklusa / ucestalost) == Math.floor(brojacCiklusa / ucestalost)) { brojacCiklusa = 0; ucestalost = ucestalost - 1; dodaj_cipelu(); } } }; bush_beg = function () { px = this.xCilj - this._x; py = this.yCilj - this._y; s = Math.sqrt((px * px) + (py * py)); this._x = this._x + (px * (this.brzinaBeg / s)); this._y = this._y + (py * (this.brzinaBeg / s)); this._rotation = this._rotation + ((this.ugao - this._rotation) / 3); if (s < 10) { this.onEnterFrame = bush_povratak; } }; bush_povratak = function () { if (Math.abs(this._x - bushX) < 20) { if (!bush.kraj) { bush.onMouseDown = bush_cilj; } } if (Math.abs(this._x - bushX) < 2) { this._rotation = 0; this._x = bushX; this._y = bushY; } else { this._rotation = this._rotation + ((-this._rotation) / 10); this._x = this._x + ((bushX - this._x) / 10); this._y = this._y + ((bushY - this._y) / 10); } }; bush_cilj = function () { this.xCilj = _xmouse; if (Math.abs(this.xCilj - bushX) > 160) { dx = this.xCilj - bushX; this.xCilj = bushX + (160 * (dx / Math.abs(dx))); } this.yCilj = _ymouse; if ((this.yCilj - bushY) < 0) { this.yCilj = bushY; } if ((this.yCilj - bushY) > 80) { this.yCilj = bushY + 80; } dx = this.xCilj - bushX; dy = this.yCilj - bushY; sd = Math.sqrt((dx * dx) + (dy * dy)); ugao = Math.asin((-dy) / sd); if (dx > 0) { ugaoStep = (-(ugao / Math.PI)) * 180; } else { ugaoStep = (ugao / Math.PI) * 180; } this.ugao = ugaoStep; bush.onMouseDown = null; this.onEnterFrame = bush_beg; }; gameStart(); stop();Symbol 34 MovieClip [naslovni] Frame 1attachMovie("btn_instructions", "btn_instructions", getNextHighestDepth()); btn_instructions._x = 60; btn_instructions._y = 320; btn_instructions.onRelease = function () { if (instructions._x == null) { attachMovie("instructions", "instructions", getNextHighestDepth()); instructions._x = 40; instructions._y = 120; } }; attachMovie("btn_start", "btn_start", getNextHighestDepth()); btn_start._x = 210; btn_start._y = 320; btn_start.onRelease = function () { _root.startGame = true; _root.gameInit(); _root.naslovni.removeMovieClip(); }; attachMovie("btn_better", "btn_better", getNextHighestDepth()); btn_better._x = 360; btn_better._y = 320; btn_better.onRelease = function () { getURL ("http://www.10x10games.com", "_blank"); }; stop();Symbol 43 MovieClip [mc_better_over] Frame 2attachMovie("mc_better", "mc_better", this.getNextHighestDepth()); mc_better._x = 62; mc_better._y = 17; attachMovie("mc_10x10games", "mc_10x10games", this.getNextHighestDepth()); mc_10x10games._x = 80; mc_10x10games._y = 17; mc_10x10games._yscale = 0; ds = 10; this.onEnterFrame = function () { if (mc_better._yscale > 0) { mc_better._yscale = mc_better._yscale - ds; ds = ds + 2; } else { mc_better._yscale = 0; if (mc_10x10games._yscale < 100) { mc_10x10games._yscale = mc_10x10games._yscale + ds; ds = ds - 2; } } }; stop();Symbol 47 MovieClip [instructions] Frame 1attachMovie("btn_close_instructions", "btn_close_instructions", getNextHighestDepth()); btn_close_instructions._x = 420; btn_close_instructions._y = 20; btn_close_instructions.onRelease = function () { _root.naslovni.instructions.removeMovieClip(); };Symbol 54 MovieClip [oblak] Frame 1createEmptyMovieClip("kaoblaku", getNextHighestDepth()); createEmptyMovieClip("kaoblaku1", getNextHighestDepth()); kaoblaku.onEnterFrame = function () { this.clear(); this.beginFill(16777215); this.moveTo(_root.bush._x - 200, _root.bush._y - 60); this.lineTo(80, 29); this.lineTo(120, 29); this.lineTo(_root.bush._x - 200, _root.bush._y - 60); this.endFill(); }; kaoblaku1.onEnterFrame = function () { this.clear(); this.lineStyle(1, 3355443, 100); this.moveTo(80, 30); this.lineTo(_root.bush._x - 200, _root.bush._y - 60); this.lineTo(120, 30); };Symbol 55 MovieClip [bush] Frame 1attachMovie("bush_telo", "bush_telo", this.getNextHighestDepth()); bush_telo._x = 0; bush_telo._y = -30; attachMovie("bush_ruka", "bush_ruka1", this.getNextHighestDepth()); bush_ruka1._xscale = -100; bush_ruka1._x = -40; bush_ruka1._y = -20; attachMovie("bush_ruka", "bush_ruka2", this.getNextHighestDepth()); bush_ruka2._x = 40; bush_ruka2._y = -20; attachMovie("bush_saka", "bush_saka1", this.getNextHighestDepth()); bush_saka1._x = -80; bush_saka1._y = 20; attachMovie("bush_saka", "bush_saka2", this.getNextHighestDepth()); bush_saka2._xscale = -100; bush_saka2._x = 80; bush_saka2._y = 20;Symbol 69 MovieClip [kraj] Frame 1attachMovie("btn_playagain", "btn_playagain", getNextHighestDepth()); btn_playagain._x = 20; btn_playagain._y = 150; btn_playagain.onRelease = function () { _root.gameInit(); _root.kraj.removeMovieClip(); }; attachMovie("btn_menu", "btn_menu", getNextHighestDepth()); btn_menu._x = 170; btn_menu._y = 150; btn_menu.onRelease = function () { _root.gameStart(); _root.kraj.removeMovieClip(); }; attachMovie("btn_better", "btn_better", getNextHighestDepth()); btn_better._x = 320; btn_better._y = 150; btn_better.onRelease = function () { getURL ("http://www.10x10games.com", "_blank"); }; stop();
Library Items
Symbol 1 Bitmap | Used by:2 | |
Symbol 2 Graphic | Uses:1 | Used by:3 |
Symbol 3 MovieClip [cipela1] | Uses:2 | |
Symbol 4 Bitmap | Used by:5 | |
Symbol 5 Graphic | Uses:4 | Used by:6 |
Symbol 6 MovieClip [cipela2] | Uses:5 | |
Symbol 7 Bitmap | Used by:8 | |
Symbol 8 Graphic | Uses:7 | Used by:9 |
Symbol 9 MovieClip [cipela3] | Uses:8 | |
Symbol 10 Bitmap | Used by:11 | |
Symbol 11 Graphic | Uses:10 | Used by:12 |
Symbol 12 MovieClip [cipela4] | Uses:11 | |
Symbol 13 Bitmap | Used by:14 | |
Symbol 14 Graphic | Uses:13 | Used by:15 |
Symbol 15 MovieClip [cipela5] | Uses:14 | |
Symbol 16 Bitmap | Used by:17 | |
Symbol 17 Graphic | Uses:16 | Used by:18 |
Symbol 18 MovieClip [cipela6] | Uses:17 | |
Symbol 19 Bitmap | Used by:20 | |
Symbol 20 Graphic | Uses:19 | Used by:21 |
Symbol 21 MovieClip [cipela7] | Uses:20 | |
Symbol 22 Bitmap | Used by:23 | |
Symbol 23 Graphic | Uses:22 | Used by:24 |
Symbol 24 MovieClip [sto] | Uses:23 | |
Symbol 25 Bitmap | Used by:27 | |
Symbol 26 Bitmap | Used by:27 | |
Symbol 27 Graphic | Uses:25 26 | Used by:31 |
Symbol 28 Font | Used by:29 46 68 | |
Symbol 29 Text | Uses:28 | Used by:30 |
Symbol 30 MovieClip [usemouse] | Uses:29 | Used by:31 |
Symbol 31 MovieClip [pozadina] | Uses:27 30 | |
Symbol 32 Bitmap | Used by:33 | |
Symbol 33 Graphic | Uses:32 | Used by:34 |
Symbol 34 MovieClip [naslovni] | Uses:33 | |
Symbol 35 Bitmap | Used by:36 | |
Symbol 36 Graphic | Uses:35 | Used by:37 |
Symbol 37 Button [btn_start] | Uses:36 | |
Symbol 38 Bitmap | Used by:39 | |
Symbol 39 Graphic | Uses:38 | Used by:40 |
Symbol 40 Button [btn_instructions] | Uses:39 | |
Symbol 41 Bitmap | Used by:42 | |
Symbol 42 Graphic | Uses:41 | Used by:43 44 82 |
Symbol 43 MovieClip [mc_better_over] | Uses:42 | Used by:44 |
Symbol 44 Button [btn_better] | Uses:42 43 | |
Symbol 45 Graphic | Used by:47 69 81 | |
Symbol 46 Text | Uses:28 | Used by:47 |
Symbol 47 MovieClip [instructions] | Uses:45 46 | |
Symbol 48 Graphic | Used by:49 | |
Symbol 49 Button [btn_close_instructions] | Uses:48 | |
Symbol 50 Graphic | Used by:51 | |
Symbol 51 MovieClip | Uses:50 | Used by:54 |
Symbol 52 Font | Used by:53 76 77 | |
Symbol 53 EditableText | Uses:52 | Used by:54 |
Symbol 54 MovieClip [oblak] | Uses:51 53 | |
Symbol 55 MovieClip [bush] | ||
Symbol 56 Bitmap | Used by:57 | |
Symbol 57 Graphic | Uses:56 | Used by:58 |
Symbol 58 MovieClip [bush_saka] | Uses:57 | |
Symbol 59 Bitmap | Used by:60 | |
Symbol 60 Graphic | Uses:59 | Used by:61 |
Symbol 61 MovieClip [bush_ruka] | Uses:60 | |
Symbol 62 Bitmap | Used by:66 | |
Symbol 63 Bitmap | Used by:66 | |
Symbol 64 Bitmap | Used by:66 | |
Symbol 65 Bitmap | Used by:66 | |
Symbol 66 Graphic | Uses:62 63 64 65 | Used by:67 |
Symbol 67 MovieClip [bush_telo] | Uses:66 | |
Symbol 68 Text | Uses:28 | Used by:69 |
Symbol 69 MovieClip [kraj] | Uses:45 68 | |
Symbol 70 Bitmap | Used by:71 | |
Symbol 71 Graphic | Uses:70 | Used by:72 |
Symbol 72 Button [btn_menu] | Uses:71 | |
Symbol 73 Bitmap | Used by:74 | |
Symbol 74 Graphic | Uses:73 | Used by:75 |
Symbol 75 Button [btn_playagain] | Uses:74 | |
Symbol 76 EditableText | Uses:52 | Used by:81 |
Symbol 77 EditableText | Uses:52 | Used by:81 |
Symbol 78 Font | Used by:79 80 | |
Symbol 79 Text | Uses:78 | Used by:81 |
Symbol 80 Text | Uses:78 | Used by:81 |
Symbol 81 MovieClip [livescore] | Uses:45 76 77 79 80 | |
Symbol 82 MovieClip [mc_better] | Uses:42 | |
Symbol 83 Bitmap | Used by:84 | |
Symbol 84 Graphic | Uses:83 | Used by:85 |
Symbol 85 MovieClip [mc_10x10games] | Uses:84 | |
Symbol 86 Bitmap | Used by:87 | |
Symbol 87 Graphic | Uses:86 | Used by:88 |
Symbol 88 MovieClip [bush_udarac] | Uses:87 | |
Symbol 89 Bitmap | Used by:90 | |
Symbol 90 Graphic | Uses:89 | Used by:91 |
Symbol 91 MovieClip [publika] | Uses:90 |
Instance Names
"usemouse" | Symbol 31 MovieClip [pozadina] Frame 1 | Symbol 30 MovieClip [usemouse] |
"poruka" | Symbol 54 MovieClip [oblak] Frame 1 | Symbol 53 EditableText |
"score" | Symbol 81 MovieClip [livescore] Frame 1 | Symbol 76 EditableText |
"bestever" | Symbol 81 MovieClip [livescore] Frame 1 | Symbol 77 EditableText |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
Protect (24) | Timeline Frame 1 | 0 bytes "" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "cipela1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 6 as "cipela2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "cipela3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 12 as "cipela4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 15 as "cipela5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 18 as "cipela6" |
ExportAssets (56) | Timeline Frame 1 | Symbol 21 as "cipela7" |
ExportAssets (56) | Timeline Frame 1 | Symbol 24 as "sto" |
ExportAssets (56) | Timeline Frame 1 | Symbol 30 as "usemouse" |
ExportAssets (56) | Timeline Frame 1 | Symbol 31 as "pozadina" |
ExportAssets (56) | Timeline Frame 1 | Symbol 34 as "naslovni" |
ExportAssets (56) | Timeline Frame 1 | Symbol 37 as "btn_start" |
ExportAssets (56) | Timeline Frame 1 | Symbol 40 as "btn_instructions" |
ExportAssets (56) | Timeline Frame 1 | Symbol 43 as "mc_better_over" |
ExportAssets (56) | Timeline Frame 1 | Symbol 44 as "btn_better" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "instructions" |
ExportAssets (56) | Timeline Frame 1 | Symbol 49 as "btn_close_instructions" |
ExportAssets (56) | Timeline Frame 1 | Symbol 54 as "oblak" |
ExportAssets (56) | Timeline Frame 1 | Symbol 55 as "bush" |
ExportAssets (56) | Timeline Frame 1 | Symbol 58 as "bush_saka" |
ExportAssets (56) | Timeline Frame 1 | Symbol 61 as "bush_ruka" |
ExportAssets (56) | Timeline Frame 1 | Symbol 67 as "bush_telo" |
ExportAssets (56) | Timeline Frame 1 | Symbol 69 as "kraj" |
ExportAssets (56) | Timeline Frame 1 | Symbol 72 as "btn_menu" |
ExportAssets (56) | Timeline Frame 1 | Symbol 75 as "btn_playagain" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "livescore" |
ExportAssets (56) | Timeline Frame 1 | Symbol 82 as "mc_better" |
ExportAssets (56) | Timeline Frame 1 | Symbol 85 as "mc_10x10games" |
ExportAssets (56) | Timeline Frame 1 | Symbol 88 as "bush_udarac" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "publika" |
|