mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-17 02:01:15 +00:00
Adjusted Sonic's stats
(also made new characters default to 5-5 instead of using Sonic's stats)
This commit is contained in:
parent
6650e6c49c
commit
53ef60584b
2 changed files with 8 additions and 3 deletions
|
@ -111,7 +111,7 @@ const char *quitmsg[NUM_QUITMESSAGES];
|
|||
// Stuff for customizing the player select screen Tails 09-22-2003
|
||||
description_t description[32] =
|
||||
{
|
||||
{"\x82Sonic\x80\n\x82Speed:\x80 6\n\x82Weight:\x80 4", "", "sonic"},
|
||||
{"\x82Sonic\x80\n\x82Speed:\x80 7\n\x82Weight:\x80 3", "", "sonic"},
|
||||
{"???", "", ""},
|
||||
{"???", "", ""},
|
||||
{"???", "", ""},
|
||||
|
|
|
@ -2467,8 +2467,8 @@ static void Sk_SetDefaultValue(skin_t *skin)
|
|||
skin->prefcolor = SKINCOLOR_GREEN;
|
||||
|
||||
// SRB2kart
|
||||
skin->kartspeed = 6;
|
||||
skin->kartweight = 4;
|
||||
skin->kartspeed = 5;
|
||||
skin->kartweight = 5;
|
||||
//
|
||||
|
||||
skin->normalspeed = 36<<FRACBITS;
|
||||
|
@ -2534,6 +2534,11 @@ void R_InitSkins(void)
|
|||
skin->ability = CA_THOK;
|
||||
skin->actionspd = 60<<FRACBITS;
|
||||
|
||||
// SRB2kart
|
||||
skin->kartspeed = 7;
|
||||
skin->kartweight = 3;
|
||||
//
|
||||
|
||||
skin->normalspeed = 36<<FRACBITS;
|
||||
skin->runspeed = 28<<FRACBITS;
|
||||
skin->thrustfactor = 5;
|
||||
|
|
Loading…
Reference in a new issue