UNPKG

csgo-fade-percentage-calculator

Version:

Calculate the Fade percentage of a CS2 skin using its paint seed.

37 lines 1.06 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const BaseCalculator_1 = require("./BaseCalculator"); class AmberFadeCalculator extends BaseCalculator_1.default { constructor() { super(...arguments); this.weapons = [ 'AUG', 'Galil AR', 'MAC-10', 'P2000', 'R8 Revolver', 'Sawed-Off', ]; this.reversedWeapons = []; this.tradeUpWeapons = [ 'AUG', 'Galil AR', 'MAC-10', 'P2000', 'R8 Revolver', 'Sawed-Off', ]; this.configs = { default: { pattern_offset_x_start: -0.7, pattern_offset_x_end: -0.7, pattern_offset_y_start: -0.7, pattern_offset_y_end: -0.7, pattern_rotate_start: -55, pattern_rotate_end: -65, }, }; } } exports.default = AmberFadeCalculator; //# sourceMappingURL=AmberFadeCalculator.js.map