Dark Gothic Alloy Ring Set: Carve Soul Symbols with Edges as Blades

$29.99
$69.99
-$40.00
Quantity

Description

1. Design: 6 Rings, 6 Soul Tattoos

These aren’t just rings—they’re “soul tattoos” of the dark universe:

  • Skull Ring: Cast from alloy, cracks filled with aged silver frost. Empty eye sockets hide a burning freedom. Wearing it, your fingertip becomes a “torch against mediocrity.”
  • Crown Ring: Angular metal crown, teeth sharp like unsheathed blades. Folds freeze the arrogance of “I make the rules.” A raise of the hand shatters all “shoulds.”
  • Feather Ring: Alloy twisted into feather curves, each texture a trace of wind. Wearing it, even your breath carries a rebel’s roar.
  • Star Ring: Broken starlight embedded in the alloy band, edges deliberately rough—like fragments from a galaxy’s ruins. Wearing it, your fingertip holds “light to pierce dullness.”
  • Pattern Ring: Retro totems forged into a ring, 凹凸 texture grazing your skin—like mysterious inscriptions on an old church wall. Wearing it, you become a “walking dark story.”
  • Open Ring: A “not tamed” gap left open, alloy edges deliberately unpolished. Adjusting it feels like tearing a crack—this isn’t a flaw, but a “rejection of perfection” proclamation.

2. Craft: Alloy as Bone, Defend the Streets

 Alloy is “Wild”: Zinc alloy base + multi-layer antique silver plating — definitely not a “fragile and delicate item.” Daily bumps and knocks? It will accumulate battle scars. Rainwater erosion? It will develop a Gothic patina — the rougher it gets, the more it exudes a fierce “torn from the depths” vibe.
 Details are “Mad”: The curves of the skull and cheekbones, the chamfers of the tooth crowns, the “bony” texture of feathers... Microscopically detailed carvings engrave “dark aesthetics” into every alloy particle. “Cool” is not just superficial—it is madness within reach.
 Sizing is “Hardcore”: Open rings are violently adjustable. No matter finger size, slipping it on feels like “custom shackles.” Others wear rings as decor—you wear them as “finger chains”–the tighter, the more addictive.

3. Wear It, Let Fingertips Rule Style Laws

  • Style Explosions:
    With leather jackets = “Dark knights roaming the streets—rings fiercer than eyes.” With hoodies = “Shatter ‘low - key’—let fingertips be gothic lead singers.” With suits = “Mix madness into formality—everyone wonders, ‘What secrets does this person hide?’”
  • Social Code:
    Those who get it: These aren’t “random rings”—they’re a “dark scripture of 6 symbols.” Those who don’t: “Wearing such fierce things—stay away.” And that’s the “keep out” aura you want.
  • Emotional Anchor:
    When low, dig into ring textures—alloy’s sting wakes you: “Don’t cower—your fingertips hold weapons to tear boredom.” These 6 rings? Stronger than liquor—more addictive with every wear.

This isn’t a ring set—It’s “dark armor” for your fingertips. Let alloy’s hardness, aged roughness, and symbols’ wildness live in your seams. Walk with wind, let even shadows carry gothic arrogance.
class SpzCustomDiscountFlashsale extends SPZ.BaseElement { constructor(element) { super(element); this.xhr_ = SPZServices.xhrFor(this.win); this.getFlashSaleApi = "\/api\/storefront\/promotion\/flashsale\/display_setting\/product_setting"; this.timer = null; this.variantId = "2c06fb79-98de-4775-b85d-43a7b23857d9"; // 促销活动数据 this.flashsaleData = {} } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.templates_ = SPZServices.templatesForDoc(); this.viewport_ = this.getViewport(); // 挂载bind函数 解决this指向问题 this.render = this.render.bind(this); this.resize = this.resize.bind(this); this.switchVariant = this.switchVariant.bind(this); } mountCallback() { // 获取数据 this.getData(); this.element.onclick = (e) => { const cur = this.win.document.querySelector(".app_discount_flashsale_desc"); if (this.flashsaleData.product_setting.is_redirection && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(`/promotions/discount-default/${this.flashsaleData.discount_info.id}`); } } // 绑定 this.viewport_.onResize(this.resize); // 监听子款式切换,重新渲染 this.win.document.addEventListener('dj.variantChange', this.switchVariant); } unmountCallback() { // 解绑 this.viewport_.removeResize(this.resize); this.win.document.removeEventListener('dj.variantChange', this.switchVariant); // 清除定时器 if (this.timer) { clearTimeout(this.timer); this.timer = null; } } resize() { if (this.timer) { clearTimeout(this.timer) this.timer = null; } this.timer = setTimeout(() => { this.render(); }, 200) } switchVariant(event) { const variant = event.detail.selected; if (variant.product_id == '3fd301c3-3b13-4bb3-9174-82ecc2d45b91' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "3fd301c3-3b13-4bb3-9174-82ecc2d45b91", product_type: "default", variant_id: this.variantId } this.flashsaleData = {}; this.win.fetch(this.getFlashSaleApi, { method: "POST", body: JSON.stringify(reqBody), headers: { "Content-Type": "application/json" } }).then(async (response) => { if (response.ok) { this.flashsaleData = await response.json(); this.render(); } else { this.clearDom(); } }).catch(err => { this.clearDom(); }); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } render() { this.templates_ .findAndRenderTemplate(this.element, { isMobile: appDiscountUtils.judgeMobile(), isRTL: appDiscountUtils.judgeRTL(), inProductDetail: appDiscountUtils.inProductBody(this.element), flashsaleData: this.flashsaleData, image_domain: this.win.SHOPLAZZA.image_domain, }) .then((el) => { this.clearDom(); this.element.appendChild(el); }) } } SPZ.defineElement('spz-custom-discount-flashsale', SpzCustomDiscountFlashsale);