Skip to content

Commit

Permalink
icons, pics and version code
Browse files Browse the repository at this point in the history
  • Loading branch information
352900 committed Jul 29, 2016
1 parent 7ed9a87 commit cbe6914
Show file tree
Hide file tree
Showing 15 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.epd.vanilla"
android:versionCode="1"
android:versionName="0.0.1 preview"
android:versionCode="3"
android:versionName="0.0.3"
android:installLocation="auto">

<uses-permission android:name="android.permission.VIBRATE"/>
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# Easier-Vanilla-Pixel-Dungeon
# Easier-Vanilla-Pixel-Dungeon

Modified from Pixel Dungeon.
Binary file modified assets/dashboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/icons.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/status_pane.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/drawable-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/drawable-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/drawable-xhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/drawable-xxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/drawable-xxxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<string name="app_name">Pixel Dungeon</string>
<string name="app_name">Easier Pixel Dungeon</string>

</resources>
2 changes: 1 addition & 1 deletion src/com/epd/vanilla/items/Item.java
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public Item upgrade() {
cursed = false;
cursedKnown = true;

level++;if (Dungeon.isChallenged(Challenges.C1)){ level++;}
level++;
fix();

return this;
Expand Down
3 changes: 2 additions & 1 deletion src/com/epd/vanilla/items/scrolls/ScrollOfUpgrade.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
package com.epd.vanilla.items.scrolls;

import com.epd.vanilla.Badges;
import com.epd.vanilla.Challenges;
import com.epd.vanilla.Dungeon;
import com.epd.vanilla.actors.hero.Hero;
import com.epd.vanilla.effects.Speck;
Expand All @@ -45,7 +46,7 @@ protected void onItemSelected( Item item ) {
if (item.isBroken()) {
item.fix();
} else {
item.upgrade();
item.upgrade();if (Dungeon.isChallenged(Challenges.C1)){ item.upgrade();}
}

upgrade( curUser );
Expand Down
3 changes: 2 additions & 1 deletion src/com/epd/vanilla/levels/features/Sign.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public class Sign {
"What are you doing here?!";

private static final String[] TIPS = {
"Don't overestimate your strength, use weapons and armor you can handle.",
"Welcome to EVPD!" +" This mod added options to make the game easier. Check them out at the center button of hero choosing scene! "
+ "Please contact reddit.com/u/g2159687 if you have any questions!",
"Not all doors in the dungeon are visible at first sight. If you are stuck, search for hidden doors.",
"Remember, that raising your strength is not the only way to access better equipment. You can go " +
"the other way, lowering its strength requirement with Scrolls of Upgrade.",
Expand Down
2 changes: 1 addition & 1 deletion src/com/epd/vanilla/scenes/TitleScene.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ protected void onClick() {
source.y = h - source.height();
add( source );

BitmapText ver = new BitmapText( "Easier VPD pre", font1x );
BitmapText ver = new BitmapText( "0.0.2", font1x );
ver.measure();
ver.hardlight( 0x888888 );
ver.x = w - ver.width();
Expand Down

0 comments on commit cbe6914

Please sign in to comment.