Skip to content

Commit f053e3d

Browse files
committed
yep
1 parent 10f2238 commit f053e3d

File tree

11 files changed

+2312
-28
lines changed

11 files changed

+2312
-28
lines changed

source/archipelago/APItem.hx

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -611,12 +611,14 @@ class APItem {
611611
var curSong = FlxG.random.int(0, specialSongList.length-1);
612612
switch (specialSongList[curSong])
613613
{
614-
case 'Small Argument' | 'Beat Battle 2' | 'GeoStar' | 'Zeventeen' | 'Tag And Seek' | 'Rawr':
614+
case 'Small Argument' | 'Beat Battle 2' | 'GeoStar' | 'Zeventeen' | 'Tag And Seek' | 'Rawr' | 'Fightback' | 'Funky Fanta' | 'Fangirl Frenzy' | 'Slowdown':
615615
Difficulty.list = ['Hard'];
616-
case 'Rise' | 'Test Field':
616+
case 'Rise' | 'Test Field' | 'Driller' | 'Pack-A-Punch':
617617
Difficulty.list = ['Normal'];
618618
case "Beat Battle":
619619
Difficulty.list = ["Normal", "Reasonable", "Unreasonable", "Semi-Impossible", "Impossible"];
620+
case "Testimony":
621+
Difficulty.list = ['4K', "Canon"];
620622
default:
621623
Difficulty.list = Difficulty.defaultList.copy();
622624
}
@@ -1316,7 +1318,7 @@ class APItem {
13161318
case "Animal Bonus Trap":
13171319
return new APTrap(name, ConditionHelper.PlayState(), function() {
13181320
popup('We\'re gonna go someplace SPECIAL!', 'TrapLink: Animal Bonus Trap');
1319-
var specialSongList = ['Rise', 'Zeventeen', /*'Pack-A-Punch', 'Driller',*/ 'Test Field', 'Rawr', /*'Fightback',*/ 'Funky Fanta', /*'Tag And Seek', 'Testimony', 'Fangirl Frenzy', 'Slowdown'*/];
1321+
var specialSongList = ['Rise', 'Zeventeen', 'Pack-A-Punch', 'Driller', 'Test Field', 'Rawr', 'Fightback', 'Funky Fanta', 'Tag And Seek', 'Testimony', 'Fangirl Frenzy', 'Slowdown'];
13201322
FlxTween.num(APPlayState.instance.playbackRate, 0, 0.5, {
13211323
onComplete: function(e) {
13221324
APPlayState.instance.paused = false;
@@ -1335,12 +1337,14 @@ class APItem {
13351337
var curSong = FlxG.random.int(0, specialSongList.length-1);
13361338
switch (specialSongList[curSong])
13371339
{
1338-
case 'Small Argument' | 'Beat Battle 2' | 'GeoStar' | 'Zeventeen' | 'Tag And Seek' | 'Rawr':
1340+
case 'Small Argument' | 'Beat Battle 2' | 'GeoStar' | 'Zeventeen' | 'Tag And Seek' | 'Rawr' | 'Fightback' | 'Funky Fanta' | 'Fangirl Frenzy' | 'Slowdown':
13391341
Difficulty.list = ['Hard'];
1340-
case 'Rise' | 'Test Field':
1342+
case 'Rise' | 'Test Field' | 'Driller' | 'Pack-A-Punch':
13411343
Difficulty.list = ['Normal'];
13421344
case "Beat Battle":
13431345
Difficulty.list = ["Normal", "Reasonable", "Unreasonable", "Semi-Impossible", "Impossible"];
1346+
case "Testimony":
1347+
Difficulty.list = ['4K', "Canon"];
13441348
default:
13451349
Difficulty.list = Difficulty.defaultList.copy();
13461350
}

0 commit comments

Comments
 (0)