code // fifteen

ARCADIA is a retrofuturistic cyberpunk world in the year 2354.five years ago, PRISM COLLECTIVE's vengeance unleashed monstrous BAMs—once ordinary people transformed by their dna-altering toxin—upon arcadia, causing the END OF WORLD ORDER.the MILITARY OFFENSIVE AND COUNTER CORPS (MOCCs) form the backbone of arcadia's military. before the event, the MOCCs operated as a standard military force.yet, amid this elite group, a remarkable FIFTEEN soldiers have risen to prominence, setting themselves apart from their peers.they are called the TECHNICIANS.



const audioPlayer = document.querySelector('.audio-player'); const audio = audioPlayer.querySelector('audio'); const playPauseBtn = audioPlayer.querySelector('.play-pause-btn'); const progress = audioPlayer.querySelector('.progress'); const currentTimeEl = audioPlayer.querySelector('.current-time'); const durationEl = audioPlayer.querySelector('.duration'); function togglePlayPause() { if (audio.paused) { audio.play(); playPauseBtn.style.backgroundImage = 'url("https://img.icons8.com/?size=100&id=403&format=png&color=28295B")'; } else { audio.pause(); playPauseBtn.style.backgroundImage = 'url("https://img.icons8.com/?size=100&id=398&format=png&color=cf4e93")'; } } function updateProgress() { const percent = (audio.currentTime / audio.duration) * 100; progress.style.width = `${percent}%`; currentTimeEl.textContent = formatTime(audio.currentTime); } function formatTime(time) { const minutes = Math.floor(time / 60); const seconds = Math.floor(time % 60); return `${minutes}:${seconds < 10 ? '0' : ''}${seconds}`; } playPauseBtn.addEventListener('click', togglePlayPause); audio.addEventListener('timeupdate', updateProgress); audio.addEventListener('loadedmetadata', () => { durationEl.textContent = formatTime(audio.duration); }); window.addEventListener('beforeunload', () => { audio.pause(); });
Arcadia
code // fifteen
0:00
/
0:00

created by MyrianiXV

still a wip

ARCLIGHT is a luminous, clean energy that permeates the universe of arcadia. it manifests as glowing particles floating in the atmosphere. the people of arcadia have learned to harness arclight to power their advanced technology, from the neon lights illuminating the cities to the engines of sleek vehicles. arclight reacts strongly to living things - all races naturally generate small amounts of it.those who can manipulate arclight are called ARCLIGHTERS.


Visual Representation of Arclight

ARCLIGHT ATTUNEMENT LEVEL (AAL) represents the degree of an arclighter's mastery over arclight energy. the levels are:

AAL-0: latent (no active control)
AAL-1: novice (basic manipulation)
AAL-2: adept (refined techniques)
AAL-3: master (advanced mastery)
AAL-4: resonant (pinnacle of attunement)
higher aals correspond to greater reserves of arclight energy and stronger, more versatile powers.


ARCLIGHT AFFINITIES are specialized applications of arclight that arclighters can develop. the four core affinities are:

AEGIS: defensive specialists who project protective arclight barriers and shields.
VITALYS: support specialists who use arclight to mend wounds and revitalize allies.
SPECTER: stealth specialists who bend arclight for invisibility, illusions, and phasing through shadows.
ZENITH: burst specialists who can temporarily exceed their arclight limits for immense boosts to speed, strength, reflexes and durability, at great physical and mental cost. this core affinity is very rare.
with intense training, arclighters can have two affinities at a time.

code // fifteen


Federation of Arcadia

the FEDERATION OF ARCADIA (FOA), also known as "THE FEDERATION", "THE SEVEN" or "███ ██████████", is the world government who holds immense power and responsibility in shaping the future of arcadia. the FOA's primary function is to establish and enforce global laws and regulations that supersede those of individual countries, as well as ████ █████ ███ ███████.

key responsibilities of the FOA include:global policy making
conflict resolution
resource management
███ ██████ ████████
economic stability
cultural preservation


