1172 lines
33 KiB
JavaScript
1172 lines
33 KiB
JavaScript
/*:
|
||
* @plugindesc メニュー画面で表示する[周囲からの評価]を取得するプラグイン
|
||
* @author 銀河
|
||
*
|
||
* @param Variable ID
|
||
* @type number
|
||
* @min 1
|
||
* @desc 表示の管理に使用する変数を指定します。
|
||
* @default 1
|
||
*
|
||
*/
|
||
|
||
(function() {
|
||
|
||
// プラグインパラメータを取得
|
||
var parameters = PluginManager.parameters('MW_CallEvaluation');
|
||
var commentId = Number(parameters['Variable ID']) || 1;
|
||
|
||
// プラグインコマンドを上書き
|
||
var _Game_Interpreter_pluginCommand = Game_Interpreter.prototype.pluginCommand;
|
||
Game_Interpreter.prototype.pluginCommand = function(command, args) {
|
||
_Game_Interpreter_pluginCommand.call(this, command, args);
|
||
if (command === 'CallEvaluation') {
|
||
this.callEvaluation(); //
|
||
}
|
||
};
|
||
|
||
// 評価処理
|
||
Game_Interpreter.prototype.callEvaluation = function() {
|
||
var value = $gameVariables.value(commentId);
|
||
var nickname = "";
|
||
var text1 = "0";
|
||
var text2 = "0";
|
||
var text3 = "0";
|
||
var NPC = "1";
|
||
var Emote = 1;
|
||
switch (value){
|
||
case 100:
|
||
nickname = "The Best"
|
||
text1 = "She's cute and actually does her job,"
|
||
text2 = "the Disciplinary Committee is really something."
|
||
NPC="A_"
|
||
Emote=5
|
||
break;
|
||
case 200:
|
||
nickname = "Talented and Beautiful"
|
||
text1 = "There's no way the rumor that the perfect"
|
||
text2 = "Disciplinary Committee member is a pervert is true, right?"
|
||
NPC="A_"
|
||
Emote=2
|
||
break;
|
||
case 300:
|
||
nickname = "A Girl Who Can Work and Be Lewd"
|
||
text1 = "The Disciplinary Committee is actually lewd, but they still"
|
||
text2 = "work hard, so honestly, it's kinda admirable."
|
||
NPC="A_"
|
||
Emote=1
|
||
break;
|
||
case 400:
|
||
nickname = "Indomitable"
|
||
text1 = "Spending the day with no underwear and still keeping order"
|
||
text2 = "from falling apart is pretty damn impressive..."
|
||
NPC="A_"
|
||
Emote=4
|
||
break;
|
||
case 500:
|
||
nickname = "Serious"
|
||
text1 = "Thanks to the Disciplinary Committee, academy life is"
|
||
text2 = "comfortable for everyone."
|
||
NPC="A_"
|
||
Emote=5
|
||
break;
|
||
case 600:
|
||
nickname = "Talented and Beautiful"
|
||
text1 = "The Disciplinary Committee works seriously, but for some"
|
||
text2 = "reason there are so many lewd rumors about them..."
|
||
NPC="A_"
|
||
Emote=4
|
||
break;
|
||
case 700:
|
||
nickname = "Has a Peculiar Fetish"
|
||
text1 = "Feels like the Disciplinary Committee gets pleasure from"
|
||
text2 = "breaking the very rules they've set, right?♡"
|
||
NPC="A_"
|
||
Emote=3
|
||
break;
|
||
case 800:
|
||
nickname = "Seductive Professional"
|
||
text1 = "The Disciplinary Committee seems to be working"
|
||
text2 = "but there's just no way in that outfit...♡"
|
||
NPC="A_"
|
||
Emote=3
|
||
break;
|
||
case 900:
|
||
nickname = "Suspicious Sexy Underwear Committee"
|
||
text1 = "The Disciplinary Committee is strict sometimes,"
|
||
text2 = "but they're cute too."
|
||
NPC="B_"
|
||
Emote=5
|
||
break;
|
||
case 1000:
|
||
nickname = "Suspected Closet Pervert Committee"
|
||
text1 = "Acting tough with the students but secretly"
|
||
text2 = "there's a rumor they're a closet pervert..."
|
||
NPC="B_"
|
||
Emote=4
|
||
break;
|
||
case 1100:
|
||
nickname = "Lewd"
|
||
text1 = "There's a rumor that Himeno does Disciplinary Committee work"
|
||
text2 = "to get a sense of guilt from doing naughty things."
|
||
NPC="B_"
|
||
Emote=3
|
||
break;
|
||
case 1200:
|
||
nickname = "Rapidly Rising Committee"
|
||
text1 = "Getting to see those huge tits and"
|
||
text2 = "even her showing her see-through nipples, the Committee rules (lol)"
|
||
NPC="B_"
|
||
Emote=3
|
||
break;
|
||
case 1300:
|
||
nickname = "Committee Member In Name Only"
|
||
text1 = "Isn't it kinda suspicious if the Disciplinary Committee"
|
||
text2 = "is even working seriously these days?"
|
||
NPC="C_"
|
||
Emote=1
|
||
break;
|
||
case 1400:
|
||
nickname = "Coming of Age Committee Member"
|
||
text1 = "To be honest, it's her body that's distracting"
|
||
text2 = "us from her work more than her activities...♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 1500:
|
||
nickname = "Committee Full of Lust"
|
||
text1 = "Lately, the Committee's the first to do lewd things"
|
||
text2 = "and cause disorder, or so they say♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 1600:
|
||
nickname = "The One Who Provides Fap Material"
|
||
text1 = "Just seeing her poking nipples is enough"
|
||
text2 = "to never run out of fap material♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 1700:
|
||
nickname = "Competent Committee (lol)"
|
||
text1 = "Thanks to the Committee's slacking at work,"
|
||
text2 = "there are more chances for panty shots♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 1800:
|
||
nickname = "Committee Member With No Dignity"
|
||
text1 = "Lately, with all the sexual harassment from boys,"
|
||
text2 = "she might be the one causing disorder♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 1900:
|
||
nickname = "Unqualified to Talk About Discipline"
|
||
text1 = "With all those lewd rumors about Himeno,"
|
||
text2 = "maybe she can't be a Committee Member anymore♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 2000:
|
||
nickname = "Disgrace of the Committee"
|
||
text1 = "Everyone says the Committee is causing the most"
|
||
text2 = "disorder in the academy."
|
||
NPC="C_"
|
||
Emote=5
|
||
break;
|
||
case 2100:
|
||
nickname = "Too Much of a Pervert Committee"
|
||
text1 = "Himeno could probably star in AVs as the"
|
||
text2 = "infamously perverted Committee Member♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 2200:
|
||
nickname = "Walking Sex Toy"
|
||
text1 = "There's so many lewd rumors about her,"
|
||
text2 = "I only see the Committee as a walking onahole now♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 2300:
|
||
nickname = "Closet Pervert Committee"
|
||
text1 = "Rumor has it the Committee brought in a porn mag,"
|
||
text2 = "but that has to be some mistake...right?"
|
||
NPC="A_"
|
||
Emote=3
|
||
break;
|
||
case 2400:
|
||
nickname = "Closet Pervert Committee"
|
||
text1 = "Bringing a porn mag despite being on the Committee,"
|
||
text2 = "that's peak perversion right there♡"
|
||
NPC="B_"
|
||
Emote=3
|
||
break;
|
||
case 2500:
|
||
nickname = "Closet Pervert Committee"
|
||
text1 = "I bet the Committee planned to use that porn mag"
|
||
text2 = "for jerking off at school♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 2600:
|
||
nickname = "Uptight Committee Member"
|
||
text1 = "Wish the Committee would be a little"
|
||
text2 = "more flexible sometimes."
|
||
NPC="A_"
|
||
Emote=6
|
||
break;
|
||
case 2700:
|
||
nickname = "Uptight Committee Member"
|
||
text1 = "The Committee is so annoying. Can't we"
|
||
text2 = "at least choose our own skirt length?"
|
||
NPC="E_"
|
||
Emote=8
|
||
break;
|
||
case 2800:
|
||
nickname = "Uptight Committee Member"
|
||
text1 = "Can the Committee let us check if those"
|
||
text2 = "massive tits are real or not?♡"
|
||
NPC="C_"
|
||
Emote=7
|
||
break;
|
||
case 2900:
|
||
nickname = "Masturbation-Outed Committee"
|
||
text1 = "Heard the rumor? The Committee jerked it at school"
|
||
text2 = "and got chewed out by Kito♡"
|
||
NPC="B_"
|
||
Emote=3
|
||
break;
|
||
case 3000:
|
||
nickname = "Lost All Dignity Committee"
|
||
text1 = "A girl who exposes her genitals in the hallway in the morning"
|
||
text2 = "is on the Committee? This school is doomed♡"
|
||
NPC="B_"
|
||
Emote=3
|
||
break;
|
||
case 3100:
|
||
nickname = "Girl Who Needs Masturbation Help"
|
||
text1 = "Heard the Committee in a school swimsuit was having boys"
|
||
text2 = "help her masturbate in the hallway♡"
|
||
NPC="B_"
|
||
Emote=3
|
||
break;
|
||
case 3200:
|
||
nickname = "Pervert Swimsuit Committee"
|
||
text1 = "Classmates say the Committee showed up to class"
|
||
text2 = "in that swimsuit♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 3300:
|
||
nickname = "Committee That Causes Disorder"
|
||
text1 = "Dragged around the school in that lewd swimsuit,"
|
||
text2 = "how can she even show her face here? (lol)"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 3400:
|
||
nickname = "Pervert Who Pees in the Boys' Toilet"
|
||
text1 = "Publicly peeing in the boys’ bathroom,"
|
||
text2 = "the Committee is finished now (lol)"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 3500:
|
||
nickname = "Girl Who Gains Votes With Pee"
|
||
text1 = "The Committee was peeing in the boys’ bathroom"
|
||
text2 = "again for approval votes♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 3600:
|
||
nickname = "Sex Toy Masturbation Addict"
|
||
text1 = "Can't see the Committee as anything but a pervert"
|
||
text2 = "who openly masturbates with toys♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 3700:
|
||
nickname = "Orgasm Juice Server"
|
||
text1 = "Almost slipped and fell in the hallway"
|
||
text2 = "on Committee orgasm juice (lol)"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 3800:
|
||
nickname = "Girl Who Moans 'Oho'"
|
||
text1 = "Heard the Committee's 'oho' moaning"
|
||
text2 = "from the hallway during class. Was I hallucinating?"
|
||
NPC="C_"
|
||
Emote=7
|
||
break;
|
||
case 3900:
|
||
nickname = "Toilet Duty for Student Guidance"
|
||
text1 = "Sometimes when you're late to school, you see the Committee"
|
||
text2 = "doing guidance in sexy underwear♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 4000:
|
||
nickname = "Committee Who Slacks Off"
|
||
text1 = "You barely ever see the Committee working"
|
||
text2 = "lately. Is she okay...?"
|
||
NPC="B_"
|
||
Emote=2
|
||
break;
|
||
case 4100:
|
||
nickname = "Truant"
|
||
text1 = "Haven’t seen the Committee at school lately,"
|
||
text2 = "I wonder if something happened..."
|
||
NPC="B_"
|
||
Emote=7
|
||
break;
|
||
case 4200:
|
||
nickname = "Zero Sense for Art"
|
||
text1 = "Did you see that Disciplinary Awareness poster?"
|
||
text2 = "Maybe the Committee has no sense for art..."
|
||
NPC="B_"
|
||
Emote=2
|
||
break;
|
||
case 4300:
|
||
nickname = "Charismatic Artist (?)"
|
||
text1 = "Seeing that poster every day made me"
|
||
text2 = "think maybe it's actually cool..."
|
||
NPC="B_"
|
||
Emote=1
|
||
break;
|
||
case 4400:
|
||
nickname = "So-So Art Sense"
|
||
text1 = "Those posters look like a middle schooler made them,"
|
||
text2 = "and honestly, they're super cringe..."
|
||
NPC="B_"
|
||
Emote=4
|
||
break;
|
||
case 4500:
|
||
nickname = "Tone-Deaf for Art"
|
||
text1 = "Thinking those posters are good and"
|
||
text2 = "putting them up, the Committee is nuts."
|
||
NPC="B_"
|
||
Emote=1
|
||
break;
|
||
case 4600:
|
||
nickname = "Great Art Sense"
|
||
text1 = "Those Disciplinary Awareness posters in the hall, somehow"
|
||
text2 = "they're kind of emo, right?"
|
||
NPC="B_"
|
||
Emote=5
|
||
break;
|
||
case 4700:
|
||
nickname = "Shadow Worker"
|
||
text1 = "Since those Disciplinary Awareness posters went up,"
|
||
text2 = "there's less trash around school."
|
||
NPC="B_"
|
||
Emote=5
|
||
break;
|
||
case 4800:
|
||
nickname = "Cute Underwear Committee"
|
||
text1 = "The model in the lewd Disciplinary Awareness poster,"
|
||
text2 = "rumor has it it’s the Committee..."
|
||
NPC="C_"
|
||
Emote=1
|
||
break;
|
||
case 4900:
|
||
nickname = "Stained Panties Committee"
|
||
text1 = "The poster with stained panties, that model"
|
||
text2 = "has GOT to be the Committee♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 5000:
|
||
nickname = "Masochistic Anti-Example"
|
||
text1 = "That lewd Disciplinary Awareness poster,"
|
||
text2 = "I wanna hang one up at home♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 5100:
|
||
nickname = "Shame-Exposed Masochist"
|
||
text1 = "I've been jerking it for \\V[581] days straight"
|
||
text2 = "to that poster of the Committee in sexy underwear♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 5200:
|
||
nickname = "Makes Trouble Even When Absent"
|
||
text1 = "Since those Disciplinary posters went up,"
|
||
text2 = "the school’s really lost all order lately♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 5300:
|
||
nickname = "Everyone's Fap Material Provider"
|
||
text1 = "Because of that Disciplinary Awareness poster (lol),"
|
||
text2 = "the boys' bathroom reeks of cum lately♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 5400:
|
||
nickname = "Suspicious Sexy Underwear Committee"
|
||
text1 = "Passing by the photography club, I heard something"
|
||
text2 = "about the Committee's sexy underwear."
|
||
NPC="B_"
|
||
Emote=1
|
||
break;
|
||
case 5500:
|
||
nickname = "Sexy Underwear Model"
|
||
text1 = "They say they were shooting photos of the Committee"
|
||
text2 = "in sexy underwear. Wish I’d seen it♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 5600:
|
||
nickname = "Photography Club's Cum Toilet"
|
||
text1 = "You could hear the Committee moaning from"
|
||
text2 = "the photography club room. What were they doing?♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 5700:
|
||
nickname = "Committee With Tits That Cause Disorder"
|
||
text1 = "Sorry Committee, but anyone would stare at"
|
||
text2 = "those lewd nipples no matter what…♡"
|
||
NPC="B_"
|
||
Emote=3
|
||
break;
|
||
case 5800:
|
||
nickname = "Kaneobara's Sex Toy"
|
||
text1 = "No matter how hard she works on discipline,"
|
||
text2 = "if she's made to do THAT every morning, it's a lost cause♡"
|
||
NPC="B_"
|
||
Emote=3
|
||
break;
|
||
case 5900:
|
||
nickname = "Natural-Born Fap Material"
|
||
text1 = "I came to school a train earlier just"
|
||
text2 = "to jerk it to the Committee's nipples♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 6000:
|
||
nickname = "Natural-Born Fap Material"
|
||
text1 = "Seeing a classmate’s sexy body in person"
|
||
text2 = "is way better than any porn image♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 6100:
|
||
nickname = "Girl Who Shows Off Her Butt"
|
||
text1 = "Sorry Committee, but if there's a butt in my line of sight,"
|
||
text2 = "I'm gonna stare. That's just how guys are."
|
||
NPC="B_"
|
||
Emote=3
|
||
break;
|
||
case 6200:
|
||
nickname = "Girl Who Shows Off Her Butt"
|
||
text1 = "Committee’s not wearing panties lately, so if you wait"
|
||
text2 = "by the stairs, you might see her bare ass♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 6300:
|
||
nickname = "Girl Who Shows Off Her Butt"
|
||
text1 = "Covering your skirt on the stairs while not wearing underwear—"
|
||
text2 = "that's textbook exhibitionist♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 6400:
|
||
nickname = "Take Care of Your Eyesight"
|
||
text1 = "Saw them playing nipple guessing game outside the classroom,"
|
||
text2 = "got their eyes poked out, poor guy..."
|
||
NPC="A_"
|
||
Emote=2
|
||
break;
|
||
case 6500:
|
||
nickname = "Pink Companion"
|
||
text1 = "Committee was playing a nipple guessing game in the hallway,"
|
||
text2 = "is that part of the job too?♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 6600:
|
||
nickname = "Weirdo (Abnormal Type)"
|
||
text1 = "Saw the Committee pressing her boobs against"
|
||
text2 = "the wall in the hallway, what was that about?"
|
||
NPC="C_"
|
||
Emote=7
|
||
break;
|
||
case 6700:
|
||
nickname = "New Bullying Target?"
|
||
text1 = "I get Kaneobara-kun, but why is Okane-san"
|
||
text2 = "bullying the Committee, too...?"
|
||
NPC="D_"
|
||
Emote=1
|
||
break;
|
||
case 6800:
|
||
nickname = "Okane-san's Stand-in?"
|
||
text1 = "Seems like Kaneobara-kun changed his bullying target,"
|
||
text2 = "and Okane-san seems happier now..."
|
||
NPC="E_"
|
||
Emote=1
|
||
break;
|
||
case 6900:
|
||
nickname = "Standing Pee Girl (lol)"
|
||
text1 = "That uptight Committee Member got ordered by Okane"
|
||
text2 = "to pee standing up. Served her right! (lol)"
|
||
NPC="F_"
|
||
Emote=5
|
||
break;
|
||
case 7000:
|
||
nickname = "Unqualified to Judge Dress Code"
|
||
text1 = "Dissing others' outfits while dressed like that,"
|
||
text2 = "that's bold~ (lol)"
|
||
NPC="G_1"
|
||
Emote=5
|
||
break;
|
||
case 7100:
|
||
nickname = "Top Student in Both Arts and Sports"
|
||
text1 = "A Committee Member who's good at both"
|
||
text2 = "studies and sports! Himeno really is the ideal student..."
|
||
NPC="A_"
|
||
Emote=1
|
||
break;
|
||
case 7200:
|
||
nickname = "Talented Lewd Woman"
|
||
text1 = "It's kinda hot how someone smart can also be a little lewd,"
|
||
text2 = "super high points as a romantic prospect…"
|
||
NPC="A_"
|
||
Emote=1
|
||
break;
|
||
case 7300:
|
||
nickname = "Wisdom Holder"
|
||
text1 = "Is Himeno’s true nature the model student"
|
||
text2 = "or the crazy perverted bitch...?"
|
||
NPC="B_"
|
||
Emote=4
|
||
break;
|
||
case 7400:
|
||
nickname = "Top Student in Both Arts and Sports"
|
||
text1 = "Himeno even goes to class, so diligent."
|
||
text2 = "Me, I wake up and it's already after school."
|
||
NPC="B_"
|
||
Emote=1
|
||
break;
|
||
case 7500:
|
||
nickname = "Talented Lewd Woman"
|
||
text1 = "The Committee probably jerks off at home too,"
|
||
text2 = "but she still gets good grades... that's the difference."
|
||
NPC="B_"
|
||
Emote=1
|
||
break;
|
||
case 7600:
|
||
nickname = "Wisdom Holder"
|
||
text1 = "Even in lectures, the Committee is apparently"
|
||
text2 = "spreading crazy lewd pheromones…"
|
||
NPC="C_"
|
||
Emote=1
|
||
break;
|
||
case 7700:
|
||
nickname = "Dream Academy’s Madonna"
|
||
text1 = "For a body like that, Committee Member’s"
|
||
text2 = "still super athletic. Amazing…"
|
||
NPC="A_"
|
||
Emote=1
|
||
break;
|
||
case 7800:
|
||
nickname = "Lewd Body That Breaks Order"
|
||
text1 = "Does Himeno realize running marathons"
|
||
text2 = "in that body might break school discipline?"
|
||
NPC="A_"
|
||
Emote=7
|
||
break;
|
||
case 7900:
|
||
nickname = "Girl Who's Sexy in Anything"
|
||
text1 = "She shakes those sexy boobs but still"
|
||
text2 = "manages to keep discipline here..."
|
||
NPC="B_"
|
||
Emote=4
|
||
break;
|
||
case 8000:
|
||
nickname = "Dream Academy’s Madonna"
|
||
text1 = "I wish I was in Committee's class,"
|
||
text2 = "I could see those boobs bounce."
|
||
NPC="B_"
|
||
Emote=1
|
||
break;
|
||
case 8100:
|
||
nickname = "Lewd Body That Breaks Order"
|
||
text1 = "I wonder if those criminally huge boobs"
|
||
text2 = "got big from being fondled by boys...♡"
|
||
NPC="B_"
|
||
Emote=3
|
||
break;
|
||
case 8200:
|
||
nickname = "Girl Who's Sexy in Anything"
|
||
text1 = "I wanna drag the Committee in gym clothes into"
|
||
text2 = "the gym storage and make her moan from the back♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 8300:
|
||
nickname = "Committee Who Lights Up the Water"
|
||
text1 = "The Committee swims really well,"
|
||
text2 = "I can't help watching them. Can't help it."
|
||
NPC="A_"
|
||
Emote=1
|
||
break;
|
||
case 8400:
|
||
nickname = "Idol by the Pool"
|
||
text1 = "Even for the Committee, isn't those boobs"
|
||
text2 = "in a school swimsuit a violation...?"
|
||
NPC="A_"
|
||
Emote=4
|
||
break;
|
||
case 8500:
|
||
nickname = "Unconscious Sex Appeal"
|
||
text1 = "Just showing up to swim class is basically"
|
||
text2 = "sex appeal for the Committee..."
|
||
NPC="B_"
|
||
Emote=4
|
||
break;
|
||
case 8600:
|
||
nickname = "Committee Who Lights Up the Water"
|
||
text1 = "Stared at the Committee's floating boobs"
|
||
text2 = "and class ended before I knew it."
|
||
NPC="B_"
|
||
Emote=1
|
||
break;
|
||
case 8700:
|
||
nickname = "Idol by the Pool"
|
||
text1 = "Seeing those boobs in a swimsuit would"
|
||
text2 = "make it impossible to swim straight♡"
|
||
NPC="B_"
|
||
Emote=3
|
||
break;
|
||
case 8800:
|
||
nickname = "Unconscious Sex Appeal"
|
||
text1 = "The way Himeno shakes her butt diving in the pool,"
|
||
text2 = "she's totally inviting us, isn't she?♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 8900:
|
||
nickname = "Braless Honor Student"
|
||
text1 = "Just being in the same classroom"
|
||
text2 = "as the braless Committee is super exciting♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 9000:
|
||
nickname = "Born to Have See-Through Nipples"
|
||
text1 = "Sweat made Himeno’s nipples totally see-through♡"
|
||
text2 = "That's tonight’s material for sure♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 9100:
|
||
nickname = "Everyone's Plaything"
|
||
text1 = "If you go to class in that lewd swimsuit,"
|
||
text2 = "you can't keep being on the Committee♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 9700:
|
||
nickname = "Spread-Leg Masturbationist"
|
||
text1 = "We’re so lucky we get to see"
|
||
text2 = "the sex-processing Committee girl masturbate spread-eagle♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 9800:
|
||
nickname = "Spread-Leg Masturbationist"
|
||
text1 = "Getting the Committee to do dumb stuff like that—"
|
||
text2 = "hypnosis really is the best♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 9900:
|
||
nickname = "Clit Masturbation Faction"
|
||
text1 = "She played with her clit so much it's probably"
|
||
text2 = "like a tiny dick on the sex-processing Committee♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 10000:
|
||
nickname = "Masturbation Broadcaster"
|
||
text1 = "A morning masturbation broadcast upon arrival,"
|
||
text2 = "even the sex-processing Committee works hard (lol)"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 10100:
|
||
nickname = "Masturbation Broadcaster"
|
||
text1 = "Leaking pussy juice wanting to do a masturbation broadcast,"
|
||
text2 = "the sex-processing Committee fits right in♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 10200:
|
||
nickname = "Kito's Sex Service Tech"
|
||
text1 = "Heard pathetic moans of the sex-processing Committee"
|
||
text2 = "while passing by the guidance counselor's office♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 10300:
|
||
nickname = "School’s Shared Onahole"
|
||
text1 = "Heard pathetic moans again from the sex-processing Committee"
|
||
text2 = "inside the guidance office today, too♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 10400:
|
||
nickname = "Humping Technique Amateur"
|
||
text1 = "Getting to see the Committee return a vibrator"
|
||
text2 = "like that is thanks to hypnosis♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 10500:
|
||
nickname = "Lewd Hip-Thrust Dancer"
|
||
text1 = "Her humping hips popping out a vibrator—"
|
||
text2 = "No matter how many times I watch, it kills me♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 10600:
|
||
nickname = "Pathetic Humping Dancer"
|
||
text1 = "The Committee, returning the vibrator normally,"
|
||
text2 = "looked kinda lonely♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 10700:
|
||
nickname = "Shame-Loving Masochist"
|
||
text1 = "If you embarrass the sex-processing Committee,"
|
||
text2 = "she soaks her pussy easily. Total masochist♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 10800:
|
||
nickname = "Breaker of Silence"
|
||
text1 = "Former Committee, being tortured with a vibrator,"
|
||
text2 = "let out 'oho' moans in the library. Hilarious♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 10900:
|
||
nickname = "Filthy Sycophant Girl"
|
||
text1 = "Begging for it with a vibrator, breaking library rules—"
|
||
text2 = "there's nothing left of the old Committee♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 11000:
|
||
nickname = "Kiss Addict"
|
||
text1 = "Getting hit straight by sex pheromones from"
|
||
text2 = "the sex-processing Committee's kiss might make me cum♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 11100:
|
||
nickname = "Demonic Kiss Face"
|
||
text1 = "Just imagining the sex-processing Committee"
|
||
text2 = "making kissy faces already makes it thick♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 11200:
|
||
nickname = "King of Perverts"
|
||
text1 = "The girls at Dream Academy were perverts, but"
|
||
text2 = "the Cheer Club was in a whole other league."
|
||
NPC="G_2"
|
||
Emote=4
|
||
break;
|
||
case 11300:
|
||
nickname = "King of Perverts"
|
||
text1 = "Those heart-shaped pervert nip covers,"
|
||
text2 = "no way they're not meant to fall off…"
|
||
NPC="G_2"
|
||
Emote=4
|
||
break;
|
||
case 11310:
|
||
nickname = "The Sex-Processing Committee"
|
||
text1 = "After seeing that much lewd behavior,"
|
||
text2 = "might not be able to see her as Committee anymore…♡"
|
||
NPC="G_11";
|
||
Emote=3;
|
||
break;
|
||
case 11320:
|
||
nickname = "Cum Toilet"
|
||
text1 = "The Committee becoming a cum-dump toilet"
|
||
text2 = "for just a few coins, never thought I'd see the day♡"
|
||
NPC="G_12";
|
||
Emote=3;
|
||
break;
|
||
case 11330:
|
||
nickname = "Cum Toilet"
|
||
text1 = "Today's cum-dump toilet was tighter"
|
||
text2 = "than usual♡"
|
||
NPC="G_12";
|
||
Emote=3;
|
||
break;
|
||
case 11340:
|
||
nickname = "Standing Pee Masochist"
|
||
text1 = "Can't believe the Committee is peeing standing up"
|
||
text2 = "in the boys' bathroom♡"
|
||
NPC="G_13";
|
||
Emote=3;
|
||
break;
|
||
case 11350:
|
||
nickname = "Standing Pee Masochist"
|
||
text1 = "Let's share the video of the Committee"
|
||
text2 = "peeing standing and moaning with all the boys♡"
|
||
NPC="G_13";
|
||
Emote=3;
|
||
break;
|
||
case 11350:
|
||
nickname = "Standing Student Council President’s Slave";
|
||
text1 = "Let's share the video of the Committee";
|
||
text2 = "peeing standing and moaning with all the boys♡";
|
||
NPC="G_13";
|
||
Emote=3;
|
||
break;
|
||
case 11360:
|
||
nickname = "Student Council President’s Slave";
|
||
text1 = "Earlier, saw the Committee going outside"
|
||
text2 = "with the President in a crazy outfit…";
|
||
NPC="C_";
|
||
Emote=7;
|
||
break;
|
||
case 11361:
|
||
nickname = "Student Council President’s Slave";
|
||
text1 = "Neither the Committee nor the President"
|
||
text2 = "came back to school at all…";
|
||
NPC="C_";
|
||
Emote=1;
|
||
break;
|
||
case 11370:
|
||
nickname = "Sex-Processing Committee"
|
||
text1 = "Hope the sex-processing Committee comes to school today~♡"
|
||
text2 = "I saved up my cum just for this♡"
|
||
NPC="C_";
|
||
Emote=3;
|
||
break;
|
||
case 11380:
|
||
nickname = "Sex-Processing Committee"
|
||
text1 = "After school, the Committee will be our onahole,"
|
||
text2 = "they said they'll do it for us♡"
|
||
NPC="C_";
|
||
Emote=3;
|
||
break;
|
||
case 11390:
|
||
nickname = "Committee Member (lol)"
|
||
text1 = "She'll go back to being Committee after school,"
|
||
text2 = "but I can't see her in that way anymore (lol)"
|
||
NPC="C_";
|
||
Emote=3;
|
||
break;
|
||
case 11400:
|
||
nickname = "Delinquent's Toy?"
|
||
text1 = "Heard the Committee's lewd voice"
|
||
text2 = "from behind the club building…"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 11500:
|
||
nickname = "Delinquent's Fuckbuddy"
|
||
text1 = "No way Himeno would become a delinquent's onahole,"
|
||
text2 = "that's gotta be some mistake...right?"
|
||
NPC="B_"
|
||
Emote=3
|
||
break;
|
||
case 11600:
|
||
nickname = "Delinquent's Fuckbuddy"
|
||
text1 = "Rumor is the Committee's become a delinquent's"
|
||
text2 = "fuckbuddy lately♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 11700:
|
||
nickname = "Suspicious-Looking Committee"
|
||
text1 = "Himeno looked just like an erotic manga heroine"
|
||
text2 = "with a sex toy inside her today."
|
||
NPC="G_3"
|
||
Emote=1
|
||
break;
|
||
case 11800:
|
||
nickname = "Suspicious-Looking Committee"
|
||
text1 = "Don't you think Himeno's been acting weird lately?"
|
||
text2 = "She seems oddly sexy, you know…"
|
||
NPC="G_3"
|
||
Emote=1
|
||
break;
|
||
case 11900:
|
||
nickname = "Suspected Exhibitionist Committee"
|
||
text1 = "Maybe it’s a prank, but someone sent me"
|
||
text2 = "a pussy pic under Himeno’s name♡"
|
||
NPC="G_4"
|
||
Emote=3
|
||
break;
|
||
case 12000:
|
||
nickname = "Suspected Exhibitionist Committee"
|
||
text1 = "Sending out unedited pussy pics,"
|
||
text2 = "it really is Himeno? Nah, no way…"
|
||
NPC="G_3"
|
||
Emote=1
|
||
break;
|
||
case 12100:
|
||
nickname = "Kaneobara’s Toy"
|
||
text1 = "Heard Himeno's doing sexy stuff with Kaneobara a lot lately...♡"
|
||
text2 = "That's the rumor."
|
||
NPC="G_3"
|
||
Emote=3
|
||
break;
|
||
case 12200:
|
||
nickname = "Kaneobara’s Toy"
|
||
text1 = "Whenever Himeno skips class, Kaneobara"
|
||
text2 = "always leaves too and neither comes back…"
|
||
NPC="G_3"
|
||
Emote=1
|
||
break;
|
||
case 12300:
|
||
nickname = "Kaneobara’s Slave"
|
||
text1 = "Can't believe Himeno was in class with a crazy vibe inside."
|
||
text2 = "That turns me on like nothing else♡"
|
||
NPC="G_3"
|
||
Emote=3
|
||
break;
|
||
case 12400:
|
||
nickname = "Spare"
|
||
text1 = "Spare"
|
||
text2 = "Spare"
|
||
NPC="G_3"
|
||
Emote=1
|
||
break;
|
||
case 12500:
|
||
nickname = "Everyone's Cum Toilet"
|
||
text1 = "Thanks to the Committee, it's actually easier"
|
||
text2 = "for us to focus on class in a way♡"
|
||
NPC="G_3"
|
||
Emote=3
|
||
break;
|
||
case 12600:
|
||
nickname = "Everyone's Cum Toilet"
|
||
text1 = "Being called cum toilet suits Himeno better than"
|
||
text2 = "Committee Member at this point♡"
|
||
NPC="G_3"
|
||
Emote=3
|
||
break;
|
||
case 12700:
|
||
nickname = "In Heat Female"
|
||
text1 = "Himeno’s oozing sexy smells so much,"
|
||
text2 = "I can’t focus on lessons at all♡"
|
||
NPC="G_3"
|
||
Emote=3
|
||
break;
|
||
case 12800:
|
||
nickname = "In Heat Female"
|
||
text1 = "Feels like Himeno’s just showing up to class"
|
||
text2 = "to rile up our libidos…"
|
||
NPC="G_3"
|
||
Emote=3
|
||
break;
|
||
case 12900:
|
||
nickname = "Running Fap Material"
|
||
text1 = "Her running with a vibe inside looks so lewd,"
|
||
text2 = "I could use that forever♡"
|
||
NPC="G_3"
|
||
Emote=3
|
||
break;
|
||
case 13000:
|
||
nickname = "Running Fap Material"
|
||
text1 = "Showing off her body like that, I bet"
|
||
text2 = "she's waiting for us to rape her♡"
|
||
NPC="G_3"
|
||
Emote=3
|
||
break;
|
||
case 13100:
|
||
nickname = "Masochist Committee"
|
||
text1 = "Going so far as to wear a vibe for swim class,"
|
||
text2 = "you'd have to be a masochist for that♡"
|
||
NPC="G_3"
|
||
Emote=3
|
||
break;
|
||
case 13200:
|
||
nickname = "Masochist Committee"
|
||
text1 = "After seeing Himeno like that,"
|
||
text2 = "no way you can think of her as Committee♡"
|
||
NPC="G_3"
|
||
Emote=3
|
||
break;
|
||
case 13300:
|
||
nickname = "Cute Underwear Committee"
|
||
text1 = "I was surprised Himeno-san actually wears"
|
||
text2 = "such cute underwear…♡"
|
||
NPC="G_5"
|
||
Emote=3
|
||
break;
|
||
case 13400:
|
||
nickname = "Cum-Loving Himeno-san"
|
||
text1 = "Can't forget the Committee gulping down our cum"
|
||
text2 = "with that lewd face…♡"
|
||
NPC="G_6"
|
||
Emote=3
|
||
break;
|
||
case 13500:
|
||
nickname = "Cum Toilet"
|
||
text1 = "Now the Committee is better suited being called"
|
||
text2 = "the cum toilet♡"
|
||
NPC="G_6"
|
||
Emote=3
|
||
break;
|
||
case 13600:
|
||
nickname = "Big Areolas"
|
||
text1 = "Showing off those huge areolas,"
|
||
text2 = "how is the Committee still on the job…"
|
||
NPC="G_6"
|
||
Emote=4
|
||
break;
|
||
case 13700:
|
||
nickname = "Big Areolas"
|
||
text1 = "Teasing us with those big areolas,"
|
||
text2 = "but then not letting us jerk it, not fair…"
|
||
NPC="G_6"
|
||
Emote=6
|
||
break;
|
||
case 13800:
|
||
nickname = "Service Committee"
|
||
text1 = "Cleaning the floors with no panties and providing"
|
||
text2 = "fap material, she's basically the Service Committee♡"
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 13900:
|
||
nickname = "Kiss Expert"
|
||
text1 = "If you dated Himeno, would you get those"
|
||
text2 = "sexy kisses every day?♡"
|
||
NPC="G_7"
|
||
Emote=3
|
||
break;
|
||
case 14000:
|
||
nickname = "Cute Vocal Cords"
|
||
text1 = "Thought I heard a weird Committee voice,"
|
||
text2 = "then water suddenly came out of nowhere…!"
|
||
NPC="G_8"
|
||
Emote=1
|
||
break;
|
||
case 14100:
|
||
nickname = "Serious Committee Member";
|
||
text1 = "The Committee found my wallet and"
|
||
text2 = "really saved me!";
|
||
NPC="G_9";
|
||
Emote=5;
|
||
break;
|
||
case 14125:
|
||
nickname = "Serious Committee Member?";
|
||
text1 = "Glad the Committee found my wallet, but"
|
||
text2 = "that was a costly loss...";
|
||
NPC="G_9";
|
||
Emote=6;
|
||
break;
|
||
case 14150:
|
||
nickname = "Serious Committee Member?";
|
||
text1 = "Never expected the Committee who picked up my wallet"
|
||
text2 = "to start negotiating like that...";
|
||
NPC="G_9";
|
||
Emote=6;
|
||
break;
|
||
case 14200:
|
||
nickname = "Easy Committee Member";
|
||
text1 = "Heh, let's use the cash I just found to bet"
|
||
text2 = "it all on the horses and hit the jackpot♪";
|
||
NPC="G_10";
|
||
Emote=5;
|
||
break;
|
||
case 14300:
|
||
nickname = "Paranoid Committee Member";
|
||
text1 = "Almost had my wallet snatched by the Committee"
|
||
text2 = "just now~.";
|
||
NPC="G_10";
|
||
Emote=1;
|
||
break;
|
||
case 14400:
|
||
nickname = "Goody-Two-Shoes Committee";
|
||
text1 = "Damn, I was so close to stealing that wallet";
|
||
text2 = "and then…";
|
||
NPC="G_10";
|
||
Emote=8;
|
||
break;
|
||
case 14500:
|
||
nickname = "Goody-Two-Shoes Committee";
|
||
text1 = "Couldn't steal the found wallet, so I settled"
|
||
text2 = "for groping the Committee's huge tits♡";
|
||
NPC="G_10";
|
||
Emote=3;
|
||
break;
|
||
case 14600:
|
||
nickname = "Committee Member Who Disrupts Class";
|
||
text1 = "Shows up to class reeking of female sex,"
|
||
text2 = "and that's a huge distraction♡";
|
||
NPC="G_3";
|
||
Emote=3;
|
||
break;
|
||
case 14700:
|
||
nickname = "Committee Member Who Disrupts Class";
|
||
text1 = "Shows up to class reeking of female sex,"
|
||
text2 = "Himeno’s not qualified to preach about discipline♡";
|
||
NPC="G_3";
|
||
Emote=3;
|
||
break;
|
||
case 14800:
|
||
nickname = "Girl With a Secret Side";
|
||
text1 = "Rumor has it the Committee likes lewd cosplay"
|
||
text2 = "as a hobby…♡";
|
||
NPC="C_"
|
||
Emote=3
|
||
break;
|
||
case 50000:
|
||
nickname = "Normal";
|
||
text1 = "The Committee only got lewd"
|
||
text2 = "x\\V[322] times over \\V[4] days at the academy.";
|
||
NPC="B_";
|
||
Emote=1;
|
||
break;
|
||
case 50010:
|
||
nickname = "Closet Pervert Committee";
|
||
text1 = "The Committee did it x\\V[322] times in the shadows"
|
||
text2 = "of the academy over \\V[4] days.";
|
||
NPC="C_";
|
||
Emote=1;
|
||
break;
|
||
case 50020:
|
||
nickname = "Lewd Committee Member";
|
||
text1 = "Despite being Committee, she got lewd at the academy"
|
||
text2 = "x\\V[322] times over \\V[4] days♡";
|
||
NPC="C_";
|
||
Emote=3;
|
||
break;
|
||
case 50030:
|
||
nickname = "Super Pervert Committee";
|
||
text1 = "Never expected the Committee to do lewd things"
|
||
text2 = "x\\V[322] times in \\V[4] days♡";
|
||
NPC="C_";
|
||
Emote=3;
|
||
break;
|
||
default:
|
||
nickname = "No Evaluation"
|
||
text1 = "This message isn't set."
|
||
text2 = "Please report the previous event."
|
||
NPC="A_"
|
||
};
|
||
$gameVariables._data[249] = nickname;
|
||
$gameVariables._data[252] = text1;
|
||
$gameVariables._data[253] = text2;
|
||
$gameVariables._data[280] = text3;
|
||
$gameVariables._data[610] = NPC;
|
||
$gameVariables._data[620] = Emote;
|
||
};
|
||
|
||
})();
|