Fix hair, dick around with new game screen.
[18plus-7leafadventure.git] / src / org / sevenchan / dongs / items / DarkHarpyEgg.as
blobc33556b86827e7dc891a72a308f6e5a0f5210557
1 package org.sevenchan.dongs.items
3 import org.sevenchan.dongs.Item;
5 /**
6 * ...
7 * @author Harbinger
8 */
9 public class DarkHarpyEgg extends Item
12 public function DarkHarpyEgg(num:uint = 0)
14 super(num);
15 this.descr = "A jet-black egg the size of your head with faint, purple veins running through it.";
16 this.id = 4;
17 this.name = "Dark Harpy Egg";
18 this.value = 45;
21 override public function copy():Item
23 return new DarkHarpyEgg(amount);