Exemplo n.º 1
0
 public static void DressInstance(GenericWeapon weapon, GenericWeaponWrapper wrap)
 {
     GenericWeapon.SetWeaponProperties(weapon, wrap.subtype);
 }
Exemplo n.º 2
0
 public Dagger() : base()
 {
     GenericWeapon.SetWeaponProperties(this, EquipmentSubtype.SIMPLE_DAGGER);
 }
Exemplo n.º 3
0
 public Handaxe() : base()
 {
     GenericWeapon.SetWeaponProperties(this, EquipmentSubtype.SIMPLE_HANDAXE);
 }
Exemplo n.º 4
0
 public Unarmed() : base()
 {
     GenericWeapon.SetWeaponProperties(this, EquipmentSubtype.SIMPLE_FIST);
 }
Exemplo n.º 5
0
 public Longsword() : base()
 {
     GenericWeapon.SetWeaponProperties(this, EquipmentSubtype.MARTIAL_LONGSWORD);
 }
Exemplo n.º 6
0
 public Club() : base()
 {
     GenericWeapon.SetWeaponProperties(this, EquipmentSubtype.SIMPLE_CLUB);
 }