Fix hair, dick around with new game screen.
[18plus-7leafadventure.git] / src / org / sevenchan / dongs / items / SpiderGonad.as
blob4b1129b0cc814ab4901b4f605b09a7fa467ec6f6
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;
6 /**
7 * ...
8 * @author ...
9 */
10 public class SpiderGonad extends Item
13 public function SpiderGonad(num:uint=0) {
14 super(num);
15 id = 11;
16 value = 2000;
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)
33 text += ", as";
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>");
38 return true;