Files
shattered-pixel-dungeon-web…/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfSharpshooting.java
T
Evan Debenham cebdff0221 cleaned up formatting:
- removed trailing whitespace
- changed all leading whitespace to tabs
- removed IDE created author comments
2015-06-12 16:22:28 -04:00

26 lines
527 B
Java

package com.shatteredpixel.shatteredpixeldungeon.items.rings;
public class RingOfSharpshooting extends Ring {
{
name = "Ring of Sharpshooting";
}
@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();
}
public class Aim extends RingBuff {
}
}