Add "Land" Payouts to RatingController.cs

Added payouts for Adventureland, Marineland, and Futureland, from "Lost Island Training" standalone port.
This commit is contained in:
ABrokenTV 2025-01-27 10:57:49 -06:00 committed by GitHub
parent 0127aab379
commit 8ac43a6e3f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -79,6 +79,30 @@ public class RatingController : Controller
case string x when x.StartsWith("MSCnDucky"):
return Ok(60);
case string x when x.StartsWith("Calendar"):
return Ok(points / 40);
case string x when x.StartsWith("PearlPush"):
return Ok(points / 20);
case string x when x.StartsWith("FLLetItRide"):
return Ok(points <= 28 ? 2 : 5);
case string x when x.StartsWith("FLLetItRideMastered"):
return Ok(points <= 15 ? 4 :
points <= 25 ? 6 :
points <= 35 ? 9 :
points <= 45 ? 12 : 15);
case string x when x.StartsWith("FashionShowWin"):
return Ok(points >= 1 ? 20 : 0);
case string x when x.StartsWith("FashionShowLose"):
return Ok(points >= 0 ? 10 : 0);
case string x when x.StartsWith("FashionShowTie"):
return Ok(points >= 2 ? 15 : 0);
}
return Ok(points / (350 / 3));