the ARCADIA MILITARY DEPARTMENT (AMD) is the primary military force responsible for defending arcadia and its citizens.


the prerequisites to enlist in the military are:‣ over 18
AAL-1+
physically fit
pass a rigorous background check
clean criminal record
pass comprehensive medical screening
able to oblige by confidential protocols
proficiency in basic combat skills and weapons handling
willing to undergo intensive training
adhere to strict military discipline
prepared to face life-threatening situations
commit to a minimum service period
unwavering loyalty to arcadia and the foa

the AMD is led by the GRAND MASTER, who reports directly to the FOA. the grand master oversees all military operations and works closely with two elite units: the TECHNICIANS and the BAM RESEARCH SQUAD.


the TECHNICIANS are a group of FIFTEEN highly skilled operatives who undertake critical missions such as espionage, reconnaissance, counter-terrorism, and eliminating exceptionally dangerous BAMs.they are second-in-command within the AMD, reporting directly to the GRAND MASTER. each technician is assigned a unique numerical title, but all are equal in rank.


the BAM RESEARCH SQUAD is a highly specialized unit within the AMD. this elite team is dedicated to studying BAMs. their objective is to develop an understanding of BAMs, including their biology, behavior, and the extent of their abilities.


code // fifteen


I // Kaylessa Estelda

"in the end, i was the one to choose this role without caring for opinion or reputation."

CALLSIGN: ONE
RACE: Middle Elf
NATIONALITY: Astorian
HEIGHT: 5'6"
AGE: 28
ARCLIGHT ATTUNEMENT LEVEL: AAL-4
ARCLIGHT AFFINITY: Specter
WEAPON: Launcher


KAYLESSA's arrogance masks deep insecurity and fear of vulnerability. her cruelty is a defense mechanism.
‣ she is complex. despite her ruthless ambition, she has a fragile ego and a desperate need for validation.
‣ her situationship with etoya is her major weakness. etoya brings out a rare softer side and a submissiveness that terrifies KAYLESSA.
‣ she has an antagonistic relationship with myriani and no one truly knows why.

Myriani Killeannia

KAYLESSA was born into a prestigious astorian family, but felt neglected after her younger brother's birth. her parents lavished attention on the newborn, leaving her to fend for herself emotionally. she grew resentful, craving the love and validation that seemed to come so easily to her sibling.she joined the military against her parents' wishes. her childhood trauma fueled an intense, almost manic drive to be the best and finally gain the recognition she so desperately craved.


const audioPlayer3 = document.querySelector('.audio-player-3'); const audio3 = audioPlayer3.querySelector('audio'); const playPauseBtn3 = audioPlayer3.querySelector('.play-pause-btn-3'); const progress3 = audioPlayer3.querySelector('.progress-3'); const currentTimeEl3 = audioPlayer3.querySelector('.current-time-3'); const durationEl3 = audioPlayer3.querySelector('.duration-3'); function togglePlayPause3() { if (audio3.paused) { audio3.play(); playPauseBtn3.style.backgroundImage = 'url("https://img.icons8.com/?size=100&id=403&format=png&color=28295B")'; } else { audio3.pause(); playPauseBtn3.style.backgroundImage = 'url("https://img.icons8.com/?size=100&id=398&format=png&color=cf4e93")'; } } function updateProgress3() { const percent = (audio3.currentTime / audio3.duration) * 100; progress3.style.width = `${percent}%`; currentTimeEl3.textContent = formatTime(audio3.currentTime); } function formatTime(time) { const minutes = Math.floor(time / 60); const seconds = Math.floor(time % 60); return `${minutes}:${seconds < 10 ? '0' : ''}${seconds}`; } playPauseBtn3.addEventListener('click', togglePlayPause3); audio3.addEventListener('timeupdate', updateProgress3); audio3.addEventListener('loadedmetadata', () => { durationEl3.textContent = formatTime(audio3.duration); });
Crown of Thorns
code // fifteen
0:00
/
0:00

code // fifteen


