mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Add Stone Shoe item odds
This commit is contained in:
parent
4e6c501888
commit
74f4708f7f
1 changed files with 5 additions and 0 deletions
|
|
@ -103,6 +103,7 @@ static UINT32 K_DynamicItemOddsRace[NUMKARTRESULTS-1][2] =
|
|||
{1, 3}, // droptarget
|
||||
{43, 5}, // gardentop
|
||||
{0, 0}, // gachabom
|
||||
{1, 3}, // stoneshoe
|
||||
{45, 6}, // dualsneaker
|
||||
{55, 8}, // triplesneaker
|
||||
{25, 2}, // triplebanana
|
||||
|
|
@ -138,6 +139,7 @@ static UINT32 K_DynamicItemOddsBattle[NUMKARTRESULTS-1][2] =
|
|||
{0, 0}, // droptarget
|
||||
{0, 0}, // gardentop
|
||||
{10, 5}, // gachabom
|
||||
{0, 0}, // stoneshoe
|
||||
{0, 0}, // dualsneaker
|
||||
{20, 1}, // triplesneaker
|
||||
{0, 0}, // triplebanana
|
||||
|
|
@ -173,6 +175,7 @@ static UINT32 K_DynamicItemOddsSpecial[NUMKARTRESULTS-1][2] =
|
|||
{0, 0}, // droptarget
|
||||
{0, 0}, // gardentop
|
||||
{0, 0}, // gachabom
|
||||
{0, 0}, // stoneshoe
|
||||
{35, 2}, // dualsneaker
|
||||
{0, 0}, // triplesneaker
|
||||
{0, 0}, // triplebanana
|
||||
|
|
@ -208,6 +211,7 @@ static UINT8 K_KartLegacyBattleOdds[NUMKARTRESULTS-1][2] =
|
|||
{ 0, 0 }, // Drop Target
|
||||
{ 0, 0 }, // Garden Top
|
||||
{ 5, 0 }, // Gachabom
|
||||
{ 0, 1 }, // Stone Shoe
|
||||
{ 0, 0 }, // Sneaker x2
|
||||
{ 0, 1 }, // Sneaker x3
|
||||
{ 0, 0 }, // Banana x3
|
||||
|
|
@ -1044,6 +1048,7 @@ static boolean K_IsItemFirstOnly(kartitems_t item)
|
|||
case KITEM_LIGHTNINGSHIELD:
|
||||
case KITEM_HYUDORO:
|
||||
case KITEM_DROPTARGET:
|
||||
case KITEM_STONESHOE:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue