mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
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:
parent
1f3b5386e6
commit
c1d6850867
@ -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));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user