PieceType.simplePawn constructor

PieceType.simplePawn()

A pawn with no double move and no en passant.

Implementation

factory PieceType.simplePawn() => PieceType.fromBetza(
      'fmWfcF',
      promoOptions: PiecePromoOptions.promotable,
      noSanSymbol: true,
      value: 100,
    );