add: littleweb (common) achievements

This commit is contained in:
trisua 2025-07-09 22:59:28 -04:00
parent 7960f1ed41
commit 4e152b07be
3 changed files with 30 additions and 3 deletions

View file

@ -567,6 +567,8 @@ pub enum AchievementName {
GetAllOtherAchievements,
AcceptProfileWarning,
OpenSessionSettings,
CreateSite,
CreateDomain,
}
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq)]
@ -613,6 +615,8 @@ impl AchievementName {
Self::GetAllOtherAchievements => "The final performance",
Self::AcceptProfileWarning => "I accept the risks!",
Self::OpenSessionSettings => "Am I alone in here?",
Self::CreateSite => "Littlewebmaster",
Self::CreateDomain => "LittleDNS",
}
}
@ -652,6 +656,8 @@ impl AchievementName {
Self::GetAllOtherAchievements => "Get every other achievement.",
Self::AcceptProfileWarning => "Accept a profile warning.",
Self::OpenSessionSettings => "Open your session settings.",
Self::CreateSite => "Create a site.",
Self::CreateDomain => "Create a domain.",
}
}
@ -693,6 +699,8 @@ impl AchievementName {
Self::GetAllOtherAchievements => Rare,
Self::AcceptProfileWarning => Common,
Self::OpenSessionSettings => Common,
Self::CreateSite => Common,
Self::CreateDomain => Common,
}
}
}