Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ///Inserted to the ArmorLib Class
- this.ADVNCHN = new classes_items_Armor("AdvNChn","Kokiri Chain","adventurer's tunic-over-chain","a green adventurer's tunic-over-chainmail outfit, complete with pointed cap",10,250,"A set of comfortable green adventurer's clothes over well made chainmail. It comes complete with a pointed hat. ","Light");
- this.ADVSCHN = new classes_items_armors_AdventurersSluttyChain
- //Definition for the slutty variant
- var classes_items_armors_AdventurersSluttyChain = function() {
- classes_items_Armor.call(this,"AdvSChn","Kokiri Lewd Chain","slutty green adventurer's tunic-over-chain","a pantless green adventurer's tunic-over-chain outfit, complete with pointed cap",10,250,"A set of comfortable green adventurer's clothes. The tunic hides well-made chain mail and without the pants it'll barely hide your groin. It comes complete with a pointed hat.","Light");
- this.boost("Tease Chance",classes_internals_NumberFunc.fromIntFun($bind(this,this.getADVSCHNTeaseBonus)),false);
- this.boost("Tease Damage",classes_internals_NumberFunc.fromIntFun($bind(this,this.getADVSCHNTeaseBonus)),false);
- };
- $hxClasses["classes.items.armors.AdventurersSluttyChain"] = classes_items_armors_AdventurersSluttyChain;
- classes_items_armors_AdventurersSluttyChain.__name__ = "classes.items.armors.AdventurersSluttyChain";
- classes_items_armors_AdventurersSluttyChain.__super__ = classes_items_Armor;
- classes_items_armors_AdventurersSluttyChain.prototype = $extend(classes_items_Armor.prototype,{
- getADVSCHNTeaseBonus: function() {
- if(this.get_player().isMale() && this.get_player().hasItemIncludeEquipped(this.get_undergarments().EBNRJCK) || this.get_player().hasItemIncludeEquipped(this.get_undergarments().EBNJOCK)) {
- return 12;
- }
- if(this.get_player().isNakedLower()){
- return 9;
- } else {
- return 6;
- }
- }
- ,useText: function() {
- this.outputText("You" + this.get_player().clothedOrNaked(" first strip yourself naked and ") + " put on your Slutty Adventurer's Chainmail. You slip on the short-sleeved tunic, now heavy with chain, and cinch the belt tight, just above your hips. You notice both that Yvonne was kind enough to take in the middle of the tunic, allowing it to naturally show off your waist and that the bottom of the tunic only just reaches your thighs! You blush thinking about how easy it would be to show-off your [butt]". ");
- this.outputText("Next you slide on the bracers, fingers sliding through the fingerless glove at the end, pleasantly surprised with the new weight of the bracers now that they've been reinforced with chainmail.");
- this.outputText("Lastly you slip into the boots which were modified into a pair of cute ankle heel-boots! The way the heels accentuates your bare legs sends a small shiver of excitement up your spine.");
- }
- ,__class__: classes_items_armors_AdventurersSluttyChain
- });
- ///Inserted into Yvonne's scene
- //Adds the button
- if(this.get_player().hasItem(this.get_armors().FULLCHN) && this.get_player().hasItem(this.get_armors().ADVCLTH)) {
- this.addButton(12,"Combine",$bind(this,this.yvonneCombine)).hint("Ask Yvonne to combine your Adventurer's Clothes and Chainmail Armor");
- } else {
- this.addButtonDisabled(12,"Combine","You need a set of Chainmail Armor and Green Adventurer's Clothes.");
- }
- //Adds the text tree
- ,yvonneCombine: function() {
- this.clearOutput();
- this.outputText("You ask the if she could combine your Adventurer's Tunic and Full Chainmail into a single piece. She nods, listening to your request and looks at the two pieces of equipment before speaking.");
- this.outputText("[pg][say:Sure, I can do that, won't even take that long. Any specific requests?]");
- this.menu();
- this.addButton(0,"Normal",$bind(this,this.yvonneCombTwilNorm)).hint(this.get_armors().ADVNCHN.get_tooltipText(),this.get_armors().ADVNCHN.get_tooltipHeader());
- this.addButton(1,"Slutty",$bind(this,this.yvonneCombTwilSlut)).hint(this.get_armors().ADVSCHN.get_tooltipText(),this.get_armors().ADVSCHN.get_tooltipHeader());
- }
- ,yvonneCombTwilNorm: function() {
- this.outputText("She snorts in recognition and, true to her word, doesn't even take that long");
- this.outputText("[pg][say:Here ya go, chain under tunic as ordered.] You take a moment to examine the garment and, satisfied with the result, put it in your bag.");
- this.outputText("[pg]You got the Adventurer's Chain Tunic!");
- this.get_player().destroyItems(this.get_armors().FULLCHN,1);
- this.get_player().destroyItems(this.get_armors().ADVCLTH,1);
- this.get_inventory().takeItem(this.get_armors().ADVNCHN);
- this.doNext($bind(this,this.inside));
- }
- ,yvonneCombTwilSlut: function() {
- this.outputText("She smirks in recognition and, true to her word, doesn't even take that long");
- this.outputText("[pg][say:Here ya go, pantsless chain under tunic as ordered.] You take a moment to examine the garment and, satisfied with the result, put it in your bag.");
- this.outputText("[pg]You got the Slutty Adventurer's Chain Tunic!");
- this.get_player().destroyItems(this.get_armors().FULLCHN,1);
- this.get_player().destroyItems(this.get_armors().ADVCLTH,1);
- this.get_inventory().takeItem(this.get_armors().ADVSCHN,1);
- this.doNext($bind(this,this.inside));
- }
Advertisement
Add Comment
Please, Sign In to add comment