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
;
11 public class WhiteBerries
extends Item
14 public function WhiteBerries
(num
:uint=0)
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>");