torchlight-data
Version:
torchlight data repository
8 lines (6 loc) • 342 B
JavaScript
Torchlight.t2.effects.MinimumTimeBetweenAttacks = function MinimumTimeBetweenAttacks(seconds) {
this.toString = function toString() {
return "Minimum time between attacks: " + seconds + " seconds";
}
};
Torchlight.t2.effects.MinimumTimeBetweenAttacks.prototype = Object.create(Torchlight.t2.effects.Effect.prototype);