name property

String name

Returns the name of Skill

Implementation

String get name {
  switch (this) {
    case Skill.phys:
      return 'phys';
    case Skill.gun:
      return 'gun';
    case Skill.fire:
      return 'fire';
    case Skill.ice:
      return 'ice';
    case Skill.electric:
      return 'electric';
    case Skill.wind:
      return 'wind';
    case Skill.psy:
      return 'psy';
    case Skill.nuclear:
      return 'nuclear';
    case Skill.bless:
      return 'bless';
    case Skill.curse:
      return 'curse';
    case Skill.almighty:
      return 'almighty';
    case Skill.ailment:
      return 'ailment';
    case Skill.support:
      return 'support';
    case Skill.passive:
      return 'passive';
    case Skill.healing:
      return 'healing';
    case Skill.trait:
      return 'trait';
  }
}