Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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