UNPKG

@ffxiv-teamcraft/simulator

Version:
54 lines 2.19 kB
"use strict"; 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.Innovation = 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 Innovation = /** @class */ (function (_super) { __extends(Innovation, _super); function Innovation() { return _super !== null && _super.apply(this, arguments) || this; } Innovation.prototype.getLevelRequirement = function () { return { job: crafting_job_enum_1.CraftingJob.ANY, level: 26 }; }; Innovation.prototype.getBaseCPCost = function (simulationState) { return 18; }; Innovation.prototype.getBuff = function () { return buff_enum_1.Buff.INNOVATION; }; Innovation.prototype.getDuration = function (simulation) { return 4; }; Innovation.prototype.getIds = function () { return [19004, 19005, 19006, 19007, 19008, 19009, 19010, 19011]; }; Innovation.prototype.getInitialStacks = function () { return 0; }; Innovation.prototype.canBeClipped = function () { return true; }; Innovation.prototype.getTick = function () { return undefined; }; return Innovation; }(buff_action_1.BuffAction)); exports.Innovation = Innovation; //# sourceMappingURL=innovation.js.map