1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-03-23 10:29:29 +00:00

changelog and update shit

This commit is contained in:
Cameron Taylor 2020-12-11 08:08:41 -05:00
parent fefa5f8051
commit edd4fc5b58
4 changed files with 12 additions and 3 deletions

View file

@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [UNRELEASED] ## [UNRELEASED]
### Added
- 3 NEW SONGS BY KAWAISPRITE. Pico, Philly, and Blammed.
- NEW CHARACTER, PICO. Based off the classic Flash game "Pico's School" by Tom Fulp
- NEW LEVEL WOW! PHILLY BABEEEE
### Changed ### Changed
- Made it less punishing to ATTEMPT to hit a note and miss, rather than let it pass you - Made it less punishing to ATTEMPT to hit a note and miss, rather than let it pass you
### Fixed ### Fixed

View file

@ -2,7 +2,7 @@
<project> <project>
<!-- _________________________ Application Settings _________________________ --> <!-- _________________________ Application Settings _________________________ -->
<app title="Friday Night Funkin" file="Funkin" packageName="com.ninjamuffin99.funkin" main="Main" version="0.2.3" company="ninjamuffin99" /> <app title="Friday Night Funkin" file="Funkin" packageName="com.ninjamuffin99.funkin" main="Main" version="0.2.4" company="ninjamuffin99" />
<!--Switch Export with Unique ApplicationID and Icon--> <!--Switch Export with Unique ApplicationID and Icon-->
<set name="APP_ID" value="0x0100f6c013bbc000" /> <set name="APP_ID" value="0x0100f6c013bbc000" />

View file

@ -12,7 +12,7 @@ import lime.utils.Assets;
class FreeplayState extends MusicBeatState class FreeplayState extends MusicBeatState
{ {
var songs:Array<String> = ["Pico", "Philly", "Blammed", "Bopeebo", "Dadbattle", "Fresh", "Tutorial"]; var songs:Array<String> = ["Bopeebo", "Dadbattle", "Fresh", "Tutorial"];
var selector:FlxText; var selector:FlxText;
var curSelected:Int = 0; var curSelected:Int = 0;

View file

@ -1377,6 +1377,7 @@ class PlayState extends MusicBeatState
var trainCars:Int = 8; var trainCars:Int = 8;
var trainFinishing:Bool = false; var trainFinishing:Bool = false;
var trainCooldown:Int = 0;
function trainStart():Void function trainStart():Void
{ {
@ -1516,6 +1517,9 @@ class PlayState extends MusicBeatState
switch (curStage) switch (curStage)
{ {
case "philly": case "philly":
if (!trainMoving)
trainCooldown += 1;
if (totalBeats % 4 == 0) if (totalBeats % 4 == 0)
{ {
phillyCityLights.forEach(function(light:FlxSprite) phillyCityLights.forEach(function(light:FlxSprite)
@ -1529,8 +1533,9 @@ class PlayState extends MusicBeatState
phillyCityLights.members[curLight].alpha = 1; phillyCityLights.members[curLight].alpha = 1;
} }
if (totalBeats % 8 == 4 && FlxG.random.bool(30) && !trainMoving) if (totalBeats % 8 == 4 && FlxG.random.bool(30) && !trainMoving && trainCooldown > 8)
{ {
trainCooldown = FlxG.random.int(-4, 0);
trainStart(); trainStart();
} }
} }