Spaces:
Running
Running
File size: 140,033 Bytes
4b630e2 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 |
<head data-webtasks-id="f26f8c40-0deb-40b9">
<meta charset="utf-8" data-webtasks-id="b749291a-2fd6-48e5">
<title data-webtasks-id="5535071c-470d-4f11">The Many Secret Invasions the Skrulls Have Attempted In Marvel History | Fandom</title>
<meta http-equiv="x-ua-compatible" content="ie=edge" data-webtasks-id="0300ed7a-d476-455d">
<meta name="viewport" content="width=device-width, initial-scale=1" data-webtasks-id="631bd4a4-6f3b-4040">
<link rel="apple-touch-icon" sizes="180x180" href="https://www.fandom.com/f2/assets/favicons/apple-touch-icon.png?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" data-webtasks-id="480b74bf-ebca-4f4c">
<link rel="icon" type="image/png" href="https://www.fandom.com/f2/assets/favicons/favicon-32x32.png?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" sizes="32x32" data-webtasks-id="faf610ca-f830-4a76">
<link rel="icon" type="image/png" href="https://www.fandom.com/f2/assets/favicons/favicon-16x16.png?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" sizes="16x16" data-webtasks-id="bc67219b-b312-4c9b">
<link rel="manifest" href="https://www.fandom.com/f2/assets/favicons/manifest.json?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" data-webtasks-id="b1033fba-cafa-4ca8">
<link rel="shortcut icon" href="https://www.fandom.com/f2/assets/favicons/favicon.ico?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" data-webtasks-id="2559d892-d84c-43d3">
<meta name="msapplication-config" content="https://www.fandom.com/f2/assets/favicons/browserconfig.xml?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" data-webtasks-id="45368998-d844-4ca9">
<meta name="apple-mobile-web-app-title" content="Fandom" data-webtasks-id="5ca95d15-a91b-400d">
<meta name="application-name" content="Fandom" data-webtasks-id="22a05cc0-9d08-4ff6">
<meta name="theme-color" content="#ffffff" data-webtasks-id="cd708e4e-8473-40b4">
<meta name="google-site-verification" content="gpjDSKft3IX1rWylaTa_VAAgbn0SoAbo2VWfrqTxeB8" data-webtasks-id="5d26d548-ebb7-4b90">
<script type="text/javascript" integrity="sha384-7x9NaHX3HxCUYCmCnbfq2CSxglcaiO7vhMln0q050owSIgqOj8bI4xWsWkxZ1nyn" crossorigin="anonymous" async="" src="https://cdn.amplitude.com/libs/marketing-analytics-browser-gtm-0.8.0-min.js.gz" data-webtasks-id="ff5096c2-e3af-4a62"></script><script async="" src="//cdn.petametrics.com/l9ehhrb6mtv75bp2.js?ts=468922" data-webtasks-id="e66b5e5f-ee55-49a0"></script><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-TSCX7VD&l=dataLayer" data-webtasks-id="3ae8b2e8-d1fc-4efd"></script><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-K3C2HJ2&l=dataLayer" data-webtasks-id="ffe72544-3f0c-4edd"></script><script type="text/javascript" async="" src="https://cdn.jsdelivr.net/npm/@amplitude/amplitude-js-gtm@3.3.0/dist/index.js" data-webtasks-id="3de0b700-6808-47a8"></script><script id="twitter-wjs" src="https://platform.twitter.com/widgets.js" data-webtasks-id="0bbc1b51-7219-48f7"></script><script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-5LPWXZP" data-webtasks-id="8bf9ce11-d5e1-4844"></script><script data-webtasks-id="78ae1e3c-167f-4d44"> window.fandom = {"ads":{"adStack":[],"runtime":[]},"config":{"environment":{"debug":false,"env":"prod","locale":"en","siteType":"web"},"assetPath":"https:\/\/www.fandom.com\/f2\/assets","tracking":{"googleAnalytics":{"accounts":{"production":[{"id":"UA-71552437-1","name":"fandomProd","sampleRate":100},{"id":"UA-32129070-1","name":"wikiSampledProd","sampleRate":100},{"id":"UA-32132943-1","name":"wikiUnsampledProd","sampleRate":100}],"development":[{"id":"UA-71552437-2","name":"fandomDev","sampleRate":100},{"id":"UA-32129070-2","name":"wikiSampledDev","sampleRate":100},{"id":"UA-32132943-2","name":"wikiUnsampledDev","sampleRate":100}]}},"dataWarehouse":{"routes":{"adRenderEndedEvent":"https:\/\/beacon.wikia-services.com\/__track\/special\/adengadinfo","adPageInfoPropEvent":"https:\/\/beacon.wikia-services.com\/__track\/special\/adengpageinfo_props","adVideoEvent":"https:\/\/beacon.wikia-services.com\/__track\/special\/adengplayerinfo","adViewabilityEvent":"https:\/\/beacon.wikia-services.com\/__track\/special\/adengviewability","event":"https:\/\/beacon.wikia-services.com\/__track\/special\/trackingevent","videoEvent":"https:\/\/beacon.wikia-services.com\/__track\/special\/videoplayerevent","pageView":"https:\/\/beacon.wikia-services.com\/__track\/view","performanceMonitoring":"https:\/\/beacon.wikia-services.com\/__track\/special\/performance_metrics","identityInfo":"https:\/\/beacon.wikia-services.com\/__track\/special\/identityinfo"},"wikiId":1452001},"simpleReach":{"pid":{"production":"58eea050736b792e840016ba","development":"000000000000000000000000"}},"samplingFactor":{"performanceMonitoring":10}},"dsSpriteFile":"sprite.svg","cookieDomain":".fandom.com"},"endpoints":{"getVideoPlaylist":"https:\/\/www.fandom.com\/f2\/api\/public\/video\/playlist-for-id","getKibanaLog":"https:\/\/www.fandom.com\/f2\/api\/debug"},"pageType":"article","user":{"region":"united-kingdom"},"regions":{"AU":"australia","UK":"united-kingdom","US":"united-states"},"comscore":{"id":"6177433","keyword":"movies","url":"https%3A%2F%2Fwww.fandom.com%2Farticles%2Fsecret-invasion-skrulls-marvel-history%3Fcomscorekw%3Dmovies"},"quantcastUrl":"https:\/\/secure.quantserve.com\/quant.js","article":{"featuredImage":"https:\/\/static.wikia.nocookie.net\/5a0f7cbf-b60b-45b5-8be9-ce6c1b432b94\/scale-to-width-down\/550","id":1595309,"slug":"secret-invasion-skrulls-marvel-history","tags":["Disney","Disney Plus","Marvel","Marvel Cinematic Universe","MCU","Secret Invasion","Skrulls","Streaming","TV"],"topics":[{"id":"86","name":"MCU","topicSlug":"mcu","pinned":false},{"id":"34","name":"Marvel","topicSlug":"marvel","pinned":false},{"id":"48","name":"Streaming","topicSlug":"streaming","pinned":false},{"id":"50","name":"TV","topicSlug":"tv","pinned":false}],"topicNames":["MCU","Marvel","Streaming","TV"],"publishedTime":"2023-06-23T19:13:36+00:00","authorName":"Blair Marnell","isArticlePlus":false,"contentId":138814},"feed":{"hotContentModuleUrl":"https:\/\/www.fandom.com\/f2\/api\/public\/hot-content-module?region=united-kingdom"},"disableJwplayer":null}; </script>
<link rel="canonical" href="https://www.fandom.com/articles/secret-invasion-skrulls-marvel-history" data-webtasks-id="bfc255b3-3a01-48f5">
<meta name="parsely-metadata" content="{"postID":1595309,"authorType":"Staff","isVideo":false,"postType":"post","userID":46773010}" data-webtasks-id="b2ee52b0-cbbf-4c55">
<script type="application/ld+json" data-webtasks-id="bd796c5b-e77d-4b1e">[{"@context":"http://schema.org","@type":"NewsArticle","author":"Blair Marnell","dateModified":"2023-06-23T19:13:36+00:00","datePublished":"2023-06-23T19:13:36+00:00","headline":"The Many Secret Invasions the Skrulls Have Attempted In Marvel History","image":"https://static.wikia.nocookie.net/5a0f7cbf-b60b-45b5-8be9-ce6c1b432b94/scale-to-width-down/1000","keywords":["MCU","Marvel","Streaming","TV","Disney","Disney Plus","Marvel","Marvel Cinematic Universe","MCU","Secret Invasion","Skrulls","Streaming","TV","topic-mcu","topic-marvel","topic-streaming","topic-tv"],"name":"The Many Secret Invasions the Skrulls Have Attempted In Marvel History","publisher":{"@type":"Organization","name":"FANDOM","logo":{"@type":"ImageObject","url":"https://static.wikia.nocookie.net/fa525fd0-cb27-439f-8334-6121da20a706"}},"thumbnailUrl":"https://static.wikia.nocookie.net/5a0f7cbf-b60b-45b5-8be9-ce6c1b432b94/scale-to-width-down/400","url":"https://www.fandom.com/articles/secret-invasion-skrulls-marvel-history","articleSection":"articles","wordCount":1687,"creator":"Blair Marnell","dateCreated":"2023-06-23T19:13:36+00:00","articleBody":"Since the early days of the Marvel Universe, shape-shifting alien Skrulls have proven to be a formidable threat to the heroes of Earth. The Skrulls are far from the only aliens to invade in the six decades since their debut, however, they have come closer than most to total victory thanks to their ability to make everyone question if anyone can be trusted. Captain Marvel introduced the Skrulls to the Marvel Cinematic Universe in a more sympathetic light by presenting them as refugees who were being persecuted and hunted by the Kree. Unfortunately for the MCU, many Skrulls are done playing nice in Secret Invasion, the new original series on Disney+. It’s been nearly three decades since Captain Marvel promised to help the Skrulls find a new home, and the younger generation of Skrulls is particularly angry that Carol Danvers was unable to fulfill her promise. Now, Nick Fury (Samuel L. Jackson) will have to repel the invasion without the aid of the Avengers. With Secret Invasion having made its debut, we’re taking a look back at the Skrulls’ previous invasion attempts across the Marvel Universe. Given the many appearances of the Skrulls, we’re not trying to list every single plan ever, but it does illustrate just how far the Skrulls are willing to go to make Earth their new home. First Encounter The Skrulls’ first appearance was in Fantastic Four #2, as the newly formed team of Mr. Fantastic, Invisible Girl, The Thing, and the Human Torch found themselves targeted by Skrull agents who impersonated them in public. Since the Fantastic Four were the first superhuman heroes to emerge in years, the Skrulls decided that the FF presented too great of a threat to their invasion plans. Naturally, the Fantastic Four proved that the Skrulls’ fears were correct when they quickly subdued their imposters.The team took things even further by impersonating the Skrull agents before traveling to their mothership in orbit, where they fooled the Skrull commander into believing that Earth could easily defeat the Skrulls. That scared off the Skrulls while the four Skrull spies were brainwashed into believing that they were cows and left to graze in a field alongside actual cows. This all caused some serious problems years later when the Skrull cows were slaughtered and eaten. People who consumed the Skrull cow meat gained limited morphing abilities and a fatal brain affliction in the offbeat series Skrull Kill Krew. Unfortunately for the people of Earth, the Skrulls weren’t fooled for long by Mr. Fantastic’s plan. Months later, the Skrulls unleashed a Super-Skrull who could manifest the powers of all four of the FF. And the Fantastic Four has had to battle the Skrulls several times over the years to keep them at bay. The Kree-Skrull War As much as the Skrulls were at conflict with humanity, they had an even greater and ancient enemy in the Kree. In the seminal Avengers storyline, The Kree-Skrull War, it was revealed that the Skrulls were once a more benevolent race who offered two other races, the Cotati and the Kree, the chance to compete for the Skrulls’ favor. When the Cotati were declared the winners, the Kree slaughtered both the Skrulls and the Cotati and stole the Skrulls’ technology for themselves. In the present, the Skrulls had infiltrated Earth once again and sowed mistrust of the superheroes and the Avengers in particular. The Skrulls even briefly fooled the Avengers into disbanding. As the conflict grew in scope, the Avengers actually had to travel to space to bring the war to a halt. And this led to the Avengers’ ally, Rick Jones, accessing previously unrevealed powers which he used to briefly recreate Marvel’s Golden Age heroes to turn the tide of battle. Mr. Fantastic, Iron Man, Black Bolt, Namor, Professor Charles Xavier, and Doctor Strange came together in the aftermath of the invasion and formed the Illuminati. They even traveled to the Skrull homeworld in an attempt to warn them against any future moves against Earth. This spectacularly backfired when they were all captured and then allowed to escape… after the Skrulls had more than enough information to eventually hide undetected on Earth. Skrull Cap Years later, a handful of Skrulls came up with a plan to use Captain America to pit humanity against itself. The Skrulls correctly realized that Cap was perhaps the most widely-trusted superhero in the world, and they took steps to bolster his reputation before capturing Steve Rogers and impersonating him. This allowed a Skrull Cap to go on live television and expose two of his companions as Skrulls in order to whip up a dangerous wave of paranoia. The Skrull Cap convinced the public that the Skrulls had infiltrated all walks of life, which led to riots and violent attacks between neighbors, friends, and even family members. Thanks to an assist from the Avengers and the Fantastic Four, Steve Rogers was eventually able to expose his doppelganger and defuse the threat. But this was just a prelude to further invasions. Minions of Apocalypse The Skrulls pulled off another hero swap when they ambushed the X-Men while they were on their way back to Earth, and the Skrulls replaced Wolverine with an imposter. This time, the Skrulls were acting on behalf of Apocalypse, the X-Men’s immortal foe. And one of the reasons why the X-Men fell for the deception is that the Skrull Wolverine really believed that he was the original article. Skrull Wolverine actually died heroically while fighting the real Wolverine, who had been brainwashed into becoming one of Apocalypse’s horsemen. During this time, the X-Men found that they had unexpected allies in the form of mutant Skrulls who were outcasts from their own people. At the conclusion of the battle, Professor X decided to leave Earth with the mutant Skrulls, whom he renamed Cadre K. But while the Skrulls were only minions in this story, their larger agenda loomed in the future. The Original Secret Invasion In the aftermath of the superhero Civil War, the New Avengers stumbled upon an invasion plot when Elektra was killed and revealed to have been replaced by a Skrull. The two rival teams of Avengers were already at each other’s throats, and this did little to heal the divisions between them. Unbeknownst to the heroes, Spider-Woman/Jessica Drew had already been replaced by the Skrull leader, Princess Veranke, and she nearly led the Skrulls to victory, as even more superheroes were revealed to have been replaced by Skrulls along the way. The Skrulls successfully kidnapped other heroes and replaced them in order to sow confusion when the actual invasion began. It took an unlikely alliance of heroes and villains to defeat the Skrulls, but it left the heroes vulnerable to the Dark Reign of Norman Osborn and his Cabal. Secret Invasion Take 2 Last year, Marvel published a new Secret Invasion miniseries which revealed that two different Skrull factions had set up on Earth. One of the factions was following in Vernake’s footsteps and attempting another invasion. However, the other Skrull faction aligned with humanity and even convinced Tony Stark to move past his hatred for the Skrulls and work with them. It took a lot more effort to get Maria Hill on board with this plan, but there are now Skrull agents on Earth who are actively working with the Avengers to protect humanity while making a new home for themselves. Animated Invasion The Avengers: Earth’s Mightiest Heroes animated series offered the first real adaptation of Secret Invasion, which played out over 13 episodes from the end of Season 1 to the middle of Season 2. As one of the twists, Captain America was captured and replaced by the Skrulls in the first season finale, which kept the imposter on the team for an extended period. The real Cap eventually staged an escape from Skrull custody alongside heroes and villains like Invisible Woman, Mockingbird, Madame Hydra, and King Cobra. Although the Secret Invasion storyline came to a conclusion, Captain America felt the lingering effects of the Skrull deception because the general public no longer trusted him. It was a surprisingly sharp way to maintain the impact of that story. Fury Stands Alone There are spoilers ahead for the first episode of Secret Invasion! The last time anyone saw Nick Fury, at the end of Spider-Man: Far From Home, it looked like he was simply enjoying an extended vacation in space on a Skrull starship. But the vacation is over in Secret Invasion. So far, we know that the younger generation of Skrulls have rebelled against their elders, and Gravik (Kingsley Ben-Adir) is poised to lead his people to victory over humanity. And one of Gravik’s most loyal followers is G’iah (Emilia Clarke), the daughter of Fury’s Skrull ally and friend, Talos (Ben Mendelsohn). Fury has been offworld building a new planetary defense organization called S.A.B.E.R., as also seen in the first trailer for The Marvels. It was also revealed that Fury knew Gravik personally when he was a younger Skrull, and that the rebel leader is apparently responsible for the death of Talos’ wife (and G’iah’s mother), Soren (Sharon Blynn). More alarmingly, the series premiere showed viewers that Everett K. Ross (Martin Freeman) was replaced by a Skrull, and it’s unclear what happened to the real Ross. Apparently Gravik’s Skrulls do keep some human prisoners alive, but Ross wasn’t seen among the captives we’ve seen. Assuming we’re able to take James “Rhodey” Rhodes/War Machine (Don Cheadle) at face value, both Fury and Maria Hill (Cobie Smulders) went AWOL from S.A.B.E.R. without sharing any warnings about the Skrull threat. This may have marked them as enemies of the U.S. government. And in the shocking final moments, Gravik assumed Fury’s form and got Hill to drop her guard before shooting her, possibly fatally injuring her in the process. We’ll see what happens next and how far the Skrulls’ mission goes, as Secret Invasion‘s season continues. "}]</script>
<meta property="og:locale" content="en_US" data-webtasks-id="4cf31c99-559c-42c9">
<meta property="og:type" content="article" data-webtasks-id="8de111d4-1664-433d">
<meta property="og:title" content="The Many Secret Invasions the Skrulls Have Attempted In Marvel History" data-webtasks-id="3a9027cc-f554-4df4">
<meta property="og:description" content="The new Disney+ series is based on a Marvel Comics storyline, but the Skrulls have used their shapeshifting abilities to secretly invade many times." data-webtasks-id="30d9ba7a-f801-4aa7">
<meta name="description" content="The new Disney+ series is based on a Marvel Comics storyline, but the Skrulls have used their shapeshifting abilities to secretly invade many times." data-webtasks-id="e873c41a-fd40-4e32">
<meta property="og:url" content="https://www.fandom.com/articles/secret-invasion-skrulls-marvel-history" data-webtasks-id="610f3600-8b2c-491e">
<meta property="og:site_name" content="Fandom" data-webtasks-id="867e3fa8-adad-4608">
<meta property="og:image" content="https://static.wikia.nocookie.net/5a0f7cbf-b60b-45b5-8be9-ce6c1b432b94/thumbnail-down/width/1280/height/720" data-webtasks-id="da7d9e17-4fdc-4192">
<meta property="og:image:width" content="1280" data-webtasks-id="0a5ff46c-8d29-4bf7">
<meta property="og:image:height" content="720" data-webtasks-id="f4b670c5-85fd-4b06">
<meta property="article:publisher" content="https://www.facebook.com/getfandom" data-webtasks-id="73879dcf-5713-47ef">
<meta property="article:tag" content="MCU" data-webtasks-id="d91840a4-6950-4316">
<meta property="article:tag" content="Marvel" data-webtasks-id="301ea73e-6a5f-4e61">
<meta property="article:tag" content="Streaming" data-webtasks-id="7811dfab-341e-4ac5">
<meta property="article:tag" content="TV" data-webtasks-id="9df7186e-1e45-47b1">
<meta property="article:published_time" content="2023-06-23T19:13:36+00:00" data-webtasks-id="57ba0579-17a6-4257">
<meta property="fb:app_id" content="112328095453510" data-webtasks-id="ea9a141a-dec7-48ea">
<meta name="twitter:card" content="summary" data-webtasks-id="67e14f07-552e-491d">
<meta name="twitter:title" content="The Many Secret Invasions the Skrulls Have Attempted In Marvel History" data-webtasks-id="4c0d497f-066a-4ae5">
<meta name="twitter:description" content="The new Disney+ series is based on a Marvel Comics storyline, but the Skrulls have used their shapeshifting abilities to secretly invade many times." data-webtasks-id="2878ec6a-e2ca-46ee">
<meta name="twitter:site" content="@getfandom" data-webtasks-id="4bba64c6-4eae-4c8c">
<meta name="twitter:image" content="https://static.wikia.nocookie.net/5a0f7cbf-b60b-45b5-8be9-ce6c1b432b94/thumbnail-down/width/1280/height/720" data-webtasks-id="cc459ee7-cc41-4884">
<meta name="apple-itunes-app" content="app-id=1230063803" data-webtasks-id="6d8ae7e1-c4ec-4a7a">
<script async="" src="https://www.googletagservices.com/tag/js/gpt.js" data-webtasks-id="e01dd7e4-d6b4-4bd9"></script>
<link href="https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i&subset=cyrillic,hebrew,latin-ext" rel="stylesheet" data-webtasks-id="5c450fc5-264f-427b">
<link rel="stylesheet" href="https://www.fandom.com/f2/assets/common.css?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" data-webtasks-id="65bc5f0c-583a-480e">
<link rel="stylesheet" href="https://www.fandom.com/f2/assets/news-and-stories.css?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" data-webtasks-id="9eae88f5-7548-4ab3">
<script data-webtasks-id="d7010de8-5a43-4706">!function(r){var n=window.webpackJsonp;window.webpackJsonp=function(e,u,c){for(var f,i,p,a=0,l=[];a<e.length;a++)i=e[a],o[i]&&l.push(o[i][0]),o[i]=0;for(f in u)Object.prototype.hasOwnProperty.call(u,f)&&(r[f]=u[f]);for(n&&n(e,u,c);l.length;)l.shift()();if(c)for(a=0;a<c.length;a++)p=t(t.s=c[a]);return p};var e={},o={24:0};function t(n){if(e[n])return e[n].exports;var o=e[n]={i:n,l:!1,exports:{}};return r[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=r,t.c=e,t.d=function(r,n,e){t.o(r,n)||Object.defineProperty(r,n,{configurable:!1,enumerable:!0,get:e})},t.n=function(r){var n=r&&r.__esModule?function(){return r.default}:function(){return r};return t.d(n,"a",n),n},t.o=function(r,n){return Object.prototype.hasOwnProperty.call(r,n)},t.p="",t.oe=function(r){throw console.error(r),r}}([]);</script>
<script src="https://www.fandom.com/f2/assets/common.en.js?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" defer="" data-webtasks-id="74774caf-bb21-4722"></script>
<script src="https://www.fandom.com/f2/assets/news-and-stories.en.js?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" defer="" data-webtasks-id="a174abbf-76cf-46ee"></script>
<link rel="prefetch" href="https://www.google-analytics.com/analytics.js" data-webtasks-id="43bab29c-593c-42a1">
<script data-webtasks-id="8976eb43-dd08-4224">
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
</script>
<script async="" src="https://www.google-analytics.com/analytics.js" data-webtasks-id="b2c3227e-81da-4e93"></script>
<!-- Google Tag Manager -->
<script data-webtasks-id="10fc36ef-f098-4eee">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-5LPWXZP');</script>
<!-- End Google Tag Manager -->
<!-- sjc -->
<script src="//script.wikia.nocookie.net/fandom-ae-assets/tracking-opt-in/v11.2.1/tracking-opt-in.min.js" type="text/javascript" async="" data-webtasks-id="e523e551-4d68-4e89"></script><script src="//script.wikia.nocookie.net/fandom-ae-assets/identity-service/v2.5.0/index.js" type="text/javascript" async="" data-webtasks-id="f591568b-3998-4836"></script><script src="//script.wikia.nocookie.net/fandom-ae-assets/platforms/v145.1.2/f2/main.bundle.js" type="text/javascript" async="" data-webtasks-id="0b5d9884-66a5-4266"></script><link href="//script.wikia.nocookie.net/fandom-ae-assets/platforms/v145.1.2/f2/styles.css" rel="stylesheet" data-webtasks-id="95daeaa0-9e01-40c1"><style type="text/css" data-webtasks-id="036fb281-84c8-40ef">._3nfntY7bV6Lslqu8hQRMHp{display:inline-flex}._3nfntY7bV6Lslqu8hQRMHp input{height:0;visibility:hidden;width:0}._3nfntY7bV6Lslqu8hQRMHp label{align-items:center;background:#595458;border-radius:50px;cursor:pointer;display:flex;height:30px;justify-content:space-between;position:relative;transition:background-color .2s;width:50px}._3nfntY7bV6Lslqu8hQRMHp label span{background:#fff;border-radius:26px;box-shadow:0 0 2px 0 rgba(0,0,0,.2);content:"";height:26px;left:2px;position:absolute;top:2px;transition:.2s;width:26px}._3nfntY7bV6Lslqu8hQRMHp input:checked+label{background-color:#520044}._3nfntY7bV6Lslqu8hQRMHp input:checked+label span{left:calc(100% - 2px);transform:translateX(-100%)}._3nfntY7bV6Lslqu8hQRMHp ._2JYcc5VzXwpLbIkBga-fyt:active span{background:#520044;width:30px}</style><style type="text/css" data-webtasks-id="452fc162-51c8-48d5">._2CE3idgw4xgGVje2bvPxLv{overflow:hidden}._1MLS_xjiUjam_u2qmURY4i{background-color:rgba(0,0,0,.5);bottom:0;color:#000;left:0;max-width:100vw;position:fixed;right:0;top:0}._3GZth0RBCN1lL5Uj9D2ipN{background-color:#fff;border-top-left-radius:4px;border-top-right-radius:4px;display:flex;flex-direction:column;font-family:Rubik,Helvetica Neue,Helvetica,Arial,sans-serif!important;font-weight:400}._1L9HOak_x4YyxmRKu67v03{position:absolute}._1r08nyekFdI7_2d8r3AIBf{background-color:#fff;box-shadow:0 0 6px 0 hsla(0,0%,76.5%,.5);box-sizing:border-box;padding:12px 27px;text-align:center;display:flex;gap:16px}@media only screen and (min-width:768px){._1r08nyekFdI7_2d8r3AIBf{text-align:right;flex-direction:row-reverse}}@media only screen and (max-width:767px){._1r08nyekFdI7_2d8r3AIBf{display:flex;height:auto;flex-direction:column;gap:8px}}.XHcr6qf5Sub2F2zBJ53S_{border-radius:3px;box-sizing:border-box;cursor:pointer;display:inline-block;font-size:12px;font-weight:700;line-height:1;outline:none;padding:11px 18px;text-transform:uppercase}._2O--J403t2VqCuF8XJAZLK{display:flex;height:auto;gap:18px;flex-direction:row}@media only screen and (max-width:767px){._2O--J403t2VqCuF8XJAZLK{flex-direction:column-reverse;gap:8px}}.NN0_TB_DIsNmMHgJWgT7U,.ctUA_BYxme4s8b2T66wjD,.hscaUBZW7rwd_U4uzKfml{background-color:#520044;border:1px solid #520044;color:#fff}.Q9ccfZxMajKC1-OiA2d_d,.bXhNiA09CDOuFH0Zi9NOx{background-color:#fff;border:1px solid #291927;color:#291927}.bXhNiA09CDOuFH0Zi9NOx{order:2}.Q9ccfZxMajKC1-OiA2d_d{order:3}.NN0_TB_DIsNmMHgJWgT7U{order:1}._3dtr-jV1nbqqThntJSAoVu{color:#520044!important;font-size:12px;font-weight:700;text-decoration:none}._2tTt9QTzBMmwNw5yz2JxDV{fill:#595458;height:12px;margin-bottom:-2px;margin-left:10px;width:12px}.rwiI87jHlfiD5iV1_8GJF{transform:rotate(180deg)}</style><style type="text/css" data-webtasks-id="04605d28-2b6d-4c76">._9St5abedXLD9eTv3FBDBK{border-top:1px solid #291927;padding:20px 0}.NkQeAYwGCBVAGhrYAHUGk{display:flex;justify-content:space-between}._1GHCkwZiwOtY5rByP3ndrX{color:#000;font-size:14px;font-weight:500}._1hNWKDVJf2Z0Wsp4jQFbmV{color:#291927;cursor:pointer;font-size:12px;font-weight:700;margin-top:14px}._1Rj4hHh0-ZRvEFSgEpV4JR{margin-top:0}.pbzB-OMrajwaSLfnj4AqI{font-size:12px;line-height:1.6;margin-top:24px;white-space:pre-line}</style><style type="text/css" data-webtasks-id="8f0ea20d-b2ba-4eef">._3MzFGYqqqgGfxN7P_T7MjC{border:1px solid #291927;margin-top:24px}.Gsw5bcLKsUulxrKo-zq_H{background-color:#291927;color:#fff;font-size:14px;font-weight:500;padding:4px 12px}.cBoIN3nD2E_BfIseJC9ny{background-color:#595458;color:#fff;font-size:12px;font-weight:700;padding:4px 10px}._3IWdS6NF2DsZvr9f5hwWv0{display:flex;justify-content:space-between}.s0w4Tf78Zuh7mDfcd4GV-{border-top:1px solid #291927;font-size:12px;padding:12px}._1EcnA2c7YUk8TmMFmPpJFB{color:#000;font-weight:500}._19jEJrzAJvHYnFQRYPD9GU{color:#291927;cursor:pointer;font-weight:700;margin-top:6px}._3pT8Ec9HBoE7DPYo82rV07{border:1px solid #291927;margin-top:12px}._1CWh8yPijOKSyqwHV7ajQg{color:#000}._1DXQjfGKBYCwJE3bUZM1C3{border-top:1px solid #291927;padding:8px 10px}._2cnA1PnI3KXXhusDoJsKY7{font-style:italic;margin-top:12px;white-space:pre-line}._1ByZTgiYepEr4L21zjyyUN{color:#520044!important;font-size:12px;text-decoration:none}._23TYaWkeSwByhxKm3SweIH{margin-top:5px}</style><style type="text/css" data-webtasks-id="cef33459-20a9-4745">._313xXaUmtx0RPAurqDYear{position:absolute}@media only screen and (max-width:767px){._313xXaUmtx0RPAurqDYear{height:calc(100% - 55px);top:55px;width:100vw}}@media only screen and (min-width:768px){._313xXaUmtx0RPAurqDYear{height:600px;left:50%;max-height:90vh;top:50%;transform:translate(-50%,-50%);max-width:768px}}._2LbAMqjIM0ZZlgkTKKiw50{line-height:1;padding:10px;overflow-y:auto}._2zXub0jN93FIGMC0Ks9gIK{color:#002a32;font-size:16px;font-weight:500}.Xs_q5GtBM4DjS9MOZCxM0{font-size:14px;margin:20px auto;text-align:center}@media only screen and (min-width:768px){.Xs_q5GtBM4DjS9MOZCxM0{font-size:16px}}._3FctDt3JQRdHFFHEGCKUN_{font-size:12px;line-height:20px;margin-bottom:20px}._3FctDt3JQRdHFFHEGCKUN_ p{margin:1em 0}._3zi8OLpklfmiLcCzY4tXHh{margin:15px 0 10px}</style><style type="text/css" data-webtasks-id="464fe7ff-cc91-449b">._1mGqz5e1PoTaTD4bCYWXFP{bottom:0;display:flex;flex-direction:column;position:fixed;width:100vw}@media only screen and (max-width:767px){._1mGqz5e1PoTaTD4bCYWXFP{max-height:calc(100% - 55px);position:absolute}}._1Pw3-inZyk15JAcJfFTZv6{line-height:1.43!important;overflow-y:auto;padding:28px 17px 20px}@media only screen and (max-width:767px){._1Pw3-inZyk15JAcJfFTZv6{margin-left:auto;margin-right:auto;text-align:center}}@media only screen and (min-width:768px){._1Pw3-inZyk15JAcJfFTZv6{line-height:1.57;padding:30px}}._1Pw3-inZyk15JAcJfFTZv6 p{font-size:14px;margin:1em 0}._2sSZyj2We3n1OhY3G5hRNL{color:#000;font-size:14px;font-weight:700;margin-bottom:12px;text-align:center}@media only screen and (min-width:768px){._2sSZyj2We3n1OhY3G5hRNL{font-size:16px}}._28Jd9gUhiwiUAkvsrV7_Cn{font-size:11px;line-height:21px;margin:0 -10px;max-height:383px;overflow-y:auto;padding:0 10px}@media only screen and (max-width:767px){._28Jd9gUhiwiUAkvsrV7_Cn{padding-left:0}}@media only screen and (min-width:768px){._28Jd9gUhiwiUAkvsrV7_Cn{max-height:176px;padding-bottom:0}}._28Jd9gUhiwiUAkvsrV7_Cn p:first-child{margin-top:0}._28Jd9gUhiwiUAkvsrV7_Cn p:last-child{margin-bottom:0}._3GLVjNcI1qrYOoFKpndQ3z{color:#520044;font-size:12px;font-weight:500;text-decoration:none}</style></head>
<body class="article-show" data-webtasks-id="1dc655a1-c6df-4df6">
<div class="top-ads-container" data-webtasks-id="2241af01-106b-4c53">
<div class="ad-slot-placeholder top-leaderboard is-loading" data-webtasks-id="3769cd46-2682-4322"></div>
</div>
<!-- Google Tag Manager (noscript) -->
<noscript data-webtasks-id="eeb02d46-6121-4ffe"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5LPWXZP" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="global-navigation anon" data-lang="nav-desktop-en" data-webtasks-id="d3cd3e54-d21d-4290">
<div class="global-navigation__top" data-webtasks-id="c39dd7f5-eb29-43bd">
<nav class="global-navigation__nav" data-webtasks-id="e6edf08b-a7d2-439c">
<a href="https://www.fandom.com/" aria-label="Fandom homepage" class="global-navigation__logo" data-webtasks-id="50dbfe28-4527-402a">
<svg class="wds-icon" id="wds-brand-fandom-logomark" viewBox="0 0 174 242" data-webtasks-id="5e1dda22-3e8a-4f02">
<path fill="#FA005A" d="M166.935 118.154L50.108 1.273C49.504.67 48.735.259 47.898.093c-.837-.166-1.705-.08-2.493.247-.788.327-1.461.88-1.935 1.59-.474.71-.727 1.546-.727 2.4v98.276L7.365 67.22c-.604-.604-1.373-1.014-2.21-1.18-.837-.166-1.704-.08-2.492.247-.789.327-1.462.88-1.936 1.59-.474.71-.727 1.545-.727 2.4v101.487c-.003 3.172.62 6.312 1.833 9.242 1.214 2.929 2.993 5.59 5.237 7.83l46.037 46.099c4.528 4.53 10.666 7.078 17.068 7.085h33.68c6.4-.003 12.537-2.547 17.063-7.075l46.027-46.099c2.239-2.242 4.014-4.904 5.225-7.833 1.21-2.93 1.832-6.069 1.83-9.239v-36.533c.002-3.173-.621-6.315-1.834-9.247-1.212-2.932-2.989-5.596-5.231-7.84z" data-webtasks-id="1ffa326e-e57f-4a4a"></path>
<path fill="#FFC500" d="M131.297 160.901c.001 1.915-.757 3.754-2.108 5.111l-37.11 37.3c-.672.677-1.472 1.215-2.354 1.582-.88.366-1.826.555-2.78.555-.954 0-1.9-.189-2.78-.555-.882-.367-1.682-.905-2.355-1.582l-36.99-37.3c-1.352-1.351-2.114-3.184-2.117-5.096v-14.191c0-.951.19-1.892.554-2.77.366-.878.9-1.675 1.574-2.346l13.317-13.328c.672-.675 1.47-1.209 2.35-1.574.879-.365 1.82-.553 2.772-.553.952 0 1.894.188 2.773.553.879.365 1.677.899 2.35 1.574l18.624 18.645 18.596-18.65c.672-.675 1.47-1.209 2.349-1.574.879-.365 1.821-.553 2.773-.553.951 0 1.893.188 2.772.553.879.365 1.677.899 2.349 1.574l13.318 13.328c.673.671 1.207 1.469 1.571 2.347.364.877.552 1.819.552 2.769v14.181z" data-webtasks-id="a766b2b4-230c-4663"></path>
</svg>
<div class="global-navigation__link-text" data-webtasks-id="fd296330-de48-4dd9">
FANDOM
</div>
</a>
<a href="#" class="global-navigation__search global-navigation__icon" accesskey="f" data-webtasks-id="602f5f3c-fa5c-4763">
<svg class="wds-icon" width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="e431787e-b989-4825">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-magnifying-glass" data-webtasks-id="bc4de457-6299-4bb7"></use>
</svg>
</a>
<div class="global-navigation__links" data-webtasks-id="baf40026-543b-42c2">
<a href="https://www.fandom.com/fancentral/home" class="global-navigation__link is-fan-central" data-webtasks-id="9671cbec-90c3-4713">
<div class="global-navigation__link-icon is-fan-central" data-webtasks-id="c0141e58-490a-4a59">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="07bde9bc-b328-442b">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.526 5.004a3.502 3.502 0 1 0 0 7.004 3.502 3.502 0 0 0 0-7.004zm-1.502 3.502a1.502 1.502 0 1 1 3.004 0 1.502 1.502 0 0 1-3.003 0z" fill="#FA005A" data-webtasks-id="2eda57fa-eb03-4e51"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.192 3.817A13.004 13.004 0 0 1 18.279 1h3.752a1 1 0 0 1 1 1V5.753c0 2.974-1.014 5.815-2.816 8.086l.795 3.977a1 1 0 0 1-.273.903l-4.003 4.003a1 1 0 0 1-1.688-.51l-.718-3.593-.736.515a.995.995 0 0 1-1.11.058.992.992 0 0 1-.422-.502.993.993 0 0 1-.064-.293 7.022 7.022 0 0 0-6.382-6.363.997.997 0 0 1-.778-.49 1.002 1.002 0 0 1 .048-1.086l.528-.754-3.592-.718a1 1 0 0 1-.511-1.688l4.003-4.003a1 1 0 0 1 .903-.274l3.977.796zm1.022 1.747A11.003 11.003 0 0 1 18.28 3h2.752v2.753c0 2.616-.927 5.11-2.564 7.066-.062.055-.116.119-.162.188a10.957 10.957 0 0 1-1.97 1.763L13.7 16.618a9.04 9.04 0 0 0-6.285-6.285L9.26 7.698l.001-.002a10.958 10.958 0 0 1 1.762-1.968c.07-.047.134-.102.191-.164zm-2.78-.06-2.086-.416L4.044 7.39l2.621.524.956-1.363c.254-.365.526-.714.813-1.047zM17.48 16.41c.365-.255.714-.526 1.047-.813l.417 2.086-2.303 2.304-.524-2.621 1.363-.956z" fill="#FA005A" data-webtasks-id="5ec80c5b-bc74-43fa"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.974 23.061c2.26.057 5.259-.223 6.708-1.672a4.253 4.253 0 1 0-6.015-6.015C1.224 16.818.965 19.87 1.004 22.082c.009.535.435.966.97.98zm3.264-2.232c1.064-.214 1.716-.54 2.03-.854a2.253 2.253 0 1 0-3.186-3.186c-.303.302-.627.954-.84 2.037-.14.711-.21 1.485-.233 2.235.754-.02 1.524-.09 2.229-.232z" fill="#FA005A" data-webtasks-id="c509f0de-f721-4e3f"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="49aaa441-c2d4-4e89">
Fan Central
</div>
<div class="beta-tag" data-webtasks-id="9c62760a-5988-473b">Beta</div>
</a>
<a href="https://www.fandom.com/topics/games" class="global-navigation__link" data-webtasks-id="8c4571fe-0458-4e95">
<div class="global-navigation__link-icon" data-webtasks-id="321262bd-57f6-4aff">
<svg class="nav-icon wds-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="a4f4bea5-2d35-4b4e">
<path d="M7 15V11" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="3c25278d-913d-4401"></path>
<path d="M5 13H9" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="e0e47caa-5256-4cb7"></path>
<path d="M17 15C18.1046 15 19 14.1046 19 13C19 11.8954 18.1046 11 17 11C15.8954 11 15 11.8954 15 13C15 14.1046 15.8954 15 17 15Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="cb85330a-9216-4d8e"></path>
<path d="M12 6V2" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="300db64d-47b2-4639"></path>
<path d="M23 8V15.17C23 15.7 22.79 16.21 22.41 16.58L19.58 19.41C19.21 19.79 18.7 20 18.17 20H5.83C5.3 20 4.79 19.79 4.42 19.41L1.59 16.58C1.21 16.21 1 15.7 1 15.17V8C1 6.9 1.9 6 3 6H21C22.1 6 23 6.9 23 8Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="57ed2ac7-29f7-4a74"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="5557e284-5820-4f0b">
Games
</div>
</a>
<a href="https://www.fandom.com/topics/anime" class="global-navigation__link" data-webtasks-id="aabdeebf-04c0-447f">
<div class="global-navigation__link-icon" data-webtasks-id="6183ef02-80d9-4f6b">
<svg class="nav-icon wds-icon" width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" data-webtasks-id="1dc3de1a-cac0-4114">
<path stroke="#FA005A" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m5.41 19.41-2.83-2.83c-.37-.37-.58-.88-.58-1.41V6c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v9.17c0 .53-.21 1.04-.59 1.41l-2.83 2.83c-.37.38-.88.59-1.41.59H6.83c-.53 0-1.04-.21-1.42-.59z" data-webtasks-id="a6e402a0-d11f-46c0"></path>
<path stroke="#FA005A" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M6.09 10.09 7.3 8.88a.996.996 0 0 1 1.41 0l1.21 1.21M14.09 10.09l1.21-1.21a.996.996 0 0 1 1.41 0l1.21 1.21M15 15H9" data-webtasks-id="910be037-be3b-4842"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="f5379a85-36ae-4de9">
Anime
</div>
</a>
<a href="https://www.fandom.com/topics/movies" class="global-navigation__link" data-webtasks-id="e37fde9b-c70a-47dc">
<div class="global-navigation__link-icon" data-webtasks-id="8897dbc7-4b79-4068">
<svg class="nav-icon wds-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="b6739600-51b9-40b2">
<path d="M20 20H4C2.9 20 2 19.1 2 18V6C2 4.9 2.9 4 4 4H20C21.1 4 22 4.9 22 6V18C22 19.1 21.1 20 20 20Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="e5891b91-4543-419d"></path>
<path d="M2 9H22" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="287e96aa-61d7-445e"></path>
<path d="M11 9L6 4" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="ae02461a-d784-4231"></path>
<path d="M18 9L13 4" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="7064abb5-6aa7-40f2"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="1d343a93-1936-4a0a">
Movies
</div>
</a>
<a href="https://www.fandom.com/topics/tv" class="global-navigation__link" data-webtasks-id="4ad7f6f6-7aef-4e63">
<div class="global-navigation__link-icon" data-webtasks-id="8850e6e9-c111-49a2">
<svg class="nav-icon wds-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="978f36f8-409f-4428">
<path d="M4 20H20C21.1 20 22 19.1 22 18V8C22 6.9 21.1 6 20 6H4C2.9 6 2 6.9 2 8V18C2 19.1 2.9 20 4 20Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="5c445a11-e83f-4b0c"></path>
<path d="M12 6L16 2" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="02a7b83a-5edd-4a11"></path>
<path d="M12 6L8 2" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="e1991473-e0c8-4924"></path>
<path d="M17 11H18" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="2c4c58b1-e4db-4945"></path>
<path d="M17 15H18" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="b201c1d0-2c4c-43a5"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="ed045702-b56a-4eee">
TV
</div>
</a>
<a href="https://www.fandom.com/video" class="global-navigation__link" data-webtasks-id="492037dc-f123-4042">
<div class="global-navigation__link-icon" data-webtasks-id="9a1f7649-2e04-44e9">
<svg class="nav-icon wds-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="620acbf6-2383-4a8a">
<path d="M16 12L10 8.54001V15.46L16 12Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="e66e519f-9302-4af5"></path>
<path d="M20 20H4C2.9 20 2 19.1 2 18V6C2 4.9 2.9 4 4 4H20C21.1 4 22 4.9 22 6V18C22 19.1 21.1 20 20 20Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="e81a0d3d-5b95-470c"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="a4dabc8a-ba5b-4fde">
Video
</div>
</a>
<div tabindex="0" class="global-navigation__link wds-dropdown wds-open-to-right wds-has-shadow attach-to-bottom" data-webtasks-id="899ead85-71c7-473e">
<div class="wds-dropdown__toggle" data-webtasks-id="5eebd8b6-a859-40c3">
<div class="global-navigation__link-icon" data-webtasks-id="45ab8907-9355-4ac4">
<svg class="nav-icon wds-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="39cc7a75-dbc7-41f4">
<path d="M12 7L14.41 4.59C14.79 4.21 15.3 4 15.83 4H21C22.1 4 23 4.9 23 6V16C23 17.1 22.1 18 21 18H15.83C15.3 18 14.79 18.21 14.42 18.59L12 21L9.59 18.59C9.21 18.21 8.7 18 8.17 18H3C1.9 18 1 17.1 1 16V6C1 4.9 1.9 4 3 4H8.17C8.7 4 9.21 4.21 9.59 4.59L12 7Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="b2da09a9-8e89-4df6"></path>
<path d="M12 20V7" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="fd91277f-6f2f-4ce6"></path>
<path d="M16 9H19" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="34f995fe-5974-400f"></path>
<path d="M16 13H19" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="1351f1c9-42b0-4b3e"></path>
<path d="M5 9H8" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="a9312fbb-f98f-4d20"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="ef2c9a07-2e22-4972">
Wikis
</div>
</div>
<div class="wds-dropdown__content" data-webtasks-id="a5d1a336-41d0-4bef">
<ul class="wds-list wds-is-linked" data-webtasks-id="35c11b55-80ea-417b">
<li data-webtasks-id="31c21af2-d4c6-4f42">
<a href="https://www.fandom.com/explore" data-tracking="{"label": "global-navigation.link.explore"}" data-webtasks-id="201a0594-5869-418c">
Explore Wikis
</a>
</li>
<li data-webtasks-id="529c445e-b7b6-4d68">
<a href="//community.fandom.com/wiki/Community_Central" data-tracking="{"label": "global-navigation.link.community-central"}" data-webtasks-id="19f3e7c1-1fc2-4042">
Community Central
</a>
</li>
</ul>
</div>
</div>
<a href="//createnewwiki.fandom.com/wiki/Special:CreateNewWiki" class="global-navigation__link" data-webtasks-id="355e0d63-a159-4ad6">
<div class="global-navigation__link-icon start-a-wiki" data-webtasks-id="48a065ed-525d-421c">
<svg class="nav-icon wds-icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="915bfa76-ca67-454b">
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 8H10V2C10 1.447 9.552 1 9 1C8.448 1 8 1.447 8 2V8H2C1.448 8 1 8.447 1 9C1 9.553 1.448 10 2 10H8V16C8 16.553 8.448 17 9 17C9.552 17 10 16.553 10 16V10H16C16.552 10 17 9.553 17 9C17 8.447 16.552 8 16 8Z" fill="#520044" data-webtasks-id="b43172ac-01b3-4cb0"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="905d4153-bf1b-4367">Start a Wiki</div>
</a>
</div>
</nav>
</div>
<div class="global-navigation__bottom" data-webtasks-id="baeeb4cb-e9a1-45cf">
<div class="wds-dropdown wds-open-to-right attached-to-bottom is-anon-dropdown" data-webtasks-id="ef9d8d3f-00b0-43ca">
<div class="wds-dropdown__toggle" data-webtasks-id="9429a81f-9a8b-4deb">
<div class="global-navigation__icon" data-webtasks-id="06984850-047a-432f">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="69fea414-90e0-45ef">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9998 10.9999C11.0348 10.9999 10.2498 10.2149 10.2498 9.24988C10.2498 8.28488 11.0348 7.49988 11.9998 7.49988C12.9648 7.49988 13.7498 8.28488 13.7498 9.24988C13.7498 10.2149 12.9648 10.9999 11.9998 10.9999ZM11.9998 5.49988C9.93179 5.49988 8.24979 7.18188 8.24979 9.24988C8.24979 11.3179 9.93179 12.9999 11.9998 12.9999C14.0678 12.9999 15.7498 11.3179 15.7498 9.24988C15.7498 7.18188 14.0678 5.49988 11.9998 5.49988ZM19.679 18.414C17.692 16.31 14.952 15.125 12 15.125C9.04705 15.125 6.30805 16.31 4.32105 18.414C2.81705 16.61 2.00005 14.369 2.00005 12C2.00005 6.486 6.48605 2 12 2C17.514 2 22 6.486 22 12C22 14.371 21.181 16.613 19.679 18.414ZM12 22C9.71402 22 7.52702 21.229 5.75002 19.813C7.36302 18.094 9.59402 17.125 12 17.125C14.406 17.125 16.637 18.094 18.249 19.813C16.472 21.229 14.286 22 12 22ZM12 0C5.383 0 0 5.383 0 12C0 15.268 1.294 18.33 3.651 20.63C3.655 20.634 3.659 20.639 3.663 20.643C5.923 22.808 8.883 24 12 24H12.036C15.139 23.99 18.086 22.799 20.337 20.643C20.338 20.641 20.34 20.639 20.342 20.637C22.701 18.341 24 15.273 24 12C24 5.383 18.617 0 12 0Z" fill="#520044" data-webtasks-id="42b0196b-da21-4570"></path>
</svg>
</div>
</div>
<div class="wds-dropdown__content" data-webtasks-id="83991c39-964b-41d5">
<div class="global-navigation__register-text" data-webtasks-id="6a661b50-671f-4aff">
Don't have an account?
</div>
<a href="https://auth.fandom.com/register?source=mw" data-param-name="redirect" data-tracking="{"label": "global-navigation.account.register"}" id="global-navigation-register-link" class="wds-button wds-is-secondary wds-is-full-width" data-webtasks-id="8174b4a6-8abf-41d4">
Register
</a>
<hr data-webtasks-id="3001237b-672e-489f">
<a href="https://auth.fandom.com/signin?source=mw" data-param-name="redirect" data-tracking="{"label": "global-navigation.account.sign-in"}" id="global-navigation-sign-in-link" class="wds-button wds-is-full-width" data-webtasks-id="6ebc9a04-c92d-44c7">
Sign In
</a>
</div>
</div>
</div>
<div class="global-nav-search-modal" data-webtasks-id="54c5df51-dca4-49f8">
<div class="global-nav-search-modal-content" data-webtasks-id="f2a01720-f46f-4686">
<form class="search-box is-desktop-view is-modal" action="/" autocomplete="off" data-webtasks-id="2ad34a91-3cd2-4ee2">
<div class="global-nav-search-modal__close-container" data-webtasks-id="efd5f7f6-7986-4823">
<button type="button" class="global-nav-search-modal__close" data-webtasks-id="1b02b7ad-ac74-4d26">
<svg class="wds-icon wds-icons-cross global-nav-search-modal__close-icon" alt="Close" data-webtasks-id="666e06df-9cf1-45eb">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-cross" data-webtasks-id="ce5d990a-4560-4b5f"></use>
</svg>
</button>
</div>
<div class="search-box__container" data-webtasks-id="73618aa3-150c-488a">
<label class="search-box__search-label" data-webtasks-id="b73f9686-0e5e-4ec7">
<span class="search-box__search-label-text" data-webtasks-id="5a55e692-b066-463d">
Search the world's largest fan wiki platform
</span>
<input class="search-box__input-search-box" placeholder="Search" required="" name="s" data-webtasks-id="02200b67-29d3-453d">
</label>
<button class="search-box__search-submit" type="submit" data-webtasks-id="212493a9-a2d4-4b6a">
<svg class="search-box__search-icon-submit" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="f140930d-7208-47ff">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 7.947C7.991 7.955 7.981 7.964 7.973 7.973C7.963 7.982 7.955 7.991 7.946 8.001C7.315 8.619 6.451 9 5.5 9C3.57 9 2 7.43 2 5.5C2 3.571 3.57 2 5.5 2C7.429 2 9 3.571 9 5.5C9 6.451 8.618 7.316 8 7.947ZM11.707 10.293L10.03 8.616C10.641 7.73 11 6.656 11 5.5C11 2.468 8.532 0 5.5 0C2.467 0 0 2.468 0 5.5C0 8.533 2.467 11 5.5 11C6.655 11 7.729 10.642 8.615 10.03L10.292 11.707C10.488 11.903 10.744 12 11 12C11.255 12 11.511 11.903 11.707 11.707C12.097 11.317 12.097 10.684 11.707 10.293Z" fill="#520044" data-webtasks-id="e5a2e52c-0a97-4691"></path>
</svg>
</button>
</div>
</form>
<form class="search-box is-mobile-view is-modal" action="/" autocomplete="off" data-webtasks-id="7a0606e7-7729-4d99">
<div class="global-nav-search-modal__close-container" data-webtasks-id="02a3f9e0-1a6e-4a09">
<button type="button" class="global-nav-search-modal__close" data-webtasks-id="f58a2202-fbc5-4c42">
<svg class="wds-icon wds-icons-cross global-nav-search-modal__close-icon" alt="Close" data-webtasks-id="d45a850a-e87f-47f4">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-cross" data-webtasks-id="9774bb51-78d2-4452"></use>
</svg>
</button>
</div>
<div class="search-box__container" data-webtasks-id="9cc5e2f1-1d4a-4400">
<label class="search-box__search-label" data-webtasks-id="88972579-ab2f-4e9d">
<span class="search-box__search-label-text" data-webtasks-id="1270c8f4-b7db-4385">
Search
</span>
<input class="search-box__input-search-box" placeholder="Search" required="" name="s" data-webtasks-id="b234f21b-e5aa-4a44">
</label>
<button class="search-box__search-submit" type="submit" data-webtasks-id="e0753d5d-c077-46b5">
<svg class="search-box__search-icon-submit" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="d11b5bc8-c490-4da1">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 7.947C7.991 7.955 7.981 7.964 7.973 7.973C7.963 7.982 7.955 7.991 7.946 8.001C7.315 8.619 6.451 9 5.5 9C3.57 9 2 7.43 2 5.5C2 3.571 3.57 2 5.5 2C7.429 2 9 3.571 9 5.5C9 6.451 8.618 7.316 8 7.947ZM11.707 10.293L10.03 8.616C10.641 7.73 11 6.656 11 5.5C11 2.468 8.532 0 5.5 0C2.467 0 0 2.468 0 5.5C0 8.533 2.467 11 5.5 11C6.655 11 7.729 10.642 8.615 10.03L10.292 11.707C10.488 11.903 10.744 12 11 12C11.255 12 11.511 11.903 11.707 11.707C12.097 11.317 12.097 10.684 11.707 10.293Z" fill="#520044" data-webtasks-id="5dbd4034-c33b-4cf7"></path>
</svg>
</button>
</div>
</form>
</div>
</div>
</div>
<div class="global-navigation-mobile-wrapper is-f2" data-lang="nav-mobile-en" data-webtasks-id="7844dd3c-196b-41aa">
<div class="global-navigation-mobile" data-webtasks-id="3674d0d4-1f7e-4456">
<div class="global-navigation-mobile__content-bar" data-webtasks-id="47d2d488-9384-42c5">
<a href="https://www.fandom.com/" class="global-navigation-mobile__logo" data-webtasks-id="79edddc4-7b3a-4769">
<img class="global-navigation-mobile__logo-fandom" src="https://static.wikia.nocookie.net/85e470bc-0c8e-41e4-8367-7fdd4bcd05da" alt="Fandom" data-webtasks-id="10f40e0b-edb4-4467">
</a>
<div class="global-navigation-mobile__spacing" data-webtasks-id="1396b505-1923-4abc"></div>
<a class="global-navigation-mobile__icon is-search" href="#" data-webtasks-id="8d3275e0-a823-4a2e">
<svg class="wds-icon global-navigation-mobile__search-icon" alt="Search" data-webtasks-id="0c73697e-a951-449e">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-magnifying-glass" data-webtasks-id="a8660193-70c6-4e06"></use>
</svg>
<svg class="wds-icon global-navigation-mobile__search-icon-close" alt="Close" data-webtasks-id="c4d91c45-2687-4e30">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-cross" data-webtasks-id="1e76c69a-29f3-4f35"></use>
</svg>
</a>
<a class="global-navigation-mobile__icon is-user" href="https://www.fandom.com/signin?redirect=https%3A%2F%2Fwww.fandom.com" data-webtasks-id="359febe5-0a1d-4d48">
<svg class="wds-icon global-navigation-mobile__user-icon" alt="Profile" data-webtasks-id="28af2d2e-bb04-4b09">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-avatar" data-webtasks-id="1a390d6d-116c-456c"></use>
</svg>
</a>
</div>
<form class="global-navigation-mobile__search-panel" action="https://www.fandom.com/" data-webtasks-id="de0f91e1-6318-4bc8">
<div class="global-navigation-mobile__search-input-wrapper" data-webtasks-id="cfb91b56-a0a2-45f5">
<svg class="wds-icon wds-icon-small global-navigation-mobile__search-label-icon" data-webtasks-id="78064c5f-e23c-4049">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-magnifying-glass" data-webtasks-id="09459d97-2f81-4ab2"></use>
</svg>
<input class="global-navigation-mobile__search-input" name="s" placeholder="Search Fandom..." placeholder-active="Search Stories and Wikis..." placeholder-inactive="Search Fandom..." data-webtasks-id="56dbd616-3393-4021">
</div>
</form>
</div>
</div>
<div class="nav-bg-hack" data-webtasks-id="9d707a88-b670-4954"></div>
<style data-webtasks-id="6a60f265-f5ee-49cf">
/* START - Global Navigation Mobile Styles*/
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile {
background-color: #ffc500;
height: auto;
}
@media screen and (min-width: 768px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile {
display: none;
}
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
box-sizing: border-box;
display: flex;
height: 55px;
}
@media only screen and (max-width:767px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
width: 100%;
}
}
@media only screen and (min-width:768px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
margin: 0 auto;
}
}
@media only screen and (min-width:768px) and (max-width:1023px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
width: 768px;
}
}
@media only screen and (min-width:1024px) and (max-width:1083px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
width: 1004px;
}
}
@media only screen and (min-width:1084px) and (max-width:1595px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
width: 1064px;
}
}
@media only screen and (min-width:1596px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
width: 1238px;
}
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__spacing {
flex-basis: 99%;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__logo {
display: inline-block;
margin: 14px 12px;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__logo-fandom {
height: inherit;
width: inherit;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__logo img {
max-width: none;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__icon {
align-items: center;
color: inherit;
display: flex;
flex: 0 0 49px;
justify-content: center;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__icon-anon-login {
border: 0.125rem solid;
border-radius: 50%;
margin-right: 0.5rem;
padding: 0.125rem;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__user-icon, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__user-icon-close, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-icon, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-icon-close {
fill: #520044;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__user-icon, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-icon, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile.is-menu-active .global-navigation-mobile__user-icon-close, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile.is-search-active .global-navigation-mobile__search-icon-close, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile.is-search-active .global-navigation-mobile__search-panel {
display: block;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__user-icon-close, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-icon-close, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile.is-menu-active .global-navigation-mobile__user-icon, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile.is-search-active .global-navigation-mobile__icon.is-user, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile.is-search-active .global-navigation-mobile__search-icon {
display: none;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__menu-panel {
color: #fff;
display: none;
height: calc(100% - 56px);
position: fixed;
top: 56px;
width: 100%;
z-index: 10;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-panel {
background-color: #ffc500;
display: none;
left: 0;
margin: 0;
position: absolute;
right: 0;
z-index: 10;
padding: 18px 12px;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-input-wrapper {
position: relative;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-label-icon {
fill: #520044;
height: 16px;
margin-top: 4px;
position: absolute;
width: 16px;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-input {
background-color: #ffc500;
border-color: #520044;
border-width: 0 0 1px 0;
color: #280033;
margin-left: 24px;
outline: none;
padding: 0;
width: 90%;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-input::placeholder {
color: #520044;
}
body.is-menu-active .nav-bg-hack {
height: 10000000px;
left: 0;
position: absolute;
top: 0;
width: 100vw;
}
/* END - Global Navigation Mobile Styles*/
@media (min-width: 1024px) and (max-width: 1279px) {
.wds-global-footer.is-f2 .wds-global-footer__main {
width: 988px;
}
}
/* START - Styles for new global navigation. Generated through the Sass npm module*/
@media screen and (min-width: 768px) {
body {
border-left: 66px solid #ffc500;
}
}
.global-navigation {
background-color: #ffc500;
bottom: 0;
box-shadow: 0px 3px 12px 0px rgba(14, 25, 26, 0.3);
color: #520044;
display: flex;
flex-direction: column;
font-family: rubik, helvetica, arial, sans-serif;
justify-content: space-between;
left: 0;
padding: 10px 0 18px;
position: fixed;
top: 0;
width: 66px;
z-index: 500;
}
@media screen and (max-width: 767px) {
.global-navigation {
display: none;
}
}
.global-navigation__links {
width: 100%;
}
.global-navigation__top, .global-navigation__bottom, .global-navigation__nav {
display: flex;
flex-direction: column;
align-items: center;
}
.global-navigation__top .nav-icon.wds-icon, .global-navigation__bottom .nav-icon.wds-icon, .global-navigation__nav .nav-icon.wds-icon {
fill: none !important;
}
.global-navigation__bottom {
position: fixed;
bottom: 0;
padding: 8px 0 18px;
}
.global-navigation__nav {
width: 100%;
}
.global-navigation .wds-dropdown__content {
z-index: 900;
}
.global-navigation__logo .wds-icon {
margin: 0 auto;
display: block;
height: 45px;
width: 60px;
}
.global-navigation__logo .global-navigation__link-text {
max-width: 100%;
}
.global-navigation__search {
width: 54px;
text-align: center;
color: #00cdd0;
border: 2px solid transparent;
}
.global-navigation__icon.global-navigation__search {
margin-top: 5px;
}
.global-navigation__search:active {
background-color: #FFFFFF !important;
border: 2px solid #520044 !important;
}
.global-navigation a:hover {
text-decoration: none;
}
.global-navigation__link {
width: 100%;
padding: 0;
display: flex;
align-items: center;
flex-direction: column;
margin-top: 10px;
}
@media only screen and (max-height: 750px) {
.global-navigation__link {
margin-top: 4px;
}
}
.global-navigation__link__link-icon {
background-color: #f9edd8;
}
.global-navigation__link:hover .global-navigation__link-icon {
background-color: #f9edd8;
border: 2px solid rgba(82, 0, 68, 0.25);
}
.global-navigation__link:active .global-navigation__link-icon {
background-color: #FFFFFF;
border: 2px solid #520044;
}
.global-navigation__link-text {
margin-top: 4px;
color: #520044;
max-width: 54px;
text-transform: uppercase;
font-size: 10px;
line-height: 1.25;
text-align: center;
transition: color, opacity 0.3s;
position: relative;
font-weight: 700;
overflow: hidden;
}
.global-navigation__link-text.text-overflow::after {
content: "";
position: absolute;
right: 0;
top: 0;
z-index: 1;
width: 15px;
height: 100%;
background-image: linear-gradient(to right, transparent, #002a32);
}
.global-navigation__link-icon {
margin: 0;
height: 30px;
width: 30px;
display: inline-grid;
align-items: center;
justify-items: center;
border-radius: 50%;
transition: background-color 0.5s;
border: 2px solid transparent;
background-color: rgba(249, 237, 216, 0.75);
}
.global-navigation__link-icon svg {
fill: #fff;
height: 18px;
min-width: 18px;
transition: fill 0.5s;
width: 18px;
}
.global-navigation__link-icon.start-a-wiki {
background-color: transparent;
border: 2px solid #520044;
}
@media only screen and (max-height: 750px) {
.global-navigation__link-icon {
height: 28px;
width: 28px;
}
.global-navigation__link-icon svg {
height: 14px;
min-width: 14px;
width: 14px;
}
}
.global-navigation__link.wds-dropdown.wds-open-to-right .wds-dropdown__toggle {
display: flex;
align-items: center;
flex-direction: column;
}
.global-navigation__link.wds-dropdown.wds-open-to-right .wds-dropdown__content {
top: -40%;
left: 100%;
transform: none;
}
.global-navigation__link.wds-dropdown.wds-open-to-right .wds-dropdown__content.wds-list::before .global-navigation__link.wds-dropdown.wds-open-to-right .wds-dropdown__content.wds-list::after {
background-color: #fff;
content: "";
display: block;
height: 10px;
margin: 0 0 -10px;
position: relative;
}
.global-navigation__link.wds-dropdown.wds-open-to-right::after {
top: auto;
bottom: 30px;
transform: rotate(-90deg);
margin-left: 18px;
}
.global-navigation .wds-dropdown.wds-open-to-right .wds-dropdown__content .wds-list.wds-is-linked > li {
margin: 0 9px;
}
.global-navigation .wds-dropdown.wds-open-to-right .wds-dropdown__content .wds-list.wds-is-linked > li a {
color: #1E0C1B;
}
.global-navigation .wds-dropdown.wds-open-to-right .wds-dropdown__content .wds-list.wds-is-linked > li:hover {
background: rgba(82, 0, 68, 0.1);
}
.global-navigation .wds-dropdown.wds-open-to-right .wds-dropdown__content .wds-list.wds-is-linked > li a:hover {
color: #520044;
}
.global-navigation .wds-dropdown.wds-open-to-right .wds-dropdown__content .wds-list.wds-is-linked > li .wds-sign-out__button {
color: #1E0C1B;
}
.global-navigation .wds-dropdown.wds-open-to-right .wds-dropdown__content .wds-list.wds-is-linked > li .wds-sign-out__button:hover {
color: #520044;
}
.global-navigation__icon {
margin-top: 10px;
position: relative;
display: inline-grid;
align-items: center;
justify-items: center;
height: 36px;
width: 36px;
background-color: rgba(255, 255, 255, 0);
border-radius: 50%;
transition-duration: 0.5s;
transition-property: background-color, color;
}
.global-navigation__icon svg {
fill: black;
}
.global-navigation__icon.has-background {
background-color: rgba(255, 255, 255, 0.1);
color: #fff;
}
.wds-dropdown.wds-is-active .global-navigation__icon, .wds-dropdown:hover .global-navigation__icon, .global-navigation__icon:hover {
border: 2px solid rgba(82, 0, 68, 0.25);
background-color: #f9edd8;
color: #fff;
}
.wds-dropdown .global-navigation__icon {
margin-bottom: 0;
}
.global-navigation .notifications {
margin-bottom: 0;
}
.global-navigation .notifications__counter {
position: absolute;
top: 0;
left: 0;
width: 18px;
height: 18px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
color: #5f7a7b;
font-size: 10px;
font-weight: 500;
line-height: 1;
}
.global-navigation .notifications__counter:empty {
display: none;
}
.global-navigation .notifications .wds-dropdown.is-attached-to-bottom {
position: static;
}
.global-navigation .notifications .wds-dropdown.is-attached-to-bottom::before {
top: auto;
bottom: 62px;
}
.global-navigation .notifications .wds-dropdown.is-attached-to-bottom::after {
top: auto;
bottom: 64px;
}
.global-navigation .notifications .wds-dropdown.is-attached-to-bottom .wds-dropdown__content {
flex-direction: column;
padding: 0;
top: 0;
width: 320px;
line-height: 1.75;
transition: top 0.5s;
position: fixed;
}
.fandom-sticky-header.is-visible + .global-navigation .notifications .wds-dropdown.is-attached-to-bottom .wds-dropdown__content {
top: 46px;
}
.global-navigation .notifications .wds-dropdown.is-attached-to-bottom.wds-is-active .wds-dropdown__content {
display: flex;
}
.global-navigation__bottom {
background-color: #ffc500;
}
.global-navigation__bottom .wds-avatar {
display: inline-block;
position: relative;
height: 30px;
min-width: 30px;
width: 30px;
}
.global-navigation__bottom .wds-avatar__image {
border-radius: 50%;
}
.global-navigation__bottom .wds-dropdown {
line-height: 0;
margin-left: 15px;
}
.global-navigation__bottom .wds-dropdown__toggle {
justify-items: start;
width: 51px;
}
.global-navigation__bottom .wds-dropdown__toggle .global-navigation__icon {
border: 2px solid transparent;
}
.global-navigation__bottom .wds-dropdown.wds-open-to-right.attached-to-bottom::before {
display: none !important;
}
.global-navigation__bottom .wds-dropdown.wds-open-to-right.attached-to-bottom::after {
top: 26px;
transform: rotate(-90deg);
margin-left: 11px;
}
.global-navigation__bottom .wds-dropdown.attached-to-bottom .wds-dropdown__content {
bottom: 0;
left: 66px;
position: fixed;
top: auto;
transform: none;
min-width: 0;
max-width: 200px;
}
.global-navigation__bottom .wds-dropdown:hover:not(.is-anon-dropdown) .wds-dropdown__toggle .global-navigation__icon {
border-color: rgba(82, 0, 68, 0.25);
background-color: #f9edd8;
}
.global-navigation__bottom .wds-dropdown:hover.is-anon-dropdown .wds-dropdown__toggle .global-navigation__icon {
border-color: rgba(82, 0, 68, 0.25);
background-color: #f9edd8;
}
.global-navigation__bottom .wds-dropdown:active:not(.is-anon-dropdown) .wds-dropdown__toggle .global-navigation__icon {
border-color: #280033;
background-color: #fff;
}
.global-navigation__bottom .wds-dropdown:active.is-anon-dropdown .wds-dropdown__toggle .global-navigation__icon {
border-color: #280033;
background-color: #fff;
}
.global-navigation__bottom .wds-dropdown.is-anon-dropdown .wds-dropdown__content {
padding: 0 12px;
}
.global-navigation__bottom .wds-dropdown.is-anon-dropdown .wds-dropdown__content > * {
margin: 12px 0;
}
.global-navigation__bottom .wds-dropdown.is-anon-dropdown .wds-dropdown__content hr {
border-top: 1px solid #bed1cf;
border-bottom: 0;
}
.global-navigation__bottom .wds-dropdown.is-anon-dropdown .wds-dropdown__content .global-navigation__register-text {
line-height: 1.75;
}
.global-navigation__bottom .wds-dropdown:not(.is-anon-dropdown) .wds-avatar__image {
border: 2px solid #520044;
}
.global-navigation__bottom .wds-button {
color: #280033;
}
.global-navigation__bottom .wds-button:not(.wds-is-secondary) {
background-color: #280033;
border-color: #280033;
color: #fff;
}
.global-navigation__bottom .wds-button:not(.wds-is-secondary):hover {
background-color: #b80099 !important;
border: 1px solid #b80099 !important;
}
.global-navigation__bottom .wds-button.wds-is-secondary:hover {
border: 1px solid #b80099;
color: #67295d;
}
body.is-home-page .wds-global-navigation-wrapper.is-placeholder {
background-color: #ffc500;
}
@media screen and (min-width: 1024px) {
body.is-home-page .wds-global-navigation-wrapper.is-placeholder {
display: none;
}
}
.global-navigation__link.is-fan-central {
display: none;
}
.global-navigation .beta-tag {
align-items: center;
background-color: #fa005a;
border-radius: 3px;
color: #fff;
display: flex;
font-size: 8px;
font-weight: bold;
height: 15px;
justify-content: center;
margin-top: 3px;
text-transform: uppercase;
width: 28px;
}
/* START - Styles for global navigation search.*/
.global-nav-search-modal {
align-items: center;
justify-content: center;
display: none;
position: fixed;
right: 0;
top: 0;
z-index: 1;
left: 66px;
}
.global-nav-search-modal__close-container {
display: flex;
flex-flow: row-reverse;
}
.global-nav-search-modal__close {
background: transparent;
border: 0;
z-index: 800;
margin-right: 7px;
margin-bottom: 13px;
}
.global-nav-search-modal__close-icon {
fill: #f9edd8 !important;
}
.global-nav-search-modal::before {
background-color: rgba(14, 25, 26, 0.6);
content: "";
display: block;
bottom: 0;
width: 100%;
height: 100%;
position: fixed;
}
.global-nav-search-modal-content {
width: 100%;
height: 100%;
background-color: transparent;
z-index: 799;
border: 0;
/*START - Change search-box properties when it is placed in the modal*/
/*END - Change search-box properties when it is placed in the modal*/
}
.global-nav-search-modal-content .search-box__container {
background-color: #F8F8F8;
border: 2px solid #C7C7C7;
}
.global-nav-search-modal-content .search-box__input-search-box {
color: #3A3A3A !important;
}
.global-nav-search-modal-content .search-box__search-submit {
background: #7C4373;
}
.global-nav-search-modal-content .search-box__search-submit svg path {
fill: #FFFFFF;
}
.global-nav-search-modal.is-visible {
display: flex;
width: 100%;
height: 100%;
}
/* END - Styles for global navigation search.*/
/* START - Styles for new search-box */
.search-box-bottom-wrapper {
display: flex;
flex-direction: column;
align-items: center;
background: linear-gradient(0deg, rgba(41, 0, 34, 0.5), rgba(41, 0, 34, 0.5)), url(https://static.wikia.nocookie.net/a1b620c0-0b7c-478f-ae53-3ddc8870ccdf), #280033;
background-position: right 50%;
}
.search-box {
margin: 24px auto;
width: 100%;
}
@media only screen and (min-width: 768px) {
.search-box {
max-width: 550px;
}
}
@media only screen and (min-width: 1024px) {
.search-box {
max-width: 800px;
}
}
.search-box input {
padding: 0;
font-family: Rubik, Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 32px;
}
.search-box.is-mobile-view {
display: none;
}
@media only screen and (max-width: 767px) {
.search-box.is-mobile-view {
display: block;
}
}
.search-box.is-desktop-view {
display: none;
}
@media only screen and (min-width: 768px) {
.search-box.is-desktop-view {
display: block;
}
}
.search-box__search-icon-placeholder > svg > path {
fill: #f9edd8;
}
.search-box__search-icon-submit {
width: 12px;
height: 12px;
}
.search-box__search-label {
align-items: center;
display: flex;
flex: 1 1 auto;
z-index: 2;
height: 24px;
margin-right: 6px;
}
.search-box__search-label-text {
color: #f9edd8;
font-family: Rubik, Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 32px;
}
.search-box__container {
display: flex;
flex-direction: row;
align-items: flex-start;
margin: auto;
background-color: #280033;
padding: 6px 12px 6px 12px;
border: 2px solid #f9edd8;
border-radius: 100px;
}
@media only screen and (max-width: 767px) {
.search-box__container {
margin: 0 30px;
}
}
.search-box.homepage-search-is-active .search-box__container .search-box__search-label .search-box__input-search-box {
display: block;
font-family: Rubik, Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 32px;
color: #f9edd8;
}
.search-box.homepage-search-is-active .search-box__container .search-box__search-label .search-box__search-label-text {
display: none;
}
.search-box__input-search-box {
color: #f9edd8;
width: 100%;
outline: none;
background: none;
border: 0 transparent;
display: none;
}
.search-box__search-submit {
display: inherit;
border: 0 transparent;
border-radius: 50px;
height: 24px;
width: 24px;
background: #f9edd8;
align-items: center;
justify-content: center;
cursor: pointer;
}
.search-box__search-submit:hover {
background: #fa005a;
}
.search-box__search-submit svg {
width: 12px;
height: 12px;
}
/* END - Styles for new search-box */
/* END - Styles for new global navigation. Generated through the Sass npm module*/
/* START - Global-nav-overrides styles */
.global-navigation-mobile-wrapper.is-f2 {
position: sticky;
top: 0;
width: 100%;
z-index: 5000101;
}
.global-navigation-mobile-wrapper.is-f2.has-active-menu {
position: fixed;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__content-bar {
height: 56px;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-panel {
border-top: 1px solid #0e191a;
overflow-y: scroll;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile, .global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-panel, .global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__search-panel {
background: #ffc500;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-link.is-author-profile, .global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-item.is-wiki-profile {
background: #1a1a1a;
color: #00d6d6;
margin-bottom: 0;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__icon.is-menu, .global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__icon.is-search {
color: #fff;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-link.is-author-profile, .global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-item.is-wiki-profile {
font-size: 12px;
font-weight: 500;
text-transform: uppercase;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-link {
border-left: none;
font-size: 18px;
font-weight: 500;
text-transform: uppercase;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-link-text {
border-bottom: 4px solid #fff;
color: #00d6d6;
padding-bottom: 5px;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__search-input-wrapper {
border-bottom: none;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__search-label-icon {
color: #fff;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__search-input-border {
margin-left: 32px;
width: 80%;
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
.wds-global-footer.is-f2 .wds-global-footer__main {
width: 988px;
}
}
/**
* Special part for explore-XX/contact/about?uselang=xx
*/
body.page-template-default .wds-global-navigation.is-f2 .wds-global-navigation__links-and-search > .wds-global-navigation__link:not(.wds-is-games):not(.wds-is-movies):not(.wds-is-tv):not(.wds-is-video) {
background: #002a32;
border-top-color: #002a32;
color: #fff;
font-size: 14px;
font-weight: 500;
padding-right: 120px;
text-transform: uppercase;
}
body.page-template-default .wds-global-navigation.is-f2 .wds-global-navigation__links-and-search > .wds-global-navigation__link:not(.wds-is-games):not(.wds-is-movies):not(.wds-is-tv):not(.wds-is-video):hover {
color: #ccc;
}
body.page-template-default .wds-global-navigation.is-f2.wds-search-is-active .wds-global-navigation__links-and-search > .wds-global-navigation__link:not(.wds-is-games):not(.wds-is-movies):not(.wds-is-tv):not(.wds-is-video) {
padding: 0;
}
body.page-template-default .wds-global-navigation.is-f2 .wds-global-navigation__links-and-search > .wds-global-navigation__link:hover {
color: #98a7a5;
}
html:not([lang=en]) body.page-template-default .wds-global-navigation.is-f2.wds-search-is-active .wds-global-navigation__links-and-search {
padding-right: 36px;
}
/* END - Global-nav-overrides styles */
</style>
<script data-webtasks-id="ff113021-2157-4c24">
window.twttr = (function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0],
t = window.twttr || {};
if (d.getElementById(id)) return t;
js = d.createElement(s);
js.id = id;
js.src = "https://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
t._e = [];
t.ready = function(f) {
t._e.push(f);
};
return t;
}(document, "script", "twitter-wjs"));
</script>
<div id="parsely-root" style="display: none" data-webtasks-id="1167f366-5955-482e">
<span id="parsely-cfg" data-parsely-site="fandom.wikia.com" data-webtasks-id="6517fcc9-6d5c-4bf6"></span>
</div>
<div class="dotted-background__wrapper" data-webtasks-id="0e3c9e4b-1233-48e1">
<div class="dotted-background" style="background-color: #002a32" data-dots-color="transparent" data-webtasks-id="bf69b325-8d41-4339">
<div class="dotted-background__dots" style="background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22transparent%22%20viewBox%3D%220%200%2014.3%20281%22%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22133.2%22%20r%3D%221.7%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22147.1%22%20r%3D%221.7%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22161.4%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22175.8%22%20r%3D%221.4%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22190.2%22%20r%3D%221.3%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22204.7%22%20r%3D%221.1%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22219%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22233.5%22%20r%3D%22.8%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22247.9%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22262.3%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22276.6%22%20r%3D%22.6%22%2F%3E%3Cg%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22118.9%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22104.5%22%20r%3D%221.4%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%2290.1%22%20r%3D%221.3%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%2275.7%22%20r%3D%221.1%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%2261.3%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%2246.9%22%20r%3D%22.8%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%2232.5%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%2218%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%223.7%22%20r%3D%22.6%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22125.8%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22111.5%22%20r%3D%221.4%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2297%22%20r%3D%221.3%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2282.6%22%20r%3D%221.1%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2268.2%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2253.8%22%20r%3D%22.8%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2239.4%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2224.9%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2210.6%22%20r%3D%22.6%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22154.2%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22140.1%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22168.5%22%20r%3D%221.4%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22183%22%20r%3D%221.3%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22197.4%22%20r%3D%221.1%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22211.8%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22226.2%22%20r%3D%22.8%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22240.6%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22255.1%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22269.4%22%20r%3D%22.6%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)" data-webtasks-id="ad531755-aa67-4c68"></div>
</div>
</div>
<div class="article-layout-wrapper" data-webtasks-id="d190d6c9-2e47-4df3">
<div class="article-layout fandom-theme-2" data-webtasks-id="210895b9-5954-4c37">
<div class="article-layout__rail" data-webtasks-id="d251c814-8dc8-47e9">
</div>
<article class="article-layout__main" data-webtasks-id="257fb681-eaef-4797">
<div class="article-layout__header" data-webtasks-id="f9c4bc5a-548a-4b8e">
<div class="article-header" data-webtasks-id="a5fc3a8f-83b8-4bb6">
<img class="article-header__image" src="https://static.wikia.nocookie.net/5a0f7cbf-b60b-45b5-8be9-ce6c1b432b94/scale-to-width-down/800" srcset="https://static.wikia.nocookie.net/5a0f7cbf-b60b-45b5-8be9-ce6c1b432b94/scale-to-width-down/200 200w, https://static.wikia.nocookie.net/5a0f7cbf-b60b-45b5-8be9-ce6c1b432b94/scale-to-width-down/400 400w, https://static.wikia.nocookie.net/5a0f7cbf-b60b-45b5-8be9-ce6c1b432b94/scale-to-width-down/600 600w, https://static.wikia.nocookie.net/5a0f7cbf-b60b-45b5-8be9-ce6c1b432b94/scale-to-width-down/800 800w" sizes="(min-width: 800px) 800px, (min-width: 600px) 600px, (min-width: 400px) 400px, 200px" data-webtasks-id="904df939-bb3f-498f">
<div class="article-header__title " data-webtasks-id="4cfaa143-7564-4dff">
<h1 data-webtasks-id="6050ce30-170d-441c">The Many Secret Invasions the Skrulls Have Attempted In Marvel History</h1>
</div>
<div class="article-header__attribution" data-webtasks-id="29dee479-67f6-43de">
<a href="https://www.fandom.com/u/Blair%20Marnell" class="article-header__author" data-webtasks-id="65038d41-2f7f-49b0">
<span class="author vcard" data-webtasks-id="1ae1cdfa-a61a-451e">
<span class="author-name fn" data-webtasks-id="e5a991a7-c26c-44ea">Blair Marnell</span>
</span>
</a>
<time class="article-header__timeago updated" datetime="2023-06-23T19:13:36+00:00" data-webtasks-id="330b01d8-8f04-4ccd">
Jun 23
</time>
</div>
<div class="article-header__topic-tags" data-webtasks-id="5adc4db4-ea50-4f0e">
<div class="article-topic-tags is-mobile" data-webtasks-id="dce9ffc8-e5a1-4963">
<a data-tracking="{"category":"card","label":"topic.link","action":138814,"post_id":138814}" class="article-topic-tags__tag" href="https://www.fandom.com/topics/tv" target="_top" data-webtasks-id="69f70afc-b9d7-4048">TV</a>
<a data-tracking="{"category":"card","label":"topic.link","action":138814,"post_id":138814}" class="article-topic-tags__tag" href="https://www.fandom.com/topics/streaming" target="_top" data-webtasks-id="909a6324-2c86-4039">Streaming</a>
</div>
<div class="article-topic-tags is-desktop" data-webtasks-id="0fb23aa9-7523-4f4a">
<a data-tracking="{"category":"card","label":"topic.link","action":138814,"post_id":138814}" class="article-topic-tags__tag" href="https://www.fandom.com/topics/tv" target="_top" data-webtasks-id="4f33306c-f538-4ca3">TV</a>
<a data-tracking="{"category":"card","label":"topic.link","action":138814,"post_id":138814}" class="article-topic-tags__tag" href="https://www.fandom.com/topics/streaming" target="_top" data-webtasks-id="91927e34-67a3-423b">Streaming</a>
<a data-tracking="{"category":"card","label":"topic.link","action":138814,"post_id":138814}" class="article-topic-tags__tag" href="https://www.fandom.com/topics/marvel" target="_top" data-webtasks-id="f8a62204-a67a-428e">Marvel</a>
<a data-tracking="{"category":"card","label":"topic.link","action":138814,"post_id":138814}" class="article-topic-tags__tag" href="https://www.fandom.com/topics/mcu" target="_top" data-webtasks-id="38c4599b-e79a-43be">MCU</a>
</div>
</div>
<div class="article-share" data-webtasks-id="c6972042-02ef-4bff">
<a class="article-share__button is-facebook" title="Facebook" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.fandom.com%2Farticles%2Fsecret-invasion-skrulls-marvel-history" data-open-in-window="" data-webtasks-id="db4e1fe1-5704-483e">
<svg class="wds-icon" alt="" data-webtasks-id="c6b45bbe-1480-4aa6">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-facebook" data-webtasks-id="3e23159d-4af2-4046"></use>
</svg>
</a>
<a class="article-share__button is-twitter" title="Twitter" href="https://twitter.com/share?url=https%3A%2F%2Fwww.fandom.com%2Farticles%2Fsecret-invasion-skrulls-marvel-history" data-open-in-window="" data-webtasks-id="0e46d0ca-e133-4f94">
<svg class="wds-icon" alt="" data-webtasks-id="f1956e00-82dd-4860">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-twitter" data-webtasks-id="836d0f81-de4d-4e53"></use>
</svg>
</a>
<a class="article-share__button is-reddit" title="Reddit" href="http://www.reddit.com/submit?url=https%3A%2F%2Fwww.fandom.com%2Farticles%2Fsecret-invasion-skrulls-marvel-history" data-open-in-window="" data-webtasks-id="976cc629-1ee0-4d66">
<svg class="wds-icon" alt="" data-webtasks-id="5d24aa5d-774c-4abc">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-reddit" data-webtasks-id="180fce8c-f5f2-44a5"></use>
</svg>
</a>
</div>
</div>
</div>
<div class="article-layout__review" data-webtasks-id="5bf1bee0-73a2-43e7">
</div>
<div class="article-layout__content" data-webtasks-id="3fb363fc-b824-46b4">
<div class="article-content entry-content" data-webtasks-id="df7eb19b-6aed-42cd">
<p data-webtasks-id="aa6491f5-35f6-4cc6">Since the early days of the <a href="https://marvel.fandom.com/wiki/Marvel_Universe" data-webtasks-id="e8033421-237f-4d5c">Marvel Universe</a>, shape-shifting alien <a href="https://marvel.fandom.com/wiki/Skrulls" data-webtasks-id="372cd46d-fe0a-40c1">Skrulls</a> have proven to be a formidable threat to the heroes of Earth. The Skrulls are far from the only aliens to invade in the six decades since their debut, however, they have come closer than most to total victory thanks to their ability to make everyone question if anyone can be trusted.</p>
<p data-webtasks-id="d0c822a2-fbed-497d"><em data-webtasks-id="9a2f201d-2d79-4559"><a href="https://marvelcinematicuniverse.fandom.com/wiki/Captain_Marvel_(film)" data-webtasks-id="dac7d375-8584-444a">Captain Marvel</a></em> introduced the <a href="https://marvelcinematicuniverse.fandom.com/wiki/Skrulls" data-webtasks-id="fed94311-60b8-47df">Skrulls</a> to the <a href="https://marvel.fandom.com/wiki/Marvel_Cinematic_Universe" data-webtasks-id="3b12808d-911e-4395">Marvel Cinematic Universe</a> in a more sympathetic light by presenting them as refugees who were being persecuted and hunted by the <a href="https://marvelcinematicuniverse.fandom.com/wiki/Kree" data-webtasks-id="0cd1bd75-3c48-4fd0">Kree</a>. Unfortunately for the MCU, many Skrulls are done playing nice in <em data-webtasks-id="ac0d5130-28fc-4c8c"><a href="https://marvelcinematicuniverse.fandom.com/wiki/Secret_Invasion_(TV_series)" data-webtasks-id="e75c7ccd-5b3a-46c1">Secret Invasion</a></em>, the new original series on Disney+. It’s been nearly three decades since Captain Marvel promised to help the Skrulls find a new home, and the younger generation of Skrulls is particularly angry that <a href="https://marvelcinematicuniverse.fandom.com/wiki/Captain_Marvel" data-webtasks-id="a9b20193-b76d-4af8">Carol Danvers</a> was unable to fulfill her promise. Now, <a href="https://marvelcinematicuniverse.fandom.com/wiki/Nick_Fury" data-webtasks-id="507e952e-2920-41ea">Nick Fury</a> (<a href="https://marvelcinematicuniverse.fandom.com/wiki/Samuel_L._Jackson" data-webtasks-id="1c302e13-7efb-42c7">Samuel L. Jackson</a>) will have to repel the invasion without the aid of the Avengers.</p>
<figure class="video fandom-video" data-blot="embed-video" data-blot-data="{"jwplayerId":"IBWkamAY"}" data-jwplayer-id="IBWkamAY" data-webtasks-id="c5e16e83-11c8-48f1">
<div class="fandom-video__container" data-webtasks-id="e5323b1f-c756-4153"></div>
</figure>
<p data-webtasks-id="7543eefe-f3ee-4b71">With <em data-webtasks-id="ee778481-ec2d-495c">Secret Invasion</em> having made its debut, we’re taking a look back at the Skrulls’ previous invasion attempts across the Marvel Universe. Given the many appearances of the Skrulls, we’re not trying to list every single plan ever, but it does illustrate just how far the Skrulls are willing to go to make Earth their new home.</p>
<h2 data-webtasks-id="617b5bdf-9b49-4de3">First Encounter</h2>
<figure data-blot="image" data-blot-data="{"src":"cf56f057-049a-42fb-a403-e7b5fb930761","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="5f062bc8-fbe8-443b">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/cf56f057-049a-42fb-a403-e7b5fb930761/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/cf56f057-049a-42fb-a403-e7b5fb930761/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/cf56f057-049a-42fb-a403-e7b5fb930761/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/cf56f057-049a-42fb-a403-e7b5fb930761/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/cf56f057-049a-42fb-a403-e7b5fb930761/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="b585f550-fa9d-4699">
</figure>
<p data-webtasks-id="61c6d7bc-c995-4c20">The Skrulls’ first appearance was in <em data-webtasks-id="7a2cabc4-a53c-45d4"><a href="https://marvel.fandom.com/wiki/Fantastic_Four_Vol_1_2" data-webtasks-id="e48e4844-59dc-46f9">Fantastic Four</a></em><a href="https://marvel.fandom.com/wiki/Fantastic_Four_Vol_1_2" data-webtasks-id="64a2dcfc-3806-4601"> #2</a>, as the newly formed team of <a href="https://marvel.fandom.com/wiki/Reed_Richards_(Earth-616)" data-webtasks-id="d88c7d72-7956-47a0">Mr. Fantastic</a>, <a href="https://marvel.fandom.com/wiki/Susan_Storm_(Earth-616)" data-webtasks-id="b184d3b4-7c54-487a">Invisible Girl</a>, <a href="https://marvel.fandom.com/wiki/Benjamin_Grimm_(Earth-616)" data-webtasks-id="6711a2be-d26e-4ca4">The Thing</a>, and the <a href="https://marvel.fandom.com/wiki/Jonathan_Storm_(Earth-616)" data-webtasks-id="c9782a25-fdf1-4eb1">Human Torch</a> found themselves targeted by Skrull agents who impersonated them in public. Since the <a href="https://marvel.fandom.com/wiki/Fantastic_Four_(Earth-616)" data-webtasks-id="22eae4f6-fbb9-4431">Fantastic Four</a> were the first superhuman heroes to emerge in years, the Skrulls decided that the FF presented too great of a threat to their invasion plans.</p>
<p data-webtasks-id="dff488bf-aedb-469a">Naturally, the Fantastic Four proved that the Skrulls’ fears were correct when they quickly subdued their imposters.The team took things even further by impersonating the Skrull agents before traveling to their mothership in orbit, where they fooled the Skrull commander into believing that Earth could easily defeat the Skrulls. That scared off the Skrulls while the four Skrull spies were brainwashed into believing that they were cows and left to graze in a field alongside actual cows. This all caused some serious problems years later when the <a href="https://marvel.fandom.com/wiki/Skrull_Cows_(Earth-616)" data-webtasks-id="ed593841-8cb7-48f1">Skrull cows</a> were slaughtered and eaten. People who consumed the Skrull cow meat gained limited morphing abilities and a fatal brain affliction in the offbeat series <em data-webtasks-id="917fe98a-4945-446c"><a href="https://marvel.fandom.com/wiki/Skrull_Kill_Krew_Vol_1_1" data-webtasks-id="d5154fb0-77b6-45fa">Skrull Kill Krew</a></em>.</p>
<p data-webtasks-id="3e5736e1-9daa-46e1">Unfortunately for the people of Earth, the Skrulls weren’t fooled for long by Mr. Fantastic’s plan. Months later, the Skrulls unleashed a <a href="https://marvel.fandom.com/wiki/Kl'rt_(Earth-616)" data-webtasks-id="52de873a-a1ab-468e">Super-Skrull</a> who could manifest the powers of all four of the FF. And the Fantastic Four has had to battle the Skrulls several times over the years to keep them at bay.</p>
<h2 data-webtasks-id="a1bd2ed3-3489-461e">The Kree-Skrull War</h2>
<figure data-blot="image" data-blot-data="{"src":"ac7e0fc1-5787-42b4-b1e5-4c54915f060d","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="2e574446-1b2b-4f46">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/ac7e0fc1-5787-42b4-b1e5-4c54915f060d/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/ac7e0fc1-5787-42b4-b1e5-4c54915f060d/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/ac7e0fc1-5787-42b4-b1e5-4c54915f060d/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/ac7e0fc1-5787-42b4-b1e5-4c54915f060d/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/ac7e0fc1-5787-42b4-b1e5-4c54915f060d/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="e0510514-7f3b-49e8">
</figure>
<p data-webtasks-id="996703bc-4f26-468f">As much as the Skrulls were at conflict with humanity, they had an even greater and ancient enemy in the <a href="https://marvel.fandom.com/wiki/Kree" data-webtasks-id="6d3080b2-8e49-441a">Kree</a>. In the seminal Avengers storyline, <em data-webtasks-id="e1daf513-65c6-4b08"><a href="https://marvel.fandom.com/wiki/Kree-Skrull_War" data-webtasks-id="9ea285ac-31f2-4b85">The Kree-Skrull War</a></em>, it was revealed that the Skrulls were once a more benevolent race who offered two other races, the <a href="https://marvel.fandom.com/wiki/Cotati" data-webtasks-id="0e1e6ff6-146a-448d">Cotati</a> and the Kree, the chance to compete for the Skrulls’ favor. When the Cotati were declared the winners, the Kree slaughtered both the Skrulls and the Cotati and stole the Skrulls’ technology for themselves.</p>
<p data-webtasks-id="46f5e683-3c8f-4599">In the present, the Skrulls had infiltrated Earth once again and sowed mistrust of the superheroes and <a href="https://marvel.fandom.com/wiki/Avengers_(Earth-616)" data-webtasks-id="352f2744-ff98-4850">the Avengers</a> in particular. The Skrulls even briefly fooled the Avengers into disbanding. As the conflict grew in scope, the Avengers actually had to travel to space to bring the war to a halt. And this led to the Avengers’ ally, <a href="https://marvel.fandom.com/wiki/Richard_Jones_(Earth-616)" data-webtasks-id="4279c692-eaf0-443b">Rick Jones</a>, accessing previously unrevealed powers which he used to briefly recreate Marvel’s Golden Age heroes to turn the tide of battle.</p>
<p data-webtasks-id="a795c1f9-07d1-4775">Mr. Fantastic, <a href="https://marvel.fandom.com/wiki/Anthony_Stark_(Earth-616)" data-webtasks-id="4288712e-c231-4430">Iron Man</a>, <a href="https://marvel.fandom.com/wiki/Blackagar_Boltagon_(Earth-616)" data-webtasks-id="8e86385b-3c97-4687">Black Bolt</a>, <a href="https://marvel.fandom.com/wiki/Namor_McKenzie_(Earth-616)" data-webtasks-id="6cde1983-5f71-484f">Namor</a>, <a href="https://marvel.fandom.com/wiki/Charles_Xavier_(Earth-616)" data-webtasks-id="07bb7eed-8ab2-4ce2">Professor Charles Xavier</a>, and <a href="https://marvel.fandom.com/wiki/Stephen_Strange_(Earth-616)" data-webtasks-id="d16c1ad8-8126-4e88">Doctor Strange</a> came together in the aftermath of the invasion and formed the <a href="https://marvel.fandom.com/wiki/Illuminati_(Earth-616)" data-webtasks-id="907d02ff-d17b-445e">Illuminati</a>. They even traveled to the Skrull homeworld in an attempt to warn them against any future moves against Earth. This spectacularly backfired when they were all captured and then allowed to escape… after the Skrulls had more than enough information to eventually hide undetected on Earth.</p>
<h2 data-webtasks-id="e9dcd71a-34ef-403f">Skrull Cap</h2>
<figure data-blot="image" data-blot-data="{"src":"8f0b2276-b5a9-46e1-827c-41636451803e","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="edbfeb03-fdbd-4b9e">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/8f0b2276-b5a9-46e1-827c-41636451803e/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/8f0b2276-b5a9-46e1-827c-41636451803e/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/8f0b2276-b5a9-46e1-827c-41636451803e/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/8f0b2276-b5a9-46e1-827c-41636451803e/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/8f0b2276-b5a9-46e1-827c-41636451803e/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="25058272-95d2-4543">
</figure>
<p data-webtasks-id="6e4b837a-e743-48bd">Years later, a handful of Skrulls came up with a plan to use <a href="https://marvel.fandom.com/wiki/Steven_Rogers_(Earth-616)" data-webtasks-id="6374ab21-710a-47b3">Captain America</a> to pit humanity against itself. The Skrulls correctly realized that Cap was perhaps the most widely-trusted superhero in the world, and they took steps to bolster his reputation before capturing Steve Rogers and impersonating him. This allowed a <a href="https://marvel.fandom.com/wiki/Sn%27Tlo_(Earth-616)" data-webtasks-id="5eac70e3-8a97-4732">Skrull Cap</a> to go on live television and expose two of his companions as Skrulls in order to whip up a dangerous wave of paranoia.</p>
<p data-webtasks-id="7091ed0c-0c9a-4731">The Skrull Cap convinced the public that the Skrulls had infiltrated all walks of life, which led to riots and violent attacks between neighbors, friends, and even family members. Thanks to an assist from the Avengers and the Fantastic Four, Steve Rogers was eventually able to expose his doppelganger and defuse the threat. But this was just a prelude to further invasions.</p>
<h2 data-webtasks-id="a5dda715-1340-417f">Minions of Apocalypse</h2>
<figure data-blot="image" data-blot-data="{"src":"a3463dcd-4afb-4883-818c-b70d79883175","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="2601a9d6-bcab-4760">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/a3463dcd-4afb-4883-818c-b70d79883175/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/a3463dcd-4afb-4883-818c-b70d79883175/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/a3463dcd-4afb-4883-818c-b70d79883175/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/a3463dcd-4afb-4883-818c-b70d79883175/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/a3463dcd-4afb-4883-818c-b70d79883175/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="6056fbba-42c4-485e">
</figure>
<p data-webtasks-id="5664e075-5beb-44a3">The Skrulls pulled off another hero swap when they ambushed the <a href="https://marvel.fandom.com/wiki/X-Men_(Earth-616)" data-webtasks-id="5ae47390-c83a-4126">X-Men</a> while they were on their way back to Earth, and the Skrulls replaced <a href="https://marvel.fandom.com/wiki/James_Howlett_(Earth-616)" data-webtasks-id="880bb7f4-863b-442e">Wolverine</a> with an imposter. This time, the Skrulls were acting on behalf of <a href="https://marvel.fandom.com/wiki/En_Sabah_Nur_(Earth-616)" data-webtasks-id="2fbb00f7-cdec-47d3">Apocalypse</a>, the X-Men’s immortal foe. And one of the reasons why the X-Men fell for the deception is that the <a href="https://marvel.fandom.com/wiki/James_Howlett_(Skrull)_(Earth-616)" data-webtasks-id="e6e8f760-ff51-4937">Skrull Wolverine</a> really believed that he was the original article.</p>
<p data-webtasks-id="3a28bcd3-c040-4eb0">Skrull Wolverine actually died heroically while fighting the real Wolverine, who had been brainwashed into becoming one of Apocalypse’s horsemen. During this time, the X-Men found that they had unexpected allies in the form of mutant Skrulls who were outcasts from their own people. At the conclusion of the battle, Professor X decided to leave Earth with the mutant Skrulls, whom he renamed <a href="https://marvel.fandom.com/wiki/Cadre_K_(Earth-616)" data-webtasks-id="76306700-19cb-42de">Cadre K</a>. But while the Skrulls were only minions in this story, their larger agenda loomed in the future.</p>
<h2 data-webtasks-id="3823a043-1416-4475">The Original <em data-webtasks-id="af82fc70-4422-4c1a">Secret Invasion</em></h2>
<figure data-blot="image" data-blot-data="{"src":"93fe4d3b-1816-4f03-9344-c88a0c747b67","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="46037be3-d781-4b03">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/93fe4d3b-1816-4f03-9344-c88a0c747b67/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/93fe4d3b-1816-4f03-9344-c88a0c747b67/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/93fe4d3b-1816-4f03-9344-c88a0c747b67/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/93fe4d3b-1816-4f03-9344-c88a0c747b67/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/93fe4d3b-1816-4f03-9344-c88a0c747b67/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="b13a64dc-42b3-47cb">
</figure>
<p data-webtasks-id="acc270f6-5a77-4ba9">In the aftermath of the superhero <a href="https://marvel.fandom.com/wiki/Civil_War_(Event)" data-webtasks-id="0ab2390d-e52e-4bcb">Civil War</a>, the <a href="https://marvel.fandom.com/wiki/New_Avengers_(Earth-616)" data-webtasks-id="675d1a79-edc6-4371">New Avengers</a> stumbled upon an invasion plot when <a href="https://marvel.fandom.com/wiki/Pagon_(Earth-616)" data-webtasks-id="2d4c942d-7d3e-4008">Elektra</a> was killed and revealed to have been replaced by a Skrull. The two rival teams of Avengers were already at each other’s throats, and this did little to heal the divisions between them. Unbeknownst to the heroes, <a href="https://marvel.fandom.com/wiki/Jessica_Drew_(Earth-616)" data-webtasks-id="881f4019-cef9-4ba9">Spider-Woman</a>/Jessica Drew had already been replaced by the Skrull leader, <a href="https://marvel.fandom.com/wiki/Veranke_(Earth-616)" data-webtasks-id="3f7ea994-c771-4d9f">Princess Veranke</a>, and she nearly led the Skrulls to victory, as even more superheroes were revealed to have been replaced by Skrulls along the way.</p>
<p data-webtasks-id="a20568ae-54b4-41a5">The Skrulls successfully kidnapped other heroes and replaced them in order to sow confusion when the actual invasion began. It took an unlikely alliance of heroes and villains to defeat the Skrulls, but it left the heroes vulnerable to the <a href="https://marvel.fandom.com/wiki/Dark_Reign" data-webtasks-id="cc285f30-0a3b-4dab">Dark Reign</a> of <a href="https://marvel.fandom.com/wiki/Norman_Osborn_(Earth-616)" data-webtasks-id="48a6ebaf-ddb1-443f">Norman Osborn</a> and his <a href="https://marvel.fandom.com/wiki/Cabal_(Dark_Illuminati)_(Earth-616)" data-webtasks-id="df1f0836-7a74-4c96">Cabal</a>.</p>
<h2 data-webtasks-id="812ec8e3-d855-49ec"><em data-webtasks-id="f76ded7f-13c2-4f59">Secret Invasion</em> Take 2</h2>
<figure data-blot="image" data-blot-data="{"src":"c771fd5b-edae-4dea-8e46-e1f248da4c23","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="77302eee-45c2-4656">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/c771fd5b-edae-4dea-8e46-e1f248da4c23/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/c771fd5b-edae-4dea-8e46-e1f248da4c23/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/c771fd5b-edae-4dea-8e46-e1f248da4c23/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/c771fd5b-edae-4dea-8e46-e1f248da4c23/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/c771fd5b-edae-4dea-8e46-e1f248da4c23/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="70a7ecab-f768-4c50">
</figure>
<p data-webtasks-id="bbf44968-70ee-45b2">Last year, Marvel published a <a href="https://marvel.fandom.com/wiki/Secret_Invasion_Vol_2" data-webtasks-id="72552e41-86b7-4049">new </a><em data-webtasks-id="438a366e-51d1-4e50"><a href="https://marvel.fandom.com/wiki/Secret_Invasion_Vol_2" data-webtasks-id="1e5d4c65-98ef-40bc">Secret Invasion </a></em><a href="https://marvel.fandom.com/wiki/Secret_Invasion_Vol_2" data-webtasks-id="8309e813-7bdd-4a14">miniseries</a> which revealed that two different Skrull factions had set up on Earth. One of the factions was following in Vernake’s footsteps and attempting another invasion. However, the other Skrull faction aligned with humanity and even convinced Tony Stark to move past his hatred for the Skrulls and work with them.</p>
<p data-webtasks-id="50ac8549-5ed3-4b82">It took a lot more effort to get <a href="https://marvel.fandom.com/wiki/Maria_Hill_(Earth-616)" data-webtasks-id="1ebc8753-1cda-4e21">Maria Hill</a> on board with this plan, but there are now Skrull agents on Earth who are actively working with the Avengers to protect humanity while making a new home for themselves.</p>
<h2 data-webtasks-id="26f3724a-1ed6-45fb">Animated Invasion</h2>
<figure data-blot="image" data-blot-data="{"src":"ccc6ca8c-b455-4008-963c-6699f201f500","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="1522970f-3e41-4edb">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/ccc6ca8c-b455-4008-963c-6699f201f500/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/ccc6ca8c-b455-4008-963c-6699f201f500/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/ccc6ca8c-b455-4008-963c-6699f201f500/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/ccc6ca8c-b455-4008-963c-6699f201f500/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/ccc6ca8c-b455-4008-963c-6699f201f500/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="92551376-6245-4a6d">
</figure>
<p data-webtasks-id="d1620f18-6000-4929"><em data-webtasks-id="1c1362ba-f4d6-423d"><a href="https://marvel.fandom.com/wiki/Avengers:_Earth%27s_Mightiest_Heroes_(animated_series)" data-webtasks-id="8b58ec9e-8031-497e">The Avengers: Earth’s Mightiest Heroes</a></em> animated series offered the first real adaptation of <em data-webtasks-id="89a89f40-14d0-4b3b">Secret Invasion</em>, which played out over 13 episodes from the end of Season 1 to the middle of Season 2. As one of the twists, <a href="https://marvel.fandom.com/wiki/Steven_Rogers_(Earth-8096)" data-webtasks-id="e6cc83c7-7381-490c">Captain America</a> was captured and <a href="https://marvel.fandom.com/wiki/Pitt%27o_Nili_(Earth-8096)" data-webtasks-id="79f6ef79-426d-4b8d">replaced by the Skrulls</a> in the first season finale, which kept the imposter on the team for an extended period. The real Cap eventually staged an escape from Skrull custody alongside heroes and villains like <a href="https://marvel.fandom.com/wiki/Susan_Storm_(Earth-8096)" data-webtasks-id="5f425c44-9ccb-49af">Invisible Woman</a>, <a href="https://marvel.fandom.com/wiki/Barbara_Morse_(Earth-8096)" data-webtasks-id="a72a2b6f-75ac-4e3f">Mockingbird</a>, <a href="https://marvel.fandom.com/wiki/Ophelia_Sarkissian_(Earth-8096)" data-webtasks-id="2ef32ddd-357a-44bf">Madame Hydra</a>, and <a href="https://marvel.fandom.com/wiki/Klaus_Voorhees_(Earth-8096)" data-webtasks-id="c3070d34-9e1c-4ad8">King Cobra</a>.</p>
<p data-webtasks-id="379c2bbc-8608-4e45">Although the <em data-webtasks-id="fa7f35c0-0dee-490e">Secret Invasion</em> storyline came to a conclusion, Captain America felt the lingering effects of the Skrull deception because the general public no longer trusted him. It was a surprisingly sharp way to maintain the impact of that story.</p>
<h2 data-webtasks-id="041155a4-532a-442f">Fury Stands Alone</h2>
<figure data-blot="image" data-blot-data="{"src":"18028484-ad4b-4d90-b749-ddf7fd9dd6d6","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="e53ad422-a6db-4213">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/18028484-ad4b-4d90-b749-ddf7fd9dd6d6/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/18028484-ad4b-4d90-b749-ddf7fd9dd6d6/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/18028484-ad4b-4d90-b749-ddf7fd9dd6d6/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/18028484-ad4b-4d90-b749-ddf7fd9dd6d6/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/18028484-ad4b-4d90-b749-ddf7fd9dd6d6/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="a526e9b7-3937-4873">
</figure>
<p data-webtasks-id="fad92d0e-aadc-4e47">There are <strong data-webtasks-id="98133545-3ac1-4650">spoilers ahead</strong> for the first episode of <em data-webtasks-id="d5acf898-e833-471c">Secret Invasion</em>!</p>
<p data-webtasks-id="95e83a83-ba3b-4f6d">The last time anyone saw Nick Fury, at the end of <em data-webtasks-id="8126adec-4e05-468b"><a href="https://marvelcinematicuniverse.fandom.com/wiki/Spider-Man:_Far_From_Home" data-webtasks-id="4f5868e2-f13c-4bde">Spider-Man: Far From Home</a></em>, it looked like he was simply enjoying an extended vacation in space on a Skrull starship. But the vacation is over in <em data-webtasks-id="55bfa425-3532-4a4b">Secret Invasion</em>. So far, we know that the younger generation of Skrulls have rebelled against their elders, and <a href="https://marvelcinematicuniverse.fandom.com/wiki/Gravik" data-webtasks-id="e5f2ccac-d2e1-4a1d">Gravik</a> (<a href="https://marvelcinematicuniverse.fandom.com/wiki/Kingsley_Ben-Adir" data-webtasks-id="e57d6d02-9c48-444d">Kingsley Ben-Adir</a>) is poised to lead his people to victory over humanity. And one of Gravik’s most loyal followers is <a href="https://marvelcinematicuniverse.fandom.com/wiki/G%27iah" data-webtasks-id="911a7fa0-f297-4f3b">G’iah</a> (<a href="https://marvelcinematicuniverse.fandom.com/wiki/Emilia_Clarke" data-webtasks-id="af20e62b-49c4-44bd">Emilia Clarke</a>), the daughter of Fury’s Skrull ally and friend, <a href="https://marvelcinematicuniverse.fandom.com/wiki/Talos" data-webtasks-id="2f89e723-63e3-4d1a">Talos</a> (<a href="https://marvelcinematicuniverse.fandom.com/wiki/Ben_Mendelsohn" data-webtasks-id="3a5205ba-dc80-479b">Ben Mendelsohn</a>).</p>
<p data-webtasks-id="1615c13c-42f9-410d">Fury has been offworld building a new planetary defense organization called <a href="https://marvelcinematicuniverse.fandom.com/wiki/S.A.B.E.R." data-webtasks-id="a2c8ce9f-23a8-4f18">S.A.B.E.R.</a>, as also seen in the first trailer for <em data-webtasks-id="2e7b47c9-1be1-41c6"><a href="https://marvelcinematicuniverse.fandom.com/wiki/The_Marvels" data-webtasks-id="92cdd816-be9e-4488">The Marvels</a></em>. It was also revealed that Fury knew Gravik personally when he was a younger Skrull, and that the rebel leader is apparently responsible for the death of Talos’ wife (and G’iah’s mother), <a href="https://marvelcinematicuniverse.fandom.com/wiki/Soren" data-webtasks-id="7fe4fd5d-5b9b-49bc">Soren</a> (<a href="https://marvelcinematicuniverse.fandom.com/wiki/Sharon_Blynn" data-webtasks-id="df88ab94-8861-41f5">Sharon Blynn</a>).</p>
<p data-webtasks-id="3f61cac5-6c67-4b19">More alarmingly, the series premiere showed viewers that <a href="https://marvelcinematicuniverse.fandom.com/wiki/Everett_Ross" data-webtasks-id="977e37df-8f4c-4c1f">Everett K. Ross</a> (<a href="https://marvelcinematicuniverse.fandom.com/wiki/Martin_Freeman" data-webtasks-id="944888c9-788d-4d2c">Martin Freeman</a>) was replaced <a href="https://marvelcinematicuniverse.fandom.com/wiki/Everett_Ross/Skrull" data-webtasks-id="8d69a533-0c57-4e32">by a Skrull</a>, and it’s unclear what happened to the real Ross. Apparently Gravik’s Skrulls do keep some human prisoners alive, but Ross wasn’t seen among the captives we’ve seen. Assuming we’re able to take <a href="https://marvelcinematicuniverse.fandom.com/wiki/James_Rhodes" data-webtasks-id="8bf4e6ee-ba1b-4fbf">James “Rhodey” Rhodes</a>/War Machine (<a href="https://marvelcinematicuniverse.fandom.com/wiki/Don_Cheadle" data-webtasks-id="3e5b954d-634c-4a6f">Don Cheadle</a>) at face value, both Fury and <a href="https://marvelcinematicuniverse.fandom.com/wiki/Maria_Hill" data-webtasks-id="8cb922ef-c47c-4afe">Maria Hill</a> (<a href="https://marvelcinematicuniverse.fandom.com/wiki/Cobie_Smulders" data-webtasks-id="a3c54bc1-415a-464f">Cobie Smulders</a>) went AWOL from S.A.B.E.R. without sharing any warnings about the Skrull threat. This may have marked them as enemies of the U.S. government.</p>
<p data-webtasks-id="ba6b7717-5cb8-4a06">And in the shocking final moments, Gravik assumed Fury’s form and got Hill to drop her guard before shooting her, possibly fatally injuring her in the process.</p>
<p data-webtasks-id="c88701dc-47fe-4a01">We’ll see what happens next and how far the Skrulls’ mission goes, as <em data-webtasks-id="53394569-2325-4ef2">Secret Invasion</em>‘s season continues.</p>
<hr data-webtasks-id="ebe0b373-6629-4565">
<div data-blot="embed" data-blot-data="{"url":"https:\/\/www.fandom.com\/articles\/samuel-l-jackson-secret-invasion-nick-fury"}" data-webtasks-id="4f28aec5-fee5-4e81">
<div class="embedded-article" data-slug="samuel-l-jackson-secret-invasion-nick-fury" data-webtasks-id="6a7f8eab-5ccb-44e5"></div>
</div>
</div>
<div class="article-attribution" data-webtasks-id="fd5104ce-05fa-4e26">
<img class="article-attribution__avatar" src="https://static.wikia.nocookie.net/b1c83768-7951-4890-863d-1a6091d324e0/scale-to-width-down/90" alt="Blair Marnell" data-webtasks-id="634ac08b-2a2b-47a7">
<div class="article-attribution__byline" data-webtasks-id="95f1ad79-0940-49ea">
<a data-tracking="{"category":"article","label":"author.name","action":138814,"post_id":138814}" href="https://www.fandom.com/u/Blair%20Marnell" class="article-attribution__name" data-webtasks-id="2baff47f-bcd4-4c9c">Blair Marnell</a>
<div class="article-attribution__username" data-webtasks-id="d39ef88d-3b7b-418d">Blair Marnell</div>
</div>
<div class="article-attribution__bio" data-webtasks-id="e6d1576b-cc39-4712">Freelance writer for almost every major geek outlet, including Fandom!</div>
</div>
</div>
</article>
</div>
</div><script type="text/javascript" id="" data-webtasks-id="56f02558-4e58-4aba">console.debug("I Loaded, silly rabbit...",google_tag_manager["rm"]["30955087"](11));</script><script type="text/javascript" id="" data-webtasks-id="bd82adab-b0de-48e7">console.debug("I Loaded, silly rabbit...",google_tag_manager["rm"]["30955087"](30));</script>
<div class="feed-container is-placeholder" data-endpoint-feed="https://www.fandom.com/f2/api/public/feed" data-webtasks-id="b1ba2353-e27a-4b31"></div>
<!-- LiftIgniter -->
<script id="liftigniter-metadata" type="application/json" data-webtasks-id="c738ddae-b742-4764">[]</script>
<!-- End LiftIgniter -->
<script type="text/javascript" data-webtasks-id="149dbd58-70b0-4c7d">
(function(w,d,s,p,v,e,r) {w['$igniter_var']=v;w[v]=w[v]||function(){(w[v].q=w[v].q||[]).push(
arguments)};w[v].l=1*new Date();e=d.createElement(s),r=d.getElementsByTagName(s)[0];e.async=1;
e.src=p+'?ts='+(+new Date()/3600000|0);
r.parentNode.insertBefore(e,r)})(window,document,'script','//cdn.petametrics.com/l9ehhrb6mtv75bp2.js','$p');
</script>
<footer class="wds-global-footer wds-is-en is-f2" data-lang="footer-en" data-webtasks-id="38443403-4697-43c3">
<div class="wds-global-footer__main" data-webtasks-id="2000de4a-42e7-4fc4">
<div class="wds-global-footer__column" data-webtasks-id="ea7d5fac-dd48-4783">
<section class="wds-global-footer__section" data-webtasks-id="f5b63bbb-0264-40bf">
<div class="wds-global-footer__header-wrapper" data-webtasks-id="82152d55-0f0a-4d83">
<h2 class="wds-global-footer__header" data-tracking="{"label": "global-footer.logo"}" data-webtasks-id="2d9c2e67-4cd8-4e10">
<a href="https://www.fandom.com/" data-webtasks-id="009e7d63-5234-4a03">
<img class="wds-global-footer__header-logo" src="https://static.wikia.nocookie.net/6a181c72-e8bf-419b-b4db-18fd56a0eb60" alt="Fandom" data-webtasks-id="e1e22646-4f15-49fd">
</a>
</h2>
</div>
</section>
<section class="wds-global-footer__section wds-is-fandom-overview" data-webtasks-id="f41f93d1-6760-4bee">
<h3 class="wds-global-footer__section-header" data-webtasks-id="3a0fd32c-0fe9-4cdf">Explore Properties</h3>
<ul class="wds-global-footer__links-list" data-webtasks-id="779634a6-e792-4926">
<li class="wds-global-footer__links-list-item" data-webtasks-id="50224fa4-051d-4c9d">
<a href="https://www.fandom.com/" class="wds-global-footer__link" data-webtasks-id="defb8a36-0ae3-4fc5">
<div data-webtasks-id="85d06f5e-8456-483a">Fandom</div>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="d4731892-dc29-45f7">
<a href="https://www.muthead.com/" class="wds-global-footer__link" data-webtasks-id="85f02950-0cc2-4a92">
<div data-webtasks-id="9fdbd330-55ee-4e89">Muthead</div>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="6b84858f-cbc6-438c">
<a href="https://www.futhead.com/" class="wds-global-footer__link" data-webtasks-id="eb995cef-9970-4130">
<div data-webtasks-id="38b88349-2de6-4f04">Futhead</div>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="5a2edce8-70a9-4419">
<a href="https://www.fanatical.com/" class="wds-global-footer__link" data-webtasks-id="d2e3c717-1996-4182">
<div data-webtasks-id="2afa4be0-9d17-4881">Fanatical</div>
</a>
</li>
</ul>
</section>
</div>
<div class="wds-global-footer__column" data-webtasks-id="9d88b126-a248-4ac2">
<section class="wds-global-footer__section wds-is-site-overview" data-webtasks-id="0ca5918d-5a84-4900">
<h3 class="wds-global-footer__section-header" data-webtasks-id="aaac8fc1-483d-44ff">Overview</h3>
<ul class="wds-global-footer__links-list" data-webtasks-id="756bcbea-facc-479d">
<li class="wds-global-footer__links-list-item" data-webtasks-id="3fcc6844-57c7-4ce6">
<a href="https://www.fandom.com/what-is-fandom" class="wds-global-footer__link" data-webtasks-id="a90ec30a-75a0-4aa7">
What is Fandom?
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="fb5b6bf2-28a0-4833">
<a href="https://www.fandom.com/about" class="wds-global-footer__link" data-webtasks-id="c30abfec-8f6b-44d4">
About </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="04561664-f4ee-4ed2">
<a href="https://www.fandom.com/careers" class="wds-global-footer__link" data-webtasks-id="07beaffe-f424-41fd">
Careers </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="2e9d096f-0acc-44a3">
<a href="https://www.fandom.com/press" class="wds-global-footer__link" data-webtasks-id="ddcf5b8f-2c07-428f">
Press </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="a9081e33-17e2-4ff0">
<a href="https://www.fandom.com/about#contact" class="wds-global-footer__link" data-webtasks-id="2d23092d-677c-4af8">
Contact </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="8951fa73-8bfd-46dd">
<a href="https://www.fandom.com/terms-of-use" class="wds-global-footer__link" data-webtasks-id="df865f66-438e-41dc">
Terms of Use </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="a24c4b8e-ba61-4ef1">
<a href="https://www.fandom.com/privacy-policy" class="wds-global-footer__link" data-webtasks-id="dc9c7e0e-8d23-4570">
Privacy Policy </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="95bfe973-368b-4e17">
<a href="//community.fandom.com/Sitemap" class="wds-global-footer__link" data-webtasks-id="ba2992d7-bc8f-4b23">
Global Sitemap </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="e595fc01-2cae-427d">
<a href="https://www.fandom.com/local-sitemap" class="wds-global-footer__link" data-webtasks-id="d31dd9e5-6954-4d47">
Local Sitemap </a>
</li>
</ul>
</section>
</div>
<div class="wds-global-footer__column" data-webtasks-id="32cdd498-9733-4780">
<section class="wds-global-footer__section wds-is-community" data-webtasks-id="c4193a45-bba1-446b">
<h3 class="wds-global-footer__section-header" data-webtasks-id="7e80c99c-c0e6-4b7c">Community</h3>
<ul class="wds-global-footer__links-list" data-webtasks-id="7c958378-ac22-46dc">
<li class="wds-global-footer__links-list-item" data-webtasks-id="81cf14ff-d2a8-40ef">
<a href="//community.fandom.com/wiki/Community_Central" class="wds-global-footer__link" data-webtasks-id="96c0f9b8-ac99-4346">
Community Central </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="7443678f-7b40-484c">
<a href="https://fandom.zendesk.com/" class="wds-global-footer__link" data-webtasks-id="6d4d2a0d-d8ff-406c">
Support </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="d0a66f2c-dbe2-4955">
<a href="//community.fandom.com/wiki/Help:Contents" class="wds-global-footer__link" data-webtasks-id="76a66cde-fe03-434e">
Help </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="ddb22665-3e0f-4f8b">
<a href="https://www.fandom.com/do-not-sell-my-info" class="wds-global-footer__link" data-webtasks-id="da1c7a7f-7a6b-40bd">
Do Not Sell or Share My Personal Information </a>
</li>
</ul>
</section>
<section class="wds-global-footer__section wds-is-advertise" data-webtasks-id="abd78821-bf9d-4194">
<h3 class="wds-global-footer__section-header" data-webtasks-id="da6b80fd-c477-467e">Advertise</h3>
<ul class="wds-global-footer__links-list" data-webtasks-id="aebdb891-c997-466a">
<li class="wds-global-footer__links-list-item" data-webtasks-id="09456cee-e715-4813">
<a href="https://about.fandom.com/mediakit" class="wds-global-footer__link" data-webtasks-id="ff3e1d3a-28da-4592">
Media Kit </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="8a38b726-8246-49aa">
<a href="https://about.fandom.com/mediakit#contact" class="wds-global-footer__link" data-webtasks-id="5ce4fb7e-642f-49d6">
Contact </a>
</li>
</ul>
</section>
<section class="wds-global-footer__section wds-is-follow-us" data-webtasks-id="4bcbbdf4-f780-4d8b">
<h3 class="wds-global-footer__section-header" data-webtasks-id="66fbaf67-967c-4e99">Follow Us</h3>
<ul class="wds-global-footer__links-list" data-webtasks-id="74b3626f-9567-4600">
<li class="wds-global-footer__links-list-item" data-webtasks-id="34f219e6-948d-438c">
<a href="https://www.facebook.com/getfandom" class="wds-global-footer__link" data-webtasks-id="1d5dfec8-14b5-43ab">
<svg class="wds-global-footer__link-image wds-icon-small" alt="Facebook" data-webtasks-id="a3b7177e-4872-44da">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-facebook" data-webtasks-id="0406d952-f8d2-4e04"></use>
</svg>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="9b4475e9-c3dc-4bef">
<a href="https://twitter.com/getfandom" class="wds-global-footer__link" data-webtasks-id="682688ac-0e35-4c4d">
<svg class="wds-global-footer__link-image wds-icon-small" alt="Twitter" data-webtasks-id="80b63707-8197-40a9">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-twitter" data-webtasks-id="a141fe9f-7844-48ce"></use>
</svg>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="9af00f8e-16d8-420a">
<a href="https://www.youtube.com/fandomentertainment" class="wds-global-footer__link" data-webtasks-id="0149234f-b95d-4bcf">
<svg class="wds-global-footer__link-image wds-icon-small" alt="Youtube" data-webtasks-id="fecc9cb4-732e-4819">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-youtube" data-webtasks-id="c16c3c86-537d-455b"></use>
</svg>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="5442ab63-e8c5-4758">
<a href="https://www.instagram.com/getfandom/" class="wds-global-footer__link" data-webtasks-id="24819e21-63e2-423d">
<svg class="wds-global-footer__link-image wds-icon-small" alt="Instagram" data-webtasks-id="f99faf4a-0651-4f35">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-instagram" data-webtasks-id="1f17d683-e63b-41dc"></use>
</svg>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="49be37d0-093c-41ba">
<a href="https://www.linkedin.com/company/157252" class="wds-global-footer__link" data-webtasks-id="7d294bd5-5247-4c87">
<svg class="wds-global-footer__link-image wds-icon-small" alt="design-system.global-footer-follow-us-link-linkedin" data-webtasks-id="9d477b30-bd24-4e7d">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-linkedin" data-webtasks-id="fbaf39a1-a6b3-4503"></use>
</svg>
</a>
</li>
</ul>
</section>
</div>
<div class="wds-global-footer__column" data-webtasks-id="c97cb0fe-e23f-4986">
<section class="wds-global-footer__section wds-is-fandom-apps" data-webtasks-id="8fe08e7a-da38-482e">
<h3 class="wds-global-footer__section-header" data-webtasks-id="7da9cc43-706f-429c">Fandom Apps</h3>
<span class="wds-global-footer__section-description" data-webtasks-id="1dcaad8c-d84f-4ce7">Take your favorite fandoms with you and never miss a beat.</span>
</section>
<section class="wds-global-footer__section wds-is-fandom-stores" data-webtasks-id="16c01d08-307c-42d5">
<figure class="wds-global-footer__image" data-webtasks-id="016b5a5c-e40d-412e">
<img src="https://static.wikia.nocookie.net/1fcd9eb5-31ba-42aa-bc10-4a8c6332d69b" alt="Fandom" data-webtasks-id="950411e1-3727-4f93">
</figure>
<ul class="wds-global-footer__links-list" data-webtasks-id="40a24e6e-12ef-4e71">
<li class="wds-global-footer__links-list-item" data-webtasks-id="4696b42b-8b7b-4e89">
<a href="https://apps.apple.com/us/app/fandom-videos-news-reviews/id1230063803" class="wds-global-footer__link" data-webtasks-id="1762b528-259e-400f">
<svg class="wds-global-footer__link-image" data-webtasks-id="480201d2-3d45-4659">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-company-store-appstore" data-webtasks-id="7774d328-10e7-4a23"></use>
</svg>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="0de5e719-be25-433a">
<a href="https://play.google.com/store/apps/details?id=com.fandom.app&referrer=utm_source%3Dwikia%26utm_medium%3Dglobalfooter" class="wds-global-footer__link" data-webtasks-id="4c8a6cc8-e1b6-4b12">
<svg class="wds-global-footer__link-image" data-webtasks-id="47280d0e-2c4e-41af">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-company-store-googleplay" data-webtasks-id="dc742cf5-04b0-45dc"></use>
</svg>
</a>
</li>
</ul>
</section>
</div>
</div>
<div class="wds-global-footer__bottom-bar" data-webtasks-id="c9221a59-2309-457d">
<div class="wds-global-footer__bottom-bar-row wds-has-padding" data-webtasks-id="07e675c7-3ace-411c">Copyright 2023 Fandom, Inc.</div>
</div>
</footer>
<style data-webtasks-id="3c05033c-a7e3-4c75">
.wds-global-footer.is-f2 {
background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), #520044;
font-family: Rubik, sans-serif;
padding-top: 84px;
}
@media screen and (max-width: 1023px) {
.wds-global-footer.is-f2 {
padding-top: 42px;
}
.wds-global-footer.is-f2 .wds-global-footer__wikia-section.wds-is-community .wds-global-footer__links-list, .wds-global-footer.is-f2 .wds-global-footer__section.wds-is-advertise .wds-global-footer__links-list {
column-count: 2;
}
.wds-global-footer.is-f2 .wds-global-footer__header {
margin-top: 0;
padding: 0 0 44px;
}
.wds-global-footer.is-f2 .wds-global-footer__section {
margin-bottom: 22px !important;
margin-top: 0 !important;
}
.wds-global-footer.is-f2 .wds-global-footer__section.wds-is-fandom-overview {
margin-bottom: 42px !important;
}
}
.wds-global-footer.is-f2 .wds-global-footer__header {
margin-top: -14px;
padding: 0 0 22px;
}
.wds-global-footer.is-f2 .wds-global-footer__header-logo {
height: auto !important;
width: 183px;
}
.wds-global-footer.is-f2 .wds-global-footer__bottom-bar {
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
}
.wds-global-footer.is-f2 .wds-global-footer__link, .wds-global-footer.is-f2 .wds-global-footer__link:visited {
border-width: 0;
color: #ffc500;
}
.wds-global-footer.is-f2 .wds-global-footer__link:hover, .wds-global-footer.is-f2 .wds-global-footer__link:active {
color: #fff;
}
.wds-global-footer.is-f2 .wds-global-footer__wikia-section.wds-is-create-wiki .wds-global-footer__link {
align-items: center;
border: 1px solid;
border-radius: 4px;
display: inline-flex;
height: 36px;
justify-content: center;
padding: 0;
width: 153px;
}
.wds-global-footer.is-f2 .wds-global-footer__fandom-section, .wds-global-footer.is-f2 .wds-global-footer__wikia-section {
border-width: 0;
}
.wds-global-footer.is-f2 .wds-global-footer__fandom-section.wds-is-fandom-overview {
padding-top: 8px;
}
.wds-global-footer.is-f2 .wds-global-footer__fandom-section.wds-is-fandom-overview .wds-global-footer__link {
display: inline-flex;
font-size: 28px;
padding: 0 0 5px;
text-transform: uppercase;
}
.wds-global-footer.is-f2 .wds-global-footer__fandom-section.wds-is-fandom-overview .wds-global-footer__link div {
border-bottom: 2px solid #fff;
}
.wds-global-footer.is-f2 .wds-global-footer__fandom-section.wds-is-fandom-overview .wds-global-footer__links-list, .wds-global-footer.is-f2 .wds-global-footer__fandom-section.wds-is-follow-us .wds-global-footer__links-list, .wds-global-footer.is-f2 .wds-global-footer__wikia-section.wds-is-community .wds-global-footer__links-list {
font-size: 14px;
font-weight: normal;
margin-bottom: 38px;
}
.wds-global-footer.is-f2 .wds-global-footer__fandom-section.wds-is-follow-us .wds-global-footer__image {
color: #fff;
}
.wds-global-footer.is-f2 .wds-global-footer__section-header {
font-size: 12px;
line-height: 1;
margin-bottom: 8px;
min-height: 14px;
text-transform: uppercase;
}
.wds-global-footer.is-f2 .wds-global-footer__section.wds-is-follow-us .wds-global-footer__link-image {
fill: #f9edd8 !important;
opacity: 1 !important;
}
.wds-global-footer.is-f2 .wds-global-footer__section.wds-is-follow-us .wds-global-footer__link {
height: 18px;
width: 18px;
}
.wds-global-footer.is-f2 .wds-global-footer__section.wds-is-fandom-overview {
margin-top: 0;
}
</style>
<script src="//services.fandom.com/icbm/api/loader?app=f2" data-webtasks-id="b0907307-1432-41ac"></script>
<script data-webtasks-id="ad894663-b597-42f8">
(function () {
function genUID() {
const crypto = window['crypto'] || window['msCrypto'] || false;
if (crypto && crypto.randomUUID) {
return crypto.randomUUID();
} else if (crypto && crypto.getRandomValues) {
return ([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g, function(c) {
return (c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16);
});
}
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
var r = Math.random() * 16 | 0, v = c === 'x' ? r : (r & 0x3 | 0x8);
return v.toString(16);
});
}
function getCookieValue(cookieName) {
const cookieSplit = ('; ' + document.cookie).split('; ' + cookieName + '=');
return cookieSplit.length === 2 ? cookieSplit.pop().split(';').shift() : null;
}
var sessionId = getCookieValue('tracking_session_id'),
pvNumber = getCookieValue('pv_number'),
pvNumberGlobal = getCookieValue('pv_number_global'),
beacon = getCookieValue('wikia_beacon_id');
window.sessionId = sessionId ? sessionId : genUID();
window.pvNumber = pvNumber ? parseInt(pvNumber, 10) + 1 : 1;
window.pvNumberGlobal = pvNumberGlobal ? parseInt(pvNumberGlobal, 10) + 1 : 1;
window.pvUID = genUID();
window.wgWikiaCookieDomain = '.fandom.com';
window.wgCookiePath = '/';
if (beacon) {
window.beacon_id = beacon;
}
window.consentQueue = window.consentQueue || [];
window.consentQueue.push(function () {
const expireDate = new Date(Date.now() + 1000 * 60 * 30).toGMTString();
document.cookie = 'tracking_session_id=' + window.sessionId + '; expires=' + expireDate +
';domain=' + window.wgWikiaCookieDomain + '; path=' + window.wgCookiePath + ';';
document.cookie = 'pv_number=' + window.pvNumber + '; expires=' + expireDate +
'; path=' + window.wgCookiePath + ';';
document.cookie = 'pv_number_global=' + window.pvNumberGlobal + '; expires=' + expireDate +
';domain=' + window.wgWikiaCookieDomain + '; path=' + window.wgCookiePath + ';';
})
})();
</script>
<script defer="" src="https://www.fastly-insights.com/static/scout.js?k=17272cd8-82ee-4eb5-b5a3-b3cd5403f7c5" data-webtasks-id="54c68a0b-11fe-4330"></script>
<script data-webtasks-id="011db0c8-a8c9-44c1">
window._plc = {"p":"f2","pId":"0","pg":"article","pgLang":"en","time":0,"pgId":"1595309"};
window._plc.time = Date.now();
window._ulc = {"lang":"en"};
</script>
<script src="https://static.wikia.nocookie.net/silversurfer/prod/latest/sdk.js" data-webtasks-id="921748e7-40ce-4c5b"></script>
</body> |