1 package org
.sevenchan
.dongs
.clothing
3 import org
.sevenchan
.dongs
.Creature
;
4 import org
.sevenchan
.dongs
.Item
;
5 import org
.sevenchan
.dongs
.screens
.InfoScreen
;
6 import org
.sevenchan
.dongs
.clothing
.Clothing
;
9 * Making this into a magitek clothing item, might be
10 * useful in magick-flooded Universities, or as a disguise.
13 public class GasMask
extends Clothing
15 public function GasMask
(num
:uint = 0)
18 this.descr
= "A strange, copper mask with a thick breathing tube filled with cloth. It tingles to the touch.";
20 this.name
= "Gas Mask";
26 override public function copy
():Item
28 return new GasMask
(amount
);
31 override public function getDescr
(host
:Creature
):String
33 var state
:String = "mint-condition";
34 var pct
:Number = (HP
/ maxHP
);
36 state
= "heavily-dented and cracked";
38 state
= "lightly-dented";
39 return state
+ " copper gas mask";