II // Etoya Demir

"i keep pushin' the limits of what makes me, me"

CALLSIGN: two
RACE: dragonborn
NATIONALITY: alistarian
HEIGHT: 6'2"
AGE: 30
ARCLIGHT ATTUNEMENT LEVEL: AAL-4
ARCLIGHT AFFINITY: aegis
WEAPON: naginata


ETOYA's tough exterior hides a wounded soul. his anger stems from his own insecurities and fears.
‣ he uses sex, substances, and sarcasm to avoid facing his emotional issues.
‣ deep down, ETOYA wants to be loved for who he is, not just his status and skills.
‣ his relationship with his father is a major source of stress and resentment.

Myriani Killeannia

ETOYA is the only son of Grand Master Ember Demir. His mother tragically passed away during childbirth, leaving the him to be raised solely by his imposing father. from an early age, the weight of Ember's rank and reputation loomed heavily over his shoulders. he was expected to follow in his father's footsteps, to live up to the DEMIR name and its legacy of honor and service.While not an outright unpleasant childhood, ETOYA's upbringing was undoubtedly stressful due to the immense expectations placed upon him. At eighteen, as was expected of him, ETOYA enlisted in the military.


const audioPlayer4 = document.querySelector('.audio-player-4'); const audio4 = audioPlayer4.querySelector('audio'); const playPauseBtn4 = audioPlayer4.querySelector('.play-pause-btn-4'); const progress4 = audioPlayer4.querySelector('.progress-4'); const currentTimeEl4 = audioPlayer4.querySelector('.current-time-4'); const durationEl4 = audioPlayer4.querySelector('.duration-4'); function togglePlayPause4() { if (audio4.paused) { audio4.play(); playPauseBtn4.style.backgroundImage = 'url("https://img.icons8.com/?size=100&id=403&format=png&color=28295B")'; } else { audio4.pause(); playPauseBtn4.style.backgroundImage = 'url("https://img.icons8.com/?size=100&id=398&format=png&color=cf4e93")'; } } function updateProgress4() { const percent = (audio4.currentTime / audio4.duration) * 100; progress4.style.width = `${percent}%`; currentTimeEl4.textContent = formatTime(audio4.currentTime); } function formatTime(time) { const minutes = Math.floor(time / 60); const seconds = Math.floor(time % 60); return `${minutes}:${seconds < 10 ? '0' : ''}${seconds}`; } playPauseBtn4.addEventListener('click', togglePlayPause4); audio4.addEventListener('timeupdate', updateProgress4); audio4.addEventListener('loadedmetadata', () => { durationEl4.textContent = formatTime(audio4.duration); });
Made of Fire
code // fifteen
0:00
/
0:00

code // fifteen


III // Anara Fang

"i'll stay with you for as long as you're alive."

CALLSIGN: three
RACE: naga
NATIONALITY: nagalithian
HEIGHT: 5'5"
AGE: 26
ARCLIGHT ATTUNEMENT LEVEL: AAL-3
ARCLIGHT AFFINITY: vitalys
WEAPON: assault rifle


ANARA's greatest strength is her brilliant mind. she's an exceptional strategist and problem-solver.
‣ her reserved nature hides a fiercely loving and protective heart, especially when it comes to azurain.
‣ she struggles with imposter syndrome and often doubts her own abilities as a leader.
ANARA is the younger sister of azurain.

Myriani Killeannia

ANARA was born in akamo, the capital of Nagalithia, to a family with a long military legacy. as a child, she was reserved but brilliant, excelling academically. despite her shyness, ANARA's strong sense of duty led her to enlist at age 18.her innate skills and sharp mind allowed her become the third technician. ANARA's success inspired her older brother azurain to follow in her footsteps and join the military as well.


