UNPKG

@ffxiv-teamcraft/simulator

Version:
57 lines 2.31 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.WasteNot = 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 WasteNot = /** @class */ (function (_super) { __extends(WasteNot, _super); function WasteNot() { return _super !== null && _super.apply(this, arguments) || this; } WasteNot.prototype.getLevelRequirement = function () { return { job: crafting_job_enum_1.CraftingJob.ANY, level: 15 }; }; WasteNot.prototype.getBaseCPCost = function (simulationState) { return 56; }; WasteNot.prototype.getDuration = function (simulation) { return 4; }; WasteNot.prototype.getIds = function () { return [4631, 4632, 4633, 4634, 4635, 4636, 4637, 4638]; }; WasteNot.prototype.getBuff = function () { return buff_enum_1.Buff.WASTE_NOT; }; WasteNot.prototype.getInitialStacks = function () { return 0; }; WasteNot.prototype.canBeClipped = function () { return true; }; WasteNot.prototype.getOverrides = function () { return _super.prototype.getOverrides.call(this).concat(buff_enum_1.Buff.WASTE_NOT_II); }; WasteNot.prototype.getTick = function () { return undefined; }; return WasteNot; }(buff_action_1.BuffAction)); exports.WasteNot = WasteNot; //# sourceMappingURL=waste-not.js.map