witchhood.c 387 B

12345678910111213
  1. class WitchHood extends Clothing //old name or typo? Leaving it for purposes of backwards compatibility
  2. {
  3. override void SetActions()
  4. {
  5. super.SetActions();
  6. AddAction(ActionWringClothes);
  7. }
  8. };
  9. class WitchHood_ColorBase : HeadGear_Base {};
  10. class WitchHood_Black : WitchHood_ColorBase {};
  11. class WitchHood_Brown : WitchHood_ColorBase {};
  12. class WitchHood_Red : WitchHood_ColorBase {};