Fix hair, dick around with new game screen.
[18plus-7leafadventure.git] / src / org / sevenchan / dongs / items / Milk.as
blob66df78dc3f687b0310988029b08084379df490d1
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 Milk extends Item
14 public function Milk(num:uint = 0)
16 super(num);
18 this.descr = "A warm, white liquid that mammals secrete from their breasts. Heals 1/4 of your health.";
19 this.id = 10;
20 this.name = "Milk";
21 this.value = 500;
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;
33 return true;