1 package org
.sevenchan
.dongs
.items
3 import org
.sevenchan
.dongs
.Item
;
4 import org
.sevenchan
.dongs
.Creature
;
5 import org
.sevenchan
.dongs
.screens
.InfoScreen
;
10 public class SpiderGonad
extends Item
13 public function SpiderGonad
(num
:uint=0) {
17 this.descr
= "A bright-red, raspberry-shaped gland.";
18 this.name
= "Spider Venom Sac";
21 override public function copy
():Item
23 return new SpiderGonad
(amount
);
26 override public function Use
(host
:Creature
):Boolean
28 host
.dicks
.push
(BodyPartRegistry
.arachnid_penis
);
29 var text
:String = "Immediately, you feel something displace inside your body as something large and throbbing forms inside of you. You groan a bit, feeling your groin's skin bulge outwards, and then suck inside. Aroused, ";
30 if (host
.dicks
.length
> 0)
31 text
+= "your other " + Utils
.pluralize
(host
.dicks
.length
, "dick begins", "dicks begin") + " to slowly erect";
32 if (host
.dicks
.length
> 0 && host
.vaginas
.length
> 0)
34 if (host
.vaginas
.length
> 0)
35 text
+= "your pussies begin to dampen";
36 text
+= ", when all of a sudden, a large, forearm-sized spike of pulsing meat slides from the hole in your groin, oozing a clear, sticky fluid from all over, especially the swollen, bulbous tip.";
37 InfoScreen
.push
("<h2>Spider Gonad</h2><p>You pop the sweet-smelling gland into your mouth and swallow.</p><p>"+text
+"</p>");