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.Veneration = 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 Veneration = /** @class */ (function (_super) { __extends(Veneration, _super); function Veneration() { return _super !== null && _super.apply(this, arguments) || this; } Veneration.prototype.getLevelRequirement = function () { return { job: crafting_job_enum_1.CraftingJob.ANY, level: 15 }; }; Veneration.prototype.getBaseCPCost = function (simulationState) { return 18; }; Veneration.prototype.getBuff = function () { return buff_enum_1.Buff.VENERATION; }; Veneration.prototype.getDuration = function (simulation) { return 4; }; Veneration.prototype.getIds = function () { return [19297, 19298, 19299, 19300, 19301, 19302, 19303, 19304]; }; Veneration.prototype.getInitialStacks = function () { return 0; }; Veneration.prototype.canBeClipped = function () { return true; }; Veneration.prototype.getTick = function () { return undefined; }; return Veneration; }(buff_action_1.BuffAction)); exports.Veneration = Veneration; //# sourceMappingURL=veneration.js.map