Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
juh9870 committed Sep 13, 2021
1 parent 00cb816 commit b9b68f2
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 10 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ allprojects {
appName = 'Too Cruel Pixel Dungeon'
appPackageName = 'ua.dreamfools.toocruelpixeldungeon'

appVersionCode = 574
appVersionName = '1.0.0'
appVersionCode = 575
appVersionName = '1.0.1'

appJavaCompatibility = JavaVersion.VERSION_1_8

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ private void deck(Generator.Category category, boolean enabled) {
SLIDING(91,5,-7f),
//endregion

//Last id 90
//Last id 91
;
private static final Challenges[] mappings;
public static int LEVEL_LIMIT = 3;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,9 @@ public static void init() {

Generator.Category.hardReset();

if(DeviceCompat.isDebug()){
seed = 2592635102693L;
}
// if(DeviceCompat.isDebug()){
// seed = 2592635102693L;
// }

modifiers = SPDSettings.modifiers();
extraData.init();
Expand All @@ -222,9 +222,9 @@ public static void init() {
challengesInform = true;
}

if(DeviceCompat.isDebug()){
modifiers.fromBigIntString("7ahfotpexdcapupz4");
}
// if(DeviceCompat.isDebug()){
// modifiers.fromBigIntString("7ahfotpexdcapupz4");
// }
SPDSettings.modifiers(new Modifiers(modifiers).setDynasty(""));

Actor.clear();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,23 @@ public static void add_v1_0_0_Changes(ArrayList<ChangeInfo> changeInfos) {
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);


changes = new ChangeInfo("v1.0.1", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton(new ChangeButton(Icons.get(Icons.CHALLENGE_HELL2), "Challenges",
"_-_ Added 1 new modifier\n" +
"_-_ Reworked/nerfed Summoning Champion\n" +
"_-_ Nerfed Stone champion\n" +
"_-_ Nerfed swarm/swarming champions interactions with champion titles" +
"_-_ Champions can no longer reduce received damage to 0 when attacked by a hero\n" +
"_-_ Fixed typos in challenges descriptions"
));

changes.addButton(new ChangeButton(new Image(Assets.Sprites.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"_-_ Fixed various of crashes caused by recent code optimizations"
));

changes = new ChangeInfo(Messages.get(ChangesScene.class, "changes"), false, null);
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
Expand All @@ -85,6 +102,7 @@ public static void add_v1_0_0_Changes(ArrayList<ChangeInfo> changeInfos) {
"_-_ Added 5 new challenges and 2 modifiers\n" +
"_-_ Added 3 new champion titles and 3 new elite champion titles\n" +
"_-_ Limited Revenge Rage attack bonus to _Over 9000!_\n" +
"_-_ Champions are now using deck-based spawning system\n" +
"_-_ Tweaked Korean MMO again..."
));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ protected boolean onLongClick() {
Bundle bundle = FileUtils.bundleFromFile(GamesInProgress.gameFile(slot));
ShatteredPixelDungeon.scene().addToFront(new WndMessage("_Debug Info:_\n\n" +
"Version: " + Game.version + " (" + Game.versionCode + ")\n" +
"Seed: " + bundle.getLong("seed") + "\n" +
"Seed: " + Long.toString(bundle.getLong("seed"),36) + "\n" +
"Challenges: " + Challenges.displayString(info.modifiers.challenges)));
} catch (IOException ignored) { }
return true;
Expand Down

0 comments on commit b9b68f2

Please sign in to comment.