Fix hair, dick around with new game screen.
[18plus-7leafadventure.git] / src / org / sevenchan / dongs / items / AnchorStone.as
blobd65c5f335bf240ce288e8ee1a264b309d9ffeead
1 package org.sevenchan.dongs.items
3 import org.sevenchan.dongs.Item;
5 /**
6 * Keeps your fat ass from getting blown away by the Ala.
7 * @author ...
8 */
9 public class AnchorStone extends Item
12 public function AnchorStone(num:uint=0)
14 super(num);
15 this.descr = "A small pebble with a black streak running through it.";
16 this.id = 12;
17 this.name = "Anchor Stone";
18 this.value = 0;
21 override public function copy():Item
23 return new AnchorStone(amount);