const audioPlayer5 = document.querySelector('.audio-player-5'); const audio5 = audioPlayer5.querySelector('audio'); const playPauseBtn5 = audioPlayer5.querySelector('.play-pause-btn-5'); const progress5 = audioPlayer5.querySelector('.progress-5'); const currentTimeEl5 = audioPlayer5.querySelector('.current-time-5'); const durationEl5 = audioPlayer5.querySelector('.duration-5'); function togglePlayPause5() { if (audio5.paused) { audio5.play(); playPauseBtn5.style.backgroundImage = 'url("https://img.icons8.com/?size=100&id=403&format=png&color=28295B")'; } else { audio5.pause(); playPauseBtn5.style.backgroundImage = 'url("https://img.icons8.com/?size=100&id=398&format=png&color=cf4e93")'; } } function updateProgress5() { const percent = (audio5.currentTime / audio5.duration) * 100; progress5.style.width = `${percent}%`; currentTimeEl5.textContent = formatTime(audio5.currentTime); } function formatTime(time) { const minutes = Math.floor(time / 60); const seconds = Math.floor(time % 60); return `${minutes}:${seconds < 10 ? '0' : ''}${seconds}`; } playPauseBtn5.addEventListener('click', togglePlayPause5); audio5.addEventListener('timeupdate', updateProgress5); audio5.addEventListener('loadedmetadata', () => { durationEl5.textContent = formatTime(audio5.duration); });
Your Protector
code // fifteen
0:00
/
0:00

code // fifteen


IV // AZURAIN FANG

CALLSIGN: Four
RACE: NAGA
NATIONALITY: Nagalithian
HEIGHT: 6'1"
AGE: 28
ARCLIGHT ATTUNEMENT LEVEL: AAL-4
ARCLIGHT AFFINITY: specter
WEAPON: katana


AZURAIN's stoicism hides a maelstrom of fierce emotions, especially when it comes to Anara.
‣ his protectiveness of her borders on obsessive at times. He would burn the world for her.
AZURAIN's naga powers are growing stronger, and a part of him fears what he may become.
‣ despite his seriousness, he has a subtle dry wit and a soft heart for those he loves.

Myriani Killeannia

AZURAIN was born in akamo to a family with a long history of military service. as a child, he was fiercely protective of his younger sister anara. when she enlisted at 18, AZURAIN followed suit to watch over her.he quickly proved himself as a skilled strategist and became the fourth technician. AZURAIN is utterly devoted to anara's wellbeing and success.


const audioPlayer2 = document.querySelector('.audio-player-2'); const audio2 = audioPlayer2.querySelector('audio'); const playPauseBtn2 = audioPlayer2.querySelector('.play-pause-btn-2'); const progress2 = audioPlayer2.querySelector('.progress-2'); const currentTimeEl2 = audioPlayer2.querySelector('.current-time-2'); const durationEl2 = audioPlayer2.querySelector('.duration-2'); function togglePlayPause2() { if (audio2.paused) { audio2.play(); playPauseBtn2.style.backgroundImage = 'url("https://img.icons8.com/?size=100&id=403&format=png&color=28295B")'; } else { audio2.pause(); playPauseBtn2.style.backgroundImage = 'url("https://img.icons8.com/?size=100&id=398&format=png&color=cf4e93")'; } } function updateProgress2() { const percent = (audio2.currentTime / audio2.duration) * 100; progress2.style.width = `${percent}%`; currentTimeEl2.textContent = formatTime(audio2.currentTime); } function formatTime(time) { const minutes = Math.floor(time / 60); const seconds = Math.floor(time % 60); return `${minutes}:${seconds < 10 ? '0' : ''}${seconds}`; } playPauseBtn2.addEventListener('click', togglePlayPause2); audio2.addEventListener('timeupdate', updateProgress2); audio2.addEventListener('loadedmetadata', () => { durationEl2.textContent = formatTime(audio2.duration); });
Coming Soon
code // fifteen
0:00
/
0:00

code // fifteen


XV // Myriani Killeannia

"the price i pay to keep them safe is the girl i used to be."

