@ffxiv-teamcraft/simulator
Version:
A FINAL FANTASY XIV crafting simulator
54 lines • 2.21 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.GreatStrides = void 0;
var buff_action_1 = require("../buff-action");
var buff_enum_1 = require("../../buff.enum");
var crafting_job_enum_1 = require("../../crafting-job.enum");
var GreatStrides = /** @class */ (function (_super) {
__extends(GreatStrides, _super);
function GreatStrides() {
return _super !== null && _super.apply(this, arguments) || this;
}
GreatStrides.prototype.canBeClipped = function () {
return true;
};
GreatStrides.prototype.getLevelRequirement = function () {
return { job: crafting_job_enum_1.CraftingJob.ANY, level: 21 };
};
GreatStrides.prototype.getBaseCPCost = function (simulationState) {
return 32;
};
GreatStrides.prototype.getDuration = function (simulation) {
return 3;
};
GreatStrides.prototype.getIds = function () {
return [260, 261, 262, 263, 264, 265, 266, 267];
};
GreatStrides.prototype.getBuff = function () {
return buff_enum_1.Buff.GREAT_STRIDES;
};
GreatStrides.prototype.getInitialStacks = function () {
return 0;
};
GreatStrides.prototype.getTick = function () {
return undefined;
};
return GreatStrides;
}(buff_action_1.BuffAction));
exports.GreatStrides = GreatStrides;
//# sourceMappingURL=great-strides.js.map