character

150 usd

token

50 usd

Payment method⬦ Paypal or ko-fi (USD)
⬦ 50% upfront, 50% upon completion
⬦ Returning clients: full payment on delivery is fine :)
No refunds
Terms of service⬦ Turnaround: 1 week from starting (depending on complexity)
⬦ I won’t draw hateful or harassing content
⬦ You’re welcome to repost the artwork, but please credit me :)
⬦ I may showcase your commission unless you request otherwise.
⬦ No refunds
⬦ All commissions are for personal use only
⬦ For commercial rights, please email me
Work processAfter you fill out the form, your name pops into the Queue. After that, the process will go like this:Queue → 50% Payment → Sketch → Last 50% Payment → Color → Final Art & Files

let current = 0; const slides = document.getElementById('slides'); const total = slides.children.length; const dotsContainer = document.getElementById('dots'); for (let i = 0; i < total; i++) { const d = document.createElement('span'); d.className = 'dot' + (i === 0 ? ' active' : ''); d.onclick = () => goTo(i); dotsContainer.appendChild(d); } function goTo(n) { current = (n + total) % total; slides.style.transform = `translateX(-${current * 100}%)`; document.querySelectorAll('.dot').forEach((d, i) => d.classList.toggle('active', i === current)); } function move(dir) { goTo(current + dir); } setInterval(() => move(1), 6000);