Merge pull request #480 from CyndaquilDAC/alphabet-shit
Alphabet supports spaces and a ton more symbols as well!!
This commit is contained in:
commit
a1bf6eef68
1
assets/preload/data/dad battle/dad battle-easy.json
Normal file
1
assets/preload/data/dad battle/dad battle-easy.json
Normal file
File diff suppressed because one or more lines are too long
1
assets/preload/data/dad battle/dad battle-hard.json
Normal file
1
assets/preload/data/dad battle/dad battle-hard.json
Normal file
File diff suppressed because one or more lines are too long
1
assets/preload/data/dad battle/dad battle.json
Normal file
1
assets/preload/data/dad battle/dad battle.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,19 +1,19 @@
|
|||||||
Tutorial:gf:1
|
Tutorial:gf:1
|
||||||
Bopeebo:dad:1
|
Bopeebo:dad:1
|
||||||
Fresh:dad:1
|
Fresh:dad:1
|
||||||
Dadbattle:dad:1
|
Dad Battle:dad:1
|
||||||
Spookeez:spooky:2
|
Spookeez:spooky:2
|
||||||
South:spooky:2
|
South:spooky:2
|
||||||
Monster:monster:2
|
Monster:monster:2
|
||||||
Pico:pico:3
|
Pico:pico:3
|
||||||
Philly:pico:3
|
Philly Nice:pico:3
|
||||||
Blammed:pico:3
|
Blammed:pico:3
|
||||||
Satin-Panties:mom:4
|
Satin Panties:mom:4
|
||||||
High:mom:4
|
High:mom:4
|
||||||
Milf:mom:4
|
Milf:mom:4
|
||||||
Cocoa:parents-christmas:5
|
Cocoa:parents-christmas:5
|
||||||
Eggnog:parents-christmas:5
|
Eggnog:parents-christmas:5
|
||||||
Winter-Horrorland:monster-christmas:5
|
Winter Horrorland:monster-christmas:5
|
||||||
Senpai:senpai:6
|
Senpai:senpai:6
|
||||||
Roses:senpai:6
|
Roses:senpai:6
|
||||||
Thorns:spirit:6
|
Thorns:spirit:6
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 130 KiB |
File diff suppressed because it is too large
Load Diff
@ -302,6 +302,48 @@ class AlphaCharacter extends FlxSprite
|
|||||||
case "!":
|
case "!":
|
||||||
animation.addByPrefix(letter, 'exclamation point', 24);
|
animation.addByPrefix(letter, 'exclamation point', 24);
|
||||||
animation.play(letter);
|
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();
|
updateHitbox();
|
||||||
|
@ -55,7 +55,7 @@ class ChartingState extends MusicBeatState
|
|||||||
var bpmTxt:FlxText;
|
var bpmTxt:FlxText;
|
||||||
|
|
||||||
var strumLine:FlxSprite;
|
var strumLine:FlxSprite;
|
||||||
var curSong:String = 'Dadbattle';
|
var curSong:String = 'Dad Battle';
|
||||||
var amountSteps:Int = 0;
|
var amountSteps:Int = 0;
|
||||||
var bullshitUI:FlxGroup;
|
var bullshitUI:FlxGroup;
|
||||||
var writingNotesText:FlxText;
|
var writingNotesText:FlxText;
|
||||||
|
@ -149,7 +149,7 @@ class FreeplayState extends MusicBeatState
|
|||||||
public function addWeek(songs:Array<String>, weekNum:Int, ?songCharacters:Array<String>)
|
public function addWeek(songs:Array<String>, weekNum:Int, ?songCharacters:Array<String>)
|
||||||
{
|
{
|
||||||
if (songCharacters == null)
|
if (songCharacters == null)
|
||||||
songCharacters = ['bf'];
|
songCharacters = ['dad'];
|
||||||
|
|
||||||
var num:Int = 0;
|
var num:Int = 0;
|
||||||
for (song in songs)
|
for (song in songs)
|
||||||
|
@ -307,6 +307,9 @@ class PlayState extends MusicBeatState
|
|||||||
|
|
||||||
trace('INFORMATION ABOUT WHAT U PLAYIN WIT:\nFRAMES: ' + Conductor.safeFrames + '\nZONE: ' + Conductor.safeZoneOffset + '\nTS: ' + Conductor.timeScale + '\nBotPlay : ' + FlxG.save.data.botplay);
|
trace('INFORMATION ABOUT WHAT U PLAYIN WIT:\nFRAMES: ' + Conductor.safeFrames + '\nZONE: ' + Conductor.safeZoneOffset + '\nTS: ' + Conductor.timeScale + '\nBotPlay : ' + FlxG.save.data.botplay);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//dialogue shit
|
||||||
switch (SONG.song.toLowerCase())
|
switch (SONG.song.toLowerCase())
|
||||||
{
|
{
|
||||||
case 'tutorial':
|
case 'tutorial':
|
||||||
|
@ -25,11 +25,11 @@ class StoryMenuState extends MusicBeatState
|
|||||||
|
|
||||||
var weekData:Array<Dynamic> = [
|
var weekData:Array<Dynamic> = [
|
||||||
['Tutorial'],
|
['Tutorial'],
|
||||||
['Bopeebo', 'Fresh', 'Dadbattle'],
|
['Bopeebo', 'Fresh', 'Dad Battle'],
|
||||||
['Spookeez', 'South', "Monster"],
|
['Spookeez', 'South', "Monster"],
|
||||||
['Pico', 'Philly', "Blammed"],
|
['Pico', 'Philly Nice', "Blammed"],
|
||||||
['Satin-Panties', "High", "Milf"],
|
['Satin Panties', "High", "Milf"],
|
||||||
['Cocoa', 'Eggnog', 'Winter-Horrorland'],
|
['Cocoa', 'Eggnog', 'Winter Horrorland'],
|
||||||
['Senpai', 'Roses', 'Thorns']
|
['Senpai', 'Roses', 'Thorns']
|
||||||
];
|
];
|
||||||
var curDifficulty:Int = 1;
|
var curDifficulty:Int = 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user