Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update HeroClass.java #91

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/com/watabou/pixeldungeon/actors/hero/HeroClass.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ private HeroClass( String title ) {
}

public static final String[] WAR_PERKS = {
"Warriors start with 11 points of Strength.",
"Воин начинает жизнь с 999999 силой.",
"Warriors start with a unique short sword. This sword can be later \"reforged\" to upgrade another melee weapon.",
"Warriors are less proficient with missile weapons.",
"Any piece of food restores some health when eaten.",
Expand Down Expand Up @@ -131,9 +131,9 @@ public Badges.Badge masteryBadge() {
}

private static void initWarrior( Hero hero ) {
hero.STR = hero.STR + 1;
hero.STR = hero.STR + 999909;

(hero.belongings.weapon = new ShortSword()).identify();
(hero.belongings.weapon = new Shortsword()).identify();
new Dart( 8 ).identify().collect();

QuickSlot.primaryValue = Dart.class;
Expand Down