torchlight-data
Version:
torchlight data repository
11 lines (9 loc) • 345 B
JavaScript
/**
* @constructor
*/
Torchlight.t2.effects.HealthRecoveryPerSecond = function HealthRecoveryPerSecond(health) {
this.toString = function toString() {
return health + " Health recovery per second";
}
};
Torchlight.t2.effects.HealthRecoveryPerSecond.prototype = Object.create(Torchlight.t2.effects.Effect.prototype);