PGVG presenterer sine håndlagde coiler, alle coilene kommer i 2pk og motstand er oppgitt i singel. Det er kun benyttet kvalitetstråd fra Kidney Puncher.
Versjon 1
MTL Fused Clapton
Ni80 KP
Motstand 0.80+-0.02
2.5MM ID
2-30/40G
1* Original Japansk bomull
Versjon 2
MTL Fused Clapton
Ni80 KP
Motstand 1.15+-0.02
2.5MM ID
2-32/40G
1* Original Japansk bomull
Versjon 3
MTL Fused Clapton
SS316 (for temp modus)
2.5MM ID
2-32/40G
1* Original Japansk bomull
Les mer
{
let header = document.querySelector('header'); // Adjust the selector as needed
// Find the tab link element (modify the selector if necessary)
let tabLink = document.querySelector('.__lipscore_tab_link');
if (window.innerWidth < 600) {
tabLink = document.querySelector('.mobile_lipscore_tab_link');
header = document.querySelector('.__mobile-header');
}
const headerHeight = header ? header.offsetHeight : 0; // Get the height of the header
if (tabLink) {
// Dispatch a click event on the tab link
tabLink.click();
setTimeout(() => {
const targetPosition = tabLink.getBoundingClientRect().top + window.scrollY - headerHeight;
window.scrollTo({
top: targetPosition,
behavior: 'smooth' // Optional: for smooth scrolling
});
}, 100)
}
}">