CALLSIGN: fifteen
RACE: lycanathi
NATIONALITY: Lunasean
HEIGHT: 5'4"
AGE: 28(?)
ARCLIGHT ATTUNEMENT LEVEL: AAL-4
ARCLIGHT AFFINITY: Zenith and (uncontrolled) Vitalys
WEAPON: Gunblade


MYRIANI's wolf form stands at 5'4" from head to front paws.
‣ unlike her siblings, MYRIANI was born with purple to mint eyes. the mint part is a unique coloration that represents the physical manifestation of her extraordinary arclight attunement, as she was born at AAL-2, an exceptionally rare occurrence.
‣ her nieces are her one soft spot. she would burn the world down for those girls.

Myriani Killeannia

MYRIANI's mother passed away when she was just a pup, leaving her and her siblings to navigate the foster system alone. they endured several abusive placements before finally escaping to take refuge in an abandoned bar.determined to build a better life, she █████████ ███ ███ ██ ██ to enlist in the military. she served 5 years as a MOCC before being promoted to TECHNICIAN.she's known for her cool head under pressure, her analytical mind, and her unflinching loyalty to her squad. but beneath her icy exterior beats a fiercely protective heart, especially when it comes to her family.


const audioPlayer2 = document.querySelector('.audio-player-2'); const audio2 = audioPlayer2.querySelector('audio'); const playPauseBtn2 = audioPlayer2.querySelector('.play-pause-btn-2'); const progress2 = audioPlayer2.querySelector('.progress-2'); const currentTimeEl2 = audioPlayer2.querySelector('.current-time-2'); const durationEl2 = audioPlayer2.querySelector('.duration-2'); function togglePlayPause2() { if (audio2.paused) { audio2.play(); playPauseBtn2.style.backgroundImage = 'url("https://img.icons8.com/?size=100&id=403&format=png&color=28295B")'; } else { audio2.pause(); playPauseBtn2.style.backgroundImage = 'url("https://img.icons8.com/?size=100&id=398&format=png&color=cf4e93")'; } } function updateProgress2() { const percent = (audio2.currentTime / audio2.duration) * 100; progress2.style.width = `${percent}%`; currentTimeEl2.textContent = formatTime(audio2.currentTime); } function formatTime(time) { const minutes = Math.floor(time / 60); const seconds = Math.floor(time % 60); return `${minutes}:${seconds < 10 ? '0' : ''}${seconds}`; } playPauseBtn2.addEventListener('click', togglePlayPause2); audio2.addEventListener('timeupdate', updateProgress2); audio2.addEventListener('loadedmetadata', () => { durationEl2.textContent = formatTime(audio2.duration); });
The Girl I Used To Be
code // fifteen
0:00
/
0:00

code // fifteen


Prism Collective

PRISM COLLECTIVE, formerly the military-funded PRISM PROJECT, was a military initiative aimed at enhancing ARCLIGHT abilities. when funding was cut, the core members continued their work secretly, developing a dna-altering TOXIN to increase arclight potential.

their experiments went catastrophically wrong, resulting in the creation of BAMs. this transformed PRISM COLLECTIVE into a terrorist organization, responsible for unleashing interdimensional threats upon ARCADIA.despite this, they continue their experiments, hoping to accomplish their goal.


[ Redacted ]

2354

Current Year

2350

Technicians were chosen.

2349

End of World Order Event

2346

Anara, Azurain, and Tahrou enlist in the military.

2345

Elowen and Kiara enlist in the military.

2344

Kiara, Etoya, Drake, and Myriani enlist in the military.

2343

Xander and Liam enlist in the military.

2342

Rosario and Floros enlist in the military.

2340

Galadrian enlists in the military.

2324

Cam (suspected) enlists in the military.

Hi, I'm Myriani ♡


Code // Fifteen is literally my OC lore teehee.
I've been developing this lore since march 2nd 2022.
some* images and music presented on this site are generated by AI, and is therefore a profit-free project.
(* images that are not created by ai will have credit)
If AI generated content pisses you off for some reason, I suggest that you just...idk...go somewhere else lmao.and if you decide to stay, thank you ♡