-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
3501 lines (3487 loc) · 246 KB
/
index.html
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>MCU</title>
</head>
<body>
<main>
<article>
<h2>-Eons ago-</h2>
<section class="thor-2">
<p> <strong class="secundary">Bor</strong>, father of Odin, clashes with
the <em>Dark Elfs</em>, <strong class="enemy">Malekith</strong>, who seeks to unleash a weapon known
as <strong class="aether">the Aether</strong> on the nine realms. They defeat him on their
home world of Svartalfheim, Bor safeguards <strong class="mcu">the Aether within a stone
column</strong>. Unknown to Bor, Malekith, his lieutenant <strong class="enemy">Algrim</strong>
and a handful of Dark Elves escape into suspended animation.</p>
</section>
</article>
<article>
<h2>-1.000.000 years ago-</h2>
<section class="black-panther-1">
<p>
Five African tribes war over a <strong class="mcu">meteorite containing the metal
vibranium</strong>. One warrior ingests a <strong>"heart-shaped herb"</strong> affected by the
metal and gains <strong>superhuman abilities, becoming the first "Black Panther"</strong>. He unites
all but the Jabari Tribe to form the nation of <em>Wakanda</em>.
</p>
</section>
</article>
<article>
<h2>-5000 years ago-</h2>
<section class="agents-of-shield-iii">
<p>A rogue faction of <em>Kree</em> came to Earth seeking to create an army of super
soldiers to aid in their empire's many wars. They conducted their first experiment on a human
creating <strong class="enemy">Hive</strong>, implanting latent
genes that, once activated through a mutagenic process known as Terrigenesis gave the new Inhumans
access to unique superhuman abilities.</p>
</section>
<section class="inhumans-i">
<p>
Fleeing persecution, a group of Inhumans founded a secret settlement on the Moon, which later became
known as the city of Attilan.
</p>
</section>
</article>
<article>
<h2>-2000 years ago-</h2>
<section class="the-defenders-i">
<p>
The elders of <em>K'un-Lun</em> came together to study the healing powers of qi, but five among them
wished to use this power to live forever and were cast out. They became <em>the five fingers of the
Hand</em>.
</p>
</section>
</article>
<article>
<h2>-965 AD-</h2>
<section class="thor-1">
<p><strong class="odin">Odin</strong>, king of Asgard, wages war against the <em>Frost Giants of
Jotunheim</em> and their leader <strong class="enemy">Laufey</strong>, to prevent them from
conquering the nine realms, starting with Earth. The Asgardian warriors defeat the Frost Giants in
Tønsberg, Norway, and seize the source of their power, <strong class="mcu">the Casket of Ancient
Winters.</strong></p>
</section>
</article>
<article>
<h2>-1931-</h2>
<section class="agents-of-shield-vii alternative">
<h5>Agents Of S.H.I.E.L.D. <em>( Season 7: e01-e02 / 2020)</em></h5>
<p>
<strong class="coulson">Phil Coulson</strong>: An advanced LMD created by Fitz-Simmons with
Chronicom tecnology
, <strong class="may">Melinda May</strong>: the team travels to the past to prevent the Chronicoms
from erasing SHIELD
, <strong class="skye">Daisy</strong>: press the buttom that decides the awakening of Phil
, <strong class="secundary">Leo Fitz</strong>: goes in hiding to protect the team and help them beat
the Chronicoms
, <strong class="secundary">Jemma Simmons</strong>: has a plan but her memories are erased to
protect Fitz and the team
, <strong class="secundary">Mack</strong>: director of SHIELD
, <strong class="secundary">Elena</strong>: can't use her powers anymore
, <strong class="secundary">Enoch</strong>: now part of the team
<strong class="secundary">Deke</strong>: now part of the team
</p>
<p>
<strong>Recovery Missions:</strong>Prevent the Chronicoms from disrupting the timeline
</p>
<p>
<strong>Enemies:</strong>
<strong class="enemy">The Chronicoms</strong>
<strong class="enemy">Malick</strong> grandfather
<em class="enemy">HYDRA</em>
</p>
</section>
</article>
<article>
<h2>-1942-</h2>
<section class="captain-america-1">
<h1>Captain America: The First Avenger <em>(2011)</em></h1>
<p>In Tønsberg a German-occupied Norway town, Lieutenant general <strong class="enemy">Johann
Schmidt</strong> steals a mysterious relic called the
<strong class="tesseract">Tesseract</strong> which possesses untold godly powers.
</p>
</section>
</article>
<article>
<h2>-1943-</h2>
<section class="captain-america-1">
<p>New York City, <strong class="captain-america">Steve Rogers</strong> attends to <em>Stark Expo</em>
with his best friend, Sgt. <strong class="winter-soldier">James "Bucky" Barnes</strong>. Dr. <strong
class="secundary">Abraham Erskine</strong> allows Rogers to enlist into the <em>Strategic
Scientific Reserve (SSR)</em> as part of a <strong>"super-soldier" experiment with
"vita-rays"</strong> under Erskine, Colonel <strong class="secundary">Chester Phillips</strong>,
and British agent <strong class="peggy-carter">Peggy Carter</strong>. Schmidt underwent an imperfect
or
unready version of the procedure and suffered permanent side-effects. Schmidt and Dr. <strong
class="enemy">Arnim Zola</strong> harness the energies of the Tesseract, intending to
<strong>use the power to fuel Zola's inventions.</strong>
</p>
<p>
Schmidt sends assassin <strong class="enemy">Heinz Kruger</strong> to kill <strong
class="secundary dead">Erskine</strong> and flees with a
<strong>vial of the serum.</strong> Rogers pursues and captures <strong
class="enemy dead">Kruger</strong>, but he commits suicide and the <strong class="mcu">serum
gets destroy</strong>. Rogers has Carter and engineer <strong class="howard-stark">Howard
Stark</strong> fly him behind enemy lines to rescue
Barnes. Rogers infiltrates the fortress of Schmidt's Nazi division <em>Hydra</em>, freeing him and
the other prisoners. Rogers recruits Barnes, <strong class="secundary"> Dum Dum Dugan, Gabe Jones,
Jim Morita, James Montgomery Falsworth, and Jacques Dernier</strong> to attack other known Hydra
bases.
</p>
</section>
</article>
<article>
<h2>-1945-</h2>
<section class="captain-america-1 agents-of-shield-ii">
<p>
<strong class="peggy-carter">Peggy</strong> recovers from <strong class="enemy">Dr.
Whitehall</strong>
<strong>the first 084: The Obelisk.</strong> whit the help from <strong class="secundary">Dum Dum
Dungan</strong>.
</p>
<p><strong class="winter-soldier presumably-dead">Barnes</strong> falls from the train to his apparent
death. During the last fight, the Tesseract's container is
damaged. <strong class="enemy presumably-dead">Schmidt</strong> physically handles the Tesseract,
which opens a <strong>wormhole into space</strong>, sucking him into
it. The Tesseract burns through the plane and is lost in the ocean with <strong
class="captain-america presumably-dead">Rogers</strong>. <strong class="howard-stark">Howard
Stark</strong> later recovers the <strong class="tesseract">Tesseract</strong> from the
ocean floor.
</p>
</section>
</article>
<article>
<h2>-1946-</h2>
<section class="agent-carter-i">
<h1>MARVEL'S Agent Carter <em>(2015-2016)</em></h1>
<p><strong class="peggy-carter">Peggy Carter</strong> having to balance the routine for the
<em>Strategic Scientific Reserve (SSR)</em> in New York City with secretly assisting <strong
class="howard-stark">Howard Stark</strong>, who finds himself framed for supplying deadly
weapons <strong>(Midnight Oil)</strong> to enemies of the United States. <strong
class="enemy">Zola</strong> appears at the end to help <strong class="enemy">Johann
Fennhoff</strong> in prison. <strong class="dottie">Dottie</strong> I love you. Carter is
assisted by Stark's butler, <strong class="jarvis">Edwin Jarvis</strong>, to find those responsible
and dispose of the weapons. Peggy <strong class="mcu">throws to the ocean Steve's blood</strong>.
</p>
</section>
<section class="agent-carter-ii">
<p> Months later, Carter moves to Los Angeles to deal with the threats of
the <strong>new Atomic Age by the Secret Empire (Roxxon Industries) in the aftermath of World War II
Zero
Matter</strong> was found and destroyed. <strong class="secundary">Daniel Sousa</strong> becomes
Peggy's husband.
</p>
</section>
<section class="one-shot-agent-carter">
<h1>MARVEL One Shot - Agent Carter <em>(2013)</em></h1>
<p><strong class="peggy-carter">Peggy Carter</strong> gets a call from <strong
class="howard-stark">Howard Stark</strong> (<strong class="secundary">Dum Dum Dugan</strong> is
with him) to run <em>S.H.I.E.L.D.S.</em> in Washington. </p>
</section>
</article>
<article>
<h2>-1953-</h2>
<section class="captain-america-2">
<h1>Peggy Carter 1953 Smithsonian Interview <em>(2015)</em></h1>
<p><strong class="peggy-carter">Peggy Carter</strong> loved Captain America and also he saved her
husband in the war. </p>
</section>
</article>
<article>
<h2>-1955-</h2>
<section class="agents-of-shield-vii alternative">
<p>The Agents of SHIELD team save <strong class="secundary">Daniel Sousa</strong> from dying and bring
him to the team. They also prevent and catastrophic event from happening with Helius. They save
Sousa from HYDRA who knew that him knew about them</p>
</section>
</article>
<article>
<article>
<h2>-1973-</h2>
<section class="agents-of-shield-vii alternative">
<p>The Agents of SHIELD discovers that project Insight is happening sooner than expected, they
prevent it, <strong class="enemy dead">Wilfred Mallick</strong> is still alive but Deke kill him
</p>
</section>
</article>
<article>
<h2>-1974-</h2>
<section class="iron-man-2">
<p>Stark Expo 1974</p>
</section>
</article>
<article>
<h2>-1980-</h2>
<section class="guardians-of-the-galaxy-2">
<p><strong class="star-lord">Peter Quill</strong> is born: an hybrid form of a human and a
Celestial.
He was one of the billons childs from his father, <strong class="enemy">Ego</strong>.</p>
</section>
</article>
<article>
<h2>-1983-</h2>
<section class="agents-of-shield-vii alternative">
<p>The Agents of SHILED are in problem but they get to a solution and Deke stays behind to help the
rearreging of SHIELD as the new Director in this alternative world</p>
</section>
</article>
<article>
<h2>-1987-</h2>
<section class="ant-man-2">
<p><strong class="secundary">Janet van Dyne</strong>shrinks to sub-atomic levels to save the planet
from
a bomb.
</p>
</section>
</article>
<article>
<h2>-1988-</h2>
<section class="guardians-of-the-galaxy-1">
<p>Following his mother's death, <strong class="secundary dead">Meredith</strong>
a young <strong class="star-lord">Peter Quill</strong> is abducted from
Earth by a group of alien thieves and smugglers called <em>the Ravagers</em> led by <strong
class="enemy">Yondu Udonta</strong>.
</p>
</section>
</article>
<article>
<h2>-1989-</h2>
<section class="captain-marvel-1">
<p>
<strong class="captain-marvel presumably-dead">Carol Danvers</strong> dies in crash with <strong
class="secundary dead">Mar-Vell</strong> killed by <strong class="enemy">Yon-Rogg</strong>
who
kidnaps Carol with no memory.
</p>
</section>
<section class="ant-man-1">
<p>
Scientist <strong class="secundary">Hank Pym</strong> resigns from <em>S.H.I.E.L.D.</em> after
discovering their attempt to replicate his <strong>Ant-Man shrinking technology.</strong>
Believing
the technology would be dangerous if replicated, Pym vows to hide it for as long as he lives.
</p>
</section>
<section class="agents-of-shield-i">
<p>In the Hunan Province of China, an object of unknown origin (084), who appears to be baby <strong
class="skye">Skye</strong>, was found in a village which was destroyed: every man, woman,
and
child torn apart by monsters(<strong class="enemy">Cal</strong>) trying to find that baby.
Dr. Whitehall killed Skye's mother <strong class="jiaying presumably-dead">Jiaying</strong>
</p>
</section>
</article>
<article>
<h2>-1990-</h2>
<section class="agents-of-shield-i">
<p>Proyect Deathlok by <em>HYDRA</em> start with <strong class="enemy">Garret</strong> as the first
subject.
</p>
</section>
</article>
<article>
<h2>-1991-</h2>
<section class="daredevil-i">
<p>
Young <strong class="daredevil">Matt</strong> gets hit with a truck filled with hazardous waste
<strong>blinding him while
simultaneously enhancing his remaining senses to superhuman levels.</strong>
</p>
</section>
<section class="iron-fist-i">
<p>When <strong class="iron-fist">Danny Rand</strong> was a child, he and his parents were in a
plane
crash near the
Himalayan mountains. As the lone survivor, he was rescued by Buddhist monks and raised in
<em>K'un L'un</em>, a mystical city in a realm different than Earth.
</p>
</section>
<section class="captain-america-2 iron-man-1 captain-america-3">
<p>
On Long Island, <strong class="howard-stark dead">Howard Stark</strong> and <strong
class="secundary dead">María Stark</strong> died in a car accident, killed by
<em>HYDRA</em>'s
brainwashed <strong class="winter-soldier">Bucky</strong> send by <strong
class="enemy">Zola</strong>.
They had <strong class="mcu">a case of super-soldier serum. </strong>
</p>
</section>
</article>
<article>
<h2>-1992-</h2>
<section class="black-panther-1">
<p>
<em>The Wakandans</em> use the vibranium to develop advanced technology and isolate themselves
from
the world by posing as a Third World country. Wakanda's King <strong
class="secundary">T'Chaka</strong> visits his brother <strong
class="secundary dead">N'Jobu</strong>, who is working undercover in Oakland, California.
T'Chaka accuses N'Jobu of assisting black-market arms dealer <strong class="enemy">Ulysses
Klaue</strong> with stealing vibranium
from Wakanda. N'Jobu's partner reveals he is <strong class="secundary">Zuri</strong>, another
undercover Wakandan, and confirms T'Chaka's suspicions. As T'Chaka arrested N'Jobu, the latter
attacked Zuri and forced T'Chaka to kill him. T'Chaka ordered Zuri to lie that N'Jobu had
disappeared and left behind N'Jobu's American son to maintain the lie.
</p>
</section>
</article>
<article>
<h2>-1995-</h2>
<section class="captain-marvel-1">
<h1>Captain Marvel <em>(2019)</em></h1>
<p>
On the <em>Kree Empire</em>'s capital planet of Hala, <em>Starforce</em> member <strong
class="captain-marvel">Vers</strong> suffers from amnesia and recurring nightmares.
<strong class="enemy">Yon-Rogg</strong>, her mentor and commander, trains her to
control her abilities while the <strong class="enemy">Supreme Intelligence</strong>, the A.I.
that
rules the Kree, urges her to keep her emotions in check. Vers is captured by Skrull commander
<strong class="talos">Talos</strong>. Her fellows, <strong class="enemy">Korath</strong> as one
of
them, couldn't reach her.
</p>
<p>
Vers escapes and crash-lands in Los Angeles. Her presence
attracts <em>S.H.I.E.L.D.</em> agents <strong class="fury">Nick Fury</strong> and <strong
class="coulson">Phil Coulson</strong>, whose investigation is interrupted by a Skrull
attack. In
the <em>installation Project Pegasus</em> at a <em>U.S. Air Force</em> base. They discover Vers
was
a pilot presumed to have died in 1989 while testing an <strong>experimental light-speed
engine</strong> designed by <strong class="secundary">Dr. Wendy Lawson</strong>, whom Vers
recognizes as the woman from her nightmares. They escape with a cat named <strong
class="goose">Goose</strong>. They fly to Louisiana to meet former pilot <strong
class="maria-rambeau">Maria Rambeau</strong>, the last person to see Vers and Lawson alive.
Rambeau and her daughter <strong class="monica-rambeau">Monica</strong> reveal that Vers is
Carol
Danvers, who was once like family to them. Talos, arriving unarmed, explains that the Skrulls
are
refugees searching for a new home and that Lawson was Mar-Vell, a renegade Kree scientist
helping
them. Talos plays a recovered recording from Lawson's jet, prompting Danvers to remember the
crash:
Yon-Rogg killed Lawson to prevent her from stro before the Kree could recover it.
<strong>Destroying
the engine herself</strong>, Danvers <strong class="mcu">absorbed the energy from the
ensuing
explosion</strong>, <strong>gaining powers</strong> but losing her memory.
</p>
<p>
Danvers, Talos, Fury, and Rambeau locate Lawson's cloaked laboratory orbiting Earth, where
Lawson
hid several Skrulls,
including Talos' family, and the <strong class="tesseract">Tesseract</strong>, the <strong>power
source of
Lawson's engine</strong>. There, Danvers is captured by Starforce and interfaces with the
Supreme Intelligence. Danvers removes the <strong>Kree implant</strong> that suppressed her
powers
during their conversation, allowing her to reach her <strong>full potential</strong>. In the
subsequent battle, Fury retrieves Goose, who is revealed to be an <strong class="goose">alien
Flerken</strong>, he <strong>swallows the Tesseract</strong> and scratches Fury's eye.
Danvers
destroys a Kree bomber, forcing Kree officer <strong class="enemy">Ronan the Accuser</strong>
and
his squadron to retreat before overpowering Yon-Rogg on Earth and sending him back to Hala with
a
warning to the Supreme Intelligence. Danvers departs to help the Skrulls find a new homeworld,
leaving Fury a <strong class="mcu">modified pager to contact her in an emergency</strong>.
</p>
<p>
Meanwhile, Fury <strong class="mcu">drafts an initiative</strong> to locate heroes like Danvers,
naming
it after her Air Force call sign, <strong class="mcu">"Avenger".</strong> In another time and
alone,
Goose climbs onto Fury's desk and <strong class="mcu">regurgitates the</strong> <strong
class="tesseract">Tesseract</strong>.
</p>
</section>
<section class="black-widow-1">
<p>
Young <strong class="black-widow">Natasha Romanoff</strong> and <strong class="yelena">Yelena
Belova</strong> are whisked away by their surrogate parents, <strong
class="secundary">Alexei
Shostakov</strong>, originally Russia's Captain America known as the Red Guardian, and
former
Black Widow <strong class="secundary">Melina Vostokoff</strong> from their home in Ohio. As
their
mission ends, Romanoff and Belova are put through <em>the Red Room</em> for further training.
</p>
</section>
</article>
<article>
<h2>-1999-</h2>
<section class="iron-man-3">
<p>At a New Year's Eve party, <strong class="iron-man">Tony Stark</strong> meets scientist <strong
class="enemy">Maya Hansen</strong>, the inventor of an experimental regenerative treatment
named
<strong>Extremis</strong> that allows recovery from crippling injuries he also meets <strong
class="secundary">Yinsen</strong> a medic. Disabled scientist <strong class="enemy">Aldrich
Killian</strong> offers them a place in his company <em>Advanced Idea Mechanics</em>, but
Stark
rejects him.
</p>
</section>
<section class="agents-of-shield-i">
<p>Teen <strong class="ward">Grant Ward</strong> is taken out of prision by <em>HYDRA</em>'s <strong
class="enemy">Agent Grant</strong> undercover inside <em>S.H.I.E.L.D.</em> to work with him.
</p>
</section>
</article>
<article>
<h2>-2005-</h2>
<section class="hulk-1">
<p>
At Culver University in Virginia, <strong class="enemy">General Thaddeus "Thunderbolt"
Ross</strong>
meets with <strong class="hulk">Dr. Bruce Banner</strong>, the colleague and boyfriend of his
daughter <strong class="betty">Betty</strong>, regarding an experiment that Ross claims is meant
to
make humans <strong>immune to gamma radiation.</strong> The experiment <strong>—part of a World
War
II-era "super-soldier"—fails</strong>. The exposure to gamma radiation causes Banner to
<strong>transform </strong> into <strong class="hulk">the Hulk</strong> for brief periods of
time,
whenever his <strong>heart rate rises above 200 beats per minute</strong>. The Hulk destroys the
lab
and surrounding area, killing several people inside and injuring the General and Betty. Banner
becomes a fugitive from the <em>U.S. military</em> and Ross, who <strong>wants to
weaponize</strong> the Hulk.
</p>
</section>
<section class="daredevil-ii">
<p>
<strong class="daredevil">Matt Murdock</strong> met <strong class="elektra">Elektra
Natchios</strong>, the bored daughter of a wealthy Greek ambassador. The two bonded over
their
shared thrill-seeking nature and skills. When Natchios manipulated Murdock into confronting his
father's killer, hoping to have Murdock kill him, Murdock refused to do so, and Natchios left.
</p>
</section>
</article>
<article>
<h2>-2008-</h2>
<section class="iron-man-1">
<h1>Iron Man <em>(2008)</em></h1>
<p>
<strong class="iron-man">Tony Stark</strong>, who has inherited the defense contractor <em>Stark
Industries</em> from his father Howard Stark, is in war-torn Afghanistan with his friend and
military liaison, Lieutenant Colonel <strong class="war-machine">James Rhodes</strong>, to
demonstrate the new "Jericho" missile. After the demonstration, the convoy is ambushed and Stark
is
critically wounded by a missile used by the attackers: one of his company's own. He is captured
by a
terrorist group called the <em>Ten Rings</em>. <strong class="secundary">Yinsen</strong>, a
fellow
captive doctor, implants an <strong>electromagnet</strong> into Stark's chest to keep the
shrapnel
shards that wounded him from reaching his heart and killing him. Stark and Yinsen secretly build
a
small, powerful electric generator called an <strong>arc reactor</strong> to power Stark's
electromagnet and a <strong>prototype suit of powered armor</strong> to aid in their escape.
<strong class="secundary dead">Yinsen</strong> sacrifices himself to divert them while the suit
powers
up. The armored Stark battles his way out.
</p>
<p>
After being rescued by Rhodes, Stark returns
home (<strong class="jarvis">Jarvis</strong> is his robotic assitant) and announces that his
company
will <strong>cease manufacturing weapons</strong>. <strong class="enemy">Obadiah Stane</strong>,
his
father's old partner and the company's manager, advises Stark that this may ruin Stark
Industries
and his father's legacy. In his home workshop, Stark builds in secret a <strong>sleeker, more
powerful version of his improvised armor suit</strong> as well as a <strong>more powerful
arc
reactor</strong>. Personal assistant <strong class="pepper">Pepper Potts</strong> places the
original reactor inside a small glass showcase. <strong class="secundary">Happy</strong> is his
"bodyguard". At a charity event held by Stark Industries, reporter <strong
class="secundary">Christine Everhart</strong> informs Stark that his company's weapons were
<strong>double-selling</strong> to the Ten Rings. Potts meets with Agent <strong
class="coulson">Phil Coulson</strong> of <em>S.H.I.E.L.D.</em>, to inform him of Stane's
activities.
</p>
<p>
Stane ambushes Stark at his home and steals the arc reactor from his chest and also
exterminates the <em class="presumably dead">Ten Rings</em>. The last fight carries Stark
and Stane to the top of the Stark Industries building, and Stark instructs Potts to overload the
<strong>large
arc reactor</strong> powering the building killing him. The next day, at a press conference,
Stark defies suggestions from S.H.I.E.L.D. and publicly admits to being <strong
class="iron-man">"Iron Man"</strong>.
</p>
<p>
<strong class="fury">Nick Fury</strong> visits Stark at
home and explains that he wants to discuss the <em>"Avenger Initiative".</em>
</p>
</section>
</article>
<article>
<h2>-2009-</h2>
<section class="cloak-&-dagger-i">
<p>
<em>Roxxon</em>'s <strong>Gulf platform explodes</strong> killing <strong
class="dagger">Tandy</strong> 's
dad <strong class="secundary dead">Nathan Bowen</strong> and provoking the killing of <strong
class="cloak">Tyrone</strong> 's brother <strong class="secundary dead">Billy
Jonhson</strong> by the police of New Orleans. Tyrone and Tandy got powers from the energy
force
of the explosion when they went underwater. The people working in the platform suffered from
"The
Terrors" (they went batshitcrazy).
</p>
</section>
</article>
<article>
<h2>-2010-</h2>
<section class="iron-man-2">
<h1>Iron Man 2 <em>(2010)</em></h1>
<h5>Stark Expo 2010</h5>
<p>
In Russia <strong class="enemy">Ivan Vanko</strong>, whose father, <strong
class="enemy dead">Anton
Vanko</strong>, a former <em>Stark Industries</em> employee, has just died, begins building
a
<strong>miniature arc reactor</strong> similar to Stark's. Six months later, <strong
class="iron-man">Stark</strong> uses his Iron Man suit for peaceful means, resisting
government
pressure to <strong>sell his designs</strong>. Later, Stark learns that the <strong>palladium
core</strong> is slowly poisoning him, and he cannot find a substitute. Stark appoints his
personal assistant <strong class="pepper">Pepper Potts</strong> as <strong>CEO</strong> of Stark
Industries and hires Stark employee <strong class="black-widow">Natalie Rushman</strong> to
replace
her as his personal assistant. Stark competes in the Monaco Historic Grand Prix, where he
is attacked in the middle of the race by Vanko. Stark dons his armor and defeats Vanko.
</p>
<p>
Stark's rival, <strong class="enemy">Justin Hammer</strong>, fakes Vanko's death and asks him to
build a
line of <strong>armored suits</strong>. Stark's best friend, <strong class="war-machine">James
Rhodes</strong> confiscates <strong>one of the armors for the U.S. Air Force.</strong>
<strong class="fury">Nick Fury</strong>, director of <em>S.H.I.E.L.D.</em>, approaches Stark,
revealing
that "Rushman" is Agent <strong class="black-widow">Natasha Romanoff</strong> and that Howard
Stark
was a S.H.I.E.L.D. founder. Fury gives Stark some of his <strong>father's old material</strong>.
Tony discovers a hidden message, with the aid of his A.I., <strong
class="jarvis">J.A.R.V.I.S.</strong>, he <strong>synthesizes a new element, ending his
palladium
dependency</strong> (with the help of <strong>Captain America's shield xd</strong> ).
</p>
<p>
At the Expo, Hammer unveils Vanko's armored drones, led by Rhodes in a <strong>heavily
weaponized
version of the prototype armor</strong>. Stark arrives to warn Rhodes, but Vanko takes
remote
control of all the drones and Rhodes' armor and attacks Stark. Hammer soon gets arrested for
breaking Vanko out of prison while Romanoff and Stark's bodyguard Happy Hogan go after Vanko at
Hammer's factory. <strong class="enemy dead">Vanko</strong> commits suicide by blowing up his
suit,
along with the defeated drones.
</p>
<p>
At a debriefing, Fury informs Stark that because of his
difficult personality, S.H.I.E.L.D. intends to use him only as a <strong>consultant</strong>.
</p>
</section>
<section class="thor-1">
<h1>Thor <em>(2011)</em></h1>
<p>
<strong class="odin">Odin</strong> and <strong class="frigga">Frigga</strong>'s son <strong
class="thor">Thor</strong> prepares to ascend to
the throne of Asgard, but is interrupted when <em>Frost Giants</em> attempt to retrieve <strong
class="mcu">the Casket</strong>. Against Odin's order, Thor travels to Jotunheim to confront
<strong class="enemy">Laufey</strong>, accompanied by his brother <strong
class="loki">Loki</strong>, childhood friend <strong class="sif">Sif</strong> and the
<strong class="secundary">Warriors Three: Volstagg, Fandral, and Hogun</strong>. A battle ensues
until
Odin intervenes to save the Asgardians, destroying the fragile truce between the two races. Odin
strips his son of his godly power and exiles him to Earth as a mortal, accompanied by his
<strong>hammer Mjölnir</strong>, now protected by an enchantment that allows only the worthy to
wield it.
Thor lands in New Mexico, where astrophysicist <strong class="jane">Dr. Jane Foster</strong>,
her
assistant <strong class="darcy">Darcy Lewis</strong>, and mentor <strong class="secundary">Dr.
Erik
Selvig</strong> find him.
</p>
</section>
<section class="one-shot-a-funny-thing">
<h1>MARVEL One Shot: A Funny Thing Happened on the Way to Thor's Hammer <em>(2011)</em></h1>
<p>
<strong class="coulson">Agent Phil Coulson</strong> stops at a Roxxon Gas Station to fill up his
car
and two armed robbers enter the shop, he takes them both down.
<strong class="coulson">Phil Coulson</strong> reports the discovery of a <strong
class="mcu">large
hammer </strong> at the bottom of a crater in a desert in New Mexico.
</p>
</section>
<section class="thor-1">
<p>
<strong class="coulson">Coulson</strong> forcibly acquires <strong class="jane">Foster</strong>
's <strong>data about the
wormhole</strong>. Thor seeks to retrieve Mjolnir from the facility that
<em>S.H.I.E.L.D.</em>
has constructed defended by <strong class="hawkeye">Hawkeye</strong>, but he finds himself
unable to
lift it and is captured. With <strong class="secundary">Selvig</strong> 's help, he is freed and
resigns himself to exile on Earth as he develops a romance with Foster.
</p>
<p>
<strong class="loki">Loki</strong> discovers that he is <strong class="enemy">Laufey</strong>'s
biological son. Loki confronts <strong class="odin">Odin</strong>, who wearily falls into the
deep
<strong>"Odinsleep"</strong> to recover his strength. Loki takes the throne in Odin's stead and
offers Laufey the chance to kill Odin and retrieve the Casket. <strong class="sif">Sif</strong>
and
<strong class="secundary">the Warriors Three</strong>, convince <strong
class="heimdall">Heimdall</strong>, gatekeeper of the <strong class="mcu">Bifröst</strong>
—the
means of traveling between worlds—to allow them passage to Earth. Loki sends <strong
class="enemy">the Destroyer</strong> to pursue them and kill Thor. Thor proves himself
worthy by
his sacrifice in battle to wield Mjölnir. The hammer returns to him, restoring his powers and
enabling him to defeat <strong class="enemy dead">the Destroyer</strong>. Kissing Foster goodbye
and
vowing to return, he leaves with his fellow Asgardians to confront Loki.
</p>
<p>
Loki betrays and kills <strong class="enemy dead">Laufey</strong>, revealing his true plan to
use
Laufey's attempt on Odin's life as an excuse to destroy Jotunheim with the Bifröst Bridge, thus
proving himself worthy to his adoptive father. Thor arrives and fights Loki before destroying
the
<strong class="presumably-dead">Bifröst Bridge</strong> to stop Loki's plan, stranding himself
in
Asgard. Odin awakens and prevents the brothers from falling into the <strong>abyss</strong>
created
in the wake of the bridge's destruction, but <strong class="presumably-dead loki">Loki</strong>
apparently commits suicide by allowing himself to fall when Odin rejects his pleas for approval.
Thor makes amends with Odin, admitting he is not ready to be king; meanwhile, on Earth, Foster
and
her team search for a way to <strong> open a portal</strong> to Asgard.
</p>
<p>
Selvig is taken to a S.H.I.E.L.D. facility, where <strong class="fury">Nick Fury</strong> opens
a
briefcase and asks him to study a mysterious cube-shaped object,(<strong
class="tesseract">Tesseract</strong>) which Fury says may hold untold power. An invisible
<strong class="loki">Loki</strong> prompts <strong class="enemy">Selvig</strong> to agree, and
he
does.
</section>
</p>
<section class="hulk-1">
<h1>The Incredible Hulk <em>(2008)</em></h1>
<p>
<strong class="hulk">Banner</strong> works at a bottling factory in Brazil, while
<strong>searching
for a cure</strong>. He anonymously collaborates with a colleague known only as <strong
class="enemy">"Mr. Blue."</strong> He is learning Yoga techniques to help keep control.
<strong class="enemy">General Ross</strong> sends a special forces team, led by <strong
class="enemy">Emil Blonsky</strong>, to capture him. Banner transforms into the Hulk and
defeats
Blonsky's team. Blonsky agrees to be <strong>injected</strong> with a small amount of a similar
serum of Banner, which gives him <strong>enhanced speed, strength, agility, and healing</strong>
and
begins to <strong>deform his skeleton and impairs his judgment</strong>.
</p>
<p>
Banner returns to Culver University and reunites with <strong class="betty">Betty</strong>. He
is
attacked a
second time by Ross and Blonsky's forces. Banner contacts Mr. Blue, who urges them to meet him
in
New
York City. He is a cellular biologist named <strong class="enemy">Dr. Samuel Sterns</strong>,
who
tells Banner he has developed a possible antidote.. After a <strong>successful test</strong>, he
warns
Banner that the antidote may only reverse each transformation. Sterns reveals he has
<strong>synthesized Banner's blood samples</strong>, into a large supply, to apply its
<strong>"limitless potential"</strong>. Banner wishes to destroy the blood supply. A recovered
Blonsky joins Ross' forces for a third attempt to take Banner into custody. They succeed, and
Banner and Betty are taken away in a helicopter. Blonsky stays behind and orders <strong
class="enemy dead">Sterns</strong> to inject him with Banner's blood. The experiment mutates
Blonsky into <strong class="enemy">the Abomination</strong>. Banner convinces Ross to release
him.
The Hulk defeats the Abomination by nearly strangling him to death with a chain.
</p>
<p> A month later, he begins to <strong>transform in a controlled manner</strong> with a slight
smirk.
</p>
</section>
<section class="one-shot-the-consultant">
<h1>MARVEL One Shot: The Consultant <em>(2011)</em></h1>
<p><strong class="coulson">Phil Coulson</strong> informs <strong class="secundary">Jasper
Sitwell</strong> that the <em>World Security Council</em> wishes Emil Blonsky released from
prison to join <strong class="mcu">the Avengers Initiative</strong>. They order
<em>S.H.I.E.L.D.</em> to send an agent to ask General Thaddeus Ross to release Blonsky into
their custody. The two agents decide to send <strong class="iron-man">Tony Stark</strong> to
sabotage the meeting, so Ross will refuse to release Blonsky.
Later they succeed, <strong class="iron-man">Tony Stark</strong> approaches Ross at a local bar
and informs him that a <strong class="mcu">team is being put together</strong>.
</p>
</section>
</article>
<article>
<h2>-2011-</h2>
<section class="captain-america-1">
<p>
<strong class="captain-america">Captain America</strong> is found. <em>S.H.I.E.L.D.</em>
director
<strong class="fury">Nick Fury</strong> informs him that he has been <strong>"asleep" for nearly
70
years.</strong>
</p>
</section>
</article>
<article>
<h2>-2012-</h2>
<section class="avengers-1">
<h1>The Avengers <em>(2012)</em></h1>
<p><strong class="loki">Loki</strong> encounters <strong class="enemy">the Other</strong>, leader of
the <em>Chitauri</em>. In exchange for the Tesseract, the Other promises Loki an army.
<strong class="fury">Nick Fury</strong>, director of <em>S.H.I.E.L.D.</em>, and his lieutenant
<strong class="maria-hill">Agent Maria Hill</strong> arrive at a remote research facility during
an
evacuation, where physicist <strong class="secundary">Dr. Erik Selvig</strong> is experimenting
on
the <strong class="tesseract">Tesseract</strong>, <strong class="hawkeye">Clint Barton</strong>
watches
from above. <strong class="coulson">Phil Coulson</strong> says that the object has <strong
class="mcu">begun radiating an unusual form of energy</strong>. The Tesseract <strong
class="mcu">suddenly activates</strong> and opens a wormhole, allowing Loki to reach Earth.
He
<strong class="mcu">takes the Tesseract</strong> and uses his <strong>scepter</strong> to
enslave
<strong class="enemy">Selvig</strong> and <strong class="enemy">Clint Barton</strong>.
</p>
<p> Fury reactivates the <strong class="mcu">"Avengers Initiative"</strong>. Agent <strong
class="black-widow">Natasha Romanoff</strong> heads to Kolkata to recruit <strong
class="hulk">Dr. Bruce Banner</strong> to trace the Tesseract through its <strong>gamma
radiation emissions</strong>. Coulson visits <strong class="iron-man">Tony Stark</strong> to
have him check Selvig's research, and Fury approaches <strong class="captain-america">Steve
Rogers</strong> with an assignment to retrieve the Tesseract.
In Stuttgart, Barton steals <strong>iridium needed to stabilize the Tesseract's power</strong>
while
Loki causes a distraction, leading to a brief confrontation with Rogers, Stark, and Romanoff
that
ends with <strong>Loki's surrender</strong>. While Loki gets escorted to S.H.I.E.L.D., <strong
class="thor">Thor</strong>, arrives and frees him, hoping to convince him to abandon his
plan
and return to Asgard, he agrees to take Loki to S.H.I.E.L.D.'s <strong>the Helicarrier</strong>.
</p>
<p>
Upon arrival, Loki gets imprisoned while Banner and Stark attempt to locate the Tesseract. The
Avengers become divided, both over how to approach Loki and the revelation that S.H.I.E.L.D.
<strong>plans to harness the Tesseract to develop weapons as a deterrent against hostile
extraterrestrials.</strong> As the group argues, Barton and Loki's other possessed agents
attack
the Helicarrier, disabling one of its engines in flight and causing Banner to transform into
<strong class="hulk">the Hulk</strong>. Romanoff reluctantly fights <strong
class="hawkeye">Barton</strong>, and <strong>knocks him unconscious, breaking Loki's mind
control.</strong> Loki escapes after killing <strong
class="coulson presumably-dead">Coulson</strong> and ejecting Thor from the airship, while
the
Hulk falls to the ground after attacking a fighter jet. Fury <strong>uses Coulson's death to
motivate</strong> the Avengers into working as a team.
</p>
<p>
Loki uses the <strong lass="mcu">Tesseract, and a wormhole generator</strong> Selvig built, to
open
a wormhole above Stark Tower to the <strong>Chitauri fleet</strong> in space, launching his
invasion.
Rogers, Stark, Romanoff, Barton, and Thor rally in defense of New York City. Banner arrives and
transforms into the Hulk, and together the Avengers battle the Chitauri while evacuating
civilians.
The Hulk <strong>beats Loki into submission</strong>. Romanoff makes her way to the generator,
where
<strong class="secundary">Selvig</strong>, freed from Loki's mind control, reveals that Loki's
scepter can shut down the generator. Meanwhile, Fury's superiors from the <em>World Security
Council</em> attempt to end the invasion by <strong>launching a nuclear missile.</strong>
Stark
<strong>intercepts the missile and takes it through the wormhole</strong> toward the Chitauri
fleet.
The <strong>missile detonates, destroying the Chitauri mothership and disabling their forces
</strong> on Earth. Stark's suit loses power, and he falls back through the wormhole just as
Romanoff <strong class="mcu">closes it.</strong>
</p>
<p>
In the aftermath, Thor <strong class="mcu">returns
Loki and the</strong> <strong class="tesseract">Tesseract</strong><strong class="mcu">to
Asgard</strong>, while Fury expresses confidence that the Avengers
will return if needed.
The Other confers with his master(<strong class="boss">Thanos</strong>) about the failed attack
on
Earth.
</p>
</section>
<section class="one-shot-item-47">
<h1>MARVEL One Shot: Item 47 <em>(2012)</em></h1>
<p><strong class="enemy">Bennie and Claire</strong>, a down-on-their-luck couple, find a
<strong>discarded Chitauri gun</strong> left over from the attack on New York City and want to
rob a
bank with it.
</p>
</section>
<section class="spider-man-1">
<p>
<strong class="iron-man">Tony Stark</strong> and the federal government orders the <em>United
States
Department of Damage Control</em> to clean the aftermath of the battle, driving salvage
company
owner <strong class="enemy">Adrian Toomes</strong> out of business. Toomes convinces his crew to
not
surrender the <strong>Chitauri technology</strong> already scavenged from the battle and use it
to
further a criminal agenda.
</p>
</section>
<section class="agents-of-shield-i">
<h1>Agents Of S.H.I.E.L.D. <em>( Season 1: e01-e07 / 2013)</em></h1>
<p>
<strong class="maria-hill">Maria Hill</strong>: S.H.I.E.L.D. deputy director, <strong
class="coulson">Phil Coulson</strong>:
high-ranking member, <strong class="may">Melinda May</strong>: the
cavalry, <strong class="ward">Grant Ward</strong>: an experienced solo-working agent, <strong
class="skye">Skye</strong>: member of the hacktivist group the
<em>Rising Tide</em>, <strong class="secundary">Leo Fitz</strong>: rocket scientist, <strong
class="secundary">Jemma Simmons</strong>: bio-scientist, <strong class="secundary">Mike
Peterson</strong>: a father.
</p>
<p>
Coulson, who is officially dead, creates an amateur team of agents. They have a
<strong>modified Boeing C-17 Globemaster III nicknamed the Bus.</strong>
</p>
<p>
<strong>Recovery Missions:</strong> Chitauri Neural Link, Tesseract-powerlike laser,
Gravitonium,
Chitauri Virus, Overkill device.
</p>
<p>
<strong>Enemies:</strong> Centipide Organization: Dr. Erskine druglike supersoldiers.
</p>
<p>
<strong>Secondary appearences:</strong> <strong class="fury">Nick Fury</strong>, <strong
class="secundary">Jasper Sitwell</strong>(high-ranking S.H.I.E.L.D. agent), <strong
class="victoria-hand">Victoria
Hand</strong>(S.H.I.E.L.D. base's director).
</p>
<p>
<strong>Places: </strong> <em>Slingshot</em> (a ruse: destroys objects launching them into the
sun
inside a rocket), <em>Sandbox</em> (handling and study of hazardous materials.), <em>The
Hub</em>
(one of three S.H.I.E.L.D.'s headquarters, provider of back-end support).
</p>
</section>
</article>
<article>
<h2>-2013-</h2>
<section class="iron-man-3">
<h1>Iron Man 3 <em>(2013)</em></h1>
<p><strong class="iron-man">Stark</strong> is suffering from PTSD and is having anxiety attacks due
to
his experiences during the alien invasion. Restless, he has built <strong>42 new Iron Man
suits</strong> to cope with his insomnia, creating friction with his girlfriend <strong
class="pepper">Pepper Potts</strong>. A string of bombings claimed by a terrorist known as
<strong class="enemy">the Mandarin </strong> has left intelligence agencies bewildered by a lack
of
forensic evidence. Stark's security chief <strong class="secundary">Happy Hogan</strong> is
badly
injured in one such attack and is put into a coma, prompting Stark to boldly issue a televised
threat to the Mandarin, revealing his home address in the process. The Mandarin sends gunship
helicopters to destroy Stark's home. <strong class="enemy">Maya Hansen</strong>, who came to
warn
Stark, survives the attack with Potts.
</p>
<p>
Stark escapes in an experimental new Iron Man suit, which his
artificial intelligence <strong class="jarvis">J.A.R.V.I.S.</strong> pilots to rural Tennessee,
following a flight plan from Stark's investigation into the Mandarin. Stark's new armor is not
fully
functional and lacks sufficient power to return to California, leaving the world to believe him
dead.
Stark investigates the remains of a local explosion bearing the hallmarks of a Mandarin attack.
He
discovers the "bombings" were triggered by soldiers subjected to <strong>Extremis whose bodies
explosively rejected the treatment</strong>. These explosions were falsely attributed to a
terrorist plot in order to cover up Extremis's flaws. <strong class="enemy">Killian</strong>
resurfaces and kidnaps Potts with assistance from Hansen. American intelligence agencies
continue to
search for the Mandarin's location, with <strong class="war-machine">James Rhodes</strong> —the
former War Machine, now re-branded as the <strong class="war-machine">Iron Patriot</strong>
—lured
into a trap to steal his Iron-Man-like armor.
</p>
<p>
Stark traces <strong class="secundary">the Mandarin</strong> and discovers that he is an English
actor named <strong class="secundary">Trevor Slattery</strong>. Killian, who appropriated
Hansen's
Extremis research as a cure for his own disability and expanded the program to include injured
war
veterans, reveals he is the real Mandarin. After capturing Stark, Killian reveals he has
subjected
Potts to Extremis in the hope Stark will help fix Extremis's flaws while trying to save her.
When
<strong class="secundary dead">Hansen</strong> betrays Killian by threatening to jeopardize his
operations, Killian kills her.
Stark escapes and reunites with Rhodes, discovering that Killian intends to attack <strong
class="secundary">President Ellis</strong>.
</p>
<p>
They trace Killian to an impounded damaged oil
tanker where Killian intends to kill Ellis on live television. The <strong
class="secundary">Vice
President</strong> will become a puppet leader, following Killian's orders, in exchange for
Extremis to cure his young daughter's disability. On the platform, Stark works to save Potts, as
Rhodes goes after the President. Stark <strong>summons his remaining Iron Man suits</strong>,
controlled remotely by J.A.R.V.I.S., to provide air support. <strong
class="pepper presumably-dead">Potts</strong> falls to the platform below, causing Stark to
believe her dead. Stark fights Killian, but finds himself cornered. <strong
class="pepper">Potts</strong>, whose Extremis powers allowed her to survive her fall,
intervenes
and kills Killian to save Stark. As a sign of his devotion to Potts, Stark orders J.A.R.V.I.S.
to
<strong> remotely destroy all the Iron Man suits</strong>.
</p>
<p>
The Vice President is arrested, and Happy
awakens from his coma. With Stark's help, Potts's <strong>Extremis effects are
stabilized</strong>;
and Stark promises to scale back his life as Iron Man, undergoing <strong>surgery to remove the
shrapnel</strong> near his heart and throwing his <strong>obsolete chest arc reactor into
the
sea</strong>. He muses that, even without the technology, he will always be <strong
class="iron-man">Iron Man</strong>.
</p>
<p>
Tony is telling all that happened to <strong class="hulk">Bruce</strong> who wakes up without
even
heard the story.
</p>
</section>
<section class="thor-2">
<h1>Thor: The Dark World <em>(2013)</em></h1>
<p>
In Asgard, <strong class="loki">Loki</strong> stands imprisoned for his war crimes on Earth.
Meanwhile, <strong class="thor">Thor</strong>, alongside warriors <strong
class="secundary">Fandral,
Volstagg,</strong> and <strong class="sif">Sif</strong>, wins the final battle in a war to
pacify the Nine Realms following the <strong>reconstruction of the Bifröst</strong>. They learn
that
<strong>the Convergence</strong>, a rare alignment of the Nine Realms, is imminent; as the event
approaches, portals linking the worlds appear at random.
</p>
<p>
In London, <strong class="jane">Jane Foster</strong> and her intern <strong class="darcy">Darcy
Lewis</strong> travel to an abandoned factory where such portals have appeared, Foster is
teleported to another world, she absorbs <strong class="aether">the Aether</strong>.
<strong class="heimdall">Heimdall</strong> alerts Thor that Foster has moved beyond his near
all-seeing vision, leading Thor to find Foster, she inadvertently releases an <strong>unearthly
force</strong>, and Thor returns with her to Asgard. <strong class="odin">Odin</strong>,
recognizing the Aether, warns that the Aether will not only kill Foster but that its return
heralds
a catastrophic prophecy.
<strong class="enemy">Malekith</strong>, awakened by the Aether's release, turns <strong
class="enemy">Algrim</strong> into a <strong class="enemy">Kursed</strong> and attacks
Asgard.