Skip to content

Commit

Permalink
Getting Ready For Release
Browse files Browse the repository at this point in the history
  • Loading branch information
ImCodist committed Apr 1, 2021
1 parent 801dd23 commit d97cfee
Show file tree
Hide file tree
Showing 479 changed files with 3,113 additions and 347 deletions.
54 changes: 33 additions & 21 deletions Friday Night Funkin Gamemaker Remake.yyp

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions datafiles/Songs/Ballistic/Ballistic_Hard.ini

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions datafiles/Songs/Bopeebo/Bopeebo_Easy.ini

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions datafiles/Songs/Bopeebo/Bopeebo_Hard.ini

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions datafiles/Songs/Bopeebo/Bopeebo_Normal.ini

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions datafiles/Songs/Bopeebo_bside/Bopeebo_bside_Hard.ini

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions datafiles/Songs/Cocoa/Cocoa_Hard.ini

Large diffs are not rendered by default.

Binary file not shown.
2 changes: 1 addition & 1 deletion datafiles/Songs/Cookies/Cookies_Hard.ini

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions datafiles/Songs/Dadbattle_bside/Dadbattle_bside_Hard.ini

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions datafiles/Songs/Eggnog/Eggnog_Hard.ini

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions datafiles/Songs/Fresh/Fresh_Hard.ini

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions datafiles/Songs/Fresh_bside/Fresh_bside_Hard.ini

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions datafiles/Songs/LoFight/LoFight_Hard.ini

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions datafiles/Songs/Overhead/Overhead_Hard.ini

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions datafiles/Songs/Roses/Roses_Hard.ini

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions datafiles/Songs/Senpai/Senpai_Hard.ini

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions datafiles/Songs/Songs/Cookies/Cookies_Hard.ini

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions datafiles/Songs/Songs/Milf/Milf_Hard.ini

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions datafiles/Songs/South/South_Hard.ini

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions datafiles/Songs/Spookeez/Spookeez_Hard.ini

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions datafiles/Songs/Spookeez_bside/Spookeez_bside_Hard.ini

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions datafiles/Songs/Thorns/Thorns_Hard.ini

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions datafiles/Songs/Tutorial/Tutorial_Hard.ini

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions datafiles/Songs/Winter_horrorland/Winter_horrorland_Hard.ini

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions objects/oArrowButton/Step_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ if !(enemy) && !(global.auto) {
image_index = 0;

if !(global.kadeInput) oBoyfriend.missed = true;
else oBoyfriend.missed = false;

with (instance_place(x, y, oNote)) {

Expand Down Expand Up @@ -53,8 +54,9 @@ if !(enemy) && !(global.auto) {
if (distance > 65) scor = 2;
if (distance > 75) scor = 3;
var scoreX = 1259
if (instance_exists(oGirlfriend)) scoreX = oGirlfriend.x + 5;
var o = instance_create_depth(scoreX, 485, 400 - instance_number(oScoreText), oScoreText);
var scoreY = 485;
if (instance_exists(oGirlfriend)) {scoreX = oGirlfriend.x + 5; scoreY = oGirlfriend.y - 517};
var o = instance_create_depth(scoreX, scoreY, 400 - instance_number(oScoreText), oScoreText);
o.image_index = scor;

var scoreAdd = 350;
Expand Down
8 changes: 4 additions & 4 deletions objects/oArrowButton/oArrowButton.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion objects/oBoyfriend/Other_7.gml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
if (sprite_index = sprDeath) {
audio_play_sound(gameoverMusic, 100, true);
sprite_index = sprDeath2;
image_speed = (180 / 60) / 2;
image_speed = (180 / 2) * global.deltaMultiplier; //all enemys
}

if (sprite_index = sprDeath3) && (deathAnimCooldown <= 0) {
Expand Down
10 changes: 5 additions & 5 deletions objects/oBoyfriend/oBoyfriend.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions objects/oCamera/Create_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ bgChristTree = layer_get_id("Assets_Tree");
bgChristUpBop = layer_get_id("Assets_UpBop");
bgChristMain = layer_get_id("Background_Main");

bgChristEvilSnow = layer_get_id("Backgrounds_EvilSnow");
bgChristEvilTree = layer_get_id("Assets_EvilTree");
bgChristEvilBG = layer_get_id("Backgrounds_EvilBG");

bgSenpaiFreaks = layer_get_id("Assets_SenpaiFreaks");
bgSenpaiStreet = layer_get_id("Backgrounds_SenpaiStreet");
bgSenpaiTrees = layer_get_id("Assets_SenpaiTrees");
Expand Down
6 changes: 3 additions & 3 deletions objects/oCamera/oCamera.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions objects/oCharSelect/oCharSelect.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion objects/oCreateNotes/oCreateNotes.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions objects/oCutscene/Create_0.gml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cutsceneID = 1;
33 changes: 33 additions & 0 deletions objects/oCutscene/oCutscene.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions objects/oDebugNoteEditor/oDebugNoteEditor.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions objects/oDebugRoom/oDebugRoom.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions objects/oDevMode/oDevMode.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions objects/oDialogBox/Create_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,23 @@ get_dialog();

spr = sDialogBox;
font = fntDefault;

color1 = c_black;
color2 = c_white;
shadow = false;
if (global.enemy = 8) or (global.enemy = 9) or (global.enemy = 10) {
spr = sDialogBoxPixel;
font = fntDialogPixel;

if (global.enemy = 10) {
spr = sDialogBoxPixelSpooky;
color1 = c_white;
shadow = false;
} else {
color1 = make_color_rgb(57, 28, 30);
color2 = make_color_rgb(191, 122, 123);
shadow = true;
}
}
index = 0;

Expand Down
Loading

0 comments on commit d97cfee

Please sign in to comment.