Fix hair, dick around with new game screen.
[18plus-7leafadventure.git] / src / org / sevenchan / dongs / items / PinkPotion.as
blobbbf520b603376ac4b9c89f2bc58bf3474b6376ad
1 package org.sevenchan.dongs.items
3 import org.sevenchan.dongs.bodyparts.Breast;
4 import org.sevenchan.dongs.Creature;
5 import org.sevenchan.dongs.Item;
6 import org.sevenchan.dongs.screens.InfoScreen;
7 /**
8 * ...
9 * @author Harbinger
11 public class PinkPotion extends Potion
14 public function PinkPotion(num:uint = 0)
16 super(num);
17 this.setDescr("pink, milky");
18 this.id = 5;
19 this.name = "Pink Potion";
20 this.value = 250;
23 override public function copy():Item
25 return new PinkPotion(amount);
28 override public function Use(host:Creature):Boolean
30 var text:String =
31 "<h2>Use Pink Potion</h2><p>You cautiously raise the vial to your nose, sniffing it. It "
32 +"smells... Well, you can't really describe it, but it makes your mouth water in "
33 +"anticipation. Without further hesitation, you gulp down the contents. The warm liquid "
34 +"rushes down your throat, tasting like warm milk but somehow sweeter. Tossing the used "
35 +"flask behind you without even reading the label, you stand there expectantly, waiting "
36 +"for the effects to take hold. After a few minutes nothing happens, and you sigh sadly. "
37 +" &quot;Well, that was a waste,&quot; You grumble.</p>"
38 +"<p>Returning home, you step into your tent to change when you begin to feel dizzy. Holding "
39 +"onto a wall, you stumble over to a mirror. Your shirt feels tight against your skin, so "
40 +"you remove it as fast as you can. Your eyes open wide as your look at your chest and notice that your"
41 +host.getBreastDescr() + " have changed to become ";
42 if (host.breasts.length == 0) {
43 trace(host);
44 host.addBreast();
45 host.addBreast();
46 } else {
47 for (var i:int = 0; i < host.breasts.length;i++)
48 host.breasts[i].bigger();
50 text += host.getBreastDescr() + ". The extra weight pulls you forward a bit, and they wobble ";
51 text += "slightly. You hold them in your hands and rub them gently, feeling their larger size.</p>";
52 text += "<p><i>TODO: Do something smexy. Have an idea? Drop it in the thread.</i></p>";
53 host.lust += 10;
54 InfoScreen.push(text);
55 return true;