Skip to content

Commit a395d18

Browse files
committed
a
1 parent 76dd10e commit a395d18

File tree

4 files changed

+28
-21
lines changed

4 files changed

+28
-21
lines changed

source/archipelago/APInfo.hx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,12 @@ class APInfo {
129129
public static final basePico:Array<String> =
130130
[
131131
'Darnell', 'Lit Up', '2Hot', 'Blazin',
132-
'Bopeebo (Pico mix)', 'Fresh (Pico mix)', 'Dad Battle (Pico mix)',
132+
'Bopeebo (Pico Mix)', 'Fresh (Pico mix)', 'Dad Battle (Pico mix)',
133133
'Spookeez (Pico mix)', 'South (Pico mix)',
134134
'Pico (Pico mix)', 'Philly Nice (Pico mix)', 'Blammed (Pico mix)',
135-
'Eggnog (Pico mix)', 'Cocoa (Pico mix)',
135+
'Eggnog (Pico Mix)', 'Cocoa (Pico Mix)',
136136
'Senpai (Pico mix)', 'Roses (Pico mix)',
137-
'Ugh (Pico mix)', 'Guns (Pico mix)', 'Stress (Pico mix)'
137+
'Ugh (Pico mix)', 'Guns (Pico mix)', 'Stress (Pico Mix)'
138138
];
139139

140140
public static final secrets:Array<String> = [

source/objects/Note.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -970,9 +970,9 @@ class Note extends NoteObject
970970
skin = PlayState.SONG != null ? PlayState.SONG.arrowSkin : null;
971971
if (skin == null || skin.length < 1)
972972
skin = "noteSkins/NOTE_assets" + postfix;
973-
if (PlayState.isPixelStage) rgbShader.enabled = false;
973+
if (PlayState.isPixelStage)
974+
rgbShader.enabled = false;
974975
}
975-
else rgbShader.enabled = false;
976976

977977
var animName:String = null;
978978
if(animation.curAnim != null) {

source/objects/StrumNote.hx

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,19 @@ class StrumNote extends NoteObject
107107

108108
public function reloadNote()
109109
{
110-
var skin:String = texture;
110+
var postfix:String = Note.getNoteSkinPostfix();
111+
var skin:String = texture + postfix;
111112
if(texture.length < 1)
112113
{
113114
skin = PlayState.SONG != null ? PlayState.SONG.arrowSkin : null;
114-
if ((skin == null || skin.length < 1) && PlayState.isPixelStage)
115-
skin = "noteSkins/NOTE_assets";
116-
else if ((skin == null || skin.length < 1) && !PlayState.isPixelStage)
117-
skin = "noteSkins/strums";
115+
if (skin == null || skin.length < 1) {
116+
if (postfix == null || postfix.length < 1)
117+
skin = "noteSkins/strums";
118+
else
119+
skin = "noteSkins/NOTE_assets" + postfix;
120+
}
121+
if (PlayState.isPixelStage)
122+
rgbShader.enabled = false;
118123
}
119124

120125
var lastAnim:String = null;

source/stages/PhillyBlazin.hx

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class PhillyBlazin extends BaseStage
2727

2828
override function create()
2929
{
30+
StickerSubState.STICKER_PACK = "weekend";
3031
FlxTransitionableState.skipNextTransOut = true; //skip the original transition fade
3132
function setupScale(spr:BGSprite)
3233
{
@@ -74,21 +75,13 @@ class PhillyBlazin extends BaseStage
7475
additionalLighten.visible = false;
7576
add(additionalLighten);
7677
}
77-
78-
abot = new ABotSpeaker(gfGroup.x, gfGroup.y + 550);
79-
add(abot);
8078

8179
if(ClientPrefs.data.shaders)
8280
setupRainShader();
8381

84-
var _song = PlayState.SONG;
85-
if(_song.gameOverSound == null || _song.gameOverSound.trim().length < 1) GameOverSubstate.deathSoundName = 'fnf_loss_sfx-pico-gutpunch';
86-
if(_song.gameOverLoop == null || _song.gameOverLoop.trim().length < 1) GameOverSubstate.loopSoundName = 'gameOver-pico';
87-
if(_song.gameOverEnd == null || _song.gameOverEnd.trim().length < 1) GameOverSubstate.endSoundName = 'gameOverEnd-pico';
88-
if(_song.gameOverChar == null || _song.gameOverChar.trim().length < 1) GameOverSubstate.characterName = 'pico-blazin';
89-
GameOverSubstate.deathDelay = 0.15;
90-
9182
setDefaultGF('nene');
83+
gfGroup.y += 200;
84+
gfGroup.x += 50;
9285
precache();
9386

9487
if (isStoryMode)
@@ -113,6 +106,15 @@ class PhillyBlazin extends BaseStage
113106

114107
override function createPost()
115108
{
109+
super.createPost();
110+
111+
var _song = PlayState.SONG;
112+
if(_song.gameOverSound == null || _song.gameOverSound.trim().length < 1) GameOverSubstate.deathSoundName = 'fnf_loss_sfx-pico-gutpunch';
113+
if(_song.gameOverLoop == null || _song.gameOverLoop.trim().length < 1) GameOverSubstate.loopSoundName = 'gameOver-pico';
114+
if(_song.gameOverEnd == null || _song.gameOverEnd.trim().length < 1) GameOverSubstate.endSoundName = 'gameOverEnd-pico';
115+
if(_song.gameOverChar == null || _song.gameOverChar.trim().length < 1) GameOverSubstate.characterName = 'pico-blazin';
116+
GameOverSubstate.deathDelay = 0.15;
117+
116118
FlxG.camera.focusOn(camFollow.getPosition());
117119
FlxG.camera.fade(FlxColor.BLACK, 1.5, true, null, true);
118120

@@ -131,7 +133,7 @@ class PhillyBlazin extends BaseStage
131133
if(character == null) continue;
132134
character.color = 0xFF888888;
133135
}
134-
abot.color = 0xFF888888;
136+
PicoCapableStage.instance.abot.color = 0xFF888888;
135137

136138
var unspawnNotes:Array<Note> = cast game.unspawnNotes;
137139
for (note in unspawnNotes)

0 commit comments

Comments
 (0)