UNPKG

csgo-fade-percentage-calculator

Version:

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

35 lines 969 B
import BaseCalculator from './BaseCalculator.js'; class AmberFadeCalculator extends BaseCalculator { 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, }, }; } } export default AmberFadeCalculator; //# sourceMappingURL=AmberFadeCalculator.js.map