|
import streamlit as st |
|
|
|
from config import DEFAULT_ICON, LEAGUE_NAME |
|
from shared_page import common_page_config |
|
|
|
|
|
page_title = f"{LEAGUE_NAME} Keeper Rules" |
|
st.set_page_config(page_title=page_title, page_icon=DEFAULT_ICON) |
|
common_page_config() |
|
st.title(page_title) |
|
st.markdown( |
|
""" |
|
***Note: First LOFG keeper season was 2019*** |
|
|
|
1. Teams can keep up to 3 players from the prior season. |
|
- Note: changed from 2 to 3 beginning with 2022 season |
|
2. Players are kept at the expense of a draft pick. |
|
- The round of that draft pick will depend on when the player was drafted in the prior season. |
|
3. Players drafted in the 1st round of the prior season will not be eligible to keep. |
|
4. Players drafted in rounds 2 and after can be kept at the expense of one higher round |
|
- Ex: player drafted in round 2 can be kept for your 1st round pick. |
|
5. Players who were not drafted and were picked up during the season can be kept for 10th round picks (FA Keeper cost) |
|
- Changed beginning 2022 from 9th round |
|
6. Post-Draft Acquired Keeper cost Minimum - |
|
- Players drafted by other teams have a keeper cost of minimum of round player drafted and FA Keeper Cost. |
|
- This rewards people who drafted the players, versus those who picked them up off waivers. |
|
7. If you select 2 players with the same keeper cost, one of the players would count as one round higher. |
|
- Ex: Two players both have keeper cost of 10th round. |
|
- One of those players would instead be counted as your 9th round pick if both are kept. |
|
8. Players can not be kept for more than 2 consecutive seasons |
|
- Ex: player drafted in 2019 in 6th round, 2020 for 5th round, and 2021 for 4th round - can't be kept in 2022 |
|
- Exception to the above rule is that players originally drafted in 2nd round can only be kept for one season. |
|
9. Players traded in a season are not subject to the FA Keeper cost minimum cost |
|
In other words, keeper rights transfer with the trade |
|
|
|
""" |
|
) |
|
|