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 Milk
extends Item
14 public function Milk
(num
:uint = 0)
18 this.descr
= "A warm, white liquid that mammals secrete from their breasts. Heals 1/4 of your health.";
24 override public function copy
():Item
26 return new Milk
(amount
);
29 override public function Use
(host
:Creature
):Boolean
31 InfoScreen
.push
("<h2>Drink Milk</h2><p>You drink the warm, frothy milk, and instantly feel more energetic and healthy.</p>");
32 host
.HP
+= host
.maxHP
/ 4;