1 package org
.sevenchan
.dongs
.weapons
5 public class WeaponCategory
7 public const SWORD_ONE_HANDED
:WeaponCategory
= new WeaponCategory
("one-handed sword", "A sword that can be held by a single hand.");
8 public const SWORD_TWO_HANDED
:WeaponCategory
= new WeaponCategory
("two-handed sword", "A sword that must be held by two hands to be effective.");
10 public var name
:String = "";
11 public var description
:String = "";
13 public function WeaponCategory
(nam
:String, desc
:String) {