
simple.server.extension.d20.ability.Constitution Maven / Gradle / Ivy
The newest version!
package simple.server.extension.d20.ability;
import marauroa.common.game.Definition;
import org.openide.util.lookup.ServiceProvider;
/**
*
* @author Javier A. Ortiz Bultron [email protected]
*/
@ServiceProvider(service = D20Ability.class)
public class Constitution extends AbstractAbility {
public Constitution() {
}
public Constitution(int level) {
super(level);
}
@Override
public String getCharacteristicName() {
return "Constitution";
}
@Override
public String getShortName() {
return "CON";
}
@Override
public Definition.Type getDefinitionType() {
return Definition.Type.INT;
}
@Override
public String getDescription() {
return "Constitution represents your character's health and stamina. "
+ "A Constitution bonus increases a character's hit points, "
+ "so the ability is important for all classes.";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy