public bool IsOther(GamePiece other) => Id != other.Id;
public bool IsEnemyOf(GamePiece other) => Team != other.Team;
public bool IsMe(GamePiece other) => Id == other.Id;
public bool IsAllyOf(GamePiece other) => Team == other.Team;