Skip to content

Commit

Permalink
Oopsies
Browse files Browse the repository at this point in the history
Added VS Impostor ratings
  • Loading branch information
JordanSantiagoYT committed Jan 5, 2024
1 parent 55a6b96 commit 866ce6d
Show file tree
Hide file tree
Showing 15 changed files with 13 additions and 5 deletions.
Binary file added assets/shared/images/impostorratings/bad-pixel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/impostorratings/bad.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/impostorratings/combo-pixel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/impostorratings/good-pixel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/impostorratings/good.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/impostorratings/miss-pixel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/impostorratings/miss.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/impostorratings/perfect.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/impostorratings/shit-pixel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/impostorratings/shit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/impostorratings/sick-pixel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/impostorratings/sick.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 12 additions & 4 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -715,19 +715,24 @@ class PlayState extends MusicBeatState
detailsPausedText = "BRB! - " + detailsText;
#end

if (ClientPrefs.hudType == 'Tails Gets Trolled V4')
if (ClientPrefs.ratingType == 'Tails Gets Trolled V4')
{
fcStrings = ['No Play', 'KFC', 'AFC', 'CFC', 'SDC', 'FC', 'SDCB', 'Clear', 'TDCB', 'QDCB'];
hitStrings = ['Killer!!!', 'Awesome!!', 'Cool!', 'Gay.', 'Retarded.', 'Fail..'];
}
if (ClientPrefs.longFCName) fcStrings = ['No Play', 'Perfect Full Combo', 'Sick Full Combo', 'Great Full Combo', 'Bad Full Combo', 'Full Combo', 'Single Digit Misses', 'Clear', 'TDCB', 'QDCB'];
if (ClientPrefs.longFCName && ClientPrefs.hudType == 'Tails Gets Trolled V4')
if (ClientPrefs.longFCName && ClientPrefs.ratingType == 'Tails Gets Trolled V4')
{
fcStrings = ['No Play', 'Killer Full Combo', 'Awesome Full Combo', 'Cool Full Combo', 'Gay Full Combo', 'Full Combo', 'Single Digit Misses', 'Clear', 'TDCB', 'QDCB'];
hitStrings = ['Killer!!!', 'Awesome!!', 'Cool!', 'Gay.', 'Retarded.', 'Fail..'];
}

if (ClientPrefs.hudType == 'Doki Doki+')
if (ClientPrefs.ratingType == 'Doki Doki+')
{
hitStrings = ['Very Doki!!!', 'Doki!!', 'Good!', 'OK.', 'No.', 'Miss..'];
}

if (ClientPrefs.ratingType == 'VS Impostor')
{
hitStrings = ['Very Doki!!!', 'Doki!!', 'Good!', 'OK.', 'No.', 'Miss..'];
}
Expand Down Expand Up @@ -1523,7 +1528,8 @@ class PlayState extends MusicBeatState
timeTxt.borderSize = 1;

case "Mic'd Up":
timeTxt.setFormat(Paths.font("vcr.ttf"), 16, FlxColor.WHITE, RIGHT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK);
timeTxt.setFormat(Paths.font("vcr.ttf"), 16, FlxColor.WHITE, RIGHT, FlxTextBorder
.OUTLINE, FlxColor.BLACK);
timeTxt.screenCenter(X);
timeTxt.borderSize = 2;

Expand Down Expand Up @@ -6737,6 +6743,7 @@ if (ClientPrefs.showNPS && (notesHitDateArray.length > 0 || oppNotesHitDateArray
case 'Doki Doki+': pixelShitPart1 = 'dokistuff/';
case 'Tails Gets Trolled V4': pixelShitPart1 = 'tgtstuff/';
case 'Kade Engine': pixelShitPart1 = 'kadethings/';
case 'VS Impostor': pixelShitPart1 = 'impostorratings/';
case 'Base FNF': pixelShitPart1 = '';
default: pixelShitPart1 = ClientPrefs.ratingType + '/';
}
Expand Down Expand Up @@ -6985,6 +6992,7 @@ if (ClientPrefs.showNPS && (notesHitDateArray.length > 0 || oppNotesHitDateArray
case 'Doki Doki+': pixelShitPart1 = 'dokistuff/';
case 'Tails Gets Trolled V4': pixelShitPart1 = 'tgtstuff/';
case 'Kade Engine': pixelShitPart1 = 'kadethings/';
case 'VS Impostor': pixelShitPart1 = 'impostorratings/';
case 'Base FNF': pixelShitPart1 = '';
default: pixelShitPart1 = ClientPrefs.ratingType + '/';
}
Expand Down
2 changes: 1 addition & 1 deletion source/options/VisualsUISubState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ class VisualsUISubState extends BaseOptionsMenu
'ratingType',
'string',
'Base FNF',
['Base FNF', 'Kade Engine', 'Tails Gets Trolled V4', 'Doki Doki+', 'NMCW', 'Simple']);
['Base FNF', 'Kade Engine', 'Tails Gets Trolled V4', 'Doki Doki+', 'NMCW', 'VS Impostor', 'Simple']);
addOption(option);

var option:Option = new Option('Icon Bounce:',
Expand Down

0 comments on commit 866ce6d

Please sign in to comment.