Skip to content

Commit

Permalink
add Catastrophic Tier
Browse files Browse the repository at this point in the history
  • Loading branch information
oatmealine committed Nov 14, 2024
1 parent 23e0322 commit 3faf6c8
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions src/ListManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,17 +118,18 @@ std::optional<NLWRating> ListManager::getRating(GJGameLevel* level) {

cocos2d::ccColor3B ListManager::getTierColor(std::string tier) {
// regular tiers
if (tier == "Fuck") return cocos2d::ccColor3B(0, 0, 0 );
if (tier == "Beginner") return cocos2d::ccColor3B(58, 134, 228);
if (tier == "Easy") return cocos2d::ccColor3B(0, 255, 254);
if (tier == "Medium") return cocos2d::ccColor3B(0, 255, 55 );
if (tier == "Hard") return cocos2d::ccColor3B(255, 255, 63 );
if (tier == "Very Hard") return cocos2d::ccColor3B(255, 153, 43 );
if (tier == "Insane") return cocos2d::ccColor3B(255, 3, 28 );
if (tier == "Extreme") return cocos2d::ccColor3B(255, 12, 251);
if (tier == "Remorseless") return cocos2d::ccColor3B(157, 10, 250);
if (tier == "Relentless") return cocos2d::ccColor3B(178, 135, 232);
if (tier == "Terrifying") return cocos2d::ccColor3B(241, 158, 234);
if (tier == "Fuck") return cocos2d::ccColor3B(0, 0, 0 );
if (tier == "Beginner") return cocos2d::ccColor3B(58, 134, 228);
if (tier == "Easy") return cocos2d::ccColor3B(0, 255, 254);
if (tier == "Medium") return cocos2d::ccColor3B(0, 255, 55 );
if (tier == "Hard") return cocos2d::ccColor3B(255, 255, 63 );
if (tier == "Very Hard") return cocos2d::ccColor3B(255, 153, 43 );
if (tier == "Insane") return cocos2d::ccColor3B(255, 3, 28 );
if (tier == "Extreme") return cocos2d::ccColor3B(255, 12, 251);
if (tier == "Remorseless") return cocos2d::ccColor3B(157, 10, 250);
if (tier == "Relentless") return cocos2d::ccColor3B(178, 135, 232);
if (tier == "Terrifying") return cocos2d::ccColor3B(241, 158, 234);
if (tier == "Catastrophic") return cocos2d::ccColor3B(234, 102, 97 );
if (tier == "Super Fucking Terrifying") return cocos2d::ccColor3B(0, 0, 0);

// pending
Expand Down

0 comments on commit 3faf6c8

Please sign in to comment.