STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229494 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2575 · P5149 |
This is the info page for Flash #159854 |
Interactive Kitsuné inflation Drawn, animated and programmed by Doom the wolf http://doom-the-wolf.deviantart.com |
ActionScript [AS1/AS2]
Frame 1function createBlueDot() { var _local6 = kitsune.magicsphere._x - kitsune.revertmagic._x; var _local5 = kitsune.magicsphere._y - kitsune.revertmagic._y; var _local8 = Math.sqrt((_local6 * _local6) + (_local5 * _local5)); var _local3 = Math.atan2(_local5, _local6); var _local7 = (Math.random() * -20) - 10; var _local4 = (Math.random() * 0.1) - 0.05; var _local2 = kitsune.attachMovie("waterdrop", "drop" + blueDotID, kitsune.getNextHighestDepth()); _local2._x = kitsune.revertmagic._x + (Math.cos(_local3 + _local4) * Number(_local8 + _local7)); _local2._y = kitsune.revertmagic._y + (Math.sin(_local3 + _local4) * Number(_local8 + _local7)); _local2.vX = Math.cos((_local3 + _local4) + Math.PI); _local2.vY = Math.sin((_local3 + _local4) + Math.PI); _local2._alpha = 10; _local2.onEnterFrame = function () { if (this.vX < 15) { this.vX = this.vX * 1.1; this.vY = this.vY * 1.1; } if (this._alpha <= 95) { this._alpha = this._alpha + 5; } else { this._alpha = 100; } var _local3 = kitsune.revertmagic._x - this._x; var _local2 = kitsune.revertmagic._y - this._y; var _local4 = Math.sqrt((_local3 * _local3) + (_local2 * _local2)); var _local5 = Math.sqrt((this.vX * this.vX) + (this.vY * this.vY)); if (_local4 <= _local5) { delete this.onEnterFrame; this.removeMovieClip(); return(undefined); } this._x = this._x + this.vX; this._y = this._y + this.vY; }; } function setState(str) { if ((state == str) || (condition != "")) { return(undefined); } var _local1; for (_local1 in states[str]) { curState[_local1] = states[str][_local1]; } curState.state = (state = str); kitsune.eye.gotoAndPlay(curState.eye); kitsune.mouth.gotoAndPlay(curState.mouth); if (curState.arm1 != undefined) { if (kitsune.arm1._currentlabel == undefined) { kitsune.arm1.gotoAndPlay(curState.arm1); } else if (kitsune.arm1._currentlabel != curState.arm1) { kitsune.arm1.gotoAndPlay((kitsune.arm1._currentlabel + "2") + curState.arm1); } } if (curState.pX != undefined) { kitsune.eye.pupil._x = pX + curState.pX; } if (curState.pY != undefined) { kitsune.eye.pupil._y = pY + curState.pY; } if (curState.frequency != undefined) { frequency = curState.frequency; } if (curState.camBlink != undefined) { canBlink = curState.canBlink; } if (curState.offset != undefined) { offset = curState.offset; } } function react(str, n) { if (n == undefined) { n = 30; } var _local2 = curState.state; condition = ""; setState(str); curState.state = _local2; condition = "react"; timer = n; _root.onEnterFrame = function () { if (timer <= 0) { activateEvent("endReact"); condition = ""; setState(curState.state); delete _root.onEnterFrame; } timer--; }; } function hitSpecial() { if (kitsune.leg1.foot.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } if (kitsune.breast1.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } if (kitsune.breast2.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } if (kitsune.belly.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } if (kitsune.magicinflate.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } if (kitsune.revertmagic.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } if (kitsune.magicdot._visible && (kitsune.magicdot.hitTest(_root._xmouse, _root._ymouse, true))) { return(true); } if (kitsune.magicslider.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } return(false); } function activateAutoInflate() { kitsune.magicinflate._visible = true; clearEvent("fullSize", activateAutoInflate); } function makeSlider(clip, destClip, minY, maxY, factor, maxFrames) { clip.minY = minY; clip.maxY = maxY; clip.destClip = destClip; clip.factor = factor; clip.maxFrames = maxFrames; clip.onPress = function () { this.baseSize = size; this.baseBSize = bSize; this.baseY = this._y; this.onEnterFrame = function () { if (!spherePhase) { return(undefined); } var _local2 = this._parent._ymouse; _local2 = Math.max(_local2, this.minY); _local2 = Math.min(_local2, this.maxY); var _local4 = _local2 - this._y; var _local3; if (_local4 >= 0) { _local3 = _local4 * this.factor; } else { _local3 = _local4; } this._y = this._y + _local3; if (_local3 > 0) { var _local6 = Number(this._y - this.baseY) / Number(this.maxY - this.minY); inflate(this.destClip, this.baseSize, _local6 * this.maxFrames, this.baseBSize); } else { this.baseY = this._y; this.baseSize = size; this.baseBSize = bSize; } var _local5 = 1 - Math.max(Number(this._y - this.minY) / Number(this.maxY - this.minY), 0); kitsune.magiccolumn.gotoAndStop(Math.max(Math.floor(_local5 * kitsune.magiccolumn._totalframes), 1)); }; }; clip.onMouseUp = function () { delete this.onEnterFrame; }; } function inflate(clip, baseFrame, frameOffset, breastBaseFrame) { if ((size >= maxSize) && (bSize >= kitsune.breast1._totalframes)) { return(undefined); } frames = Math.floor(frames); var _local1 = baseFrame + frameOffset; _local1 = Math.round(_local1); _local1 = Math.max(_local1, 0); _local1 = Math.min(clip._totalframes, _local1); var _local2 = breastBaseFrame + frameOffset; _local2 = Math.round(_local2); _local2 = Math.max(_local2, 0); _local2 = Math.min(kitsune.breast1._totalframes, _local2); var _local5 = bSize; var _local4 = size; if (kitsune.magicbelly._xscale != 100) { size = _local1; } if (kitsune.magicbreast._visible && (kitsune.magicbreast._xscale != 100)) { bSize = _local2; } if ((_local4 != size) || (_local5 != bSize)) { kitsune.magicsphere._alpha = Math.floor((100 * frameOffset) / maxInflate); if (condition == "") { react("inflate", 15); } kitsune.mouth.gotoAndStop(mouthInflateBase + Math.floor((maxMouthInflate * frameOffset) / maxInflate)); } } function fillMouth() { setState("ready"); react("impact", 7); kitsune.drops.gotoAndPlay(2); makeEvent("endReact", endFillMouth); } function endFillMouth() { kitsune.mouth.gotoAndStop(mouthInflateBase + maxMouthInflate); clearEvent("endReact", endFillMouth); } function motionReact() { var _local1 = "happymotion"; if (size < 300) { _local1 = "motion"; } if (condition == "") { react(_local1, 7); } else if (state != _local1) { condition = ""; react(_local1, 7); } else { timer = 7; } } function makeAnalog(clip, destClip, cX, cY, rad, maxDist, friction) { if (clip.destX == undefined) { clip.destX = clip._x; clip.destY = clip._y; clip.vX = 0; clip.vY = 0; clip.fX = 0; clip.fY = 0; clip.dragging = false; } clip.cX = cX; clip.cY = cY; clip.maxDist = maxDist; clip.friction = friction; clip.kV = clip.maxDist; clip.rad = rad; clip.destClip = destClip; clip.onEnterFrame = function () { var _local3 = this.destX - this._x; var _local2 = this.destY - this._y; var _local4 = Math.sqrt((_local3 * _local3) + (_local2 * _local2)); if (!this.dragging) { this.destX = this.cX; this.destY = this.cY; } this.vX = this.vX * this.friction; this.vY = this.vY * this.friction; this._x = this._x + this.vX; this._y = this._y + this.vY; this.vX = this.vX + this.fX; this.vY = this.vY + this.fY; this.fX = _local3 / this.kV; this.fY = _local2 / this.kV; deform(this.destClip, Number(this._x - centerX) / radius, Number(this._y - centerY) / radius); }; clip.onPress = function () { this.oldMX = _root._xmouse; this.oldMY = _root._ymouse; this.oldX = this._x; this.oldY = this._y; this.dragging = true; this.onMouseMove = function () { this.destX = (this.oldX + _root._xmouse) - this.oldMX; this.destY = (this.oldY + _root._ymouse) - this.oldMY; var _local4 = this.destX - this.cX; var _local3 = this.destY - this.cY; var _local6 = Math.sqrt((_local4 * _local4) + (_local3 * _local3)); var _local5 = 0; if (_local6 >= radius) { _local5 = Math.atan2(_local3, _local4); this.destX = this.cX + (this.rad * Math.cos(_local5)); this.destY = this.cY + (this.rad * Math.sin(_local5)); } }; }; clip.onMouseUp = function () { delete this.onMouseMove; this.dragging = false; }; } function deform(clip, x0, y0) { var _local2 = new flash.geom.Matrix(); _local2.a = 1; _local2.b = 0; _local2.c = 0; _local2.d = 1; var _local3 = new flash.geom.Matrix(); _local3.a = (1 + (Math.abs(x0) * clip.deformDist)) - (Math.abs(y0) * clip.deformDist); _local3.b = 0; _local3.c = 0; _local3.d = (1 + (Math.abs(y0) * clip.deformDist)) - (Math.abs(x0) * clip.deformDist); var _local8 = Math.sqrt((x0 * x0) + (y0 * y0)); var _local5 = 0; var _local11 = (Boolean((x0 * y0) < 0) ? -1 : 1); if (_local8) { var _local10 = Math.atan2(y0, x0); var _local9 = Math.floor((_local10 * 8) / Number((Math.PI*2))); var _local12 = _local10 - (((_local9 * Math.PI) * 2) / 8); _local5 = _local12 / Number((Math.PI/4)); if (_local9 % 2) { _local5 = 1 - _local5; } } var _local4 = new flash.geom.Matrix(); _local4.a = 1; _local4.b = (((_local11 * _local5) * clip.maxAngle) * clip.deformDist) * _local8; _local4.c = (((_local11 * _local5) * clip.maxAngle) * clip.deformDist) * _local8; _local4.d = 1; _local2.concat(_local3); _local2.concat(_local4); _local2.tx = clip.transform.matrix.tx; _local2.ty = clip.transform.matrix.ty; clip.transform.matrix = _local2; } function activateEvent(str) { if (eventList[str]) { var _local1 = 0; while (_local1 < eventList[str].length) { eventList[str][_local1](); _local1++; } } } function makeEvent(str, fn) { if (!eventList[str]) { eventList[str] = []; } var _local1 = 0; while (_local1 < eventList[str].length) { if (eventList[str] == fn) { return(undefined); } _local1++; } eventList[str].push(fn); } function clearEvent(str, fn) { if (!eventList[str]) { return(undefined); } var _local1 = 0; while (_local1 < eventList[str].length) { if (eventList[str][_local1] == fn) { eventList[str].splice(_local1, 1); return(undefined); } _local1++; } } function endBreastBlush() { breastBlush = false; } var lcd_stolen = new LocalConnection().domain(); if (lcd_stolen.indexOf("deviantart") == -1) { var stolen_mc = _root.createEmptyMovieClip("stolen_mc", _root.getNextHighestDepth()); stolen_mc.createTextField("stolen_txt", 10000, 0, 0, 800, 600); var stolen_txt = stolen_mc.stolen_txt; stolen_txt.background = true; stolen_txt.wordWrap = true; stolen_txt.multiline = true; stolen_txt.backgroundColor = 16777215 /* 0xFFFFFF */; stolen_txt.selectable = false; var tF = new TextFormat(); tF.size = 32; tF.color = 16711680 /* 0xFF0000 */; tF.font = "Arial"; tF.bold = true; tF.align = "center"; stolen_txt.setNewTextFormat(tF); stolen_txt.text = ("Warning: you are playing this file on\n" + lcd_stolen) + "\n\nBest go to\nhttp://doom-the-wolf.deviantart.com\n to see the original.\n\nClick to close."; stolen_mc.onMouseDown = (stolen_mc.onPress = function () { delete this.onMouseDown; delete this.onPress; this.removeMovieClip(); }); } var size = 0; var maxSize = kitsune.belly._totalframes; var bSize = 0; var maxSize = kitsune.belly._totalframes; var state = ""; var condition = ""; var curState = new Object(); var states = new Object(); var pX = kitsune.eye.pupil._x; var pY = kitsune.eye.pupil._y; var angle = 0; var frequency = 0.1; var offset = 1; var b1X = kitsune.breast1._x; var b1Y = kitsune.breast1._y; var b2X = kitsune.breast2._x; var b2Y = kitsune.breast2._y; var furX = kitsune.fur._x; var furY = kitsune.fur._y; var blinking = false; var canBlink = true; var blushing = false; states.normal = {mouth:"smile", eye:"medium", arm1:"normal", pX:0, pY:0, frequency:0.1, offset:1, canBlink:true}; states.ready = {mouth:"small", eye:"big", arm1:"normal", pX:4, pY:4, frequency:0.2, offset:1, canBlink:true}; states.expand = {mouth:"tired", eye:"small", arm1:"belly1", pX:4, pY:4, frequency:0.4, offset:1, canBlink:true}; states.bigger = {mouth:"happy", eye:"big", arm1:"belly2", pX:2, pY:6, frequency:0.27, offset:1, canBlink:true}; states.tired = {mouth:"happy2", eye:"tired", arm1:"belly2", pX:4, pY:4, frequency:0.27, offset:1, canBlink:true}; states.over = {mouth:"smile", eye:"small", arm1:"belly3", pX:4, pY:4, frequency:0.2, offset:1, canBlink:true}; states.impact = {mouth:"impact", eye:"open", arm1:"normal", pX:-3, pY:0, frequency:0, offset:1, canBlink:false}; states.inflate = {mouth:"inflate", eye:"inflate", frequency:0, offset:1, canBlink:false}; states.motion = {mouth:"confused", eye:"open", arm1:"belly2", frequency:0.3, pX:0, pY:6, offset:1, canBlink:false}; states.happymotion = {mouth:"teeth", eye:"shut", arm1:"belly3", frequency:0.3, offset:1, canBlink:false}; states.deflate = {mouth:"deflate", arm1:"normal", frequency:0, offset:1, canBlink:false}; states.bellypoke = {mouth:"teeth", eye:"shut", arm1:"belly1", pX:4, pY:4, frequency:0.4, offset:1, canBlink:false}; states.breastpoke = {mouth:"tired", eye:"mad", pX:0, pY:0, frequency:0.3, offset:1, canBlink:false}; states.breastrub = {mouth:"teeth", eye:"joy", pX:2, pY:5, frequency:0.3, offset:1, canBlink:false}; states.laugh = {mouth:"happy", eye:"shut", pX:2, pY:5, frequency:1.1, offset:0.3, canBlink:false}; states.wow = {mouth:"oh", eye:"open", arm1:"normal", pX:0, pY:0, frequency:0.2, offset:1, canBlink:true}; states.ecstatic = {mouth:"happy", eye:"open", arm1:"belly3", pX:4, pY:4, frequency:0.2, offset:1, canBlink:true}; states.beauty = {mouth:"smile", eye:"closed", arm1:"normal", pX:4, pY:4, frequency:0.2, offset:1, canBlink:false}; setState("normal"); var eventList = []; var centerX = kitsune.magicdot._x; var centerY = kitsune.magicdot._y; var radius = 40; var minDeformDist = -0.06; var maxDeformDist = 0.08; var minMaxDist = 0.1; var minFriction = 0.03; var maxMaxDist = 5; var maxFriction = 0.5; var maxInflate = 20; var minSliderY = (kitsune.magicslider._y - 200); var maxSliderY = kitsune.magicslider._y; var minLearnFactor = 0.75; var maxLearnFactor = 0.025; kitsune.belly.gotoAndStop(1); kitsune.belly.deformDist = 0; kitsune.belly.maxAngle = 0.589048622548086; kitsune.front.gotoAndStop(1); kitsune.breast1.gotoAndStop(1); kitsune.breast2.gotoAndStop(1); var maxMouthInflate = 20; var mouthInflateBase; var mouthDeflateSpeed = 5; var mCurFrame = kitsune.mouth._currentframe; kitsune.mouth.gotoAndStop("inflate"); mouthInflateBase = kitsune.mouth._currentframe; kitsune.mouth.gotoAndStop(mCurFrame); kitsune.magiccolumn.gotoAndStop(1); kitsune.revertmagic._alpha = 50; kitsune.magicinflate._visible = false; kitsune.magicbreast._visible = false; kitsune.magicbelly._visible = false; kitsune.onEnterFrame = function () { if (kitsune.magicdot._visible && (Math.abs(kitsune.magicdot.fX) > 1)) { motionBlush = true; activateEvent("motion"); } else { motionBlush = false; } blushing = motionBlush || (breastBlush); var _local3 = ((Math.sin(angle) * 0.5) * offset) + (0.5 * offset); var _local10 = Math.floor(_local3 * kitsune.front._totalframes); kitsune.front.gotoAndStop(Math.max(_local10, 1)); kitsune.breast1._x = b1X + (_local3 * 2); kitsune.breast1._y = b1Y - (_local3 * 1); kitsune.breast2._x = b2X + (_local3 * 1.5); kitsune.breast2._y = b2Y - (_local3 * 1); kitsune.fur._x = furX + (_local3 * 3); kitsune.fur._y = furY - (_local3 * 1); angle = angle + frequency; if (canBlink && (Math.random() > 0.99)) { kitsune.eye.gotoAndPlay("blink"); kitsune.eye.pupil._x = pX + curState.pX; kitsune.eye.pupil._y = pY + curState.pY; blinking = true; } if (blinking && (kitsune.eye._currentlabel == "endblink")) { kitsune.eye.gotoAndPlay(curState.eye); kitsune.eye.pupil._x = pX + curState.pX; kitsune.eye.pupil._y = pY + curState.pY; blinking = false; } switch (true) { case size <= 1 : if (state != "normal") { if (bSize == 0) { setState("ready"); } else if (bSize < 100) { setState("wow"); } else if (bSize < 200) { setState("ecstatic"); } else if (bSize == 200) { setState("beauty"); } } break; case size < 100 : setState("ready"); break; case size < 200 : setState("expand"); break; case size < 300 : setState("bigger"); break; case size < 400 : setState("tired"); break; default : activateEvent("fullSize"); setState("over"); } info_txt.text = state; var _local4 = kitsune.belly._currentframe / kitsune.belly._totalframes; var _local7 = _local4; if (kitsune.magicbreast._visible && (kitsune.magicbreast._xscale != 100)) { var _local9 = kitsune.breast1._currentframe / kitsune.breast1._totalframes; _local7 = Math.min(_local4, _local9); } var _local8 = minLearnFactor + (Number(maxLearnFactor - minLearnFactor) * _local7); if (spherePhase) { makeSlider(kitsune.magicslider, kitsune.belly, minSliderY, maxSliderY, _local8, maxInflate); } kitsune.belly.deformDist = minDeformDist + (Number(maxDeformDist - minDeformDist) * _local4); kitsune.belly.deformDist = Math.max(kitsune.belly.deformDist, 0); kitsune.magicdot._visible = kitsune.belly.deformDist > 0; _local4 = kitsune.belly.deformDist / Number(maxDeformDist - Math.max(minDeformDist, 0)); var _local5 = minMaxDist + (Number(maxMaxDist - minMaxDist) * _local4); var _local6 = minFriction + (Number(maxFriction - minFriction) * _local4); kitsune.belly.maxDist = _local5; kitsune.belly.friction = _local6; makeAnalog(kitsune.magicdot, kitsune.belly, centerX, centerY, radius, _local5, _local6); var _local2 = kitsune.belly.transform.matrix; var _local1 = kitsune.breast1.transform.matrix; _local1.d = 2 - _local2.d; _local1.c = -_local2.c; _local1.a = 2 - _local2.a; _local1.b = -_local2.b; kitsune.breast1.transform.matrix = _local1; _local1 = kitsune.breast2.transform.matrix; _local1.d = 2 - _local2.d; _local1.c = -_local2.c; _local1.a = 2 - _local2.a; _local1.b = -_local2.b; kitsune.breast2.transform.matrix = _local1; }; var initSphereX = kitsune.magicslider._x; var initSphereY = kitsune.magicslider._y; var curveSphereX = kitsune.magicslider._x; var curveSphereY = (kitsune.mouth._y + 20); var destSphereX = (kitsune.mouth._x + 200); var destSphereY = kitsune.mouth._y; var dist1SphereX = (curveSphereX - initSphereX); var dist1SphereY = (curveSphereY - initSphereY); var dist2SphereX = (destSphereX - curveSphereX); var dist2SphereY = (destSphereY - curveSphereY); var spherePhase = 0; var sphereGlowRate = 10; kitsune.magicslider.onPress = function () { spherePhase = 1; delete kitsune.magicsphere.onMouseMove; makeSlider(kitsune.magicslider, kitsune.belly, minSliderY, maxSliderY, minLearnFactor, maxInflate); kitsune.magicsphere.destX = kitsune.mouth._x + 20; kitsune.magicsphere.destY = kitsune.mouth._y + 5; this.onPress(); }; kitsune.magicsphere.vX = 0; kitsune.magicsphere.vY = 0; kitsune.magicsphere.destX = kitsune.magicsphere._x; kitsune.magicsphere.destY = kitsune.magicsphere._y; kitsune.magicsphere.onMouseMove = function () { var _local5 = kitsune._xmouse - kitsune.magicslider._x; var _local4 = kitsune._ymouse - kitsune.magicslider._y; var _local12 = Math.sqrt((_local5 * _local5) + (_local4 * _local4)); var _local10 = 300; var _local11 = 10; var _local3 = Math.max(_local12 - _local11, 0) / _local10; _local3 = Math.min(_local3, 1); var _local2 = 1 - _local3; var _local14 = initSphereX + (_local2 * dist1SphereX); var _local13 = initSphereY + (_local2 * dist1SphereY); var _local8 = curveSphereX + (_local2 * dist2SphereX); var _local6 = curveSphereY + (_local2 * dist2SphereY); var _local9 = (_local14 * _local3) + (_local8 * _local2); var _local7 = (_local13 * _local3) + (_local6 * _local2); this.destX = _local9; this.destY = _local7; }; kitsune.magicsphere.onMouseMove(); kitsune.magicsphere.onEnterFrame = function () { if (spherePhase == 0) { this._x = this._x + (Number(this.destX - this._x) * 0.5); this._y = this._y + (Number(this.destY - this._y) * 0.5); return(undefined); } if (spherePhase == 1) { this._x = this._x + (Number(this.destX - this._x) * 0.5); this._y = this._y + (Number(this.destY - this._y) * 0.5); if (Math.abs(this._x - this.destX) < 10) { spherePhase = 2; this._x = this.destX; this._y = this.destY; activateEvent("magicstart"); } return(undefined); } if (this._alpha >= sphereGlowRate) { this._alpha = this._alpha - sphereGlowRate; } else { this._alpha = 0; } }; kitsune.revertmagic.onPress = function () { if (Boolean((size <= 1) || (kitsune.magicbelly._xscale == 100)) && (Boolean(((bSize <= 1) || (!kitsune.magicbreast._visible)) || (kitsune.magicbreast._xscale == 100)))) { return(undefined); } react("deflate", 7); condition = "deflate"; this.onEnterFrame = function () { if (((size >= 1) && (kitsune.magicbelly._xscale != 100)) || (((bSize >= 1) && (kitsune.magicbreast._visible)) && (kitsune.magicbreast._xscale != 100))) { if (condition == "deflate") { kitsune.mouth.gotoAndStop("deflate"); timer = 7; } if ((size >= 1) && (kitsune.magicbelly._xscale != 100)) { size--; } if (((bSize >= 1) && (kitsune.magicbreast._visible)) && (kitsune.magicbreast._xscale != 100)) { bSize--; } createBlueDot(); } }; }; kitsune.revertmagic.onMouseUp = function () { if (this.onEnterFrame) { condition = ""; kitsune.mouth.gotoAndStop(curState.mouth); delete this.onEnterFrame; } }; var blueDotID = 0; var timer = 0; kitsune.magicinflate._alpha = 50; makeEvent("fullSize", activateAutoInflate); kitsune.magicinflate.onPress = function () { if (this.onEnterFrame) { this._alpha = 50; delete this.onEnterFrame; this._xscale = 100; this._yscale = 100; } else if (size < kitsune.belly._totalframes) { this._xscale = 150; this._yscale = 150; this._alpha = 100; this.onEnterFrame = function () { var _local2 = false; if ((size < kitsune.belly._totalframes) && (kitsune.magicbelly._xscale != 100)) { _local2 = true; size++; } if (((bSize < kitsune.breast1._totalframes) && (kitsune.magicbreast._xscale != 100)) && (kitsune.magicbreast._visible)) { _local2 = true; bSize++; } if (!_local2) { this.onPress(); } }; } }; kitsune.bg.grass.useHandCursor = false; kitsune.bg.grass.onRollOver = function () { this._xscale = 110; this._yscale = 150; }; kitsune.bg.grass.onRollOut = function () { this._xscale = 100; this._yscale = 100; }; kitsune.bg.grass.onPress = function () { if (!kitsune.bg.cloud._visible) { kitsune.bg.cloud._visible = true; kitsune.bg.cloud.onPress = function () { kitsune.magicbreast._visible = true; kitsune.magicbelly._visible = true; }; } }; kitsune.bg.cloud._visible = false; kitsune.magicbreast._alpha = 50; kitsune.magicbreast.onPress = function () { if (this._xscale != 100) { this._alpha = 50; this._xscale = 100; this._yscale = 100; } else { this._xscale = 150; this._yscale = 150; this._alpha = 100; } }; kitsune.magicbelly._xscale = 150; kitsune.magicbelly._yscale = 150; kitsune.magicbelly.onPress = function () { if (this._xscale != 100) { this._alpha = 50; this._xscale = 100; this._yscale = 100; } else { this._xscale = 150; this._yscale = 150; this._alpha = 100; } }; var kBounds = kitsune.bg.lakeRect.getBounds(kitsune); var origKX = kitsune._x; var origKY = kitsune._y; kitsune.onMouseDown = function () { if (hitSpecial()) { return(undefined); } this.mX = _root._xmouse; this.mY = _root._ymouse; this.oldX = this._x; this.oldY = this._y; this.onMouseMove = function () { var _local4 = _root._xmouse - this.mX; var _local3 = _root._ymouse - this.mY; var _local6 = this.oldX + _local4; var _local5 = this.oldY + _local3; this._x = Math.min(((-kBounds.xMin) * this._xscale) * 0.01, _local6); this._x = Math.max(800 - ((kBounds.xMax * this._xscale) * 0.01), this._x); this._y = Math.min(((-kBounds.yMin) * this._yscale) * 0.01, _local5); this._y = Math.max(600 - ((kBounds.yMax * this._yscale) * 0.01), this._y); }; }; var origX = kitsune._x; var origY = kitsune._y; kitsune.onMouseUp = function () { delete this.onMouseMove; }; minus_mc.onPress = function () { this.onEnterFrame = function () { if (kitsune._xscale > 65) { kitsune._xscale = kitsune._xscale - 2; kitsune._yscale = kitsune._xscale; kitsune._x = Math.min(((-kBounds.xMin) * kitsune._xscale) * 0.01, kitsune._x); kitsune._x = Math.max(800 - ((kBounds.xMax * kitsune._xscale) * 0.01), kitsune._x); kitsune._y = Math.min(((-kBounds.yMin) * kitsune._yscale) * 0.01, kitsune._y); kitsune._y = Math.max(600 - ((kBounds.yMax * kitsune._yscale) * 0.01), kitsune._y); } else { delete this.onEnterFrame; } }; }; plus_mc.onPress = function () { this.onEnterFrame = function () { if (kitsune._xscale < 300) { kitsune._xscale = kitsune._xscale + 2; kitsune._yscale = kitsune._xscale; } else { delete this.onEnterFrame; } }; }; minus_mc.onMouseUp = function () { delete minus_mc.onEnterFrame; delete plus_mc.onEnterFrame; }; center_mc.onPress = function () { kitsune._x = origX; kitsune._y = origY; kitsune._xscale = (kitsune._yscale = 100); }; kitsune.belly.vX = 0; kitsune.belly.fX = 0; kitsune.belly.friction = minFriction; kitsune.belly.maxDist = minMaxDist; kitsune.belly.onEnterFrame = function () { var _local2 = size - this._currentframe; this.vX = this.vX * this.friction; this.gotoAndStop(Math.min(Math.max(Math.floor(this._currentframe + this.vX), 1), this._totalframes)); this.vX = this.vX + this.fX; this.fX = _local2 / this.maxDist; }; kitsune.breast1.vX = 0; kitsune.breast1.fX = 0; kitsune.breast1.friction = minFriction; kitsune.breast1.maxDist = minMaxDist; kitsune.breast1.onEnterFrame = function () { var _local2 = bSize - this._currentframe; this.vX = this.vX * this.friction; this.gotoAndStop(Math.min(Math.max(Math.floor(this._currentframe + this.vX), 1), this._totalframes)); this.vX = this.vX + this.fX; this.fX = _local2 / this.maxDist; kitsune.breast2.gotoAndStop(this._currentframe); }; kitsune.breast2.vX = 0; kitsune.breast2.fX = 0; kitsune.breast2.friction = minFriction; kitsune.breast2.maxDist = minMaxDist; kitsune.breast2.onEnterFrame = function () { var _local2 = bSize - this._currentframe; this.vX = this.vX * this.friction; this.gotoAndStop(Math.min(Math.max(Math.floor(this._currentframe + this.vX), 1), this._totalframes)); this.vX = this.vX + this.fX; this.fX = _local2 / this.maxDist; }; makeEvent("magicstart", fillMouth); kitsune.mouth.onEnterFrame = function () { if (this._currentframe >= (mouthInflateBase + mouthDeflateSpeed)) { this.gotoAndStop(this._currentframe - mouthDeflateSpeed); } else if (this._currentframe >= mouthInflateBase) { if (curState.mouth) { this.gotoAndPlay(curState.mouth); } else { this.gotoAndPlay(1); } } }; makeEvent("motion", motionReact); var motionBlush = false; var breastBlush = false; kitsune.blush.onEnterFrame = function () { if (blushing) { if (this._currentframe < 10) { this.play(); } else if (this._currentframe >= 20) { this.gotoAndStop(this._currentframe - 1); } else { this.gotoAndStop(10); } } else if (this._currentframe == 1) { this.stop(); } else if (this._currentframe <= 20) { var _local2 = 1 - (Number(Math.min(this._currentframe, 10) - 1) / Number(9)); var _local3 = this._totalframes - 20; this.gotoAndPlay(20 + Math.floor(_local3 * _local2)); } else { this.play(); } }; kitsune.belly.onPress = function () { if (condition != "") { return(undefined); } react("bellypoke", 20); }; makeEvent("breastBlush", endBreastBlush); kitsune.breast1.onPress = function () { if (condition != "") { return(undefined); } if (bSize < 100) { react("breastpoke", 20); } else { react("breastrub", 30); breastBlush = true; } }; kitsune.breast2.onPress = function () { if (condition != "") { return(undefined); } if (bSize < 100) { react("breastpoke", 20); } else { react("breastrub", 30); breastBlush = true; } }; kitsune.leg1.foot.onPress = function () { if (condition != "") { return(undefined); } react("laugh", 20); kitsune.leg1.gotoAndPlay(2); };Symbol 102 MovieClip Frame 1_currentlabel = "smile";Symbol 102 MovieClip Frame 2stop();Symbol 102 MovieClip Frame 3_currentlabel = "closed";Symbol 102 MovieClip Frame 4stop();Symbol 102 MovieClip Frame 5_currentlabel = "open";Symbol 102 MovieClip Frame 6stop();Symbol 102 MovieClip Frame 7_currentlabel = "small";Symbol 102 MovieClip Frame 8stop();Symbol 102 MovieClip Frame 9_currentlabel = "tired";Symbol 102 MovieClip Frame 10stop();Symbol 102 MovieClip Frame 11_currentlabel = "happy";Symbol 102 MovieClip Frame 12stop();Symbol 102 MovieClip Frame 13_currentlabel = "teeth";Symbol 102 MovieClip Frame 14stop();Symbol 102 MovieClip Frame 15_currentlabel = "happy2";Symbol 102 MovieClip Frame 16stop();Symbol 102 MovieClip Frame 17_currentlabel = "confused";Symbol 102 MovieClip Frame 18stop();Symbol 102 MovieClip Frame 19_currentlabel = "oh";Symbol 102 MovieClip Frame 20stop();Symbol 102 MovieClip Frame 26_currentlabel = "impact";Symbol 102 MovieClip Frame 27stop();Symbol 102 MovieClip Frame 31_currentlabel = "deflate";Symbol 102 MovieClip Frame 32stop();Symbol 117 MovieClip Frame 1_currentlabel = "medium";Symbol 117 MovieClip Frame 2stop();Symbol 117 MovieClip Frame 3_currentlabel = "big";Symbol 117 MovieClip Frame 4stop();Symbol 117 MovieClip Frame 5_currentlabel = "open";Symbol 117 MovieClip Frame 6stop();Symbol 117 MovieClip Frame 7_currentlabel = "small";Symbol 117 MovieClip Frame 8stop();Symbol 117 MovieClip Frame 9_currentlabel = "closed";Symbol 117 MovieClip Frame 10stop();Symbol 117 MovieClip Frame 11_currentlabel = "blink";Symbol 117 MovieClip Frame 15_currentlabel = "endblink";Symbol 117 MovieClip Frame 16stop();Symbol 117 MovieClip Frame 17_currentlabel = "inflate";Symbol 117 MovieClip Frame 18stop();Symbol 117 MovieClip Frame 19_currentlabel = "tired";Symbol 117 MovieClip Frame 20stop();Symbol 117 MovieClip Frame 21_currentlabel = "shut";Symbol 117 MovieClip Frame 22stop();Symbol 117 MovieClip Frame 23_currentlabel = "mad";Symbol 117 MovieClip Frame 24stop();Symbol 117 MovieClip Frame 25_currentlabel = "joy";Symbol 117 MovieClip Frame 26stop();Symbol 126 MovieClip Frame 1stop();Symbol 131 MovieClip Frame 1stop();Symbol 155 MovieClip Frame 1stop();Symbol 227 MovieClip Frame 1_currentlabel = "normal";Symbol 227 MovieClip Frame 2stop();Symbol 227 MovieClip Frame 16_currentlabel = "belly1";Symbol 227 MovieClip Frame 20_currentlabel = "belly1";Symbol 227 MovieClip Frame 21stop();Symbol 227 MovieClip Frame 22_currentlabel = "normal";Symbol 227 MovieClip Frame 25gotoAndPlay(_currentlabel);Symbol 227 MovieClip Frame 35_currentlabel = "belly2";Symbol 227 MovieClip Frame 39gotoAndPlay(_currentlabel);Symbol 227 MovieClip Frame 40_currentlabel = "belly2";Symbol 227 MovieClip Frame 45_currentlabel = "belly2";Symbol 227 MovieClip Frame 46stop();Symbol 227 MovieClip Frame 47_currentlabel = "normal";Symbol 227 MovieClip Frame 51gotoAndPlay(_currentlabel);Symbol 227 MovieClip Frame 52_currentlabel = "belly1";Symbol 227 MovieClip Frame 56gotoAndPlay(_currentlabel);Symbol 227 MovieClip Frame 60_currentlabel = "belly3";Symbol 227 MovieClip Frame 65gotoAndPlay(_currentlabel);Symbol 227 MovieClip Frame 66_currentlabel = "belly3";Symbol 227 MovieClip Frame 70gotoAndPlay(_currentlabel);Symbol 227 MovieClip Frame 71_currentlabel = "belly3";Symbol 227 MovieClip Frame 75_currentlabel = "belly3";Symbol 227 MovieClip Frame 76stop();Symbol 227 MovieClip Frame 77_currentlabel = "belly2";Symbol 227 MovieClip Frame 80gotoAndPlay(_currentlabel);Symbol 227 MovieClip Frame 81_currentlabel = "belly1";Symbol 227 MovieClip Frame 85gotoAndPlay(_currentlabel);Symbol 227 MovieClip Frame 86_currentlabel = "normal";Symbol 227 MovieClip Frame 91gotoAndPlay(_currentlabel);
Library Items
Symbol 1 Graphic | Used by:2 | |
Symbol 2 MovieClip [waterdrop] | Uses:1 | |
Symbol 3 Graphic | Used by:13 | |
Symbol 4 Graphic | Used by:13 | |
Symbol 5 ShapeTweening | Used by:7 | |
Symbol 6 Graphic | Used by:7 | |
Symbol 7 MovieClip | Uses:5 6 | Used by:13 |
Symbol 8 Graphic | Used by:13 | |
Symbol 9 Graphic | Used by:10 | |
Symbol 10 MovieClip | Uses:9 | Used by:13 |
Symbol 11 Graphic | Used by:12 | |
Symbol 12 MovieClip | Uses:11 | Used by:13 |
Symbol 13 MovieClip | Uses:3 4 7 8 10 12 | Used by:247 |
Symbol 14 Graphic | Used by:15 | |
Symbol 15 MovieClip | Uses:14 | Used by:247 |
Symbol 16 Graphic | Used by:17 | |
Symbol 17 MovieClip | Uses:16 | Used by:247 |
Symbol 18 Graphic | Used by:19 | |
Symbol 19 MovieClip | Uses:18 | Used by:247 |
Symbol 20 Graphic | Used by:21 | |
Symbol 21 MovieClip | Uses:20 | Used by:247 |
Symbol 22 ShapeTweening | Used by:25 | |
Symbol 23 ShapeTweening | Used by:25 | |
Symbol 24 Graphic | Used by:25 | |
Symbol 25 MovieClip | Uses:22 23 24 | Used by:247 |
Symbol 26 ShapeTweening | Used by:39 | |
Symbol 27 ShapeTweening | Used by:39 | |
Symbol 28 ShapeTweening | Used by:39 | |
Symbol 29 ShapeTweening | Used by:39 | |
Symbol 30 ShapeTweening | Used by:39 | |
Symbol 31 ShapeTweening | Used by:39 | |
Symbol 32 ShapeTweening | Used by:39 | |
Symbol 33 ShapeTweening | Used by:39 | |
Symbol 34 ShapeTweening | Used by:39 | |
Symbol 35 ShapeTweening | Used by:39 | |
Symbol 36 ShapeTweening | Used by:39 | |
Symbol 37 ShapeTweening | Used by:39 | |
Symbol 38 Graphic | Used by:39 | |
Symbol 39 MovieClip | Uses:26 27 28 29 30 31 32 33 34 35 36 37 38 | Used by:247 |
Symbol 40 ShapeTweening | Used by:66 | |
Symbol 41 ShapeTweening | Used by:66 | |
Symbol 42 ShapeTweening | Used by:66 | |
Symbol 43 ShapeTweening | Used by:66 | |
Symbol 44 ShapeTweening | Used by:66 | |
Symbol 45 ShapeTweening | Used by:66 | |
Symbol 46 ShapeTweening | Used by:66 | |
Symbol 47 ShapeTweening | Used by:66 | |
Symbol 48 ShapeTweening | Used by:66 | |
Symbol 49 ShapeTweening | Used by:66 | |
Symbol 50 ShapeTweening | Used by:66 | |
Symbol 51 ShapeTweening | Used by:66 | |
Symbol 52 ShapeTweening | Used by:66 | |
Symbol 53 ShapeTweening | Used by:66 | |
Symbol 54 ShapeTweening | Used by:66 | |
Symbol 55 ShapeTweening | Used by:66 | |
Symbol 56 ShapeTweening | Used by:66 | |
Symbol 57 ShapeTweening | Used by:66 | |
Symbol 58 ShapeTweening | Used by:66 | |
Symbol 59 ShapeTweening | Used by:66 | |
Symbol 60 ShapeTweening | Used by:66 | |
Symbol 61 ShapeTweening | Used by:66 | |
Symbol 62 ShapeTweening | Used by:66 | |
Symbol 63 ShapeTweening | Used by:66 | |
Symbol 64 ShapeTweening | Used by:66 | |
Symbol 65 Graphic | Used by:66 | |
Symbol 66 MovieClip | Uses:40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | Used by:247 |
Symbol 67 Graphic | Used by:68 | |
Symbol 68 MovieClip | Uses:67 | Used by:247 |
Symbol 69 ShapeTweening | Used by:80 | |
Symbol 70 ShapeTweening | Used by:80 | |
Symbol 71 ShapeTweening | Used by:80 | |
Symbol 72 ShapeTweening | Used by:80 | |
Symbol 73 ShapeTweening | Used by:80 | |
Symbol 74 ShapeTweening | Used by:80 | |
Symbol 75 ShapeTweening | Used by:80 | |
Symbol 76 ShapeTweening | Used by:80 | |
Symbol 77 ShapeTweening | Used by:80 | |
Symbol 78 ShapeTweening | Used by:80 | |
Symbol 79 Graphic | Used by:80 | |
Symbol 80 MovieClip | Uses:69 70 71 72 73 74 75 76 77 78 79 | Used by:247 |
Symbol 81 Graphic | Used by:82 | |
Symbol 82 MovieClip | Uses:81 | Used by:247 |
Symbol 83 Graphic | Used by:84 | |
Symbol 84 MovieClip | Uses:83 | Used by:247 |
Symbol 85 Graphic | Used by:86 | |
Symbol 86 MovieClip | Uses:85 | Used by:247 |
Symbol 87 Graphic | Used by:102 | |
Symbol 88 Graphic | Used by:102 | |
Symbol 89 Graphic | Used by:102 | |
Symbol 90 Graphic | Used by:102 | |
Symbol 91 Graphic | Used by:102 | |
Symbol 92 Graphic | Used by:102 | |
Symbol 93 Graphic | Used by:102 | |
Symbol 94 Graphic | Used by:102 | |
Symbol 95 Graphic | Used by:102 | |
Symbol 96 Graphic | Used by:102 | |
Symbol 97 Graphic | Used by:102 | |
Symbol 98 Graphic | Used by:102 | |
Symbol 99 Graphic | Used by:102 | |
Symbol 100 ShapeTweening | Used by:102 | |
Symbol 101 Graphic | Used by:102 | |
Symbol 102 MovieClip | Uses:87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | Used by:247 |
Symbol 103 Graphic | Used by:117 | |
Symbol 104 Graphic | Used by:117 | |
Symbol 105 Graphic | Used by:106 | |
Symbol 106 MovieClip | Uses:105 | Used by:117 |
Symbol 107 Graphic | Used by:117 | |
Symbol 108 Graphic | Used by:117 | |
Symbol 109 Graphic | Used by:117 | |
Symbol 110 Graphic | Used by:117 | |
Symbol 111 Graphic | Used by:117 | |
Symbol 112 Graphic | Used by:117 | |
Symbol 113 Graphic | Used by:117 | |
Symbol 114 Graphic | Used by:117 | |
Symbol 115 Graphic | Used by:117 | |
Symbol 116 Graphic | Used by:117 | |
Symbol 117 MovieClip | Uses:103 104 106 107 108 109 110 111 112 113 114 115 116 | Used by:247 |
Symbol 118 Graphic | Used by:119 | |
Symbol 119 MovieClip | Uses:118 | Used by:247 |
Symbol 120 Graphic | Used by:121 | |
Symbol 121 MovieClip | Uses:120 | Used by:247 |
Symbol 122 ShapeTweening | Used by:126 | |
Symbol 123 ShapeTweening | Used by:126 | |
Symbol 124 ShapeTweening | Used by:126 | |
Symbol 125 Graphic | Used by:126 | |
Symbol 126 MovieClip | Uses:122 123 124 125 | Used by:247 |
Symbol 127 ShapeTweening | Used by:131 | |
Symbol 128 Graphic | Used by:131 | |
Symbol 129 ShapeTweening | Used by:131 | |
Symbol 130 Graphic | Used by:131 | |
Symbol 131 MovieClip | Uses:127 128 129 130 | Used by:247 |
Symbol 132 Graphic | Used by:155 | |
Symbol 133 Graphic | Used by:134 | |
Symbol 134 MovieClip | Uses:133 | Used by:155 |
Symbol 135 ShapeTweening | Used by:155 | |
Symbol 136 ShapeTweening | Used by:155 | |
Symbol 137 ShapeTweening | Used by:155 | |
Symbol 138 ShapeTweening | Used by:155 | |
Symbol 139 ShapeTweening | Used by:155 | |
Symbol 140 ShapeTweening | Used by:155 | |
Symbol 141 ShapeTweening | Used by:155 | |
Symbol 142 Graphic | Used by:155 | |
Symbol 143 Graphic | Used by:155 | |
Symbol 144 Graphic | Used by:155 | |
Symbol 145 ShapeTweening | Used by:155 | |
Symbol 146 ShapeTweening | Used by:155 | |
Symbol 147 ShapeTweening | Used by:155 | |
Symbol 148 ShapeTweening | Used by:155 | |
Symbol 149 ShapeTweening | Used by:155 | |
Symbol 150 ShapeTweening | Used by:155 | |
Symbol 151 ShapeTweening | Used by:155 | |
Symbol 152 Graphic | Used by:155 | |
Symbol 153 Graphic | Used by:155 | |
Symbol 154 Graphic | Used by:155 | |
Symbol 155 MovieClip | Uses:132 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | Used by:247 |
Symbol 156 Graphic | Used by:227 | |
Symbol 157 ShapeTweening | Used by:227 | |
Symbol 158 ShapeTweening | Used by:227 | |
Symbol 159 ShapeTweening | Used by:227 | |
Symbol 160 ShapeTweening | Used by:227 | |
Symbol 161 Graphic | Used by:227 | |
Symbol 162 Graphic | Used by:227 | |
Symbol 163 ShapeTweening | Used by:227 | |
Symbol 164 ShapeTweening | Used by:227 | |
Symbol 165 ShapeTweening | Used by:227 | |
Symbol 166 ShapeTweening | Used by:227 | |
Symbol 167 Graphic | Used by:227 | |
Symbol 168 Graphic | Used by:227 | |
Symbol 169 ShapeTweening | Used by:227 | |
Symbol 170 ShapeTweening | Used by:227 | |
Symbol 171 ShapeTweening | Used by:227 | |
Symbol 172 ShapeTweening | Used by:227 | |
Symbol 173 Graphic | Used by:227 | |
Symbol 174 Graphic | Used by:227 | |
Symbol 175 ShapeTweening | Used by:227 | |
Symbol 176 ShapeTweening | Used by:227 | |
Symbol 177 ShapeTweening | Used by:227 | |
Symbol 178 ShapeTweening | Used by:227 | |
Symbol 179 Graphic | Used by:227 | |
Symbol 180 ShapeTweening | Used by:227 | |
Symbol 181 ShapeTweening | Used by:227 | |
Symbol 182 ShapeTweening | Used by:227 | |
Symbol 183 ShapeTweening | Used by:227 | |
Symbol 184 Graphic | Used by:227 | |
Symbol 185 Graphic | Used by:227 | |
Symbol 186 ShapeTweening | Used by:227 | |
Symbol 187 ShapeTweening | Used by:227 | |
Symbol 188 ShapeTweening | Used by:227 | |
Symbol 189 ShapeTweening | Used by:227 | |
Symbol 190 Graphic | Used by:227 | |
Symbol 191 ShapeTweening | Used by:227 | |
Symbol 192 ShapeTweening | Used by:227 | |
Symbol 193 ShapeTweening | Used by:227 | |
Symbol 194 ShapeTweening | Used by:227 | |
Symbol 195 Graphic | Used by:227 | |
Symbol 196 Graphic | Used by:227 | |
Symbol 197 ShapeTweening | Used by:227 | |
Symbol 198 ShapeTweening | Used by:227 | |
Symbol 199 ShapeTweening | Used by:227 | |
Symbol 200 ShapeTweening | Used by:227 | |
Symbol 201 Graphic | Used by:227 | |
Symbol 202 Graphic | Used by:227 | |
Symbol 203 ShapeTweening | Used by:227 | |
Symbol 204 ShapeTweening | Used by:227 | |
Symbol 205 ShapeTweening | Used by:227 | |
Symbol 206 ShapeTweening | Used by:227 | |
Symbol 207 Graphic | Used by:227 | |
Symbol 208 Graphic | Used by:227 | |
Symbol 209 Graphic | Used by:227 | |
Symbol 210 ShapeTweening | Used by:227 | |
Symbol 211 ShapeTweening | Used by:227 | |
Symbol 212 ShapeTweening | Used by:227 | |
Symbol 213 ShapeTweening | Used by:227 | |
Symbol 214 Graphic | Used by:227 | |
Symbol 215 Graphic | Used by:227 | |
Symbol 216 ShapeTweening | Used by:227 | |
Symbol 217 ShapeTweening | Used by:227 | |
Symbol 218 ShapeTweening | Used by:227 | |
Symbol 219 ShapeTweening | Used by:227 | |
Symbol 220 Graphic | Used by:227 | |
Symbol 221 Graphic | Used by:227 | |
Symbol 222 ShapeTweening | Used by:227 | |
Symbol 223 ShapeTweening | Used by:227 | |
Symbol 224 ShapeTweening | Used by:227 | |
Symbol 225 ShapeTweening | Used by:227 | |
Symbol 226 Graphic | Used by:227 | |
Symbol 227 MovieClip | Uses:156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | Used by:247 |
Symbol 228 Graphic | Used by:229 | |
Symbol 229 MovieClip | Uses:228 | Used by:247 |
Symbol 230 Graphic | Used by:247 | |
Symbol 231 Graphic | Used by:232 | |
Symbol 232 MovieClip | Uses:231 | Used by:247 |
Symbol 233 Graphic | Used by:236 | |
Symbol 234 ShapeTweening | Used by:236 | |
Symbol 235 Graphic | Used by:236 | |
Symbol 236 MovieClip | Uses:233 234 235 | Used by:247 |
Symbol 237 Graphic | Used by:238 | |
Symbol 238 MovieClip | Uses:237 | Used by:247 |
Symbol 239 Graphic | Used by:240 | |
Symbol 240 MovieClip | Uses:239 | Used by:247 |
Symbol 241 Graphic | Used by:242 | |
Symbol 242 MovieClip | Uses:241 | Used by:247 |
Symbol 243 Graphic | Used by:244 | |
Symbol 244 MovieClip | Uses:243 | Used by:247 |
Symbol 245 Graphic | Used by:246 | |
Symbol 246 MovieClip | Uses:245 | Used by:247 |
Symbol 247 MovieClip | Uses:13 15 17 19 21 25 39 66 68 80 82 84 86 102 117 119 121 126 131 155 227 229 230 232 236 238 240 242 244 246 | Used by:Timeline |
Symbol 248 Font | Used by:249 | |
Symbol 249 Text | Uses:248 | Used by:Timeline |
Symbol 250 Graphic | Used by:251 | |
Symbol 251 MovieClip | Uses:250 | Used by:Timeline |
Symbol 252 Graphic | Used by:253 | |
Symbol 253 MovieClip | Uses:252 | Used by:Timeline |
Symbol 254 Graphic | Used by:255 | |
Symbol 255 MovieClip | Uses:254 | Used by:Timeline |
Instance Names
"kitsune" | Frame 1 | Symbol 247 MovieClip |
"plus_mc" | Frame 1 | Symbol 251 MovieClip |
"center_mc" | Frame 1 | Symbol 253 MovieClip |
"minus_mc" | Frame 1 | Symbol 255 MovieClip |
"cloud" | Symbol 13 MovieClip Frame 1 | Symbol 7 MovieClip |
"grass" | Symbol 13 MovieClip Frame 1 | Symbol 10 MovieClip |
"lakeRect" | Symbol 13 MovieClip Frame 1 | Symbol 12 MovieClip |
"pupil" | Symbol 117 MovieClip Frame 1 | Symbol 106 MovieClip |
"foot" | Symbol 155 MovieClip Frame 1 | Symbol 134 MovieClip |
"bg" | Symbol 247 MovieClip Frame 1 | Symbol 13 MovieClip |
"leg2" | Symbol 247 MovieClip Frame 1 | Symbol 17 MovieClip |
"tails" | Symbol 247 MovieClip Frame 1 | Symbol 19 MovieClip |
"body" | Symbol 247 MovieClip Frame 1 | Symbol 21 MovieClip |
"front" | Symbol 247 MovieClip Frame 1 | Symbol 25 MovieClip |
"breast2" | Symbol 247 MovieClip Frame 1 | Symbol 39 MovieClip |
"belly" | Symbol 247 MovieClip Frame 1 | Symbol 66 MovieClip |
"fur" | Symbol 247 MovieClip Frame 1 | Symbol 68 MovieClip |
"breast1" | Symbol 247 MovieClip Frame 1 | Symbol 80 MovieClip |
"hair2" | Symbol 247 MovieClip Frame 1 | Symbol 82 MovieClip |
"ear2" | Symbol 247 MovieClip Frame 1 | Symbol 84 MovieClip |
"head" | Symbol 247 MovieClip Frame 1 | Symbol 86 MovieClip |
"mouth" | Symbol 247 MovieClip Frame 1 | Symbol 102 MovieClip |
"eye" | Symbol 247 MovieClip Frame 1 | Symbol 117 MovieClip |
"hair1" | Symbol 247 MovieClip Frame 1 | Symbol 119 MovieClip |
"ear1" | Symbol 247 MovieClip Frame 1 | Symbol 121 MovieClip |
"drops" | Symbol 247 MovieClip Frame 1 | Symbol 126 MovieClip |
"blush" | Symbol 247 MovieClip Frame 1 | Symbol 131 MovieClip |
"leg1" | Symbol 247 MovieClip Frame 1 | Symbol 155 MovieClip |
"arm1" | Symbol 247 MovieClip Frame 1 | Symbol 227 MovieClip |
"revertmagic" | Symbol 247 MovieClip Frame 1 | Symbol 229 MovieClip |
"magicdot" | Symbol 247 MovieClip Frame 1 | Symbol 232 MovieClip |
"magiccolumn" | Symbol 247 MovieClip Frame 1 | Symbol 236 MovieClip |
"magicslider" | Symbol 247 MovieClip Frame 1 | Symbol 238 MovieClip |
"magicsphere" | Symbol 247 MovieClip Frame 1 | Symbol 240 MovieClip |
"magicinflate" | Symbol 247 MovieClip Frame 1 | Symbol 242 MovieClip |
"magicbreast" | Symbol 247 MovieClip Frame 1 | Symbol 244 MovieClip |
"magicbelly" | Symbol 247 MovieClip Frame 1 | Symbol 246 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "waterdrop" |
Labels
"smile" | Symbol 102 MovieClip Frame 1 |
"closed" | Symbol 102 MovieClip Frame 3 |
"open" | Symbol 102 MovieClip Frame 5 |
"small" | Symbol 102 MovieClip Frame 7 |
"tired" | Symbol 102 MovieClip Frame 9 |
"happy" | Symbol 102 MovieClip Frame 11 |
"teeth" | Symbol 102 MovieClip Frame 13 |
"happy2" | Symbol 102 MovieClip Frame 15 |
"confused" | Symbol 102 MovieClip Frame 17 |
"oh" | Symbol 102 MovieClip Frame 19 |
"impact" | Symbol 102 MovieClip Frame 26 |
"deflate" | Symbol 102 MovieClip Frame 31 |
"inflate" | Symbol 102 MovieClip Frame 50 |
"medium" | Symbol 117 MovieClip Frame 1 |
"big" | Symbol 117 MovieClip Frame 3 |
"open" | Symbol 117 MovieClip Frame 5 |
"small" | Symbol 117 MovieClip Frame 7 |
"closed" | Symbol 117 MovieClip Frame 9 |
"blink" | Symbol 117 MovieClip Frame 11 |
"endblink" | Symbol 117 MovieClip Frame 15 |
"inflate" | Symbol 117 MovieClip Frame 17 |
"tired" | Symbol 117 MovieClip Frame 19 |
"shut" | Symbol 117 MovieClip Frame 21 |
"mad" | Symbol 117 MovieClip Frame 23 |
"joy" | Symbol 117 MovieClip Frame 25 |
"normal" | Symbol 227 MovieClip Frame 1 |
"normal2belly1" | Symbol 227 MovieClip Frame 16 |
"belly1" | Symbol 227 MovieClip Frame 20 |
"belly12normal" | Symbol 227 MovieClip Frame 22 |
"belly12belly2" | Symbol 227 MovieClip Frame 35 |
"normal2belly2" | Symbol 227 MovieClip Frame 40 |
"belly2" | Symbol 227 MovieClip Frame 45 |
"belly22normal" | Symbol 227 MovieClip Frame 47 |
"belly22belly1" | Symbol 227 MovieClip Frame 52 |
"normal2belly3" | Symbol 227 MovieClip Frame 60 |
"belly12belly3" | Symbol 227 MovieClip Frame 66 |
"belly22belly3" | Symbol 227 MovieClip Frame 71 |
"belly3" | Symbol 227 MovieClip Frame 75 |
"belly32belly2" | Symbol 227 MovieClip Frame 77 |
"belly32belly1" | Symbol 227 MovieClip Frame 81 |
"belly32normal" | Symbol 227 MovieClip Frame 86 |
|