Fix hair, dick around with new game screen.
[18plus-7leafadventure.git] / src / org / sevenchan / dongs / items / WhiteBerries.as
blobc6130cc2adbb790c73fbcffe2882aebb47f1dbf2
1 package org.sevenchan.dongs.items
3 import org.sevenchan.dongs.Creature;
4 import org.sevenchan.dongs.Item;
5 import org.sevenchan.dongs.screens.InfoScreen;
7 /**
8 * ...
9 * @author Harbinger
11 public class WhiteBerries extends Item
14 public function WhiteBerries(num:uint=0)
16 super(num);
17 value = 15;
18 id = 1;
19 this.descr = "A plump pearly-white berry the size of a pea, and bears a red cross centered on the stem.";
20 this.name = "White Berry";
23 override public function copy():Item
25 return new WhiteBerries(amount);
28 override public function Use(host:Creature):Boolean
30 InfoScreen.push("<h2>Use White Berry</h2><p>You pop the white berry into your mouth and bite into it. It's sweet, but your body feels warm, and you notice some of your wounds have healed.</p>");
31 host.HP += 10;
32 return true;