diff --git a/core/src/main/assets/messages/scenes/scenes.properties b/core/src/main/assets/messages/scenes/scenes.properties index a826f6acb..e068821af 100644 --- a/core/src/main/assets/messages/scenes/scenes.properties +++ b/core/src/main/assets/messages/scenes/scenes.properties @@ -125,7 +125,7 @@ scenes.titlescene.patreon_button=Patreon Page scenes.welcomescene.welcome_msg=Welcome to Shattered Pixel Dungeon!\n\nEach run through the dungeon is a new challenging experience, and be careful, death is permanent! Getting started is simple, but strategy is required if you want to win!\n\nHappy Dungeoneering! scenes.welcomescene.update_intro=Shattered Pixel Dungeon has been updated! -scenes.welcomescene.update_msg=v1.2.0 is the first version of Shattered built for computers! It has a bunch of improvements for users on larger screens and who play with controllers or mouse and keyboard!\n\nThere are also several content changes, including new special rooms, a rework to the Master Thieves' Armband, and various improvements to spell items.\n\nBe sure to check the changes screen for full details. +scenes.welcomescene.update_msg=v1.3.0 includes a variety of additions and improvements, including a new scoring system, custom seeds and daily runs, and a harder alternate ending!\n\nThere are also some new and changed badges, various UI and control improvements, and a bunch of balance tweaks.\n\nBe sure to check the changes screen for full details. scenes.welcomescene.patch_intro=Shattered Pixel Dungeon has been patched! scenes.welcomescene.patch_bugfixes=This patch contains bugfixes. scenes.welcomescene.patch_translations=This patch contains translation updates. diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/WelcomeScene.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/WelcomeScene.java index 5e5da5213..95ac5338a 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/WelcomeScene.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/WelcomeScene.java @@ -189,7 +189,7 @@ public class WelcomeScene extends PixelScene { } else { message = Messages.get(this, "what_msg"); } - message = "Greetings Alpha testers!\n\nv1.3 is getting close to release, so here's an early look! Almost all of v1.3's functionality is implemented, check the changes screen for full details.\n\nMake sure to report any bugs to me so I can get them fixed ASAP!"; + message = "Greetings Beta testers! v1.3.0 is almost content complete, so it's about time for a beta!\n\nv1.3.0 includes a bunch of new functionality, including custom seeds, daily runs, scoring improvements, a harder ascension route, UI improvements, new badges, and balance changes. Check the changes screen for full details!"; text.text(message, Math.min(w-20, 300)); float textSpace = okay.top() - topRegion - 4; text.setPos((w - text.width()) / 2f, (topRegion + 2) + (textSpace - text.height())/2); diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v1_X_Changes.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v1_X_Changes.java index e0ec7c362..3c755ab82 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v1_X_Changes.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v1_X_Changes.java @@ -241,7 +241,7 @@ public class v1_X_Changes { "_- Smoke Bomb_ energy cost up to 50 from 35\n" + "_- Smoke Bomb_ max range up to 10 from 6")); - changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.ARMOR_LEATHER, new ItemSprite.Glowing(0x000000)), "Curse Buffs", + changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.ARMOR_LEATHER, new ItemSprite.Glowing(0x000000)), "Curse Nerfs", "Two of the most harsh curses have been nerfed (i.e. made better for the player):\n\n" + "_- Anti-Entopy_ now spreads less fire to the player, and freezes all adjacent tiles instead of just the enemy.\n\n" + "_- Sacrifice_ now more heavily scales on current HP, bleeding for a bit more at high health, and very little at medium to low health."));