Add "Land" Payouts to RatingController.cs (#17)

Added payouts for Adventureland, Marineland, and Futureland, from "Lost Island Training" standalone port.
This commit is contained in:
ABrokenTV 2025-02-07 10:12:07 -06:00 committed by GitHub
parent 1f3b5386e6
commit c1d6850867
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"): case string x when x.StartsWith("MSCnDucky"):
return Ok(60); 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)); return Ok(points / (350 / 3));