30 lines
736 B
Java
30 lines
736 B
Java
package com.shatteredpixel.shatteredpixeldungeon.items.rings;
|
|
|
|
/**
|
|
* Created by debenhame on 10/09/2014.
|
|
*/
|
|
public class RingOfTenacity extends Ring {
|
|
|
|
{
|
|
name = "Ring of Tenacity";
|
|
}
|
|
|
|
@Override
|
|
protected RingBuff buff( ) {
|
|
return new Tenacity();
|
|
}
|
|
|
|
@Override
|
|
public String desc() {
|
|
return isKnown() ?
|
|
"When worn, this ring will allow the wearer to resist normally mortal strikes. " +
|
|
"The more injured the user is, the more resistant they will be to damage. " +
|
|
"A cursed ring will instead make it easier for enemies to execute the wearer." :
|
|
super.desc();
|
|
}
|
|
|
|
public class Tenacity extends RingBuff {
|
|
}
|
|
}
|
|
|