As written over there, the old transfer restrictions are back in place, below is a list with the currently set values. Here's how to read it:
- There are always values for minimal skill (e.g. MOUNTAIN_LEADER_MIN_CLIMBING), so riders with skill >= that value are considered. Please note, that the number is usually one higher than in the old manual FAQ (> 83 is practically the same as >= 84)
- then there are numbers for the max number of riders with that restriction, e.g. MOUNTAIN_LEADER_MAX_RIDERS = 2 means you can have max 2 riders with 84+ climbing skill. Transfers for further 84+ climbers would be blocked, if you already have 2
- everything named YOUNG applies to riders <= 23 years
- all rules are according to the old FAQ / manual, except (everything here open for discussion):
- skill for sprint leaders starts with 89, adapting to recent developments
- skill for young pave leaders starts with 75.1, raised by 2
- rule for pave leaders wasn't there before
Code: Select all
// definition of min / max values
$MOUNTAIN_LEADER_MIN_CLIMBING = 84;
$MOUNTAIN_LEADER_MAX_RIDERS = 2;
$YOUNG_MOUNTAIN_LEADER_MIN_CLIMBING = 72;
$YOUNG_MOUNTAIN_LEADER_MAX_RIDERS = 2;
$CLIMBER_MIN_CLIMBING = 81;
$CLIMBER_MAX_RIDERS = 5;
$YOUNG_CLIMBER_MIN_CLIMBING = 68;
$YOUNG_CLIMBER_MAX_RIDERS = 5;
$SPRINT_LEADER_MIN_SPRINT = 89;
$SPRINT_LEADER_MAX_RIDERS = 2;
$YOUNG_SPRINT_LEADER_MIN_SPRINT = 75;
$YOUNG_SPRINT_LEADER_MAX_RIDERS = 2;
$ALLROUNDER_MIN_CLIMBING = 78;
$ALLROUNDER_MIN_TIMETRIAL = 70;
$ALLROUNDER_MAX_RIDERS = 2;
$YOUNG_ALLROUNDER_MIN_CLIMBING = 66;
$YOUNG_ALLROUNDER_MIN_TIMETRIAL = 61;
$YOUNG_ALLROUNDER_MAX_RIDERS = 2;
$COBBLES_MIN_COBBLES = 81.1;
$COBBLES_MAX_RIDERS = 2;
$YOUNG_COBBLES_LEADER_MIN_COBBLES = 75.1;
$YOUNG_COBBLES_LEADER_MAX_RIDERS = 2;