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 RingOfFuror extends Ring {
|
||||
|
||||
{
|
||||
name = "Ring of Furor";
|
||||
}
|
||||
{
|
||||
name = "Ring of Furor";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected RingBuff buff( ) {
|
||||
return new Furor();
|
||||
}
|
||||
@Override
|
||||
protected RingBuff buff( ) {
|
||||
return new Furor();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String desc() {
|
||||
return isKnown() ?
|
||||
"This ring grants the wearer an inner fury, allowing them to attack more rapidly. " +
|
||||
"This fury works best in large bursts, so slow weapons benefit far more than fast ones. " +
|
||||
"A degraded ring will instead slow the wearer's speed of attack." :
|
||||
super.desc();
|
||||
}
|
||||
@Override
|
||||
public String desc() {
|
||||
return isKnown() ?
|
||||
"This ring grants the wearer an inner fury, allowing them to attack more rapidly. " +
|
||||
"This fury works best in large bursts, so slow weapons benefit far more than fast ones. " +
|
||||
"A degraded ring will instead slow the wearer's speed of attack." :
|
||||
super.desc();
|
||||
}
|
||||
|
||||
public class Furor extends RingBuff {
|
||||
}
|
||||
public class Furor extends RingBuff {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user