Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

again conflict #2

Merged
merged 18 commits into from
May 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export/
.vscode/
assets/preload/data/milf/modchart.lua
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Links: **[GameBanana mod page](https://gamebanana.com/gamefiles/16761) ⋅ [play
## Website ([KadeDev.github.io/kade-engine/](https://KadeDev.github.io/Kade-Engine/))
If you're looking for documentation, changelogs, or guides, you can find those on the Kade Engine website.

# Screenshots ([skip](#features))
# Previews ([skip](#features))

![Tutorial (Hard) on Downscroll](https://user-images.githubusercontent.com/15311104/113989685-fa5aea80-9850-11eb-9180-f5819a774c79.gif) ![Milf (Hard) on Downscroll](https://user-images.githubusercontent.com/15311104/113990845-2c208100-9852-11eb-8e6d-f1c9e8439871.gif)

Expand Down
1 change: 1 addition & 0 deletions assets/preload/data/dad battle/dad battle-easy.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/preload/data/dad battle/dad battle-hard.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/preload/data/dad battle/dad battle.json

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion assets/preload/data/dadbattle/dadbattle-easy.json

This file was deleted.

1 change: 0 additions & 1 deletion assets/preload/data/dadbattle/dadbattle-hard.json

This file was deleted.

1 change: 0 additions & 1 deletion assets/preload/data/dadbattle/dadbattle.json

This file was deleted.

8 changes: 4 additions & 4 deletions assets/preload/data/freeplaySonglist.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Tutorial:gf:1
Bopeebo:dad:1
Fresh:dad:1
Dadbattle:dad:1
Dad Battle:dad:1
Spookeez:spooky:2
South:spooky:2
Monster:monster:2
Pico:pico:3
Philly:pico:3
Philly Nice:pico:3
Blammed:pico:3
Satin-Panties:mom:4
Satin Panties:mom:4
High:mom:4
Milf:mom:4
Cocoa:parents-christmas:5
Eggnog:parents-christmas:5
Winter-Horrorland:monster-christmas:5
Winter Horrorland:monster-christmas:5
Senpai:senpai:6
Roses:senpai:6
Thorns:spirit:6
17 changes: 0 additions & 17 deletions assets/preload/data/milf/modchart.lua

This file was deleted.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Binary file modified assets/preload/images/alphabet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,007 changes: 506 additions & 501 deletions assets/preload/images/alphabet.xml

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
44 changes: 43 additions & 1 deletion source/Alphabet.hx
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ class AlphaCharacter extends FlxSprite

public static var numbers:String = "1234567890";

public static var symbols:String = "|~#$%()*+-:;<=>@[]^_.,'!?";
public static var symbols:String = "|~#$%()*+-:;<=>@[]^_.,'!? ";

public var row:Int = 0;

Expand Down Expand Up @@ -302,6 +302,48 @@ class AlphaCharacter extends FlxSprite
case "!":
animation.addByPrefix(letter, 'exclamation point', 24);
animation.play(letter);
case '_':
animation.addByPrefix(letter, '_', 24);
animation.play(letter);
y += 50;
case "#":
animation.addByPrefix(letter, '#', 24);
animation.play(letter);
case "$":
animation.addByPrefix(letter, '$', 24);
animation.play(letter);
case "%":
animation.addByPrefix(letter, '%', 24);
animation.play(letter);
case "&":
animation.addByPrefix(letter, '&', 24);
animation.play(letter);
case "(":
animation.addByPrefix(letter, '(', 24);
animation.play(letter);
case ")":
animation.addByPrefix(letter, ')', 24);
animation.play(letter);
case "+":
animation.addByPrefix(letter, '+', 24);
animation.play(letter);
case "-":
animation.addByPrefix(letter, '-', 24);
animation.play(letter);
case '"':
animation.addByPrefix(letter, '"', 24);
animation.play(letter);
y -= 0;
case '@':
animation.addByPrefix(letter, '@', 24);
animation.play(letter);
case "^":
animation.addByPrefix(letter, '^', 24);
animation.play(letter);
y -= 0;
case ' ':
animation.addByPrefix(letter, 'space', 24);
animation.play(letter);
}

updateHitbox();
Expand Down
2 changes: 1 addition & 1 deletion source/ChartingState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class ChartingState extends MusicBeatState
var bpmTxt:FlxText;

var strumLine:FlxSprite;
var curSong:String = 'Dadbattle';
var curSong:String = 'Dad Battle';
var amountSteps:Int = 0;
var bullshitUI:FlxGroup;
var writingNotesText:FlxText;
Expand Down
2 changes: 1 addition & 1 deletion source/FreeplayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class FreeplayState extends MusicBeatState
public function addWeek(songs:Array<String>, weekNum:Int, ?songCharacters:Array<String>)
{
if (songCharacters == null)
songCharacters = ['bf'];
songCharacters = ['dad'];

var num:Int = 0;
for (song in songs)
Expand Down
3 changes: 3 additions & 0 deletions source/KadeEngineData.hx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ class KadeEngineData

if (FlxG.save.data.flashing == null)
FlxG.save.data.flashing = true;

if (FlxG.save.data.resetButton == null)
FlxG.save.data.resetButton = false;

if (FlxG.save.data.botplay == null)
FlxG.save.data.botplay = false;
Expand Down
Loading