cleaned up formatting:
- removed trailing whitespace - changed all leading whitespace to tabs - removed IDE created author comments
This commit is contained in:
@@ -1,28 +1,25 @@
|
||||
package com.shatteredpixel.shatteredpixeldungeon.items.rings;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 10/09/2014.
|
||||
*/
|
||||
public class RingOfSharpshooting extends Ring {
|
||||
|
||||
{
|
||||
name = "Ring of Sharpshooting";
|
||||
}
|
||||
{
|
||||
name = "Ring of Sharpshooting";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected RingBuff buff( ) {
|
||||
return new Aim();
|
||||
}
|
||||
@Override
|
||||
protected RingBuff buff( ) {
|
||||
return new Aim();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String desc() {
|
||||
return isKnown() ?
|
||||
"This ring enhances the wearer's precision and aim, which will " +
|
||||
"make all projectile weapons more accurate and durable. " +
|
||||
"A degraded ring will have the opposite effect.":
|
||||
super.desc();
|
||||
}
|
||||
@Override
|
||||
public String desc() {
|
||||
return isKnown() ?
|
||||
"This ring enhances the wearer's precision and aim, which will " +
|
||||
"make all projectile weapons more accurate and durable. " +
|
||||
"A degraded ring will have the opposite effect.":
|
||||
super.desc();
|
||||
}
|
||||
|
||||
public class Aim extends RingBuff {
|
||||
}
|
||||
public class Aim extends RingBuff {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user