-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathangelic.html
More file actions
392 lines (348 loc) · 24.1 KB
/
Copy pathangelic.html
File metadata and controls
392 lines (348 loc) · 24.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Angelic Digimon: group roster</title>
<link rel="stylesheet" href="../digivolution.css" />
<style>
/* group-roster layout (self-contained; reuses the shared tokens from digivolution.css) */
.wrap { padding: 40px 22px 56px; max-width: 1280px; margin: 0 auto; overflow: visible; }
.hero { text-align: center; margin: 18px auto 10px; max-width: 860px; }
.hero .kicker {
display: inline-block; margin-bottom: 14px; padding: 6px 16px; border-radius: 999px;
font-size: 12.5px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
color: #cfe6ff; background: rgba(88,166,255,.14); border: 1px solid rgba(88,166,255,.34);
}
.hero h1 {
font-size: 54px; line-height: 1.03; letter-spacing: -1.5px; margin: 0 0 14px;
background: linear-gradient(180deg, #ffffff, #a9c7ee);
-webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { color: var(--muted); font-size: 17px; line-height: 1.5; margin: 0; }
/* power-tier section headings */
.tier { margin: 40px 0 18px; }
.tier h2 { margin: 0; font-size: 28px; letter-spacing: -.5px; }
.tier p { margin: 5px 0 0; color: var(--muted); font-size: 13.5px; font-weight: 700; }
.grid {
display: grid; gap: 22px;
grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .grid { grid-template-columns: repeat(2, 1fr); } .hero h1 { font-size: 40px; } }
@media (max-width: 520px) { .grid { grid-template-columns: 1fr; } }
.card {
position: relative; display: flex; flex-direction: column; overflow: hidden;
padding: 20px 18px 18px; border-radius: 22px;
border: 1px solid rgba(255,255,255,.14);
background: linear-gradient(180deg, rgba(16,43,76,.96), rgba(7,19,36,.98));
box-shadow: 0 16px 40px rgba(0,0,0,.36);
transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
/* accent glow strip at the top, tinted by the angel's sphere color (--accent) */
.card::before {
content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
background: var(--accent); box-shadow: 0 0 18px var(--accent);
}
.card::after {
content: ""; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
width: 200px; height: 200px; border-radius: 50%;
background: radial-gradient(circle, var(--accent), transparent 65%);
opacity: .16; pointer-events: none; transition: opacity .18s ease;
}
a.card:hover {
transform: translateY(-6px);
border-color: color-mix(in srgb, var(--accent) 60%, rgba(255,255,255,.2));
box-shadow: 0 26px 60px rgba(0,0,0,.5), 0 0 0 1px color-mix(in srgb, var(--accent) 40%, transparent);
}
a.card:hover::after { opacity: .32; }
/* card addressed by the URL fragment (e.g. a badge link on a tree page): the browser
scrolls to it and :target keeps it highlighted in its own accent color */
.card { scroll-margin: 110px; }
a.card:target {
border-color: color-mix(in srgb, var(--accent) 80%, rgba(255,255,255,.2));
box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 65%, transparent), 0 26px 60px rgba(0,0,0,.5);
animation: target-pulse 1.1s ease-out 2;
}
a.card:target::after { opacity: .45; }
@keyframes target-pulse { 50% { transform: translateY(-6px); } }
.thumb {
position: relative; z-index: 1; height: 150px; border-radius: 16px; background: #fff;
padding: 12px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center;
}
.thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.level { position: relative; z-index: 1; font-size: 11.5px; font-weight: 900; letter-spacing: 1.2px;
text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.mon { position: relative; z-index: 1; font-size: 22px; font-weight: 950; letter-spacing: -.5px; margin-bottom: 12px; }
/* angelic-rank pill, tinted by the sphere accent */
.rank {
position: relative; z-index: 1; align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
padding: 5px 11px 5px 9px; border-radius: 999px; font-size: 11.5px; font-weight: 900;
color: var(--accent);
background: color-mix(in srgb, var(--accent) 16%, transparent);
border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
}
.rank .glyph { font-size: 14px; line-height: 1; }
/* linked group badge over a roster card: the card is itself an <a>, so the badge is an
<a> sibling inside a positioned wrapper occupying the card's grid cell */
.card-cell { position: relative; display: flex; }
.card-cell .card { flex: 1 1 auto; width: 100%; }
.card-cell a.badge-link { position: absolute; top: 12px; right: 12px; left: auto; transform: none; }
.role { position: relative; z-index: 1; margin: 10px 0 14px; color: var(--muted);
font-size: 12px; line-height: 1.4; font-weight: 700; }
.cta {
/* pinned to the card bottom so the row of CTAs stays aligned when roles wrap */
position: relative; z-index: 1; margin-top: auto; padding-top: 14px;
border-top: 1px solid rgba(255,255,255,.09);
display: flex; align-items: center; justify-content: space-between;
font-size: 13px; font-weight: 900; color: #dce9fb;
}
.cta .arrow { transition: transform .18s ease; color: var(--accent); }
a.card:hover .cta .arrow { transform: translateX(5px); }
.foot { text-align: center; color: rgba(225,238,255,.6); font-size: 12.5px; line-height: 1.5; margin-top: 40px; }
/* Lore notes: static, responsive variant of the shared .lore-panel (which is
absolute-positioned for the tree canvas); the cards reuse .lore-card styles
and .lore-panel-title from digivolution.css */
.lore-section {
margin-top: 34px; padding: 20px 22px 22px; border-radius: 24px;
border: 1px solid rgba(148,163,184,.42);
background: linear-gradient(180deg, rgba(44,52,64,.68), rgba(16,24,36,.94));
box-shadow: 0 20px 56px rgba(0,0,0,.36), inset 0 0 0 1px rgba(255,255,255,.05);
}
@media (max-width: 1100px) { .lore-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .lore-grid { grid-template-columns: 1fr; } }
</style>
</head>
<body>
<div class="wrap">
<a class="backnav" href="../index.html"><span class="arrow">←</span> Home</a>
<header class="hero">
<span class="kicker">Special group</span>
<h1>Angelic Digimon</h1>
<p>The official encyclopedia classifies its holy Digimon with the nine ranks of classical angelology, from Angel up to Seraph. This roster groups them by power: The Three Celestials guarding the Kernel, the Angelic Army that preserves the order of the Digital World, and the fallen forms the angels can become.</p>
</header>
<section class="tier">
<h2>Celestial Digimon</h2>
<p>The Three Celestials (Three Great Angels), guardians of the Kernel, God's Domain</p>
</section>
<div class="grid">
<a class="card" id="seraphimon" href="https://digimon.fandom.com/wiki/Seraphimon" target="_blank" style="--accent:#f0b429">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Seraphimon_b.jpg" alt="Seraphimon"></div>
<div class="level">Mega</div>
<div class="mon">Seraphimon</div>
<span class="rank"><span class="glyph">✦</span> Seraph</span>
<div class="role">The unforgiving Marshall of God; the highest of all Angel Digimon.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="card" id="cherubimon-good" href="https://digimon.fandom.com/wiki/Cherubimon_(Good)" target="_blank" style="--accent:#f0b429">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Cherubimon_%28Good%29_b.jpg" alt="Cherubimon (Good)"></div>
<div class="level">Mega</div>
<div class="mon">Cherubimon (Good)</div>
<span class="rank"><span class="glyph">✦</span> Cherub</span>
<div class="role">Steadfast defender of God and keeper of wisdom.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="card" id="ophanimon" href="https://digimon.fandom.com/wiki/Ophanimon" target="_blank" style="--accent:#f0b429">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Ophanimon_b.jpg" alt="Ophanimon"></div>
<div class="level">Mega</div>
<div class="mon">Ophanimon</div>
<span class="rank"><span class="glyph">✦</span> Ophan</span>
<div class="role">Represents love; the ultimate form of all female angel Digimon.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
</div>
<section class="tier">
<h2>Angelic Army</h2>
<p>The military force preserving the order of the Digital World, known as the Powers in the dub</p>
</section>
<div class="grid">
<a class="card" id="slashangemon" href="https://digimon.fandom.com/wiki/SlashAngemon" target="_blank" style="--accent:#7fb5ff">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/SlashAngemon_b.jpg" alt="SlashAngemon"></div>
<div class="level">Mega</div>
<div class="mon">SlashAngemon</div>
<span class="rank"><span class="glyph">✧</span> Power</span>
<div class="role">Commands the army, cutting through the front line of battles.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="card" id="rasielmon" href="https://digimon.fandom.com/wiki/Rasielmon" target="_blank" style="--accent:#f0b429">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Rasielmon_b.jpg" alt="Rasielmon"></div>
<div class="level">Mega</div>
<div class="mon">Rasielmon</div>
<span class="rank"><span class="glyph">✦</span> Ophan</span>
<div class="role">Once held the same rank as Ophanimon.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="card" id="dominimon" href="https://digimon.fandom.com/wiki/Dominimon" target="_blank" style="--accent:#7fb5ff">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Dominimon_b.jpg" alt="Dominimon"></div>
<div class="level">Mega</div>
<div class="mon">Dominimon</div>
<span class="rank"><span class="glyph">✧</span> Dominion</span>
<div class="role">Known as a phantom; answers to no one in the angelic chain of command.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="card" id="clavisangemon" href="https://digimon.fandom.com/wiki/ClavisAngemon" target="_blank" style="--accent:#7fb5ff">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/ClavisAngemon_b.jpg" alt="ClavisAngemon"></div>
<div class="level">Mega</div>
<div class="mon">ClavisAngemon</div>
<span class="rank"><span class="glyph">✧</span> Virtue</span>
<div class="role">Holds The Key to the 360 doors sealing the Zenith Gate.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="card" id="arkhaiangemon" href="https://digimon.fandom.com/wiki/ArkhaiAngemon" target="_blank" style="--accent:#aab8cf">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/ArkhaiAngemon_b.jpg" alt="ArkhaiAngemon"></div>
<div class="level">Ultimate</div>
<div class="mon">ArkhaiAngemon</div>
<span class="rank"><span class="glyph">✩</span> Principality</span>
<div class="role">Counselor and commanding officer of its assigned squad.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="card" id="magnaangemon" href="https://digimon.fandom.com/wiki/MagnaAngemon" target="_blank" style="--accent:#aab8cf">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/MagnaAngemon_b.jpg" alt="MagnaAngemon"></div>
<div class="level">Ultimate</div>
<div class="mon">MagnaAngemon</div>
<span class="rank"><span class="glyph">✩</span> Archangel</span>
<div class="role">Law enforcer supervising the many Angel Digimon.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="card" id="angewomon" href="https://digimon.fandom.com/wiki/Angewomon" target="_blank" style="--accent:#aab8cf">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Angewomon_b.jpg" alt="Angewomon"></div>
<div class="level">Ultimate</div>
<div class="mon">Angewomon</div>
<span class="rank"><span class="glyph">✩</span> Archangel</span>
<div class="role">Reclassified from Angel for the great power of its abilities.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="card" id="angemon" href="https://digimon.fandom.com/wiki/Angemon" target="_blank" style="--accent:#aab8cf">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Angemon_b.jpg" alt="Angemon"></div>
<div class="level">Champion</div>
<div class="mon">Angemon</div>
<span class="rank"><span class="glyph">✩</span> Angel</span>
<div class="role">Being of absolute goodness; descends when the Digital World is in crisis.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="card" id="piddomon" href="https://digimon.fandom.com/wiki/Piddomon" target="_blank" style="--accent:#aab8cf">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Piddomon_b.jpg" alt="Piddomon"></div>
<div class="level">Champion</div>
<div class="mon">Piddomon</div>
<span class="rank"><span class="glyph">✩</span> Angel</span>
<div class="role">A rank below Angemon, but with power on par with it.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="card" id="darcmon" href="https://digimon.fandom.com/wiki/Darcmon" target="_blank" style="--accent:#aab8cf">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Darcmon_b.jpg" alt="Darcmon"></div>
<div class="level">Champion</div>
<div class="mon">Darcmon</div>
<span class="rank"><span class="glyph">✩</span> Angel</span>
<div class="role">Vanguard of the Angel Digimon; the Goddess of the Battlefield.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="card" id="luxmon" href="https://digimon.fandom.com/wiki/Luxmon" target="_blank" style="--accent:#aab8cf">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Luxmon_b.jpg" alt="Luxmon"></div>
<div class="level">Rookie</div>
<div class="mon">Luxmon</div>
<span class="rank"><span class="glyph">✩</span> Angel</span>
<div class="role">Lowest rank of angels; displays great strength fighting as a team.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
</div>
<section class="tier">
<h2>Fallen counterparts</h2>
<p>What the angels become when they fall from grace</p>
</section>
<div class="grid">
<a class="card" id="shadowseraphimon" href="https://digimon.fandom.com/wiki/ShadowSeraphimon" target="_blank" style="--accent:#e5484d">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/ShadowSeraphimon_b.jpg" alt="ShadowSeraphimon"></div>
<div class="level">Mega</div>
<div class="mon">ShadowSeraphimon</div>
<span class="rank"><span class="glyph">☠</span> Seraph</span>
<div class="role">Seraphimon engulfed by its concealed inner resentment.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<div class="card-cell">
<a class="card" id="daemon" href="https://digimon.fandom.com/wiki/Daemon" target="_blank" style="--accent:#e5484d">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Daemon_b.jpg" alt="Daemon"></div>
<div class="level">Mega</div>
<div class="mon">Daemon</div>
<span class="rank"><span class="glyph">☠</span> Evil King</span>
<div class="role">Said to have originally been a Seraphimon that fell to the Dark Area.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="dl badge-link" href="demon-lords.html#daemon" title="Seven Great Demon Lords roster">Demon Lord</a>
</div>
<a class="card" id="ophanimon-falldown-mode" href="https://digimon.fandom.com/wiki/Ophanimon_Falldown_Mode" target="_blank" style="--accent:#e5484d">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Ophanimon_Falldown_Mode_b.jpg" alt="Ophanimon Falldown Mode"></div>
<div class="level">Mega</div>
<div class="mon">Ophanimon Falldown Mode</div>
<span class="rank"><span class="glyph">☠</span> Fallen Angel</span>
<div class="role">Ophanimon after falling from grace.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<div class="card-cell">
<a class="card" id="lilithmon" href="https://digimon.fandom.com/wiki/Lilithmon" target="_blank" style="--accent:#e5484d">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Lilithmon_b.jpg" alt="Lilithmon"></div>
<div class="level">Mega</div>
<div class="mon">Lilithmon</div>
<span class="rank"><span class="glyph">☠</span> Evil King</span>
<div class="role">Thought to have once been an Ophanimon; the Goddess of Darkness.</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
<a class="dl badge-link" href="demon-lords.html#lilithmon" title="Seven Great Demon Lords roster">Demon Lord</a>
</div>
<a class="card" id="cherubimon-evil" href="https://digimon.fandom.com/wiki/Cherubimon_(Evil)" target="_blank" style="--accent:#e5484d">
<div class="thumb"><img referrerpolicy="no-referrer" src="https://digimon.fandom.com/wiki/Special:Redirect/file/Cherubimon_%28Evil%29_b.jpg" alt="Cherubimon (Evil)"></div>
<div class="level">Mega</div>
<div class="mon">Cherubimon (Evil)</div>
<span class="rank"><span class="glyph">☠</span> Cherub</span>
<div class="role">Cherubimon consumed by darkness (Frontier).</div>
<div class="cta"><span>View on DigimonWiki</span><span class="arrow">→</span></div>
</a>
</div>
<section class="lore-section">
<div class="lore-panel-title">
<h2>Lore notes</h2>
<span>the stories behind the ranks and the falls</span>
</div>
<div class="lore-grid">
<div class="lore-card">
<div class="lore-card-title">The Three Celestials' Roles</div>
<div class="lore-card-text">Ophanimon's official profile defines the division of the trio guarding the Kernel: Seraphimon is the unforgiving Marshall of God (the law), Cherubimon the steadfast defender of God and wisdom, and Ophanimon the merciful and compassionate side, the holy mother of the Digital World.</div>
</div>
<div class="lore-card">
<div class="lore-card-title">Ophanimon, the Fallen Goddess</div>
<div class="lore-card-text">Lilithmon's official profile says it is thought to have once been an Ophanimon that fell from grace, becoming the Goddess of Darkness. A perfect mirror of Seraphimon and Daemon: two of the Three Celestials have a Demon Lord as their fallen counterpart.</div>
</div>
<div class="lore-card">
<div class="lore-card-title">Rasielmon, the Ophan Among Soldiers</div>
<div class="lore-card-text">Rasielmon once held the same rank as Ophanimon. It keeps the Ophan rank and the ability to look out on the entire world from the Kernel, having built up the knowledge of a god, but it no longer holds a Celestial seat and serves alongside the army instead.</div>
</div>
<div class="lore-card">
<div class="lore-card-title">Dominimon, the Phantom</div>
<div class="lore-card-text">Dominimon does not answer in any way to the angelic chain of command: it manifests via mutation when the balance of light and darkness breaks, is almost never sighted, and only joins ClavisAngemon and SlashAngemon against extreme threats, sacrificing its own lifeforce (Devotion Field).</div>
</div>
<div class="lore-card">
<div class="lore-card-title">ClavisAngemon and the Zenith Gate</div>
<div class="lore-card-text">ClavisAngemon guards the Zenith Gate, sealed by 360 doors between the Digital World and the outside, holding The Key, a master key only it can wield. Some suspect the Digimon itself is part of the key, whose power could collapse the Digital World.</div>
</div>
<div class="lore-card">
<div class="lore-card-title">A Power Leads the Army</div>
<div class="lore-card-text">SlashAngemon's official profile confirms it commands the Angelic Army (Powers). In classical angelology the Powers are precisely the warrior angels, so an army led by a middle rank rather than a Seraph is faithful to the original hierarchy.</div>
</div>
<div class="lore-card">
<div class="lore-card-title">The War Against Millenniumon</div>
<div class="lore-card-text">In Digimon Adventure: (the 2020 reboot), Seraphimon, Ophanimon, Cherubimon, ClavisAngemon, SlashAngemon, Rasielmon and Valdurmon fought Millenniumon together in the distant past: the only time most of this roster takes the field as an actual army.</div>
</div>
<div class="lore-card">
<div class="lore-card-title">Three Falls, Three Stories</div>
<div class="lore-card-text">ShadowSeraphimon is officially Seraphimon swallowed by darkness as its concealed resentment swelled, and is said to fall into an Evil King Digimon if it keeps this form too long. Cherubimon (Evil) is born in Frontier: feeling betrayed by Seraphimon and Ophanimon, it was corrupted by Lucemon. Ophanimon Falldown Mode is an Ophanimon so angry it suppressed its own emotions and fell into madness; in Adventure tri. it is born from Kari's despair and fuses with Raguelmon into Ordinemon.</div>
</div>
</div>
</section>
<div class="support">
<span class="support-label">Support this project</span>
<a class="support-btn kofi" href="https://ko-fi.com/drigos" target="_blank" rel="noopener"><span class="support-icon" aria-hidden="true">☕</span><span class="support-text">Ko-fi</span><span class="support-url">ko-fi.com/drigos</span></a>
<a class="support-btn sponsors" href="https://github.com/sponsors/drigos" target="_blank" rel="noopener"><span class="support-icon" aria-hidden="true">♥</span><span class="support-text">GitHub Sponsors</span><span class="support-url">github.com/sponsors/drigos</span></a>
</div>
<p class="foot">Images and names link to DigimonWiki/Fandom (CC BY-SA unless noted otherwise). Ranks follow the official encyclopedia Types; the English localization renames some of them: Archangel appears as High Angel, Power as Great Angel, and Ophan as Super Angel.</p>
</div>
</body>
</html>