4 months ago
Moondragon: Anatomy of a Mind
From tragic orphan to cosmic goddess. What are the specific events that forged Moondragon's psyche.
/* Strict Marvel Echoes HQ Palette */
:root {
--primary-accent: #ffa902;
--secondary-bg: #48555e;
--body-bg: #1f2529;
--text-main: #b1b8be;
--accent-red: #d9534f;
--accent-blue: #5bc0de;
}
body {
font-family: 'Lato', sans-serif;
background-color: var(--body-bg);
color: var(--text-main);
}
h1, h2, h3, h4 {
font-family: 'Oswald', sans-serif;
text-transform: uppercase;
}
.text-accent { color: var(--primary-accent); }
.bg-card { background-color: var(--secondary-bg); }
.bg-body { background-color: var(--body-bg); }
.chart-container {
position: relative;
width: 100%;
max-width: 600px;
margin: 0 auto;
height: 300px;
}
/* Custom Timeline Styles (No SVG) */
.timeline-node {
width: 100%;
padding: 1rem;
background-color: var(--body-bg); /* Contrast against card */
border-left: 4px solid var(--primary-accent);
margin-bottom: 1rem;
position: relative;
}
.timeline-node::before {
content: '';
position: absolute;
left: -10px; /* Center on border */
top: 50%;
transform: translateY(-50%);
width: 16px;
height: 16px;
background-color: var(--primary-accent);
border-radius: 50%;
border: 3px solid var(--secondary-bg);
}
/* Power Level Bars (HTML/CSS alternative to charts for variety) */
.power-bar-bg {
background-color: var(--body-bg);
height: 10px;
width: 100%;
border-radius: 5px;
margin-top: 5px;
}
.power-bar-fill {
background-color: var(--primary-accent);
height: 100%;
border-radius: 5px;
}
Heather Douglas • Earth-616
Origin Anatomy
From tragic orphan to cosmic goddess. The specific events that forged her psyche.
THE TRAUMA
Thanos Arrives
Young Heather witnesses parents' death. Father's soul bound to Drax.
THE TRAINING
Adopted by Mentor
Taken to Titan. Raised by Shao-Lorn monks to unlock total mental potential.
THE CORRUPTION
The Dragon Entity
Defeats the Dragon of the Moon but arrogantly traps it inside her own soul.
Titanian Physiology
Comparison of Moondragon's stats vs. Average Human baseline.
10/10
Psionics
Genius
Intellect
The Inner Conflict
Moondragon is defined by the imbalance of her personality traits.
"My arrogance is not a flaw. It is a measurement of my superiority."
Affiliation Timeline & Impact
Measuring her pivotal contributions (and disruptions) across major Marvel teams.
Legacy Echoes
Queer Identity
Her relationship with Phyla-Vell established a pillar of LGBTQ+ representation in cosmic Marvel history.
The "God Complex"
Set the archetype for the "benevolent tyrant" hero, echoing later in stories like Superior Iron Man.
Drax's Humanity
She is the "Living Echo" of Arthur Douglas, the only thing keeping Drax from being a mindless weapon.
Marvel Echoes HQ • Earth-616 Continuity Analysis
document.addEventListener('DOMContentLoaded', function() {
// PALETTE DEFINITIONS FOR JS
const colors = {
primary: '#ffa902', // Orange
card: '#48555e', // Secondary BG
body: '#1f2529', // Body BG
text: '#b1b8be', // Text
red: '#d9534f', // Accent Red
blue: '#5bc0de', // Accent Blue
white: '#ffffff'
};
// Common Chart Options
const commonOptions = {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: { labels: { color: colors.text } },
tooltip: {
backgroundColor: colors.body,
titleColor: colors.primary,
bodyColor: colors.white,
borderColor: colors.card,
borderWidth: 1,
callbacks: {
title: function(tooltipItems) {
return tooltipItems[0].label;
}
}
}
}
};
// 1. RADAR CHART: Power Levels
const ctxRadar = document.getElementById('powerRadarChart').getContext('2d');
new Chart(ctxRadar, {
type: 'radar',
data: {
labels: ['Telepathy', 'Telekinesis', 'Martial Arts', 'Intellect', 'Strength', 'Durability'],
datasets: [{
label: 'Moondragon',
data: [10, 9, 9, 9, 4, 5],
backgroundColor: 'rgba(255, 169, 2, 0.4)', // Primary Orange Transparent
borderColor: colors.primary,
pointBackgroundColor: colors.white,
pointBorderColor: colors.primary,
borderWidth: 2
},
{
label: 'Human Baseline',
data: [1, 1, 2, 3, 2, 2],
borderColor: colors.text,
borderDash: [5, 5],
borderWidth: 1,
pointRadius: 0
}]
},
options: {
...commonOptions,
scales: {
r: {
angleLines: { color: colors.card },
grid: { color: colors.card },
pointLabels: { color: colors.text, font: { size: 11 } },
ticks: { display: false, backdropColor: 'transparent' },
min: 0,
max: 10
}
},
plugins: {
...commonOptions.plugins,
legend: { display: false }
}
}
});
// 2. DOUGHNUT CHART: Psychological Profile
const ctxPsyche = document.getElementById('psycheDoughnutChart').getContext('2d');
new Chart(ctxPsyche, {
type: 'doughnut',
data: {
labels: ['Hubris (Arrogance)', 'Shao-Lorn Discipline', 'Dragon Corruption', 'Compassion'],
datasets: [{
data: [40, 30, 20, 10],
backgroundColor: [
colors.primary, // Hubris (Focus)
colors.card, // Discipline (Background)
colors.red, // Corruption (Danger)
colors.blue // Compassion (Accent)
],
borderColor: colors.body,
borderWidth: 3
}]
},
options: {
...commonOptions,
cutout: '60%',
plugins: {
...commonOptions.plugins,
legend: { position: 'bottom', labels: { padding: 20, color: colors.text } }
}
}
});
// 3. BAR CHART: Team History
const ctxBar = document.getElementById('teamBarChart').getContext('2d');
new Chart(ctxBar, {
type: 'bar',
data: {
labels: ['Avengers', 'Defenders', 'Infinity Watch', 'Guardians (Modern)'],
datasets: [{
label: 'Narrative Importance',
data: [8, 9, 6, 8],
backgroundColor: [
colors.blue, // Avengers
colors.primary, // Defenders (Peak Dragon of Moon arc)
colors.card, // Infinity Watch
colors.blue // Guardians
],
borderColor: colors.body,
borderWidth: 1
}]
},
options: {
...commonOptions,
scales: {
y: {
beginAtZero: true,
grid: { color: '#333' },
ticks: { color: colors.text }
},
x: {
grid: { display: false },
ticks: { color: colors.text }
}
},
plugins: {
...commonOptions.plugins,
legend: { display: false }
}
}
});
});
Moondragon: Anatomy of a Mind #Moondragon #MarvelComics #CosmicGoddess #Superhero #AnatomyOfAMind
0
0
0
0