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
;
11 public class PinkPotion
extends Potion
14 public function PinkPotion
(num
:uint = 0)
17 this.setDescr
("pink, milky");
19 this.name
= "Pink Potion";
23 override public function copy
():Item
25 return new PinkPotion
(amount
);
28 override public function Use
(host
:Creature
):Boolean
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 +" "Well, that was a waste," 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) {
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>";
54 InfoScreen
.push
(text
);