1 package org
.sevenchan
.dongs
.items
3 import org
.sevenchan
.dongs
.Creature
;
4 import org
.sevenchan
.dongs
.creature
.Demon
;
5 import org
.sevenchan
.dongs
.creature
.Harpy
;
6 import org
.sevenchan
.dongs
.Item
;
7 import org
.sevenchan
.dongs
.screens
.InfoScreen
;
13 public class HarpyTincture
extends Item
16 public function HarpyTincture
(num
:uint=0)
19 this.descr
= "A bottle full of a clear liquid, with a feather suspended in it.";
20 this.name
= "Harpy Tincture";
25 override public function copy
():Item
27 return new HarpyTincture
(amount
);
30 override public function Use
(host
:Creature
):Boolean
32 InfoScreen
.push
("<h2>Use Harpy Tincture</h2><p>You sprout two "+(host
is Demon
? "black":"brown")+" wings from your back.</p>");
34 host
.wings
.push
(BodyPartRegistry
.harpy_dark_wing
, BodyPartRegistry
.harpy_dark_wing
);
36 host
.wings
.push
(BodyPartRegistry
.harpy_wing
, BodyPartRegistry
.harpy_wing
);