Frame 1
button_1.frameOnPress = "board_1";
button_1.onPress = function () {
_root.gotoAndPlay(this.frameOnPress);
};
button_4.frameOnPress = "board_4";
button_4.onPress = function () {
_root.gotoAndPlay(this.frameOnPress);
};
button_8.frameOnPress = "board_8";
button_8.onPress = function () {
_root.gotoAndPlay(this.frameOnPress);
};
button_16.frameOnPress = "board_16";
button_16.onPress = function () {
_root.gotoAndPlay(this.frameOnPress);
};
button_32.frameOnPress = "board_32";
button_32.onPress = function () {
_root.gotoAndPlay(this.frameOnPress);
};
gotoAndPlay("board_8");
Frame 2
_root.happiness = 56;
_root.maxHappiness = 70;
stop();
Frame 3
_root.happiness = 56;
_root.maxHappiness = 70;
stop();
Frame 4
_root.happiness = 64;
_root.maxHappiness = 80;
stop();
Frame 5
_root.happiness = 64;
_root.maxHappiness = 80;
stop();
Frame 6
_root.happiness = 80;
_root.maxHappiness = 100;
stop();
Frame 7
_root.happiness = 80;
_root.maxHappiness = 100;
stop();
Frame 8
_root.happiness = 128;
_root.maxHappiness = 160;
stop();
Frame 9
_root.happiness = 128;
_root.maxHappiness = 160;
stop();
Frame 10
_root.happiness = 160;
_root.maxHappiness = 200;
stop();
Frame 11
_root.happiness = 160;
_root.maxHappiness = 200;
stop();
Symbol 114 MovieClip [hot_spot] Frame 2
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 1
this.manager = attachMovie("hot_spot", this._name + "_manager", 4);
this.voice = new Sound();
this.voice.setPan((this._x - 160) / 2);
this.voice.setVolume(this._yscale * 4);
this.voice_on = 0;
this.frameOnPress = "press_happy";
this.frameOnRelease = "idle_happy";
this.frameOnCrush = "crush_happy";
this.frameOnVoiceEnd = "idle_happy";
this.happinessOnVoiceEnd = 0;
this.nextThink = 4 + (7 * Math.random());
this.transitionArray = new Array();
this.manager.onRollOver = function () {
this._parent.gotoAndPlay(this._parent.frameOnPress);
};
this.manager.onRollOut = function () {
this._parent.gotoAndPlay(this._parent.frameOnRelease);
};
this.manager.onPress = function () {
this._parent.gotoAndPlay(this._parent.frameOnCrush);
};
this.manager.onEnterFrame = function () {
this._parent.nextThink = this._parent.nextThink - 1;
if (this._parent.nextThink <= 0) {
this._parent.nextThink = 5 + (Math.random() * 10);
if (this._parent.transitionArray.length > 0) {
happiness = (_root.happiness * 100) / _root.maxHappiness;
n = 0;
if (n < this._parent.transitionArray.length) {
m = 2;
theArrayN = this._parent.transitionArray[n];
while (theArrayN.length > m) {
if (happiness < theArrayN[m]) {
break;
}
m = m + 2;
}
if (theArrayN[m - 1] <= (100 * Math.random())) {
n = n + 1;
// unexpected jump
}
this._parent.gotoAndPlay(theArrayN[0]);
}
}
}
};
this.clearTransitions = function () {
this.transitionArray = new Array();
};
this.voice.owner = this;
this.voice.onSoundComplete = function () {
this.owner.gotoAndPlay(this.owner.frameOnVoiceEnd);
};
Symbol 115 MovieClip [yukkuri_reimu] Frame 2
this.clearTransitions();
tmpArray = new Array("idle_happy_yu_takeItEasy", 33);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_happy_yu(q)", 50);
this.transitionArray.push(tmpArray);
Symbol 115 MovieClip [yukkuri_reimu] Frame 3
this.frameOnPress = "press_now_happy";
this.frameOnRelease = "idle_now_happy";
this.frameOnCrush = "crush_happy";
this.clearTransitions();
tmpArray = new Array("idle_sad", 80);
tmpArray.push(65, 20);
tmpArray.push(70, 5);
tmpArray.push(75, 0);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_happy_takeItEasy", 33);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_happy_yu(happy)", 33);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_happy_yukkuri(happy)", 50);
this.transitionArray.push(tmpArray);
Symbol 115 MovieClip [yukkuri_reimu] Frame 4
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 5
this.frameOnPress = "press_now_happy";
this.frameOnRelease = "idle_now_happy";
this.frameOnCrush = "crush_happy";
this.clearTransitions();
tmpArray = new Array("idle_happy_yu(q)", 50);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_happy", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 6
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 7
_root.happiness = _root.happiness - 1;
if (_root.happiness <= 0) {
_root.happiness = 0;
}
this.frameOnPress = "press_now_happy";
this.frameOnRelease = "idle_now_happy";
this.frameOnCrush = "crush_happy";
this.frameOnVoiceEnd = "idle_happy";
this.clearTransitions();
tmpArray = new Array("idle_happy_yu(q)", 30);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_now_happy_sound_delay", 40);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_happy", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 8
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 9
this.clearTransitions();
Symbol 115 MovieClip [yukkuri_reimu] Frame 10
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 11
_root.happiness = _root.happiness + 3;
if (_root.happiness >= _root.maxHappiness) {
_root.happiness = _root.maxHappiness;
}
this.frameOnPress = "press_now_happy";
this.frameOnRelease = "idle_now_happy";
gotoAndPlay("idle_happy");
Symbol 115 MovieClip [yukkuri_reimu] Frame 12
_root.happiness = _root.happiness + 1;
if (_root.happiness >= _root.maxHappiness) {
_root.happiness = _root.maxHappiness;
}
this.frameOnPress = "press_now_happy";
this.frameOnRelease = "idle_now_happy";
gotoAndPlay("idle_happy");
Symbol 115 MovieClip [yukkuri_reimu] Frame 13
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 14
this.clearTransitions();
this.voice.attachSound("yu(q)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_happy";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_happy_sound";
this.frameOnRelease = "idle_now_happy_sound";
this.frameOnCrush = "crush_happy";
Symbol 115 MovieClip [yukkuri_reimu] Frame 15
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 16
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 17
this.clearTransitions();
this.voice.attachSound("yukkuri(happy)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_happy_saidYukkuri";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_happy_sound";
this.frameOnRelease = "idle_now_happy_sound";
this.frameOnCrush = "crush_happy";
Symbol 115 MovieClip [yukkuri_reimu] Frame 18
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 19
this.clearTransitions();
this.voice.attachSound("yu(happy)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_happy";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_happy_sound";
this.frameOnRelease = "idle_now_happy_sound";
this.frameOnCrush = "crush_happy";
Symbol 115 MovieClip [yukkuri_reimu] Frame 20
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 21
this.clearTransitions();
this.voice.attachSound("takeItEasy");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_happy_saidTakeItEasy";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_happy_sound";
this.frameOnRelease = "idle_now_happy_sound";
this.frameOnCrush = "crush_happy";
Symbol 115 MovieClip [yukkuri_reimu] Frame 22
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 23
this.frameOnPress = "press_now_sad";
this.frameOnRelease = "idle_now_sad";
this.frameOnCrush = "crush";
this.clearTransitions();
tmpArray = new Array("idle_sad2", 80);
tmpArray.push(35, 20);
tmpArray.push(47, 5);
tmpArray.push(50, 0);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_happy", 0);
tmpArray.push(67, 5);
tmpArray.push(73, 20);
tmpArray.push(79, 40);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad_yu(q)", 20);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad_stopIt(short)", 25);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad_yu(cry)", 33);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad_yukkuri(cry)", 33);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad_stopIt(long)", 33);
this.transitionArray.push(tmpArray);
Symbol 115 MovieClip [yukkuri_reimu] Frame 24
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 25
this.frameOnPress = "press_now_sad";
this.frameOnRelease = "idle_now_sad";
this.frameOnCrush = "crush";
this.clearTransitions();
tmpArray = new Array("idle_sad_yu(happy)", 25);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad_yu(q)", 40);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 26
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 27
this.frameOnVoiceEnd = "idle_sad";
this.frameOnPress = "press_now_sad_sound";
this.frameOnRelease = "idle_now_sad_sound";
this.frameOnCrush = "crush";
this.clearTransitions();
tmpArray = new Array("idle_sad_yu(q)", 40);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_now_sad_sound_delay", 60);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 28
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 29
this.clearTransitions();
Symbol 115 MovieClip [yukkuri_reimu] Frame 30
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 31
_root.happiness = _root.happiness + 1;
if (_root.happiness >= _root.maxHappiness) {
_root.happiness = _root.maxHappiness;
}
gotoAndPlay("idle_sad");
Symbol 115 MovieClip [yukkuri_reimu] Frame 32
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 33
this.clearTransitions();
this.voice.attachSound("yu(happy)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_sad_happy1";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad_sound";
this.frameOnRelease = "idle_now_sad_sound";
this.frameOnCrush = "crush_sad_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 34
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 35
this.clearTransitions();
this.voice.attachSound("yu(q)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_sad_happy1";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad_sound";
this.frameOnRelease = "idle_now_sad_sound";
this.frameOnCrush = "crush_sad_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 36
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 37
this.clearTransitions();
this.voice.attachSound("stopIt(short)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_sad";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad_sound";
this.frameOnRelease = "idle_now_sad_sound";
this.frameOnCrush = "crush_sad_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 38
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 39
this.clearTransitions();
this.voice.attachSound("yukkuri(cry)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_sad_happy1";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad_sound";
this.frameOnRelease = "idle_now_sad_sound";
this.frameOnCrush = "crush_sad_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 40
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 41
this.clearTransitions();
this.voice.attachSound("yu(cry)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_sad";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad_sound";
this.frameOnRelease = "idle_now_sad_sound";
this.frameOnCrush = "crush_sad_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 42
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 43
this.clearTransitions();
this.voice.attachSound("stopIt(long)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_sad";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad_sound";
this.frameOnRelease = "idle_now_sad_sound";
this.frameOnCrush = "crush_sad_sound";
gotoAndPlay("idle_sad_cry");
Symbol 115 MovieClip [yukkuri_reimu] Frame 44
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 45
this.frameOnPress = "press_now_sad2";
this.frameOnRelease = "idle_now_sad2";
this.frameOnCrush = "crush";
this.clearTransitions();
tmpArray = new Array("idle_sad", 0);
tmpArray.push(35, 5);
tmpArray.push(42, 20);
tmpArray.push(50, 40);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad2_yu(q)", 20);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad2_yueee(cry)", 33);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad2_stopIt(long)", 33);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad2_stopIt(short)", 25);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad2_happy1", 33);
this.transitionArray.push(tmpArray);
Symbol 115 MovieClip [yukkuri_reimu] Frame 46
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 47
_root.happiness = _root.happiness + 1;
if (_root.happiness >= _root.maxHappiness) {
_root.happiness = _root.maxHappiness;
}
gotoAndPlay("idle_sad2");
Symbol 115 MovieClip [yukkuri_reimu] Frame 48
this.clearTransitions();
tmpArray = new Array("idle_sad2_yu(happy)", 15);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad2_yu(q)", 40);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad2", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 49
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 50
this.frameOnVoiceEnd = "idle_sad2";
this.clearTransitions();
tmpArray = new Array("idle_sad2_yu(q)", 30);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_now_sad2_sound_delay", 50);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad2", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 51
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 52
this.clearTransitions();
Symbol 115 MovieClip [yukkuri_reimu] Frame 53
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 54
_root.happiness = _root.happiness + 1;
if (_root.happiness >= _root.maxHappiness) {
_root.happiness = _root.maxHappiness;
}
this.clearTransitions();
this.voice.attachSound("yu(happy)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_sad2";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad2_sound";
this.frameOnRelease = "idle_now_sad2_sound";
this.frameOnCrush = "crush";
Symbol 115 MovieClip [yukkuri_reimu] Frame 55
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 56
this.clearTransitions();
this.voice.attachSound("yu(q)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_sad2";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad2_sound";
this.frameOnRelease = "idle_now_sad2_sound";
this.frameOnCrush = "crush";
gotoAndPlay("idle_sad_cry");
Symbol 115 MovieClip [yukkuri_reimu] Frame 57
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 58
this.clearTransitions();
this.voice.attachSound("stopIt(short)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_sad2";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad2_sound";
this.frameOnRelease = "idle_now_sad2_sound";
this.frameOnCrush = "crush";
gotoAndPlay("idle_sad_cry");
Symbol 115 MovieClip [yukkuri_reimu] Frame 59
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 60
this.clearTransitions();
this.voice.attachSound("stopIt(long)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_sad2";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad2_sound";
this.frameOnRelease = "idle_now_sad2_sound";
this.frameOnCrush = "crush";
gotoAndPlay("idle_sad_cry");
Symbol 115 MovieClip [yukkuri_reimu] Frame 61
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 62
this.clearTransitions();
this.voice.attachSound("yueee(cry)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_sad2_yueeeFinished";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad2_sound";
this.frameOnRelease = "idle_now_sad2_sound";
this.frameOnCrush = "crush";
gotoAndPlay("idle_sad_cry");
Symbol 115 MovieClip [yukkuri_reimu] Frame 63
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 68
gotoAndPlay("idle_sad_cry");
Symbol 115 MovieClip [yukkuri_reimu] Frame 69
this.frameOnPress = "press_now_sad2";
this.frameOnRelease = "idle_now_sad2";
tmpArray = new Array("idle_sad2_yueeeContinue", 5);
tmpArray.push(5, 15);
tmpArray.push(10, 25);
tmpArray.push(15, 50);
tmpArray.push(25, 25);
tmpArray.push(30, 10);
tmpArray.push(40, 5);
this.transitionArray.push(tmpArray);
tmpArray = new Array("idle_sad2", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 70
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 71
this.clearTransitions();
this.voice.attachSound("yueee(cry)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "idle_sad2_yueeeFinished";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad2_sound";
this.frameOnRelease = "idle_now_sad2_sound";
this.frameOnCrush = "crush";
gotoAndPlay("idle_sad_cry");
Symbol 115 MovieClip [yukkuri_reimu] Frame 72
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 73
this.clearTransitions();
Symbol 115 MovieClip [yukkuri_reimu] Frame 74
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 75
this.clearTransitions();
this.frameOnPress = "press_now_happy";
this.frameOnRelease = "idle_now_happy";
this.frameOnCrush = "crush_happy";
tmpArray = new Array("press_sad", 80);
tmpArray.push(35, 20);
tmpArray.push(47, 5);
tmpArray.push(50, 0);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_happy_yu(happy)", 30);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_happy_yukkuri(happy)", 40);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_happy_stopIt(short)", 20);
this.transitionArray.push(tmpArray);
Symbol 115 MovieClip [yukkuri_reimu] Frame 76
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 77
this.frameOnVoiceEnd = "press_happy";
this.frameOnPress = "press_now_happy";
this.frameOnRelease = "idle_now_happy";
this.frameOnCrush = "crush_happy";
this.clearTransitions();
tmpArray = new Array("press_happy_yu(q)", 40);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_happy_yu(happy)", 40);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_happy", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 78
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 79
_root.happiness = _root.happiness - 1;
if (_root.happiness <= 0) {
_root.happiness = 0;
}
this.frameOnVoiceEnd = "press_happy";
this.frameOnPress = "press_now_happy_sound";
this.frameOnRelease = "idle_now_happy_sound";
this.frameOnCrush = "crush_happy";
this.clearTransitions();
tmpArray = new Array("press_happy_yu(q)", 40);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_now_happy_sound_delay", 60);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_happy", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 80
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 81
this.clearTransitions();
Symbol 115 MovieClip [yukkuri_reimu] Frame 82
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 83
this.clearTransitions();
_root.happiness = _root.happiness - 1;
if (_root.happiness <= 0) {
_root.happiness = 0;
}
this.voice.attachSound("stopIt(short)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_happy";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_happy_sound";
this.frameOnRelease = "idle_now_happy_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 84
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 85
this.clearTransitions();
this.voice.attachSound("yu(q)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_happy";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_happy_sound";
this.frameOnRelease = "idle_now_happy_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 86
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 87
this.clearTransitions();
this.voice.attachSound("yu(happy)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_happy";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_happy_sound";
this.frameOnRelease = "idle_now_happy_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 88
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 89
this.clearTransitions();
this.voice.attachSound("yukkuri(happy)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_happy";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_happy_sound";
this.frameOnRelease = "idle_now_happy_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 90
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 91
this.frameOnPress = "press_now_sad";
this.frameOnRelease = "idle_now_sad";
this.frameOnCrush = "crush";
this.clearTransitions();
tmpArray = new Array("press_sad2", 80);
tmpArray.push(40, 20);
tmpArray.push(47, 5);
tmpArray.push(55, 0);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_happy", 0);
tmpArray.push(70, 5);
tmpArray.push(76, 20);
tmpArray.push(85, 40);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad_yu(q)", 10);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad_yu(cry)", 20);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad_stopIt(short)", 20);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad_stopIt(long)", 20);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad_yueee(cry)", 30);
this.transitionArray.push(tmpArray);
Symbol 115 MovieClip [yukkuri_reimu] Frame 92
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 93
_root.happiness = _root.happiness - 1;
if (_root.happiness <= 0) {
_root.happiness = 0;
}
this.frameOnPress = "press_now_sad";
this.frameOnRelease = "idle_now_sad";
this.frameOnCrush = "crush";
this.clearTransitions();
tmpArray = new Array("press_sad_yu(q)", 20);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad_stopIt(short)", 50);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 94
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 95
_root.happiness = _root.happiness - 1;
if (_root.happiness <= 0) {
_root.happiness = 0;
}
this.frameOnVoiceEnd = "press_sad";
this.frameOnPress = "press_now_sad_sound";
this.frameOnRelease = "idle_now_sad_sound";
this.frameOnCrush = "crush";
this.clearTransitions();
tmpArray = new Array("press_sad_yu(q)", 30);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_now_sad_sound_delay", 50);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 96
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 97
this.clearTransitions();
Symbol 115 MovieClip [yukkuri_reimu] Frame 98
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 99
this.clearTransitions();
this.voice.attachSound("yu(q)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_sad";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad_sound";
this.frameOnRelease = "idle_now_sad_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 100
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 101
this.clearTransitions();
this.voice.attachSound("stopIt(short)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_sad";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad_sound";
this.frameOnRelease = "idle_now_sad_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 102
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 103
this.clearTransitions();
this.voice.attachSound("stopIt(long)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_sad";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad_sound";
this.frameOnRelease = "idle_now_sad_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 104
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 105
this.clearTransitions();
this.voice.attachSound("yu(cry)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_sad";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad_sound";
this.frameOnRelease = "idle_now_sad_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 106
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 107
this.frameOnPress = "press_now_sad2";
this.frameOnRelease = "idle_now_sad2";
this.frameOnCrush = "crush";
this.clearTransitions();
tmpArray = new Array("press_horror", 40);
tmpArray.push(5, 20);
tmpArray.push(10, 5);
tmpArray.push(15, 0);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad", 0);
tmpArray.push(45, 5);
tmpArray.push(50, 15);
tmpArray.push(55, 30);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad2_yu(q)", 20);
this.transitionArray.push(tmpArray);
Symbol 115 MovieClip [yukkuri_reimu] Frame 108
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 109
_root.happiness = _root.happiness - 1;
if (_root.happiness <= 0) {
_root.happiness = 0;
}
this.frameOnPress = "press_now_sad2";
this.frameOnRelease = "idle_now_sad2";
this.frameOnCrush = "crush";
this.clearTransitions();
tmpArray = new Array("press_horror", 75);
tmpArray.push(10, 50);
tmpArray.push(15, 33);
tmpArray.push(20, 25);
tmpArray.push(25, 15);
tmpArray.push(30, 0);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad2_yu(q)", 40);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad2", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 110
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 111
_root.happiness = _root.happiness - 2;
if (_root.happiness <= 0) {
_root.happiness = 0;
}
this.frameOnVoiceEnd = "press_sad2";
this.frameOnPress = "press_now_sad2_sound";
this.frameOnRelease = "idle_now_sad2_sound";
this.frameOnCrush = "crush";
this.clearTransitions();
tmpArray = new Array("press_sad2_yu(q)", 40);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_now_sad2_sound_delay", 60);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad2", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 112
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 113
this.clearTransitions();
Symbol 115 MovieClip [yukkuri_reimu] Frame 114
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 115
this.clearTransitions();
this.voice.attachSound("yu(q)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_sad2";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad2_sound";
this.frameOnRelease = "idle_now_sad2_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 116
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 117
this.clearTransitions();
this.voice.attachSound("why(long)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_sad2";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad2_sound";
this.frameOnRelease = "idle_now_sad2_sound";
gotoAndPlay("press_sad_cry");
Symbol 115 MovieClip [yukkuri_reimu] Frame 118
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 119
this.clearTransitions();
this.voice.attachSound("stopIt(short)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_sad2";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad2_sound";
this.frameOnRelease = "idle_now_sad2_sound";
Symbol 115 MovieClip [yukkuri_reimu] Frame 120
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 121
this.clearTransitions();
this.voice.attachSound("stopIt(long)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_sad2";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad2_sound";
this.frameOnRelease = "idle_now_sad2_sound";
gotoAndPlay("press_sad_cry");
Symbol 115 MovieClip [yukkuri_reimu] Frame 122
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 123
this.clearTransitions();
this.voice.attachSound("yueee(cry)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_sad2_yueeeFinished";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad2_sound";
this.frameOnRelease = "idle_now_sad2_sound";
gotoAndPlay("press_sad_cry");
Symbol 115 MovieClip [yukkuri_reimu] Frame 124
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 128
this.gotoAndPlay("press_sad_cry");
Symbol 115 MovieClip [yukkuri_reimu] Frame 129
this.clearTransitions();
this.voice.attachSound("yueee(cry)");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "press_sad_yueeeFinished";
this.happinessOnVoiceEnd = 0;
this.frameOnPress = "press_now_sad_sound";
this.frameOnRelease = "idle_now_sad_sound";
gotoAndPlay("press_sad_cry");
Symbol 115 MovieClip [yukkuri_reimu] Frame 130
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 131
this.clearTransitions();
this.frameOnPress = "press_now_sad";
this.frameOnRelease = "idle_now_sad";
tmpArray = new Array("press_sad_yueee(cry)", 0);
tmpArray.push(30, 20);
tmpArray.push(40, 45);
tmpArray.push(55, 33);
tmpArray.push(65, 10);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 132
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 133
this.clearTransitions();
this.frameOnPress = "press_now_sad2";
this.frameOnRelease = "idle_now_sad2";
tmpArray = new Array("press_sad2_yueee(cry)", 0);
tmpArray.push(10, 33);
tmpArray.push(20, 50);
tmpArray.push(30, 33);
tmpArray.push(40, 10);
this.transitionArray.push(tmpArray);
tmpArray = new Array("press_sad2", 100);
this.transitionArray.push(tmpArray);
this.nextThink = 0;
Symbol 115 MovieClip [yukkuri_reimu] Frame 134
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 135
_root.happiness = _root.happiness - 1;
if (_root.happiness <= 0) {
_root.happiness = 0;
}
Symbol 115 MovieClip [yukkuri_reimu] Frame 136
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 137
this.clearTransitions();
this.voice.attachSound("crushSound");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "";
this.happinessOnVoiceEnd = 0;
this.frameOnCrush = "";
this.frameOnPress = "";
this.frameOnRelease = "";
this.manager._x = -30;
this.manager._y = 120;
_root.happiness = _root.happiness - 20;
if (_root.happiness <= 0) {
_root.happiness = 0;
}
Symbol 115 MovieClip [yukkuri_reimu] Frame 140
gotoAndPlay("crush2");
Symbol 115 MovieClip [yukkuri_reimu] Frame 141
this.clearTransitions();
this.voice.attachSound("crushSound");
this.voice.start();
this.voice_on = "1";
this.frameOnVoiceEnd = "none";
this.happinessOnVoiceEnd = 0;
this.frameOnCrush = "none";
this.frameOnPress = "none";
this.frameOnRelease = "none";
this.manager._x = -30;
this.manager._y = 120;
_root.happiness = _root.happiness - 15;
if (_root.happiness <= 0) {
_root.happiness = 0;
}
Symbol 115 MovieClip [yukkuri_reimu] Frame 164
stop();
Symbol 115 MovieClip [yukkuri_reimu] Frame 165
stop();
Symbol 116 MovieClip [happiness_meter] Frame 1
this.h_mark._y = 201 + ((-200 * _root.happiness) / _root.maxHappiness);