· 6 years ago · Mar 05, 2019, 03:46 PM
1<!DOCTYPE html>
2
3<!----------
4 THEï¼ï¼¥ BY
5 ðƒð„ð’ð‚ð€ð‘ð‘ðˆð€ðƒðŽ
6
7Please, be kind.
8
9 -Don't remove the credit.
10 -Don't claim as yours.
11 -Don't take bits of my code for others themes.
12 -If you use the source viewer to see my code, please, think about how would you feel if this is your code and someone steal form you.
13 -Edit as much as you please.
14 -This MY FIRST RELEASED THEME. IF YOU WANT TO COMMISSION A THEME FROM ME YOU CAN GO TO MY PAGE, THANK YOU.
15
16
17PLEASE DO NOT REï¼ï¼¯ï¼¶ï¼¥ THE CREDIT
18 --------->
19<html> <head>
20
21 <title>This house of mine stands strong.</title>
22
23</head>
24
25
26
27
28<!-- SCRIPT: jQuery -->
29
30<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
31
32
33
34<!-- SCRIPT: POPUP -->
35
36
37<script type="text/javascript" src="https://static.tumblr.com/8pnyeus/10hors8sn/themekid-popup.min.js"></script>
38<script type="text/javascript">
39$(document).ready(function(){
40 popUp(true);
41});
42</script>
43
44
45
46<!-- SCRIPT: POPUP PAGES -->
47
48
49<script>
50$(document).ready(function() {
51//
52$('a.poplight[href^=#]').click(function() {
53var popID = $(this).attr('rel'); //Get Popup Name
54var popURL = $(this).attr('href'); //Get Popup href to define size
55var query= popURL.split('?');
56var dim= query[1].split('&');
57var popWidth = dim[0].split('=')[1]; //Gets the first query string value
58$('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
59var popMargTop = ($('#' + popID).height() + 80) / 2;
60var popMargLeft = ($('#' + popID).width() + 80) / 2;
61//Apply Margin to Popup
62$('#' + popID).css({
63'margin-top' : -popMargTop,
64'margin-left' : -popMargLeft
65});
66$('body').append('<div id="fade"></div>');
67$('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
68return false;
69});
70$('a.close, #fade').live('click', function() {
71$('#fade , .popup_block').fadeOut(function() {
72$('#fade, a.close').remove(); //fade them both out
73});
74return false;
75});
76});
77</script>
78
79
80
81
82
83
84<!-- SCRIPT: POPUP TABS -->
85
86<script>
87 $(document).ready(function(){
88 $("ul#tabs li").click(function(e){
89 if (!$(this).hasClass("active")) {
90 var tabNum = $(this).index();
91 var nthChild = tabNum+1;
92 $("ul#tabs li.active").removeClass("active");
93 $(this).addClass("active");
94 $("ul#tab li.active").removeClass("active");
95 $("ul#tab li:nth-child("+nthChild+")").addClass("active");}});});</script>
96
97
98
99
100<style type="text/css">
101
102
103 /* FONTS */
104@import url('https://fonts.googleapis.com/css?family=Oswald|Crimson+Text:400,600i|Dancing+Script|Homemade+Apple|Montserrat|Roboto|Special+Elite|Barlow|Satisfy');
105@font-face {font-family:"bitxmap"; src: url("https://static.tumblr.com/ofgksh6/md0mkd9yd/bitxmap_font_tfb.ttf")}
106 /* FONTS */
107
108
109
110
111
112 /*----------tooltips---------*/
113
114#s-m-t-tooltip {
115max-width:300px;
116margin:15px;
117padding:5px;
118background:#aa9797;
119color:#eeeeee;
120z-index:999999999999999999999999;
121font-size:8px;
122font-style:none;
123letter-spacing:4px;
124font-family:'rubik';
125text-transform:lowercase;
126box-shadow:1px 1px 3px rgba(0,0,0,.0);
127border-radius:5px;
128}
129
130
131
132
133/*----------scrollbar---------*/
134
135 ::-webkit-scrollbar-thumb {
136 height:auto;
137 background-color:transparent;
138 border-radius:0px;
139 }
140 ::-webkit-scrollbar {
141 height:0px;
142 width:0px;
143 background-color: transparent;
144 border-radius:0px;
145 }
146
147
148
149
150 /* body thingy */
151
152body {
153 background: url('https://i.imgur.com/gTB84sJ.png') no-repeat fixed top center;
154 font-family: 'Roboto', sans-serif;
155 text-align:justify;
156 font-size: 10px;
157 background-color:#000000;
158 color:#ede6e5;
159}
160
161 /* body thingy */
162
163
164 /* links and hovers */
165
166
167a {
168 color:#e7d1af;
169 font-size:10px;
170 font-family:'roboto', sans-serif;
171 text-shadow:0px 0px 1px #e7d1af;
172 text-transform:uppercase;
173 text-decoration:none;
174 -webkit-transition: all 0.5s ease-in-out;
175 -moz-transition: all 0.5s ease-in-out;
176 -o-transition: all 0.5s ease-in-out;
177}
178
179a:hover {
180 color:#ffffff;
181 text-shadow:0px 0px 3px #ffffff;
182
183}
184
185
186
187 /* links and hovers */
188
189
190
191
192
193 /* BOLD, ITALIC, SMALL AND OTHERS */
194
195
196b, strong, bold {
197 font-family: 'Montserrat', sans-serif;
198 letter-spacing: 0px;
199 color:#e7d1af;
200 text-transform: uppercase;
201 font-weight: bold;
202 text-shadow:0px 0px 1px #000000;
203 font-size: 10px;
204 font-weight:600;
205
206}
207
208i, em, italic {
209 color:#ffffff;
210 text-shadow: 0px 0px 5px #ffffff;
211 font-weight:400;
212 font-family: 'Homemade Apple', cursive;
213 text-transform: lowercase;
214 font-size: 12px;
215 letter-spacing: 0px;
216 line-height:110%;
217
218}
219
220
221small, sub, sup {
222 font-size:10px;
223
224}
225
226strike {
227 font-size:9px;
228 text-transform: uppercase;
229 color:#f0eedd;
230}
231
232u {
233 text-transform: uppercase;
234 font-size:9px;
235 color:{color:underline};
236}
237
238
239pre {
240 padding-top:6px;
241 padding:6px;
242 width:auto;
243 text-align: center;
244 word-wrap: break-word;
245 color:#d4d4d4;
246 background-color:#121212;
247 border-left:1px solid #252525;
248 border-right: 1px solid #252525;
249 font-family: 'Montserrat', sans-serif;
250 text-transform:uppercase;
251 line-height:100%;
252 letter-spacing:1px;
253 font-size:7px; }
254
255pre a {
256 text-shadow:0px 0px 4px #ede6e5;
257 color:#ede6e5;
258 font-family:trebuchet ms;
259 text-transform:uppercase;
260 letter-spacing:1px;
261 font-size:6px; }
262
263
264
265code {
266 font-size: 10px;
267 font-weight: bold;
268 color:#f0eedd;
269 text-transform:uppercase;
270 font-family: 'Crimson Text', serif;
271}
272
273big {
274 color:#e7dcc5;
275 font-size: 16px;
276 text-shadow: 0px 0px 2px {color:big shadow};
277 font-family:georgia, sans-serif;
278}
279
280
281h1 {
282 font-size:20px;
283 font-family: 'oswald', sans-serif;
284 background:
285 -webkit-linear-gradient(left, #f0eedd, #f0eedd, #060606);
286 -webkit-background-clip: text;
287 -webkit-text-fill-color: transparent;
288 text-align:center;
289 text-transform:uppercase;
290 line-height:100%;
291 font-weight:900;
292 letter-spacing:0px;
293 padding-bottom:-10px;
294 text-shadow:none;
295}
296
297h2 {
298 font-size:18px;
299 color:#f0eedd;
300 font-weight:bold;
301 line-height:100%;
302 text-align: center;
303 font-family: 'Oswald', sans-serif;
304 text-shadow: 0px 1px 1px {color:h2 shadow};
305
306}
307
308h2 small, small h2 {
309 font-size:11px;
310 color:#e7dcc5;
311 font-weight:none;
312 text-transform:lowercase;
313 font-family: 'Oswald', sans-serif;
314 text-shadow: 0px 1px 1px #000000;
315
316}
317
318h3 {
319 font-size:18px;
320 font-family: 'georgia', sans-serif;
321 text-shadow: 0px 1px 1px #000000;
322 text-align:center;
323 text-transform:lowercase;
324 font-style:italic;
325 line-height:100%;
326 letter-spacing:0px;
327 padding-bottom:-10px;
328 color: {color:h3};
329}
330
331h4 {
332 padding:5px;
333 padding-left:auto;
334 padding-right:auto;
335 margin-right:3px;
336 word-wrap: break-word;
337 text-align:center;
338 font-family:trebuchet ms;
339 text-shadow:1px 1px 1px #000000,
340 0px 0px 5px #000000;
341 background:#121212;
342 background:url('');
343 background-repeat:repeat;
344 background-attachment:fixed;
345 color:#d4d4d4;
346 border:1px dashed #252525;
347 outline:1px solid #121212;
348 outline-offset:3px;
349 font-size:8px;
350 text-transform:uppercase;
351 letter-spacing:1px;
352
353}
354
355
356hr {
357 width:100%;
358 margin-top:3px;
359 margin-bottom:3px;
360 height:2px;
361 border:none;
362 background:url('');
363 background-repeat:repeat;
364 background-attachment:fixed;
365
366}
367
368
369 /* BOLD, ITALIC, SMALL AND OTHERS */
370
371
372 /* BLOCKQUOTE */
373
374blockquote {
375 padding:0px 5px 0px 10px;
376 padding-top:0px;
377 padding-bottom:0px;
378 text-align:justify;
379 margin-bottom:10;
380 margin-left:0px;
381 width:95%;
382 border-left:1px solid #252525
383
384}
385
386blockquote blockquote {
387 padding:0 0 0 10px;
388 padding-top:3px;
389 padding-bottom:3px;
390
391}
392blockquote, small {
393 font-size:11px;
394
395}
396
397blockquote img {
398 max-width:300px;
399 padding-top: 5px;
400 float:right!important;
401}
402
403
404blockquote img{
405 max-width:100%;
406 height:auto;
407 margin-right:-30px;
408 margin-left:10px;
409}
410
411blockquote blockquote img{
412 float:left!important;
413 max-width:100%;
414 height:auto;
415 margin-left:-30px;
416 margin-right:10px;
417}
418
419
420blockquote blockquote blockquote img{
421 float:right!important;
422 max-width:100%;
423 height:auto;
424 margin-right:-30px;
425 margin-left:10px;
426}
427
428
429blockquote blockquote blockquote blockquote img{
430 float:left!important;
431 max-width:100%;
432 height:auto;
433 margin-left:-30px;
434 margin-right:10px;
435}
436
437
438blockquote blockquote blockquote blockquote blockquote img{
439 float:right!important;
440 max-width:100%;
441 height:auto;
442 margin-right:-30px;
443 margin-left:10px;
444}
445
446
447 /* BLOCKQUOTE */
448
449
450
451
452
453 /* SELECTION TEXT AND BG */
454
455
456::selection {
457 background:{color:select background};
458 color:{color:select text};
459}
460
461 /* SELECTION TEXT AND BG */
462
463
464
465
466
467 /* CREDIT */
468
469#credit {
470 position:fixed;
471 bottom:8px;
472 right:15px;
473 letter-spacing:0px;
474 z-index:99999;
475
476}
477
478#credit a{
479 color:#d1d1d0;
480 font-size:20px;
481 font-family: 'Dancing Script', cursive;
482 text-transform:uppercase;
483 text-shadow: 0px 1px 1px #000;
484 display:block;
485 height:auto;
486 width:auto;
487 text-align:center;
488 -moz-transition-duration:.9s;
489 -webkit-transition-duration:.9s;
490 -o-transition-duration:.9s;
491
492}
493
494#credit a:hover{
495 color:#d1d1d0;
496 text-shadow: 0px 0px 5px #d1d1d0;
497 text-transform:uppercase;
498 -webkit-transition: all 0.8s ease-in-out;
499 -moz-transition: all 0.8s ease-in-out;
500 -o-transition: all 0.8s ease-in-out;
501 -ms-transition: all 0.8s ease-in-out;
502 transition: all 0.8s ease-in-out;
503
504}
505
506
507 /* CREDIT */
508
509
510
511
512 /* SIDEBAR */
513
514
515.sidebar {
516 background:#151515;
517 font-family: 'Roboto', sans-serif;
518 font-size:8px;
519 color: #d1d1d0;
520 width:200px;
521 height:110px;
522 top:450px;
523 left:50%;
524 margin-left:126px;
525 padding-top:10px;
526 line-height:120%;
527 text-transform:uppercase;
528 text-shadow:0px 1px 1px #000000;
529 text-align:center;
530 position:fixed;
531 padding-left:14px;
532 padding-right:6px;
533 overflow-y: scroll;
534 overflow-x: hidden;
535
536}
537
538
539
540 /* SIDEBAR */
541
542
543 /* HOVER LINKS div#qTip */
544
545.tooltip{
546 display: inline;
547 position: relative;
548}
549
550
551#s-m-t-tooltip {
552 padding:6px;
553 width:auto;
554 max-width:300px;
555 background:#121212;
556 background-image:url('');
557 background-repeat:repeat;
558 background-attachment:fixed;
559 text-align:center;
560 max-height:300px;
561 margin:5px 10px 5px 0px;
562 color:#d1d1d0;
563 text-shadow:
564 1px 1px 0px #000,
565 1px -1px 0px #000,
566 -1px -1px 0px #000,
567 -1px 1px 0px #000,
568 0px 1px 0px #000,
569 0px -1px 0px #000,
570 1px 0px 0px #000,
571 -1px 0px 0px #000,
572 0px 0px 5px #00a68b;
573 border-left: double 3px #191919;
574 border-top: double 3px #191919;
575 border-right: double 3px #191919;
576 border-bottom: double 3px #191919;
577 font-weight:bold;
578 font-family: 'arial';
579 text-transform:uppercase;
580 box-shadow: 0px 0px 3px #000;
581 border-radius:5px;
582 font-size:8px;
583 letter-spacing:1px;
584 z-index:99999;
585 transition:0.7s ease-in-out;
586 -o-transition:0.7s ease-in-out;
587 -ms-transition:0.7s ease-in-out;
588 -moz-transition:0.7s ease-in-out;
589 -webkit-transition:0.7s ease-in-out;
590}
591
592 /* HOVER LINKS */
593
594 /* THE LINKS */
595
596.star1 {
597 top:530px;
598 left:50%;
599 margin-left:70px;
600 position:fixed;
601}
602
603.star2 {
604 top:330px;
605 left:50%;
606 margin-left:290px;
607 position:fixed;
608}
609
610.star3 {
611 top:620px;
612 left:50%;
613 margin-left:190px;
614 position:fixed;
615}
616
617
618.star4 {
619 top:460px;
620 left:50%;
621 margin-left:380px;
622 position:fixed;
623}
624
625
626.star5 {
627 top:25px;
628 left:50%;
629 margin-left:240px;
630 position:fixed;
631}
632
633
634
635.star6 {
636 top:550px;
637 left:50%;
638 margin-left:350px;
639 position:fixed;
640}
641
642
643
644.star7 {
645 top:550px;
646 left:50%;
647 margin-left:60px;
648 position:fixed;
649}
650
651.star1 a, .star2 a, .star3 a, .star4 a, .star5 a, .star6 a, .star7 a {
652 color:#ede6e5;
653 font-family: 'Crimson Text', serif;
654 font-size:30px;
655 font-weight:900;
656 display:inline-block;
657 text-align:center!important;
658 width:50px;
659 text-shadow:
660 1px 1px 0px #272827,
661 1px -1px 0px #272827,
662 -1px -1px 0px #272827,
663 -1px 1px 0px #272827,
664 0px 1px 0px #272827,
665 0px -1px 0px #272827,
666 1px 0px 0px #272827,
667 -1px 0px 0px #272827,
668 0px 0px 5px #ddd;
669 transition-duration: 0.9s;
670 -webkit-transition: .9s ease-in-out;
671 -moz-transition: .9s ease-in-out;
672 -o-transition: .9s ease-in-out;
673 }
674
675.star1 a:hover, .star2 a:hover, .star3 a:hover, .star4 a:hover, .star5 a:hover, .star6 a:hover, .star7 a:hover {
676 color:#e7d1af;
677 text-shadow:
678 1px 1px 0px #272827,
679 1px -1px 0px #272827,
680 -1px -1px 0px #272827,
681 -1px 1px 0px #272827,
682 0px 1px 0px #272827,
683 0px -1px 0px #272827,
684 1px 0px 0px #272827,
685 -1px 0px 0px #272827,
686 0px 0px 5px #ddd;
687 -webkit-transition: .9s ease-in-out;
688 -moz-transition: .9s ease-in-out;
689 -o-transition: .9s ease-in-out;
690}
691
692
693
694
695 /* THE LINKS */
696
697
698
699
700
701
702
703
704.muses {
705 height:326px;
706 width:220px;
707 background-color:#eeeeee;
708 background-color: rgba(0, 0, 0, .1);
709 overflow:scroll;
710}
711
712
713
714
715ul#pages {
716 text-align: left;
717 margin-top:0px!important;
718 background-color:#eeeeee;
719 width:135px;
720 background-color: rgba(0, 0, 0, .1);
721}
722
723
724
725
726.musesbuttons a {
727 display: inline-block;
728 border:1px solid #ffffff; /* INACTIVE TAB */
729 width:193px;
730 font-weight:bold;
731 text-align:left;
732 font-family:calibri;
733 text-transform:uppercase;
734 background-color:#eeeeee;
735 color:#ffffff;
736 font-style:normal;
737 font-weight:700;
738 padding-left:0px;
739 font-size:9px;
740 line-height:24px;
741 margin-bottom:-1px;
742 height:24px;
743 cursor:pointer;
744 text-decoration:none!important;
745 background-color: rgba(0, 0, 0, .1);
746
747}
748
749
750
751
752ul#pages li.active {
753 display: inline-block;
754 font-family:calibri;
755 font-style:normal;
756 font-weight:700;
757 line-height:10px;
758 font-weight:bold;
759 font-size:10px;
760 outline:1px solid #ffffff; /* ACTIVE TAB */
761 color:#ffffff;
762 line-height:24px;
763 height:24px;
764 cursor:pointer;
765}
766
767
768
769
770ul#page, ul#pages{
771 list-style-type:none;
772 margin:0px;
773 padding:0px;
774}
775
776
777
778
779ul#page li.active {
780 display: block;
781}
782
783
784
785
786ul#page li {
787 display: none;
788}
789
790
791
792
793
794/* POSTS: GENERAL */
795
796
797#content {
798 position:fixed;
799 height:550px;
800 width:470px;
801 left:161px;
802 top:40px;
803 background-color:transparent;
804 border:0px solid #f1f1f1!important;
805 border-radius:5px;
806}
807
808
809
810
811#content a {
812 text-decoration:none;
813}
814
815
816
817
818#mimage {
819 min-height:67px;
820 max-height:67px;
821 margin-left:0px;
822 max-width:420px;
823 overflow:hidden;
824 border: 2px solid #ffffff;
825 border-radius:5px;
826}
827
828
829
830#mheader {
831 height:24px;
832 line-height:24px;
833 font-family:calibri;
834 font-size:10px;
835 text-transform:uppercase;
836 font-weight:bold;
837 padding-left:24px;
838 margin-top: -25px;
839 border-radius:5px;
840}
841
842
843
844.mdescription {
845 font-size:10px;
846 text-align:justify;
847 border-bottom:0px solid #0a0a0a;
848 padding-left:24px;
849 padding-right:24px;
850 min-height:330px;
851 max-height:330px;
852 padding-top:25px;
853 margin-top:30px;
854 overflow:scroll!important;
855 background-color:transparent;
856 border-radius:5px;
857 overflow-y:scroll!important;
858 border-radius:5px;
859}
860
861
862#mdescription a {
863 font-size:9px;
864 color:#151515;
865 font-weight:bold!important;
866 text-decoration:none;
867 text-transform:uppercase;
868 border-radius:5px;
869}
870
871
872#mdescription img {
873 border:2px solid #f1f1f1;
874 margin-top:1px!important;
875 margin-bottom:0px!important;
876 padding:8px;
877 float:left;
878 margin-right:14px;
879 border-radius:0px;
880}
881
882ul#tabs li:hover {
883 background-color:#eeeeee;
884 color:#aa9797;
885 -moz-transition-duration:.5s;
886 -webkit-transition-duration:.5s;
887 -o-transition-duration:.5s;
888 transform: rotate(20deg);
889 text-shadow: 2px 2px 8px #aa9797;
890}
891
892
893
894
895
896
897
898
899
900
901
902/* POPUPS: TABS */
903
904
905
906ul#tabs {
907 text-align: center;
908 margin-left:-100px;
909 margin-top:-25px;
910 width:250px;
911 font-family:'karla';
912 display:inline-block;
913 height:100px;
914 position:fixed;
915 border-radius:5px;
916}
917
918
919
920ul#tabs li {
921 display:inline-block;
922 background-color:#aa9797;
923 color:#ffffff;
924 margin:3px;
925 padding:10px;
926 width:15px;
927 max-width:15px;
928 height:15px;
929 font-size:11px;
930 text-transform:uppercase;
931 font-weight:normal;
932 border-radius:10px;
933 border:solid 2px #ffffff;
934 margin-bottom:5px;
935 text-decoration:none;
936 cursor:pointer;
937}
938
939
940
941ul#tabs li:first-child {
942 margin-left:-2px;
943}
944
945
946
947
948ul#tabs li:last-child {
949 margin-right:0px!important;
950}
951
952
953
954ul#tabs li.active {
955 display:inline-block;
956 background-color:#aa9797;
957 color:#ffffff;
958 padding:10px;
959 font-size:11px;
960 text-transform:uppercase;
961 font-weight:normal;
962 border-radius:10px;
963 border:solid 2px #ffffff;
964 text-decoration:none;
965 cursor:pointer;
966}
967
968
969
970
971ul#tab, ul#tabs{
972 list-style-type:none;
973 margin-left:1px;
974 padding:0px;
975}
976
977
978
979
980ul#tab li.active {
981 display: block;
982}
983
984
985
986
987ul#tab li {
988 display: none;
989}
990
991
992
993
994
995
996
997/* POPUPS: NAVIGATION */
998
999
1000
1001#nvbar {
1002 width:420px;
1003}
1004
1005
1006
1007.nvlinks {
1008 margin-top:0px!important;
1009 margin-bottom:0px!important;
1010 margin-left:0px;
1011 padding-top:0px;
1012 padding-bottom:0px;
1013 text-align:left;
1014}
1015
1016
1017
1018.nvlinks a {
1019 display:inline-block;
1020 font-family: calibri, sans-serif;
1021 font-weight:lighter!important;
1022 width:158px;
1023 height:22px!important;
1024 padding-left:24px;
1025 line-height:22px;
1026 margin-left:-2px;
1027 margin-right:3px;
1028 margin-bottom:8.4px;
1029 text-align:left;
1030 background:#aa9797;
1031 border: 2px solid #ffffff;
1032 color:#eeeeee;
1033 font-size:8.5px;
1034 letter-spacing:0.4px;
1035 cursor: pointer;
1036 border-radius:5px;
1037 z-index:2;
1038 -moz-transition-duration:1s;
1039 -webkit-transition-duration:1s;
1040 -o-transition-duration:1s;
1041}
1042
1043
1044
1045.nvlinks:last-child {
1046 margin-bottom:0px!important;
1047 bottom:0px!important;
1048}
1049
1050
1051
1052.nvlinks a:hover {
1053 background-color: rgba(255, 255, 255, .04)!important;
1054 -moz-transition-duration:1s;
1055 -webkit-transition-duration:1s;
1056 -o-transition-duration:1s;
1057}
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072/* POPUPS: GENERAL */
1073
1074
1075
1076.popup_block {
1077 display:none;
1078 background-image:#090909;
1079 padding:0px;
1080 float:left;
1081 font-family: tahoma;
1082 height:550px!important;
1083 position:fixed;
1084 top:400px;
1085 left:450px;
1086 z-index: 99999;
1087 overflow-y: scroll;
1088 overflow-x: hidden;
1089
1090}
1091
1092
1093
1094.popup_block a {
1095 text-transform:uppercase;
1096 text-decoration:none;
1097 font-weight:bold!important;
1098 -moz-transition-duration:2s;
1099 -webkit-transition-duration:2s;
1100 -o-transition-duration:2s;
1101}
1102
1103
1104
1105*html #fade {
1106 position: absolute;
1107
1108}
1109
1110
1111
1112*html .popup_block {
1113 position: absolute;
1114
1115}
1116
1117
1118
1119
1120#intro {
1121 margin-top:5px;
1122 margin-bottom:24px;
1123 border:1px solid #151515;
1124 padding-left:24px;
1125 padding-right:24px;
1126 padding-top:24px;
1127 padding-bottom:24px;
1128}
1129
1130
1131
1132</style>
1133<body>
1134
1135
1136
1137<!-- UPDATES -->
1138
1139<!-- LINKS -->
1140<div class="star1">
1141<a href="/" title="refresh">★</a>
1142</div>
1143<div class="star2">
1144<a href="/ask" title="inquire">★</a>
1145</div>
1146<div class="star3">
1147<a href="/rules" title="rules">★</a>
1148</div>
1149<div class="star4">
1150<a href="/muses" title="muses">★</a>
1151
1152
1153<!-- LINKS -->
1154
1155
1156<!-- UPDATES -->
1157
1158<div class="sidebar">
1159
1160
1161
1162<div class="muses">
1163<ul id="pages">
1164
1165<div class="musesbuttons">
1166
1167<a href="#?w=420" rel="pageCA" class="poplight" autofocus>CLAUDIA AUDITORE</a>
1168<a href="#?w=420" rel="pageMB" class="poplight">MAGNUS BANE</a>
1169<a href="#?w=420" rel="pageBB" class="poplight">BONNIE BENNETT</a>
1170<a href="#?w=420" rel="pageEC" class="poplight">ETHAN CHANDLER</a>
1171<a href="#?w=420" rel="pageCF" class="poplight">CLARY FAIRCHILD</a>
1172<a href="#?w=420" rel="pageBF" class="poplight">BRIAN FALSWORTH</a>
1173<a href="#?w=420" rel="pageJF" class="poplight">JAMIE FRASER</a>
1174<a href="#?w=420" rel="pageHT" class="poplight">Henry VIII</a>
1175<a href="#?w=420" rel="pageWH" class="poplight">WILL HERONDALE</a>
1176<a href="#?w=420" rel="pageAL" class="poplight">ALEC LIGHTWOOD</a>
1177<a href="#?w=420" rel="pagePM" class="poplight">PEETA MELLARK</a>
1178<a href="#?w=420" rel="pageM" class="poplight">MICHONNE</a>
1179<a href="#?w=420" rel="pageVM" class="poplight">VALENTINE MORGENSTERN</a>
1180<a href="#?w=420" rel="pageP" class="poplight">PORTHOS</a>
1181<a href="#?w=420" rel="pageSR" class="poplight">STEVE ROGERS
1182<a href="#?w=420" rel="pageDS" class="poplight">DAMON SALVATORE</a>
1183<a href="#?w=420" rel="pageMS" class="poplight">MARY STUART</a>
1184<a href="#?w=420" rel="pageDW" class="poplight">DEAN WINCHESTER</a>
1185
1186</div class="musesbuttons">
1187
1188
1189</ul id="pages">
1190</div class="muses">
1191
1192
1193</div class="sidebar">
1194
1195
1196
1197
1198
1199<!-- POPUP PAGE CA. -->
1200
1201
1202<div id="pageCA" class="popup_block">
1203
1204<div id="mimage">
1205<img src="https://i.imgur.com/LsNIasT.png">
1206</div id="mimage">
1207
1208
1209<ul id="tabs">
1210<li class="active" title="INFORMATION">01</li>
1211<li title="ENCYCLOPAEDIA">02</li>
1212<li title="NAVIGATION">03</li>
1213</ul>
1214
1215<ul id="tab">
1216<li class="active">
1217
1218<div class="mdescription">
1219
1220<h1>Claudia Auditore</h1>
1221
1222Borne of the Assassin's Creed franchise, Claudia is compliant to canon featured in the games AC: II, AC: Brotherhood, AC: Revelations and the novels. Though the portrayal will focus specifically within the AC:B & AC:R timelines.
1223
1224<p>Know from the outset that Claudia will not have a moden day verse and that she will only interact with characters that can be set within her own era. This means that she will not branch into interactions featured within Syndicate and onward. As I have yet to play Odyssey, any interaction from those within the time period will need to be plotted before ant interaction can take place.
1225
1226<p><b>
1227* MUSE STATUS: SECONDARY<br/>
1228* FACE CLAIM: FACELESS
1229</b>
1230
1231<h1>Quick Biography</h1>
1232
1233<p>Claudia Auditore da Firenze (born: 1461) was a Florentine noblewoman during the Renaissance, and a member of the Italian Brotherhood of Assassins. She was the sister of Ezio Auditore da Firenze, who became the Mentor of the Italian Brotherhood.
1234
1235<p>In 1476, Claudia became the financial accountant of the town of Monteriggioni, which was under the leadership of her uncle Mario Auditore. The town flourished with Claudia's organization and the money made from Monteriggioni's shops and organizations, which had been opened once more.
1236
1237<p>In January 1500, Monteriggioni was besieged and largely destroyed by the Borgia army, under command of Cesare Borgia, leaving the Auditore homeless. Against her brother's desire for Claudia and her mother Maria to go to their hometown of Florence, Claudia and Maria followed Ezio to Rome, where Claudia became the Madame of the Rosa in Fiore, the city's most popular brothel.
1238
1239<p>Eventually, after proving herself to be a worthy fighter to her brother, Ezio inducted Claudia into the Assassin Order. The following year, Claudia was captured by Borgia die-hards, and subsequently saved by Ezio and Niccolò Machiavelli. During this time, she stepped down as the Madame of the Rosa in Fiore, and stayed in Florence with her friend Paola, in order to recover until 1507.
1240
1241<p>Three years later, in 1510, Claudia was given temporary control of the Italian Brotherhood when her brother left on a journey to the Middle East to find the library of the legendary Altaïr Ibn-La'Ahad, which was said to be in Masyaf. She held this position until her brother returned in late 1512, after which Ezio resigned from the Order and assigned a successor.
1242
1243<p><b>* FURTHER INFORMATION: <a href="https://assassinscreed.fandom.com/wiki/Claudia_Auditore_da_Firenze">WIKIA</a></b>
1244
1245<h1>PERSONALITY & CHARACTERISTICS</h1>
1246
1247<p>In her younger years, it was evident that Claudia had been too spoiled by Giovanni, and was unafraid to be violent when a girl "looked at her boyfriend". Because of her temper, Giovanni was forced to raise her dowry by 1,000 florins, since she scared off all of her suitors. She was also seen to be immature, complaining petulantly after Mario assigned her to manage Monteriggioni's finances.
1248
1249<p>Regardless, Claudia was quite capable of handling and keeping track of the town's bankroll, as well as her brother's purchases and earnings. By the time of AC: Brotherhood, she had matured into an affable, humble, and hard-working woman, in contrast to her previous spoiled brat persona. This was likely due to the many years she spent alone in Mario's villa, taking care of Ezio's finances. Her capability in business management again became useful when she volunteered – despite Ezio's initial protest – to take over the brothel in Rome. Under her leadership, the Rosa in Fiore became the most popular brothel in the city, as well as an effective intelligence-gathering arm for the Assassins.
1250
1251<p>Claudia was also kind with her family, being especially emotional over her father and brothers' execution, her mother's emotional trauma, and leaving her home and her friends in Florence. Claudia was Ezio's only sister, and unlike her brothers, who were executed on the orders of Rodrigo Borgia to prove a point to the Assassins, she was spared, likely because of her gender. She was also very close to Ezio, especially in their later years.
1252
1253<p>When she was in charge of the Rosa in Fiore, Claudia demonstrated a fondness for the girls in her employ and a willingness to defend them. When the Borgia attacked the brothel, Claudia defended it and single-handedly slew all of the attackers armed with only a dagger, an act that impressed Ezio considerably.
1254
1255
1256
1257
1258</div class="mdescription">
1259
1260
1261</li>
1262
1263
1264<li>
1265
1266
1267<div class="mdescription">
1268
1269<h1>UNDER CONSTRUCTON</h1>
1270
1271</div class="mdescription">
1272
1273
1274</li>
1275
1276<li>
1277
1278
1279
1280<div class="mdescription">
1281
1282<h1>UNDER CONSTRUCTON</h1>
1283
1284</div class="mdescription">
1285
1286</li>
1287</ul id="tab">
1288
1289</div id="pageCA" class="popup_block">
1290
1291
1292
1293
1294
1295
1296
1297
1298<!-- POPUP PAGE MB. -->
1299
1300
1301<div id="pageMB" class="popup_block">
1302
1303<div id="mimage">
1304<img src="https://i.imgur.com/WWidpOr.png">
1305</div id="mimage">
1306
1307
1308<ul id="tabs">
1309<li class="active" title="INFORMATION">01</li>
1310<li title="ENCYCLOPAEDIA">02</li>
1311<li title="DIFFERENCES">03</li>
1312<li title="NAVIGATION">04</li>
1313</ul>
1314
1315<ul id="tab">
1316<li class="active">
1317
1318<div class="mdescription">
1319
1320<h1>Magnus Bane</h1>
1321
1322Borne of the Shadowhunter Chronicles by Cassandra Clare, Magnus is compliant <i>only</i> to the book series and is canon to all events within them.
1323
1324<p><b>
1325* MUSE STATUS: PRIMARY<br/>
1326* FACE CLAIM: GODFREY GAO<br/>
1327* PREVIOUS URL: CHATREUS
1328</b>
1329
1330
1331
1332<h1>Quick Biography</h1>
1333
1334Magnus Bane is the High Warlock of Brooklyn. He is described as very tall and very thin, and at least partly Asian. He has black hair that is usually spiked and glittery. He wears all kinds of make-up, such as glitter around his eyes and lipstick. He likes to flaunt his sexuality by wearing rainbow leather pants and other flashy accessories. Isabelle once said he was a "sexy, sexy, warlock." Simon once described him as "a warlock who looks like a gay Sonic the Hedgehog and dresses like the Child Catcher from Chitty Chitty Bang Bang". He is also described as having gold-green cat's eyes, and no belly button.
1335
1336<p>At a young age, Magnus's parents hated him. When his mother found out what he was, she hung herself in a barn. His father was later driven into an attempt to drown him. In response, Magnus burned him where he stood. He was brought up by Churchmen and raised by the Silent Brothers of Madrid, Spain, in the 17th Century.
1337
1338<p><b>* FURTHER INFORMATION: <a href="http://shadowhunters.wikia.com/wiki/Magnus_Bane">WIKIA.</a></b>
1339
1340
1341<h1>PHYSICAL DESCRIPTION</h1>
1342
1343Having stopped ageing at around 19, Magnus looks quite young. He has brown skin, is very tall, with a long and lean body. His warlock marks are his gold-green "cat-like" eyes with vertical pupils and his lack of a belly button. He is also noted to have a somewhat Asian appearance, due to the curve of his eyes. He has dark black hair; his hairstyles has changed over the years, ranging from short and spiked to straight and shoulder length.
1344
1345<p>He wears all kinds of make-up, such as glitter around his eyes, lipstick, and nail polish. He likes to flaunt his beauty by often dressing in flamboyant and glitzy ensembles, which is seen by some as strange, or unique.
1346
1347
1348<h1>ETYMOLOGY</h1>
1349
1350The name "Magnus" was chosen in reference to the term Magnus effect — a phenomenon where an object in motion suddenly changes its path and "goes somewhere you would never have expected."
1351The name Magnus means 'great' in Latin and was one of the first names used among Romans. His surname, Bane, would mean 'glorious defender' in Slavic; however, the more appropriate translation of Bane is 'destruction'. If his whole name is translated, Magnus Bane would mean 'great destruction'.
1352
1353
1354<h1>STATISTICS</h1>
1355
1356• <i>full Name:</i> Magnus Bane.
1357<br>• <i>commonly Known As:</i> Magnus.
1358<br>• <i>other Names:</i> Warlock, High Warlock, Bane.
1359<br>• <i>date Of Birth:</i> 8 December, post-1619.
1360<br>• <i>place Of Birth:</i> Batavia, Dutch East Indies.
1361<br>• <i>age:</i> Approx 400.
1362<br>• <i>current Location:</i> Brookyln, NY.
1363<br>• <i>gender:</i> Male.
1364<br>• <i>pronouns:</i> He/him/his.
1365<br>• <i>orientation:</i> Bisexual.
1366<br>• <i>species:</i> Warlock.
1367<br>• <i>occupation:</i> High Warlock of Brooklyn.
1368<br>• <i>abilities:</i> Magic.
1369<br>• <i>languages Spoken:</i> Indonesian, Spanish, Dutch, English, French, Portuguese, Latin, Chthonian, Purgatic, Gehennic, Tartarian, etc.
1370
1371
1372<p>
1373• <i>Face Claim:</i> Godfrey Gao.
1374<br>• <i>Hair Colour:</i> Black.
1375<br>• <i>Eye Colour:</i> Yellow-green.
1376<br>• <i>Height:</i> 6'2".
1377<br>• <i>Build:</i> Lean and Muscular.
1378<br>• <i>Distinguishing Marks:</i> Cat's eyes, no belly button.
1379<br>• <i>Tattoos:</i> None.
1380<br>• <i>Piercings:</i> Ears.
1381<br>• <i>Clothing Style:</i> Flamboyant, glitzy.
1382
1383
1384<p>
1385• <i>allergies:</i> None known.
1386<br>• <i>sleeping Habits:</i> Sleeps when he can, no schedule.
1387<br>• <i>body Temperature:</i> Average.
1388<br>• <i>drug Use:</i> Strictly none.
1389<br>• <i>tobacco Use:</i> Casual smoker.
1390<br>• <i>alcohol Use:</i> Whenever he wants a drink, he has one.
1391
1392
1393<p>
1394• <i>positive Traits:</i> Glamorous, caring, wise, helpful.
1395<br>• <i>negative Traits:</i> Self-indulged, lonely.
1396<br>• <i>fears:</i> Loss of those he loves or cares for.
1397<br>• <i>hobbies:</i> Cat collecting, reading.
1398<br>• <i>habits:</i> Takes in Downworlders and Shadowhunters without realisation, magically acquires objects (effectively stealing), has a tendency to throw aside anything he is holding that he loses interest in.
1399
1400<p>
1401• <i>birth Father:</i> Asmodeus (Fallen Angel/demon).
1402<br>• <i>boyfriend/fiance:</i> Alexander Lightwood.
1403<br>• <i>children:</i> Max Lightwood-Bane, Rafael Lightwood-Bane.
1404
1405
1406
1407
1408</div class="mdescription">
1409
1410
1411</li>
1412
1413
1414<li>
1415
1416
1417<div class="mdescription">
1418
1419<blockquote>T<b>he Mortal Instruments franchise</b> introduces us to a world that contains terminology that'll be entirely confusing for anyone unfamiliar with the novels. So while I could easily refer people to the according wiki pages that will each contain more information than you need to grasp the concept of each word, I'm assembling a list consisting of numerous terms that you're likely to come across at one point on this blog. See it as an encyclopedia of sorts. <i>This list will be updated as time passes.</i></blockquote>
1420
1421<h1>Shadowhunters / Nephilim</h1>
1422<i>Descensus facilis Averno est;</i> <b>The descent into Hell is easy.</b> The Nephilim, commonly known as Shadowhunters are a race of mortal beings that're born human and appear as such, but have angelic blood running through their veins. They represent an order, if you will, that fight against demons alongside Downworlders in the Shadow World that is invisible to the mere human eye. In essence, the Shadowhunters' objective is to one day rid the world of Earth of these demons, bringing an end to a war that dates back well over a thousand years.
1423
1424
1425<h1>The Angel Raziel</h1>
1426Known as the patron and creator of the race of the Shadowhunters. Legend goes that they were created well over a thousand years ago, during an uprising of demons invading the Mundane world. A warlock is said to have summoned an angel by the name of Raziel. This assumed archangel chose to mix his own blood with that of mortal men into a cup, that would later become known as the <i>Mortal Cup,</i> and offered the mixture to these same men to drink. Those who chose to consume it became Shadowhunters, a decision that would mark their family's line, as all descendants would then be born Nephilim as well.
1427
1428
1429<h1>Mundanes & Glamour </h1>
1430In the world of Cassandra Clare's <b>The Mortal Instruments,</b> the term <i>mundane</i> is utilized for those of human birth. In essence, they are individuals like you and I. They are generally entirely oblivious to the existence of Nephilim, demons and Downworlders as a whole— as this war is combatted behind <i>glamour,</i> which is a form of magic that conceals the Shadow World to the naked eye, visible to only those with ability known as The Sight.
1431
1432<h1>The Sight </h1>
1433Shadowhunters are generally <i>naturally born with</i> the ability of <b>The Sight</b> to see through glamour; it is a trait that is inherited through their Shadowhunter parents, which is bettered through training and then further improved upon further through usage of a permanent rune known as the rune of Voyance.
1434
1435<h1>Runes</h1>
1436For Shadowhunters, these runes (known as <b>Marks)</b> are a <i>complex runic language</i> granted to them by the Angel Raziel, consisting of symbols that are burned into a Nephilim's skin with help of a stele (a tool created for the specific purpose of drawing these symbols) and work as empowerments, protection or various other uses. There are thousands of runes in existence.
1437
1438<h1>Downworlders</h1>
1439This is a commonly used term for the, in essence, counterpart of the Nephilim. Where they are part human and part angel, the Downworlders are part human and part demon. The Downworlders consist of the <i>werewolves, faeries, vampires and warlocks.</i> While they are all demonic in origin and nature, they are regarded as human by the inhabitants of Heaven due to possessing human souls, which is what sets them apart from demons as a whole. Though often considered the logical and biological counterpart of the Shadowhunters, they live in peace and can fight side by side against demons in an allegiance created by the Accords.
1440
1441<h1>WARLOCKS</h1>
1442Warlocks, also known as Lilith's Children, are an immortal race of Downworlder offsprings of demons and mundanes. Warlocks are born from demons and humans, usually rape or deceit from shape-shifting Eidolon demons, disguised as humans or a human's loved one or an object of sexual desire.
1443Warlocks are immortal beings. At one point in their lives, they stop ageing—which point exactly will depend on their warlock parent. At one point, however, after an unspecific but long duration of time, warlocks, like most immortal or long-lived beings such as Silent Brothers, can "fade" and "petrify"—when they grow bored or unsurprised by life and stop looking forward to their years ahead, when the weight of their long lives settle on them, they may begin to lose their minds, and/or stop feeling and living, in all other essences of the word except literally.
1444<p>A universal trait among them are their warlock or demon marks, a part of their body that is strange or unique that identifies them as unearthly.
1445Additionally, warlocks are unable to have children. Warlock pregnancy always results in stillbirth as they are crossbreeds and are thus sterile.
1446<p>An exception from these limitations are the very rare offspring of demons and unmarked Shadowhunters; without Marks to resist the demonic energy in a fetus, the pregnancy results in a living child—particularly, a dominantly Shadowhunter being with traces of warlock abilities. The only known case so far is Tessa Gray, who does not have a warlock mark and has given birth.
1447<p>Because of their half-demon, half-human nature, other Downworlders sometimes insultingly refer to them as "half-breeds."
1448
1449<h1>The Accords</h1>
1450These are a set of amendments that together signify a peace treaty between Shadowhunters and Downworlders. As long as each of these amendments are never broken, the two can live side by side without bother, even finding allegiance when the need so arises. These Accords are revised and signed every fifteen years by <i>the Clave</i> (the political body of the Nephilim) and the representatives of all involved Downworlders.
1451
1452<h1>THE MORTAL INSTRUMENTS</h1>
1453Three divine items given by the Angel Raziel to Jonathan Shadowhunter, the first of the Nephilim. Raziel gave them to the Nephilim not only for individual use, but also in case of dire emergency, when he would heed their call only once; when used all together, the Instruments would summon the Angel.
1454<p>A thousand years ago, the Angel Raziel was summoned during a time when the Incursion was at its peak, when a huge wave of demons crossed dimensions into the human world. Raziel rose from Lake Lyn and mixed some of his own blood with the blood of Jonathan in a Cup, which became known as the Mortal Cup, and gave it to him to drink, entrusting with him the responsibility of creating more of his kind by letting others drink from it. Along with the Cup, Raziel also gave him the Mortal Sword.
1455<p>For years, however, the Mortal Mirror was believed to be lost. It was in 2007 when it was revealed, after being deduced by Hodge Starkweather, that it was in fact Lake Lyn in Idris. The same year, the Mortal Instruments were used by Valentine Morgenstern to summon Raziel. Because of this, the Instruments can apparently no longer be used to re-summon him.
1456
1457<h1>INSTITUTE</h1>
1458An Institute is an asylum for Shadowhunters, and in some cases Downworlders and mundanes under their protection, and a safe house meant to lodge and assist Nephilim from around the world in their quest to kill demons. They are found in every major city across the world and are often located in churches or built on holy ground.
1459
1460<h1>PORTALS</h1>
1461The invention of the first successful Portal was a product of a collaboration between a Shadowhunter and a Downworlder, namely Henry Branwell from the London Institute, who drafted the plans for the device, and Magnus Bane, the warlock, whose name as the co-creator of the Portal is not recorded or credited in history, who used magic and demonic runes to make it work, in 1878.
1462Sometimes referred to as a Five-Dimensional Door, a portal is a magical means of transportation used by Shadowhunters.
1463<p>Portals are used as means for rapid travel all over the world which, if not warded properly, may be used by powerful demons to get through.
1464When a Portal is active, the surroundings light up brightly.
1465<p>The kind of runic manipulation required to create Portals is not available to Shadowhunters, and so they need to be created and set up by warlocks. To get around this, a large number of permanent Portals have been established to transport Nephilim to and from Idris without having to hire warlocks for every trip, which is still the case in other parts of the world. Warlocks are now also able to easily create Portals.
1466<p>The only known Shadowhunter to have successfully made a Portal without aid from a warlock is Clary Fray, who first managed it in late 2007 with an ancient rune.
1467<p>Additionally, a person needs to be familiar with the destination when going through a Portal. Otherwise, it will take the person to whatever place he/she is thinking of, or the place the last user of the Portal went to.
1468
1469<h1>WITCHLIGHT</h1>
1470Witchlight is a light, flat, smooth gray stone that emits light, giving off a pure white glow when held by Shadowhunters. All Shadowhunters carry witchlight stones to remind them that light can be found even among the darkest shadows, and also to supply them with actual light when they are literally among dark shadows. Shadowhunters typically carry two witchlights.
1471<p>Although witchlight normally does not respond to the touch of mundanes and Downworlders; it glows a deep red, instead of the usual bright white, when held by Magnus Bane. This a result of his ancestry, as his father, Asmodeus, is a fallen angel.
1472
1473<h1>THE GRAY BROOK</h1>
1474The Gray Book, formally The Book of Gramarye, is a tome that contains an exact replica of the original Book of the Covenant, in which the Angel Raziel inscribed the runes, or Marks, the Nephilim are permitted to use.
1475<p>There are only a few copies of the book, as each has to be specially made by Silent Brothers, particularly because it requires special paper to withstand the power of the runes. The High Warlock of Brooklyn, Magnus Bane, and every Institute each have their own copy of the book.
1476<p>All young Shadowhunters learn the Marks from this book. Because of the fragility of the human mind, most Shadowhunter children grow up learning one rune from the Book at a time over a period of years. Reading too many runes at once would apparently give the reader a headache.
1477
1478<h1>THE CLAVE</h1>
1479The Clave is the collective name for the political body made up of all active Shadowhunters. The Clave keeps and interprets the Law, and makes decisions about the guidance of the Nephilim through history as it unfolds and decides on important matters that affect the Nephilim.
1480
1481<h1>SILENT BROTHERS</h1>
1482The Silent Brothers are a powerful group of male Shadowhunterswho serve as archivists and medics of the Nephilim. To strengthen their minds, they have taken upon themselves the most powerful of runes known to Shadowhunters. They are feared among the Nephilim. They reside in the Silent City, away from the rest of their kind. In the 17th century, as an orphan, Magnus Bane was raised by the Silent Brothers in Madrid, Spain.
1483
1484<h1>IRON SISTERS</h1>
1485The Iron Sisters are a communal organization of female Shadowhunters that forge weapons for their kind. The Iron Sisters are considered the female counterparts of the Silent Brothers, albeit more secluded. They reside in the Adamant Citadel, where they live in almost total solitude and speak only, and occasionally, to female Shadowhunters.
1486
1487<h1>PRAETOR LUPUS</h1>
1488Praetor Lupus is an alliance of werewolves founded by Woolsey Scott in the 1800s. It literally means "Wolf Guardians," and is based on the Praetorians, an elite Roman military force. The Praetor is the first and largest self-policing organization among the Downworlders.
1489
1490<h1>SCHOLOMANCE</h1>
1491The Scholomance is a Shadowhunter school where the most elite of Shadowhunters are trained to deal with demons and Downworlders.
1492It had been open for centuries until it was closed in 1872, when the First Accords were signed, as a show of good faith that Downworlders and Shadowhunters were no longer at war.
1493<p>A while after the Dark War in 2007, the Scholomance was reopened during the advent of the Cold Peace. It now trains Centurions to investigate cases involving faeries and continue their research.
1494
1495<h1>THE WILD HUNT</h1>
1496The Wild Hunt are an independent and free-ranging group of faeries who have no allegiance to any of the earthly Courts, which they disdain. They also have no agreement with the Nephilim. They do not fall under and nor do they recognize or the jurisdiction of the Clave; they do not abide by any laws and refuse to involve themselves with the Accords.
1497<p>Led by Gwyn ap Nudd, the Wild Hunt rides at night across the skies or along the ground, in mad pursuit of an eternal hunt. They anticipate battles and lie in wait until it's all over, after which they come to gather the dead, though at times they choose their battles. From these dying men, they claim some to either serve them or join them in their hunts. Aside from this, new Hunters are recruited once a year, when a mortal is allowed or given the opportunity to join them; once they join the Hunt, however, they can never leave it. The only time a Hunter may leave is when they are actually given permission.</p>
1498
1499</div class="mdescription">
1500
1501
1502</li>
1503
1504
1505<li>
1506
1507
1508<div class="mdescription">
1509
1510<blockquote>There are a great many differences between the show <i>Shadowhunters</i> and the books, <i>The Shadowhunter Chronicles</i>. I have compiled a list of things in the show that are <i>not</i> the same as in the books. Remember, this portrayal is <i>strictly book based</i> and so this list is purely to help those that aren't sure about what won't be the same between the books and the show, should we interact. This may be added to in the future, but for now, these are the things that are <b>important</b> to remember when interacting with my Magnus.
1511</blockquote>
1512
1513
1514
1515<h1>SMOKING</h1>
1516Though you never see Magnus smoke in the show, the reality is that Magnus <i>does</i>, in fact, smoke. It's the one addictive thing that he does, considering he won't touch drugs (claiming that drugs and magic don't mix), and will drink as much as he likes without any worries about his liver. He's immortal, he needs his vices. Just remember, he's lived through a great many years where smoking was <i>the thing to do</i>. He just hasn't kicked the habit.
1517
1518<h1>PORTALS</h1>
1519Contrary to the show's wonderful world of <b>a portal can be created by a warlock at any time, anywhere</b>, mentality... Portal's don't actually work that way. The only person who can whip up a portal on a whim is Clary Fairchild, and she has Angelic Blood to help her do that. The fact is, portals are either created temporarily and specifically for a purpose, which takes some time to put together, or the ones that already exist are utilised – which is more usually the case. Want to portal in New York? Then we're travelling to the nearest one and if you want Magnus Bane to do it, then it'll probably cost you more than a plane ticket would.
1520
1521<h1>PANDEMONIUM</h1>
1522I don't actually know where the show got the idea that Magnus owned and ran a nightclub known as Pandemonium. They were probably combining Magnus' love for partying, the fact that he did run a bar after the war in the 1900's, and the idea of a Pandemonium club... but first and foremost, and the thing to remember is; Magnus doesn't actually enjoy Pandemonium Club's. Secondly, these clubs are primarily run by Mundane's interested in the Shadow World and thus, Magnus never ran one. The truth is, Pandemonium Club's have a lot of shady goings on in them and if you read <b>The Infernal Devices</b>, this would all be common knowledge. Sure, the idea of Magnus running a nightclub <i>sounds</i> good, but being the High Warlock of Brooklyn is more than enough to be getting on with, without also adding the stress of actually owning and running a nightclub on top of it. He'll stick to spontaneously throwing outstanding parties, thank you.
1523
1524<h1>AGE</h1>
1525If you check out Magnus Bane's Clave file (not that I'm claiming that the Clave know the first thing about Magnus), you will find that Magnus was born in Batavia, the Dutch East Indies in the early 1600's. Just to clarify this a little for those that haven't looked into the history of what we now call Indonesia; Batavia was only known by that name from the year 1619, before that, the City was known as Jayakarta. This means that Magnus was born <i>after</i> that date, though possibly near it, if we go by Cassandra Clare's note of his birth being in the <b>early</b> 1600's. This makes his actual age <i>over</i> 400 years old, but not by much. What's your point, I hear you ask? Well, I mention this because showrunner Todd Slavkin has also stated that Show!Magnus is much older that his book counterpart. Listen, we all know that Magnus likes to exaggerate his age. He does it to fool people into thinking he's more powerful than he is. He's been doing that all of his professional (I use that term loosely) life. Just because he <i>says</i> that he was around when the Dead Sea "was just a lake that was feeling a little bit poorly", doesn't mean that he <b>actually was</b>! Most things that Magnus says about his age, need to be taken with a pinch of salt.
1526
1527<h1>RELATIONSHIPS</h1>
1528This part continues a little from the 'age' talk above. Here's the thing, Magnus is in his 400's, age wise. I'm literally going to point out the ridiculousness of the show runner's here because, if Magnus Bane is 400, then how could he <i>possibly</i> have been with 17,000 lovers in his time? Please do the math for a moment. If Magnus is 400, that would mean that he would need to be sleeping or in a relationship with 42 people a day, every day, for exactly 400 years. I don't know how that sit's with anyone else, but the idea of that just seems outright <i>ridiculous</i>.
1529<p>Now, I'm not saying that Magnus hasn't had his fair share of relationships, because lets face it, he has. We only know of a handful of them but that handful gives us an insight into what Magnus is like when in a relationship. Take into consideration, also, that Magnus hadn't been in a relationship since Etta back in the early 1900's before Alec Lightwood comes along. Much to the show's contradiction, Magnus Bane <b>isn't</b> a slut. He'll sleep with his share of people, but he <b>does</b> have self respect, thank you, Todd Slavakin.
1530
1531<h1>INSECURITIES</h1>
1532Magnus Bane is <i>proud</i> of his eyes, he doesn't hide them and he would never <b>dream</b> of glamouring them to anyone unnecessarily. The whole idea the show has about Magnus being self conscious of his eyes, which is one of <i>two</i> Warlock marks that he has, is outstandingly wrong. He's lived 400 years with these physical features, why would he still have those insecurities about himself but have the self confidence to supposedly have slept with 17,000 individuals? Honestly, I don't know where the show runners are making this stuff up? He also, in the show, seemingly has deep trust issues (I'm not going to dispute the trust issues, honestly) and anxiety about Alec wanting to hide their relationship or that he, Magnus, has done something wrong. I'm sorry, remind me, which one of the two is the 400 year old Warlock and which one is the 18 year old in their first relationship?? Because honestly, at this point I'm not sure.
1533
1534<h1>THE BREAK UPâ„¢</h1>
1535The Angel give me strength... Honestly, I know a lot of show watchers liked the break up but really? The show writers took something so important to Magnus and Alec's development and made it meaningless. Firstly, what was Magnus' reasons for breaking up with Alec? Because Alec has 'hidden' the fact that the Soul Sword, that wasn't even activated by the way, was missing. Okay, sure, if that thing was activated, then it could do some real damage to the Downworld... but it wasn't activated! Also the two people that <i>can</i> activate it are both within reach? Honestly, were the show runner's reaching with this one or what?!
1536<p>The book break up goes thus; Alec is secretly meeting up with Camille Belcourt, someone that Magnus warned was manipulative, talking about a way to take away Magnus' immortality. (Doesn't this sound like a really good reason to break up with someone? I know!) Magnus hadn't been opening up to Alec properly and had been talking about people he had previously been with, Alec was jealous and sneaking around. In short, Magnus follows Alec one time when he goes to meet Camille and Magnus out's him, breaks up with him and admits that he loves Alec but that it doesn't change anything. There we go, a <i>legitimate</i> reason to break up with someone.
1537
1538<h1>ACTIONS AND REACTIONS</h1>
1539This follows a little from the 'insecurities' talk above. Once again, I mention Magnus' age. He's lived for a very many years and learnt a lot over his time. Patience is one of them, the fact that people aren't perfect and make mistakes is another. Basically, Magnus is usually a very understanding individual, unless you're doing something fundamentally wrong. Some of Magnus' reactions in the show are extremely against his character. An example of this is the way he <i>overreacts</i> when Luke informs him of the Soul Sword being missing and that Alec knew about it. Because, <b>please</b>, that was unnecessary. Another example is the way that Magnus treats Alec after their break up. What was that? Is Magnus the 18 year old? Was this his first relationship? Are his sodium levels okay? That is the most out of character thing I have seen in the entirety of the show's interpretation of Magnus Bane. Just no.
1540
1541<h1>THE SEELIE QUEEN</h1>
1542Honestly what was this? Do I really need to say anything here? Magnus and the Seelie Queen have an unpleasant history. I'm just going to say <i>the team up that happened in the show would never happen</i> and leave you with a conversation that Magnus and Alec have in City of Lost Souls.
1543<p>“How was the Seelie Queen?"<br/>
1544"Same as usual."<br/>
1545"Raging bitch, then?"<br/>
1546"Pretty much.â€
1547
1548<h1>MAX LIGHTWOOD'S DEATH</h1>
1549I don't fully understand why Max didn't die in the show? I know the death of a child can be traumatic and alter the characters affected by that death in many ways, but <i>that</i> is the reason why Max Lightwood's death is so important to the Lightwood family and their development. It's part of what spurs Jace on to kill Sebastian. It's what allows Maryse and Robert to separate. It's what play's on Alec's mind and Max is who Alec and Magnus name their Warlock son after when they adopt him. Alec wants to do the best he can by his son so that he gets to do right by his brother in some way. Max's death is <i>important</i> for character development. <b>Max had to die.</b> I never would ask for the death of a child, regardless of the fact that he's a fictional character, but Max Lightwood's death is important in so many ways and the show has brushed it aside as if all the things that Max's death brings about are unimportant.
1550
1551<h1>JOCELYN FAIRCHILD'S DEATH</h1>
1552This woman has been cheated in the show. She deserved better than the death she got. She deserves to fight until the end, she deserves to see her daughter happy, she deserves to marry Lucien Graymark, she deserves a second chance at happiness. I understand that sometimes actors have other commitments and have to leave a show, but honestly they could have just recast her. I'm pretty sure the fandom would have gotten over it. Not only has her death affected Clary, it also affected Luke; another person who deserved some happiness. I'm pretty sure I'm always going to be disappointed in this particular part of the show's development, but there we go.
1553
1554<h1>DOROTHEA ROLLINS</h1>
1555Honestly, this character doesn't exist in the books and won't exist to my Magnus. The show character 'Dot' is a nice mix of Etta, who Magnus dated in the 1900's and Madam Dorothea, the old woman that is possessed by a greater demon in City of Bones. I'm not even entirely sure what her purpose was in the show? To die a pointless and unacknowledged death? If so, good job, show runners! You achieved your goal.
1556
1557</div class="mdescription">
1558
1559
1560</li>
1561
1562<li>
1563
1564
1565
1566<div class="mdescription">
1567
1568
1569
1570<h1>GENERAL</h1>
1571
1572<div id="nvbar" class="nvlinks">
1573
1574<a href="/tagged/muse%3A-magnus">INTERACTIONS</a>
1575
1576<a href="/tagged/「†ã€-%C2%A0i’m-falling-right-back-in-love-with-being-alive.-%C2%A0insp%3A-magnus">AESTHETIC</a>
1577
1578<a href="/tagged/「†ã€-%C2%A0memories-turn-into-daydreams-become-a-taboo.-%C2%A0vis%3A-magnus">VISAGE</a>
1579
1580</div id="nvbar" class="nvlinks">
1581
1582
1583
1584<h1>UNIVERSES</h1>
1585
1586<div id="nvbar" class="nvlinks">
1587
1588<a href="/tagged/">Bane Chronicles</a>
1589
1590<a href="/tagged/">infernal devices</a>
1591
1592<a href="/tagged/">mortal instruments</a>
1593
1594<a href="/tagged/">shadowhunter academy</a>
1595
1596<a href="/tagged/">dark artifices</a>
1597
1598<a href="/tagged/">shadow market</a>
1599
1600</div id="nvbar" class="nvlinks">
1601
1602
1603
1604</div class="mdescription">
1605
1606</li>
1607</ul id="tab">
1608
1609</div id="pageMB" class="popup_block">
1610
1611
1612
1613
1614<!-- POPUP PAGE BB. -->
1615
1616
1617<div id="pageBB" class="popup_block">
1618
1619<div id="mimage">
1620<img src="https://i.imgur.com/L1nXWVq.png">
1621</div id="mimage">
1622
1623
1624<ul id="tabs">
1625<li class="active" title="INFORMATION">01</li>
1626<li title="ENCYCLOPAEDIA">02</li>
1627<li title="NAVIGATION">03</li>
1628</ul>
1629
1630<ul id="tab">
1631<li class="active">
1632
1633<div class="mdescription">
1634
1635<h1>BONNIE BENNETT</h1>
1636
1637Borne of the Vampire Diaries franchise, Bonnie is compliant to canon featured within the television series, though will remain within the canon of seasons 1-3 only.
1638
1639<p><b>* MUSE STATUS: SECONDARY<br/>
1640* FACE CLAIM: KAT GRAHAM</b>
1641
1642<h1>QUICK BIOGRAPHY</h1>
1643
1644<p>Bonnie Sheila Bennett is a very powerful witch and one of the main female characters of The Vampire Diaries. While she filled the role of counselor and confidante to all of her friends, Bonnie is a feisty, yet empathetic witch, who discovered her powers just in time to help out her family and friends. In the beginning, before Bonnie discovered her true heritage as a witch, Bonnie had described herself as a psychic.
1645
1646<p>She is best friends with Caroline Forbes, Elena Gilbert, and Matt Donovan. She has known Caroline, Elena, Tyler and Matt since childhood. She is also close friends with Stefan Salvatore and Tyler Lockwood.
1647
1648<p>Bonnie is noted for having many heroine tendencies. She is seen to be very compassionate, empathetic, helpful, very selfless (to the point of martyrdom) and self-sacrificing. Bonnie is repeatedly ready to sacrifice herself for her family and friends without any hesitation or without a second thought. As her powers have increased, Bonnie stepped up at every opportunity to trade her life for those of her friends. Luckily, when Bonnie was alive and well, her spell-casting abilities most definitely came in handy when the Originals came to Mystic Falls.
1649<p><b>* FURTHER INFORMATION: <a href="https://vampirediaries.fandom.com/wiki/Bonnie_Bennett">WIKIA</a></b>
1650
1651<h1>PERSONALITY</h1>
1652
1653<p>At the beginning of the series, Bonnie was a good-hearted, bubbly, sweet, fun-loving, spirited and optimistic individual. With regards to other people, Bonnie is described to be kind, warm, sympathetic, caring, compassionate, empathetic, selfless, and self-sacrificing. Bonnie has shown that she makes a very loving, devoted, loyal and caring friend. Bonnie could be considered to be a very spiritual person and she originally identifies herself as a psychic before discovering her identity as a witch as well as her witch heritage.
1654
1655<p>In the beginning, Bonnie was an optimistic person who always chose to see the positive in things. However, as the series goes on and Bonnie begins to suffer immense grief, loss, pain and tragedy as well as the losses of people close to her (most notably, her Grams and Jeremy), she begins to become a much more serious and even depressive person. Although she has shown that she is generally a positive and optimistic person, she has also shown that she is capable of being depressive, withdrawn, martyring, and apathetic. After her Grams dies in season one, she distanced herself from Elena and her friends in Mystic Falls. Her grief was shown to be so bad that Bonnie had even left town for a few weeks in order to escape.
1656
1657<p>Despite all the pain, loss and suffering that she has endured, Bonnie still remains rather strong, especially in the face of danger and adversity. She has shown that she is willing to put her own personal pain on the back burner in order to pay attention to the needs of her loved ones. It could be argued that Bonnie is much too emotionally invested or involved in the lives of her friends and this is probably the reason why Bonnie never seems to find a long period of contentment or happiness. Bonnie remains the person who is deeply loyal to her friends even through all of the challenges that they have faced.
1658
1659<p>While Bonnie has become friends with and likes Stefan, she remains cordial with his older brother, Damon, despite Damon's actions that have affected deeply including turning her mother into a vampire. Bonnie also sees the good in Damon and believes that he has the potential to be a good person and that there is hope for him if he makes the right choices.
1660
1661<p>Bonnie's most defining trait, as well as her greatest weakness, is her compassion, her selflessness, and her undying devotion and loyalty to her friends and her willingness to constantly sacrifice or martyr herself for them and for the greater good. Multiple times throughout the series, Bonnie uses her powers and abilities as a witch to save the people she cares for as well as innocents, despite knowing the consequences. Although every single member of her family has warned her about the consequences of some of the spells that she has performed, Bonnie's belief is that it is her duty to protect, save and help her friends at all costs.
1662
1663<h1>PHYSICAL DESCRIPTION</h1>
1664
1665<p>Physically, Bonnie is a very beautiful and attractive young woman. She is rather exotic and has an "ethereal" beauty with an air of feminine mystery. Bonnie has a very soulful and magical beauty and she is almost uniformly feminine, in which she possesses somewhat of a fragile and enigmatic aura. Bonnie has soft and gentle facial features and she has somewhat of a delicate appearance. There is also something rather dreamy about her physical appearance. Bonnie has a heart-shaped face, with full cheeks and a pointed chin. Bonnie has very expressive, soulful, dreamy and beautiful eyes; they are large, round and almond-shaped which are seen to be olive green in coloring. Her eyes almost have a feeling of a boundless ocean; an ethereal quality that is very hard to pinpoint. She has perfectly shaped arched eyebrows which frame over her limpid and soulful eyes. She has a nice, slender and straight nose. Bonnie has well-shaped, full and sensuous lips, with straight white teeth and a warm and generous smile. She has clear and soft light brown skin or complexion with long, luxurious dark brown or soft black wavy hair. Having been a cheerleader, Bonnie has a slim yet athletic figure. Bonnie is also rather petite at about 5'2" and she is the shortest between herself, Elena and Caroline (with Caroline being the tallest). Bonnie regularly changes her hairstyle, in the early seasons, she had her hair regularly styled in very tight curls and sometimes soft waves. Her fashion sense or style is described as being gypsy chic with a bit of a hippie trend and she dresses in a casual manner with nice tops and jeans, but on special occasions, she will dress up in trendier and fancier clothing. As shown by several dances and parties, she likes to dress up in costume. In early part of the first season, her style was very much "normal", regular denim, blue jeans with colored t-shirts.
1666
1667</div class="mdescription">
1668
1669
1670</li>
1671
1672
1673<li>
1674
1675
1676<div class="mdescription">
1677
1678<h1>UNDER CONSTRUCTON</h1>
1679
1680</div class="mdescription">
1681
1682
1683</li>
1684
1685<li>
1686
1687
1688
1689<div class="mdescription">
1690
1691<h1>UNDER CONSTRUCTON</h1>
1692
1693</div class="mdescription">
1694
1695</li>
1696</ul id="tab">
1697
1698</div id="pageBB" class="popup_block">
1699
1700
1701
1702
1703<!-- PAGE: MUSE THREE. -->
1704
1705
1706<div id="pageEC" class="popup_block">
1707
1708
1709
1710<div id="mimage">
1711<img src="https://i.imgur.com/Z8Y7VPo.png">
1712</div id="mimage">
1713
1714
1715<ul id="tabs">
1716<li class="active" title="INFORMATION">01</li>
1717<li title="ENCYCLOPEDIA">02</li>
1718<li title="NAVIGATION">03</li>
1719</ul>
1720
1721<ul id="tab">
1722<li class="active">
1723
1724<div class="mdescription">
1725
1726<h1>Ethan Chandler</h1>
1727
1728Borne of the Penny Dreadful Series, Ethan is compliant to canon featured within the show.
1729<p>Please know ahead of time that I am still watching season 3 and have not seen past episode 5. I ask that you please respect this and take it into consideration when approaching for interaction.
1730
1731<p><b>
1732* MUSE STATUS: PRIMARY<br/>
1733* FACE CLAIM: JOSH HARNETT
1734</b>
1735
1736<h1>Quick Biography</h1>
1737
1738Ethan Chandler (Born Ethan Lawrence Talbot) is an American sharpshooter running away from a checkered past. When Sir Malcolm enlists him in a personal quest, Ethan meets Brona Croft, a beautiful Northern Irish prostitute with a mysterious past. But behind Ethan's bright eyes lurk dark secrets. He is running from something, and his troubling past threatens to overtake him at every turn. After the death of Brona, Ethan had lost control and had revealed himself to be a werewolf. takimata sanctus.
1739
1740<p>Ethan was born in 1857 to a wealthy family. At some point in his life, he served as a cavalry soldier fighting in the American Indian Wars and was involved in a brutal massacre where the troops eradicated an entire native village. Ethan later fled America after he had killed a senator's son, and joined a circus in Europe where he used his skills as a gunslinger to entertain small crowds.
1741
1742<p>In 1891, Chandler's Wildwest Show visited London, where he was met in a bar by Vanessa Ives who offered him a job as an armed escort that very night. After she deduced that he had told his audience a lie about his involvement in a particular war, he smiled and agreed to help. Ives gave him an address for their meeting and left immediately, leaving him to finish his drink.
1743
1744<p><b>*FURTHER INFORMATION: <a href="https://penny-dreadful.fandom.com/wiki/Ethan_Chandler">WIKIA</a></b>
1745
1746
1747<h1>APPEARANCE AND PERSONALITY</h1>
1748
1749A charming American who finds himself trapped in the darkest corners of Victorian London, Ethan's charm and brash ways are like catnip to the ladies. However, the persona of the dashing, careless gunslinger of the circus that he displays to the world is all just an act. Underneath, he is a more kind and thoughtful man, possessing a stronger sense of morality than most of the other characters, taking little pleasure in the suffering or manipulation of others. He has the air of an older man, one who has experienced a great deal of hardships. Nevertheless, his sense of moral outrage in difficult circumstances make him prone to angry and violent outbursts. He has sometimes expressed deep mistrust, even dislike, towards characters such as Sir Malcolm Murray and Victor Frankenstein, whom he believes are comparatively callous and amoral. He does later develop something of a friendship with Victor, however, as the two of them bond when he is teaching Frankenstein how to shoot. He continues to aid Sir Malcolm to the end, despite his distrust of the man.
1750
1751<h1>Abilities</h1>
1752
1753Human:
1754
1755<p><i>• Marksmanship:</i> Ethan is an incredibly accurate marksman, and had a job working as a sharpshooter in a wild west show. His skills are exceptional and allow him to wield pistols effectively in either hand.
1756
1757<br/><i>• Hand-To-Hand-Combat:</i> Ethan is a capable fighter, and manages to hold his own in brawls against infected vampires. He can also handle regular people quite well, except for when outnumbered by too many.
1758
1759<br/><i>• Theology:</i> Despite proclaiming himself to be an Atheist, Ethan has some knowledge of Catholicism and is fluent in Latin, able to say saint Jude's prayer in complete Latin (he claims he was raised on Latin). This comes in handy as it allowed him to exorcise the demon possessing Vanessa.
1760
1761<br/><i>• Canine Affinity:</i> Ethan exhibits a unique understanding of wolves, and has caused a wolf pack's alpha male to turn and lead an otherwise hostile pack away. It isn't clear whether this is an extension of him being a werewolf himself, or results from his confident personality.
1762
1763<br/><i>• Multilingual:</i> As well as English and Latin, Ethan is fluent in Apache.
1764
1765
1766<p>Werewolf:
1767
1768<p><i>• Shapeshifting:</i> Ethan changes into a hybrid of both wolf and man when the moon is full.
1769
1770<br/><i>• Enhanced Strength:</i> Ethan exhibits greatly increased strength when in his transformed state. He can casually kill grown men with little to no effort.
1771
1772<br/><i>• Enhanced Agility:</i> Ethan was shown to be able to kill and maim a large number of humans in rapid succession, before they could react.
1773
1774<br/><i>• Enhanced Resistance:</i> It has been implied that werewolves are extremely durable and that trauma from a silver weapon might be one of the few ways to kill one.
1775
1776<br/><i>• Wolf Physiology:</i> In his wolf form, Ethan grows claws sharp enough to tear through living flesh and sharp canine fangs.
1777
1778<br/><i>• Lycanthropy:</i> As a werewolf, Ethan can turn others into werewolves.
1779
1780
1781</div class="mdescription">
1782
1783</li>
1784
1785
1786
1787
1788<li>
1789
1790<div class="mdescription">
1791
1792<h1>UNDER CONSTRUCTION</h1>
1793
1794</div class="mdescription">
1795
1796
1797</li>
1798
1799<li>
1800
1801
1802
1803<div class="mdescription">
1804
1805<h1>UNDER CONSTRUCTION</h1>
1806
1807
1808</div class="mdescription">
1809
1810</li>
1811</div id="pageEC" class="popup_block">
1812
1813
1814
1815
1816
1817
1818
1819
1820<!-- PAGE: MUSE FOUR. -->
1821
1822<div id="pageCF" class="popup_block">
1823
1824
1825
1826<div id="mimage">
1827<img src="https://i.imgur.com/Vjy45Cm.png">
1828</div id="mimage">
1829
1830
1831<ul id="tabs">
1832<li class="active" title="INFORMATION">01</li>
1833<li title="ENCYCLOPAEDIA">02</li>
1834<li title="NAVIGATION">03</li>
1835</ul>
1836
1837<ul id="tab">
1838<li class="active">
1839
1840<div class="mdescription">
1841
1842<h1>Clary Fairchild</h1>
1843
1844Borne of the Shadowhunter Chronicles by Cassandra Clare, Clary is compliant <i>ONLY</i> to the book series and is canon to all events within them.
1845
1846<p><b>
1847* MUSE STATUS: SECONDARY<br/>
1848* FACE CLAIM: JANE LEVY<br/>
1849* PREVIOUS URL: ERUTHROS
1850</b>
1851
1852
1853<h1>Quick Biography</h1>
1854
1855Clarissa "Clary" Adele Fairchild, also known as Clary Fray, is the Shadowhunter daughter of Jocelyn Fray and the notorious Valentine Morgenstern. For years, Clary lived a mundane life with Jocelyn, until the return of her father and her brother, Jonathan, exposed her to a new world, throwing their lives out of balance as Clary found herself on a journey with her fellow Shadowhunters to stop them.
1856
1857<p>As a result of her father's experiments, Clary possesses more angel blood than other Shadowhunters and, through this, the ability to recall powerful, ancient runes not written in the Gray Book.
1858
1859<p><b>* FURTHER INFORMATION: <a href="https://shadowhunters.fandom.com/wiki/Clary_Fairchild">WIKIA</a></b>
1860
1861
1862<h1>PHYSICAL DESCRIPTION</h1>
1863
1864She is often said to look almost exactly like Jocelyn—with their green eyes, curly red hair, slender figure, small chest and narrow hips—though she does not see it, nor does she see the beauty others often see in her. There was a time when Clary felt herself to be a smaller, less beautiful, and more childlike version of her mother, although most people disagree. She is quite short, just a little over five feet tall, has hair she considers carrot-colored, and "a face full of freckles."
1865
1866<p>It is mentioned a few times that she dresses in a boyish and unfashionable ensemble, wearing oversized T-shirts, jeans and sneakers, which sometimes annoys Isabelle, who then picks out nicer, or more fashionably trendy clothes for her to wear. Through Isabelle's influence, she slowly shed her usually boyish fashion and began to put an effort into fixing herself up more often. She is told by a few guys to be cute or beautiful, despite what she personally thinks of herself. Jace (as seen in bonus material from his view) is also shown to find her beautiful as well as fierce and says that Clary, unlike other girls, just doesn't know it.
1867
1868
1869<h1>PERSONALITY AND TRAITS</h1>
1870
1871Clary is incredibly stubborn and sarcastic, traits born out of her mother's over-protectiveness. She is also a very caring and compassionate person. For her friends and family, Clary is willing to go to extreme lengths, often recklessly, putting herself in danger, thus usually leaving the people who care for her extremely worried and exasperated. Jace has even stated that her stubbornness matches his, which he figures was the reason they could not stand each other when they had first met. This is partnered with her being clever and quick-thinking, which often saves herself and others in dire situations.
1872
1873<p>She is also an artist like her mother, Jocelyn. She keeps a notepad of paper where she often draws out her emotions and feelings through pictures, her version of a diary, just using pictures instead of words.
1874
1875
1876
1877</div class="mdescription">
1878
1879</li>
1880
1881
1882
1883
1884<li>
1885
1886<div class="mdescription">
1887
1888<h1>UNDER CONSTRUCTION</h1>
1889
1890</div class="mdescription">
1891
1892
1893</li>
1894
1895<li>
1896
1897
1898
1899<div class="mdescription">
1900
1901<h1>UNDER CONSTRUCTION</h1>
1902
1903
1904</div class="mdescription">
1905
1906</li>
1907</div id="pageCF" class="popup_block">
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918<!-- PAGE: MUSE FIVE. -->
1919
1920<div id="pageBF" class="popup_block">
1921
1922
1923
1924<div id="mimage">
1925<img src="https://i.imgur.com/qozlaW8.png">
1926</div id="mimage">
1927
1928
1929<ul id="tabs">
1930<li class="active" title="INFORMATION">01</li>
1931<li title="ABILITIES">02</li>
1932<li title="UNIVERSES">03</li>
1933<li title="NAVIGATION">04</li>
1934</ul>
1935
1936<ul id="tab">
1937<li class="active">
1938
1939<div class="mdescription">
1940
1941<h1>Brian Falsworth</h1>
1942
1943Borne of the Marvel Comics franchise, Brian is also known by his alter ego: the <i>Union Jack</i>. This portrayl focuses on the information within his comic book characteristics while also adding original content to give him more depth as a character.
1944
1945<p><b>
1946* MUSE STATUS: SECONDARY<br/>
1947* FACE CLAIM: JOSEPH MORGAN<br/>
1948* PREVIOUS URL: PSCUDOCIDE
1949</b>
1950
1951<h1>Biography</h1>
1952
1953Born the son of James Montgomery Falsworth, Brian Falsworth was raised into money. He lived and grew in Falsworth Manor, in a village North of London where he spent a great deal of time playing, learning and looking up to his father; his rolemodel. Of course, as he grew older, Brian began to have a mind of his own and diverted from the life which his father might have liked him to have in favour of one that he believed in.
1954
1955<p>Roger Aubrey, best friend and lover to the very same Falsworth son, was somewhat of an influence on Brian. They grew together and so held some of the same views and beliefs about the world. The pair were pacifists and wanted peace between Germany and the United Kingdom. It was through these beliefs that the pair opted to travel to Germany during the 1938 to help encourage peace.
1956
1957<p>However, early in the war the pair discovered the evil nature of the Nazi regime and attempted to leave Germany. The Nazi Government was unwilling to risk the possibility that Falsworth and Aubrey would reverse their anti-war positions and so tore up their passports to render them unable to leave the country. They were then arrested by the Gestapo for their anti-war propaganda. The two were separated and brought to different prisons.
1958
1959<p>While in prison Brian met Professor Schmitt who was imprisoned by the Red Skull for having a Jewish background. Schmitt worked along side Professor Erskine before he defected to the America to create the super-soldier formula and made Captain America. Schmitt had made a imperfect variant of the Super-Soldier Serum of his own while in prison and gave it to Brian to take in an attempt to ensure their escape of the prison.
1960
1961<p>Failing in his attempt at escape and with Schmitt dead, Brian was turned over to the Institute of Nazi Science, where he was subjected to brainwashing and experiments that altered his memories and thoughts, resulting in his compliance to fight alongside the Nazi's.
1962
1963<p>With his memories gone, the Nazi's turned Brian into a costumed fighter, calling him the Destroyer. They unleashed their new soldier against those that fought against them, bringing with it the turning point in the war in the favour of Nazi forces.
1964
1965<p>Some months later and during this time Brian's boyfriend, Roger Aubry, was being experimented on and became brain-washed with the powers to shrink in size. The Germans send Roger to England to confront the Invaders. Lord James Montgomery Falsworth –– the Union Jack –– and Spitfire (Lady Jaqueline Falsworth, Brian's sister) heard news from Roger of the Destroyer in Germany. With intentions of finding a means of restoring Brian's memory, the trio parachuted into enemy territory with hopes that once Brian's memory was restored, he would reveal his identity to them. However the pair were captured by German's and were detained in their efforts, having to fight their captors and escape with some help from a captured scientist whom gave his word to aid in restoring Brian's memories.
1966
1967<p>The Destroyer had no intentions of going easily and so fought to continue accomplishing his given mission until he was detained by the Union Jack and Spitfire and his memories once again became his own.
1968
1969<p>Upon their return to Britain, his father handed down the responsibilties of the Union Jack to Brian, allowing him a new sense of purpose in his home country as its protector. It was through this that he became a member of the Invaders.
1970
1971<p>Following the war, Brian remained acive as the Union Jack, fighting for the good of his country. However, Brian had accumulated a large amount of attention during this time as a hero. Some time thereafter, reports of a car crash on a British road in 1953 hit the tabloids, announcing the end of Brian Falsworth's career and his life. It was a tragic end to a respected Heroes life.
1972
1973
1974
1975<h1>STATISTICS</h1>
1976
1977
1978• <i>full Name:</i> Brian Falsworth.
1979<br>• <i>other Names:</i> Bri or Falsworth.
1980<br>• <i>Aliases:</i> Destroyer, Union Jack.
1981<br>• <i>date Of Birth:</i> 24th October.
1982<br>• <i>place Of Birth:</i> Falsworth Manor, England.
1983<br>• <i>age:</i> Exceptionally verse dependent.
1984<br>• <i>gender:</i> Male.
1985<br>• <i>pronouns:</i> He/him/his.
1986<br>• <i>orientation:</i> Homosexual.
1987<br>• <i>species:</i> Human, Genetically enhanced via imperfect variant of Super Soldier Serum.
1988<br>• <i>occupation:</i> Adventurer.
1989<br>• <i>abilies:</i> Agility, Healing, Intellect, Stealth, Super Strength, Unarmed Combat, Weapon Master.
1990<br>• <i>languages Spoken:</i> English, French, German.
1991
1992<p>
1993• <i>Face Claim:</i> Joseph Morgan.
1994<br>• <i>Hair Colour:</i> Brown.
1995<br>• <i>Eye Colour:</i> Brown.
1996<br>• <i>Height:</i> 6'0".
1997
1998<p>
1999• <i>allergies:</i> None known.
2000<br>• <i>sleeping Habits:</i> Sleeps when he can, no schedule, insomia post WWII.
2001<br>• <i>body Temperature:</i> Average.
2002<br>• <i>drug Use:</i> None.
2003<br>• <i>tobacco Use:</i> Casual Smoker.
2004<br>• <i>alcohol Use:</i> Whenever he wants a drink, he has one.
2005
2006<p>
2007• <i>Father:</i> James 'Jack' Montgomery Falsworth, Lord.
2008<br>• <i>Mother:</i> Elizabeth Falsworth, Lady.
2009<br>• <i>Sister:</i> Jacqueline Falsworth, Lady.
2010
2011
2012
2013</div class="mdescription">
2014
2015</li>
2016
2017
2018<li>
2019
2020<div class="mdescription">
2021
2022
2023<blockquote>P<i>lease note:</i> While Brian was subject to a formula based off of the serum that created Captain America, it was in no way an exact replica; thus some of the abilities and changes in Brian will not be the exact same as those in Steve Rogers.</blockquote>
2024
2025<h1>SUPER HUMAN STRENGTH</h1>
2026
2027At his peak, Falsworth possesses the strength to lift approximately 1000 lbs (71 stone).
2028
2029<h1>PEAK HUMAN SPEED</h1>
2030
2031At peak of human efficiency, he can sprint at speeds of up to 30 miles per hour.
2032
2033<h1>SUPERHUMAN STAMINA</h1>
2034
2035Falsworth's augmented and superior musculature produced less fatigue toxins during physical activity than the musculature of a normal human. At his peak, he could exert himself at peak capacity for up to three hours before the build up of fatigue toxins in his blood began to impair him.
2036
2037<h1>SUPERHUMAN DURABILITY</h1>
2038
2039His bodily tissues were augmented by the Super-Soldier formula to the point that they are tougher and more resistant to some kinds of injury than the bodily tissues of an ordinary human. While far from invulnerable, Falsworth can withstand powerful impact forces. He can withstand impacts with little to no injury to himself, such as being struck by a superhumanly strong opponent or falling from several stories, that would severely injure or kill a normal human.
2040
2041<h1>SUPERHUMAN AGILITY</h1>
2042
2043His natural agility, balance and bodily coordination was enhanced to levels that are beyond the natural physical limits of the finest human athlete. Falsworth's agility is often likened with that of a tiger.
2044
2045<h1>SUPERHUMAN REFLEXES</h1>
2046
2047Falsworth's reflexes were similarly enhanced and are superior to those of the finest human athlete.
2048</blockquote>
2049
2050<h1>WEAPONS</h1>
2051
2052<i>SPECIFIC TO THE UNION JACK.</i></p>
2053<blockquote>
2054 <b>DAGGER:</b> Union Jack carried a steel dagger with a 6-inch blade, which he strapped to his left hip.
2055
2056 <p><b>SIDEARM:</b> Union Jack carries a Webley .455 caliber pistol in a tied-down flapped holster on his right hip.
2057</blockquote>
2058
2059<i>SPECIFIC TO BRIAN.</i>
2060<blockquote>
2061 <b>GUNS:</b> After his time working under the influence of the Nazi's, Brian has aquired a variety of firearms knowledge. In this respect, he is able to work most guns ––– however, long range weapons are not his specialty as he is a more accurate shot when within near-firing range.
2062</blockquote>
2063
2064<h1>MISCELLANEOUS</h1>
2065
2066This includes any other knowledge or training that may play a part in Brian's role as the Union Jack or come to light when interacting with him.
2067
2068<blockquote>
2069 <i>MAPS AND TACTICS:</i> Brian can read and understand maps easily. During his time under Nazi influence, Brian was used to take out towns and bring in or kill the Allied. He is well trained in tactical advances and manoeuvres.
2070
2071<p><i>ALLIANCES:</i> The Union Jack has alliances within the British Army, where he has helped them on multiple occasions and is respected among the men. He knows and has fought alongside Captain America during World War II and is familiar with the Howling Commandos, due to Brian's father having fought alongside them in the war.
2072
2073</div class="mdescription">
2074
2075</li>
2076
2077
2078
2079
2080
2081
2082<li>
2083
2084<div class="mdescription">
2085
2086<h1>VRS 001: TOO BAD THAT WE HAD NO TIME TO REWIND.</h1>
2087
2088P<i>RE WORLD WAR II:</i> Born the son of James Montgomery Falsworth, Brian Falsworth was raised into money. He lived and grew in Falsworth Manor, in a village North of London where he spent a great deal of time playing, learning and looking up to his father; his rolemodel. Of course, as he grew older, Brian began to have a mind of his own and diverted from the life which his father might have liked him to have in favour of one that he believed in.
2089
2090<p>Roger Aubrey, best friend and lover to the very same Falsworth son, was somewhat of an influence on Brian. They grew together and so held some of the same views and beliefs about the world. The pair were pacifists and wanted peace between Germany and the United Kingdom. It was through these beliefs that the pair opted to travel to Germany during the 1938 to help encourage peace.
2091
2092<h1>VRS 002: TELL MY PARENTS THAT I'M DEAD AND HOPE TO GOD I'M NEVER FOUND.</h1>
2093
2094T<i>HE DESTROYER:</i> Early in the war Brian and Rober discovered the evil nature of the Nazi regime and attempted to leave Germany. The Nazi Government was unwilling to risk the possibility that Falsworth and Aubrey would reverse their anti-war positions and so tore up their passports to render them unable to leave the country. They were then arrested by the Gestapo for their anti-war propaganda. The two were separated and brought to different prisons.
2095
2096<p>While in prison Brian met Professor Schmitt who was imprisoned by the Red Skull for having a Jewish background. Schmitt worked along side Professor Erskine before he defected to the America to create the super-soldier formula and made Captain America. Schmitt had made a imperfect variant of the Super-Soldier Serum of his own while in prison and gave it to Brian to take in an attempt to ensure their escape of the prison.
2097
2098<p>Failing in his attempt at escape and with Schmitt dead, Brian was turned over to the Institute of Nazi Science, where he was subjected to brainwashing and experiments that altered his memories and thoughts, resulting in his compliance to fight alongside the Nazi's.
2099
2100<p>With his memories gone, the Nazi's turned Brian into a costumed fighter, calling him the Destroyer. They unleashed their new soldier against those that fought against them, bringing with it the turning point in the war in the favour of Nazi forces.
2101
2102<h1>VRS 003: IF WE CAN FIND THE LIGHT WE CAN MAKE OUR WAY BACK HOME.</h1>
2103
2104U<i>NION JACK:</i> Upon their return to Britain, his father handed down the responsibilties of the Union Jack to Brian, allowing him a new sense of purpose in his home country as its protector. It was through this that he became a member of the Invaders.
2105
2106<p>Following the war, Brian remained acive as the Union Jack, fighting for the good of his country. However, Brian had accumulated a large amount of attention during this time as a hero. Some time thereafter, reports of a car crash on a British road in 1953 hit the tabloids, announcing the end of Brian Falsworth's career and his life. It was a tragic end to a respected Hero's life.
2107
2108<h1>VRS 004: ALT -- SUPER SPY. SUPER SOLDIER. SUPER COOL.</h1>
2109
2110P<i>SEUDOCIDE (THE SECOND DEATH OF BRIAN FALSWORTH):</i> Following the war, Brian remained acive as the Union Jack, fighting for the good of his country. However, Brian had accumulated a large amount of attention during this time as a hero. Through this he decided that it would be best if the Union Jack and consequentally, Brian Falswoth, disappeared from their radar. Reports of a car crash on a British road in 1953 hit the tabloids, announcing the end of Brian Falsworth's career and his life. The deceased hero kept himself from the public eye and lived for two decades without anyone knowing that he was alive.
2111
2112<p>Brian Falsworth's return to Falsworth Manor was a shocking one ––– something that he wished never to experiance again throughout the course of his life. This was the second time that he had been considered dead to his family and his return, following what had happened first in Germany and now again with his car crash, brought his family into an uproar and forced him to promise never to let them believe that he was dead again.
2113
2114<p>In following years, Brian once again donned the suit for the Union Jack and took to the streets to continue to protect his country. During this time he also made the decision to follow the future that his father had wanted for him, agreeing to take over his family business in the tea industry.
2115
2116<p>The discovery of Captain America hit the news some many years later. The formula that Brian had taken had enhanced his life expectancy to the point of near immortality, pending the notion that he wasn't mortally wounded or blown up at any point in his now long life. Brian looked the same as the day he had been imprisoned in Germany back during the war and with the resurrection of his old friend and brother in arms, Steve Rogers, came the knowledge that though the past was gone, it lived on in the heroes that fought and lived through those years.
2117
2118<h1>VRS 005: ALT -- TO INFINITY AND BEYOND.</h1>
2119
2120I<i>NFINITY WAR:</i> A continuation of <i>004. ALT: THE SECOND DEATH OF BRIAN FALSWORTH</i>; Brian is called upon as the Union Jack by his old friend and ally, Captain America in a bid to aid the remainder of the Avengers in stopping Thanos once and for all.
2121
2122</div class="mdescription">
2123
2124
2125</li>
2126
2127<li>
2128
2129
2130
2131<div class="mdescription">
2132
2133<h1>UNDER CONSTRUCTION</h1>
2134
2135<div id="nvbar" class="nvlinks">
2136
2137<a href="/tagged/">INTERACTIONS</a>
2138
2139<a href="/tagged/">AESTHETIC</a>
2140
2141<a href="/tagged/">VISAGE</a>
2142
2143
2144</div id="nvbar" class="nvlinks">
2145
2146
2147
2148<h1>ASSOCIATIONS</h1>
2149
2150<div id="nvbar" class="nvlinks">
2151
2152<a href="/tagged/">BRIAN FALSWORTH</a>
2153
2154<a href="/tagged/">JAMES MONTGOMERY FALSWORTH</a>
2155
2156<a href="/tagged/">ELIZABETH FALSWORTH</a>
2157
2158<a href="/tagged/">JACQUELINE FALSWORTH</a>
2159
2160
2161</div id="nvbar" class="nvlinks">
2162
2163
2164</div class="mdescription">
2165
2166</li>
2167</div id="pageBF" class="popup_block">
2168
2169
2170
2171
2172
2173
2174
2175<!-- PAGE: MUSE SIX. -->
2176
2177
2178<div id="pageJF" class="popup_block">
2179
2180
2181
2182<div id="mimage">
2183<img src="https://i.imgur.com/kfBMr4Z.png">
2184</div id="mimage">
2185
2186
2187<ul id="tabs">
2188<li class="active" title="INFORMATION">01</li>
2189<li title="NAVIGATION">02</li>
2190</ul>
2191
2192<ul id="tab">
2193<li class="active">
2194
2195<div class="mdescription">
2196
2197<h1>Jamie Fraser</h1>
2198
2199Borne of the Outlander franchise, Jamie is compliant to canon featured within the book series Outlander.
2200
2201<p>Please know from the outset that I am currently reading <i>Fiery Cross</i> and will adapt my interpretation of Jamie as I progress throughout the book series.
2202
2203<p><b>
2204 * MUSE STATUS: SECONDARY<br/>
2205 * FACE CLAIM: SAM HEUGHAN
2206</b>
2207
2208
2209<h1>Quick Biography</h1>
2210
2211James Alexander Malcolm MacKenzie Fraser is a Scottish soldier and landowner. He is well-educated and has a knack for learning languages. Raised to be the future Laird of Lallybroch, he is a natural leader, from the homestead to the battlefield. He first meets Claire on his return home to Scotland from France.
2212
2213<p><b>*FURTHER INFORMATION: <a href="https://outlander.fandom.com/wiki/Jamie_Fraser">WIKIA</a></b>
2214
2215
2216<h1>PERSONALITY</h1>
2217
2218In general, Jamie is charming and amiable, with a highly developed sense of humor and knack for inventive swearing. However, the Frasers are known for their stubbornness, and Jamie exemplifies the trait powerfully. He is also completely devoted to his family, especially his wife Claire, and will eliminate any threat to his loved ones, no matter the cost to himself. He has a strongly developed social intelligence, and a profound sense of a man's honor and duty. He won't turn away from any fight or responsibility that he perceives to be his.
2219
2220
2221<h1>PHYSICAL APPEARANCE</h1>
2222
2223Jamie is described as very tall at six feet, four inches, with thick, wavy red hair and slanted, cat-like blue eyes. While his height and broad shoulders cut a large figure, Jamie is built like a swimmer or basketball player; muscled and strong, but not excessively so – no extra flesh on his large frame. His hair is not the gingery sort of red, but rather a multitude of individual colors mixed together: auburn, amber, roan, cinnabar, rufous, copper, cinnamon, red and gold are all used to describe the strands of its unique hue, and it is often compared to a red deer's pelt. His eyes are described as dark blue, fringed with long lashes that are nearly black at the tips, but transition to auburn then pale blond at the roots. He gets his height and hair color from his mother's MacKenzie blood, as well as the high cheekbones and long, straight nose, but the slanted eyes, strong jaw and wide mouth are traits from his father, Brian Fraser.
2224
2225<p>Over the years, Jamie's body has acquired many scars from various injuries. The most shocking of these, usually hidden by his shirt, is his heavily scarred back, from lashings inflicted by Jack Randall and, years later, as a punishment at Ardsmuir Prison. He also has a triangular scar on his collar bone, as well as a long scar on the fourth finger of his right hand, both of these also inflicted by Jack Randall. In Wentworth Prison, Randall also branded him, though Jamie later cuts the stigmatized flesh out of his chest, leaving a puckered scar.
2226
2227<p>Before Claire goes back through the stones shortly before the Battle of Culloden, she carves the letter "C" into the base of his left thumb.[6] A broken nose just before the battle leaves Jamie's knife-edged nose slightly thickened at the base of the ridge where the fracture healed. During the battle, a bayonet ran clean through his thigh to the bone; he only escapes death from infection by his sister's stubborn refusal to let him die, and survives with a thick, welted scar up the length of his thigh.
2228
2229
2230</div class="mdescription">
2231
2232</li>
2233
2234
2235
2236<li>
2237
2238
2239
2240<div class="mdescription">
2241
2242<h1>UNDER CONSTRUCTION</h1>
2243
2244
2245</div class="mdescription">
2246
2247</li>
2248</div id="pageJF" class="popup_block">
2249
2250
2251
2252
2253
2254<!-- PAGE: MUSE SEVEN. -->
2255
2256
2257<div id="pageHT" class="popup_block">
2258
2259
2260
2261<div id="mimage">
2262<img src="https://i.imgur.com/sM8UO8j.png">
2263</div id="mimage">
2264
2265
2266<ul id="tabs">
2267<li class="active" title="INFORMATION">01</li>
2268<li title="NAVIGATION">02</li>
2269</ul>
2270
2271<ul id="tab">
2272<li class="active">
2273
2274<div class="mdescription">
2275
2276<h1>HENRY VIII</h1>
2277
2278Borne of the once King of England, Henry VIII, is also depicted in the television series the Tudors. This portrayal will be show based with historical influences throughout.
2279
2280<p>Know from the outset that I am still watching the Tudors season 3 and have yet to see the show in it's entirety. My portrayal will be adapted as I progress throughout the show.
2281
2282<p><b>
2283* MUSE STATUS: PRIMARY<br/>
2284* FACE CLAIM: JONATHAN RHYS MEYERS
2285</b>
2286
2287<h1>Quick Biography</h1>
2288
2289King Henry VIII, the second monarch of House Tudor, was a notable king of England, famous for having six wives and for breaking the Church of England from Catholicism; he is the central character of The Tudors and appears in all episodes. He ruled for nearly forty years and became one of England's most infamous kings, both a charismatic leader and a monster in his own right. The Tudors does not historically accurately chronicle Henry's life in terms of the passage of time, but they did stay true to most historical events during his reign, including his obsession in wanting a son to carry on his dynasty. He is played by Irish actor Jonathan Rhys-Meyers in an award-winning role.
2290
2291<p>Henry's six wives reigned in the following order: Catherine of Aragon, Anne Boleyn, Jane Seymour, Anne of Cleves, Katherine Howard and Catherine Parr. He had three children by the first three, each of whom succeeded him on the throne: King Edward VI (the youngest), son of Jane Seymour, Queen Mary I (the eldest), daughter of Catherine of Aragon, and Queen Elizabeth I, daughter of Anne Boleyn, who was the last and greatest monarch of House Tudor. Henry also had at least one bastard son, Duke Henry Fitzroy of Richmond (by one of his mistresses, Elizabeth Blount) who died at age 16 (in the series he dies as a little boy) and may have had other illegitimate children. His more prominent mistresses (besides Anne Boleyn, Jane Seymour and Katherine Howard before they respectively became Queens) include Elizabeth Blount, Mary Boleyn, Princess Margueritte of France, Eleanor Luke, Madge Shelton and Ursula Missledon. Henry's only consistant friend throughout the series is his childhood companion Charles Brandon, whom he invests as Duke of Suffolk.
2292
2293<p><b>* FURTHER INFORMATION: <a href="https://tudors.fandom.com/wiki/King_Henry_VIII">WIKIA</a></b>
2294
2295<h1>PERSONALITY</h1>
2296
2297Henry's personality is shown to change considerably over the series; yet, the most consistent trait, unfortunately, is that he is extremely quick to anger. Even his beloved or most trusted ones are not safe when Henry's wrath is aroused, though he may later show regret after their inevitable demise; the executions of his old friend and teacher Thomas More, and his wife Anne Boleyn in Season Two, demonstrated how far Henry's anger can go. Only Henry's best friend, Charles Brandon, Duke of Suffolk, survives the entirety of Henry's reign and remains in favor at his death, and this is because he is careful not to become to closely involved in political/religious matters. Henry's paranoia of plots or deceptions against him makes him increasingly unpredictable in Seasons Three and Four. At least part of Henry's poor performance as a ruler was due to his father (who was a much more capable King) having shut him away for many years prior to his older brother's death, leaving him untrained in the art of Kingship when he finally took the throne (something mentioned by Jane Seymour's ghost in the series finale).
2298
2299<p>Although he genuinely loved all his wives (with the possible exception of Anne of Cleves) Henry's love could be very conditional, as was proved by the downfalls of Catherine of Aragon, Anne Boleyn, Anne of Cleves and Katherine Howard. Henry remained a phenomenal womanizer throughout his reign until his final years, even cheating on his most beloved queen, Jane Seymour; he would take and later discard various mistresses for short periods of time, although the only one he ever asked to become his maitresse en titre ('official mistress') was Anne Boleyn, who refused. Henry was never shown to cheat on Catherine Parr, but by then his health had declined to the point that he was in no shape for sexual activity anyway.
2300
2301<p>Despite saying "I esteem the good of the commonwealth and the love of my subjects far above any riches" to Robert Aske in episode 3.03, Henry does not hesitate to use brutal violence against the people of England if provoked. This was proved by his most horiffic act of repression against his subjects, the destruction of the Northern Rebellion in Season Three known as "The Pilgrimage of Grace". Initially seeming pacified by the rebels (despite having condemned their actions in a rage and ordered the arrest of all their leaders), Henry seemed mollified after talking with Aske (the main leader, who was more moderate than his followers) but, despite his promises, he never had any intention of meeting the rebels' demands other than issuing a general pardon once they dispersed. Henry's deliberate inaction provoked a second, smaller uprising, which he and Cromwell capitalized on as an excuse to destroy the rebellion once and for all; even after all the leaders were executed, Henry ordered thousands of civilians in the North- men, women and children- hanged, even though the vast majority of the rebels had obediently laid down their airms. This massacre, not long after the execution of Henry's own wife, Anne Boleyn, severely damaged his reputation at home and abroad.
2302
2303<p>Henry's health also affects his unpredictable personality as the series progresses. During Season Two when he is knocked unconscious during a jousting match in episode 2.08, an old wound on Henry's leg re-opens and becomes infected; the wound would periodically give Henry ulcers and bouts of illness for the rest of his life, causing him excruciating pain and shortening his temper still further. As a result of being unable to continue in his usual intense exercise (as he once did) due to his crippled leg, Henry increasingly gains weight from his continued extravegant diet (though he is far less obese in the series than he was in real life).
2304
2305<p>Despite his hair-trigger temper, self-indulgence and ruthless nature, Henry cares deeply for all his children (even though he disowns his two daughters at various points due to his quest to father a son) and ultimately refuses to harm any of them; his love for his children is perhaps his only consistant redeeming quality. When his daughter Mary falls ill in Season Two, despite having disinherited her as a legitimate offspring Henry immediately sends his personal physicians to care for her. In Season one, when his bastard son Henry Fitzroy dies of the plague, Henry is shown weeping and staring at a miniature crown he had given the little boy a few months before, having bestowed him as a Duke. Henry's passions never truly die; he shows overwhelming grief on the death of his third and most beloved Queen, Jane Seymour, and shows eventual regret over the deaths of his first and second Queens (Catherine of Aragon and Anne Boleyn) despite both marriages having ended badly. In the series finale, Henry's humanity is most significantly shown; he is forced to face his past regret when confronted by the ghosts of Catherine, Anne and Jane, and thereafter bids a loving farewell to Catherine Parr and his children. Henry also goes into deep mourning when Charles Brandon dies of illness, as Charles had been his closest friend since childhood.
2306
2307<p>He occasionally shows acts of surprising and stirring generosity (though these are rare). One of the most notable was in episode 4.03, when Henry-on his way to make a progress to the North- pauses at the gates of Whitehall Palace, where a small crowd of sickly poor citizens have gathered to ask for his blessing. Despite his well-known, pathological fear of disease, Henry gently lays his hands on the heads of each of the people in turn and gives them his blessing, as well as a gold coin apiece.
2308
2309<p>For all the selfishness Henry displays in his relationships with his wives, there is a deeper reasoning behind his frantic quest to father a son. Prior to Henry's own daughters Mary and Elizabeth (who both ruled after him), the only precedent for a Queen Regnant in England was "Empress" Matilda during the Anarchy (an English Civil War in the 1100's) who attempted and failed to claim the Crown and rule on behalf of her son, King Henry II. Henry's own father, Henry VII, had begun his own reign by narrowly winning the final battle of the War of the Roses; clearly, the pressure to maintain the peace and order in England that his father had established was a great weight on Henry's shoulders. He thought the only way to stop potential rebellions or plots against his family by ambitious nobles such as the Dukes of Buckingham and Norfolk, was by producing a legitimate male heir whose rights to the throne could not be contested.
2310
2311<p>Despite his deeply flawed personality and impulsive nature, Henry is actually quite well-educated for his time; while he is rather oblivious to the rivalries and motivations behind them that plague his court and council, he keeps himself well-informed on matters of state and governance, and understands what he is talking about. While generally a religious and political conservative, Henry occasionally displays a hunger for knowledge and social change- a trait which he notably passed on to his daughter and eventual successor, Elizabeth (though her open-mindedness came more from her mother, Anne Boleyn). In some episodes of Season One, Henry displays an effort to make his name known in the sphere of arts and intellect, such as his handwritten pamphlet affirming the Pope's supremacy and his supposed composition of the famous song 'Greensleeves' (which is rumored to have been written by Henry VIII).
2312
2313<p>Henry enjoys sports of every kind as well as gambling, but he is a bit of a sore loser; he reacted badly on several occasions when three of his respective queen consorts (Anne Boleyn, Anne of Cleves, and Catherine Parr) beat him at cards.
2314
2315
2316
2317</div class="mdescription">
2318
2319</li>
2320
2321
2322
2323<li>
2324
2325
2326
2327<div class="mdescription">
2328
2329<h1>UNDER CONSTRUCTION</h1>
2330
2331
2332</div class="mdescription">
2333
2334</li>
2335</div id="pageHT" class="popup_block">
2336
2337
2338
2339
2340
2341
2342
2343
2344<!-- PAGE: MUSE EIGHT. -->
2345
2346
2347<div id="pageWH" class="popup_block">
2348
2349
2350
2351<div id="mimage">
2352<img src="https://i.imgur.com/FyuOF5t.png">
2353</div id="mimage">
2354
2355
2356<ul id="tabs">
2357<li class="active" title="INFORMATION">01</li>
2358<li title="ENCYCLOPAEDIA">02</li>
2359<li title="NAVIGATION">03</li>
2360</ul>
2361
2362<ul id="tab">
2363<li class="active">
2364
2365<div class="mdescription">
2366
2367<h1>Will Herondale</h1>
2368
2369Borne of the Shadowhunter Chronicles by Cassandra Clare, Will is compliant to the book series and is canon to all events within them.
2370
2371<p><b>
2372* MUSE STATUS: SECONDARY<br/>
2373* FACE CLAIM: HENRY CAVILL<br/>
2374* PREVIOUS URL: MELLTITH
2375</b>
2376
2377<h1>Quick Biography</h1>
2378
2379William "Will" Owen Herondale (1861-1937) is the middle child and only son of Edmund and Linette Herondale, the younger brother of the late Ella, the older brother of Cecily and a love interest a later husband of Tessa Gray in the book series The Infernal Devices by Cassandra Clare.
2380
2381<p>Will was born in Wales in 1861 as the second child and only son of former Shadowhunter Edmund and his Mundane wife Linette who already had a daughter named Ella and later had another daughter named Cecily. Despite Edmund leaving The Clave, Will along with his sisters were asked to become Shadowhunters but they turned this down as they were raised to believe that Shadowhunters where monstrous. When he was twelve, Will was looking through his father's old Shadowhunter things and came across a Pyxis and accidentally freed Marbas, the demon trapped inside it. Ella came to protect Will but got attacked by Matbas who then placed a curse on Will saying that anyone who loves him will die. The next day, Ella died from her injuries, but Will believed this was because of the curse and run away from him to protect his family and went to The London Institute to be a Shadowhunter.
2382
2383<p>During his time there, Will acted distant to the other residents of the Institute to stop them caring for him, fearing they would die. Sometime after arriving, Will attended a Christmas Party at the Institute where he found a diary which belonged to a twelve year old Shadowhunter named Tatiana Lightwood who had a crush on him. In the diary, Will found poems Tatiana wrote about him and wrote her name as Tatiana Herondale. Still believing in the curse, Will decided to put a stop to Tatiana's crush on him by reading out the poems in front of the entire London Enclave. Will succeeded in ending Tatiana's crush on him, only to be attacked by her older brother Gabriel. Will ended up breaking Gabriel's arm and since then the two boys have never got along. The only one he showed kindness to was his parabatai Jem Carstairs (who was slowing dying from affects from a demon drug). In 1878, Will (now 17) rescued a 16-year-old American half Demon/half Shadowhunter girl named Tessa Gray from The Dark Sisters but like others acted distant towards her. However, later that year, he encountered Marbas again and discovered that the demon didn't curse him at all and that Ella had died from her injuries. After hearing this Will confesses his feelings for Tessa but couldn't pursue a relationship with her due to Tessa being engaged to Jem. However, after Jem became a Silent Brother to stop dying from the drug, Will and Tessa started a relationship and at a Christmas party, Will proposed to Tessa which she accepted. Will along with Tessa and his remaining sister Cecily reunited with his parents and introduces Tessa as his fiancée to them.
2384
2385<p>Will and Tessa eventually married and had two children together, a son James and a daughter Lucie. Will died in 1937 aged 76 surrounded by Tessa, Jem (now known as Brother Zachariah) and his friends and family. In 2009, Will's ghost witnessed the wedding of Tessa and Jem at Blackfriars Bridge.
2386
2387<p><b>* FURTHER INFORMATION: <a href="http://shadowhunters.wikia.com/wiki/Will_Herondale">WIKIA</a></b>
2388
2389<h1>PERSONALITY</h1>
2390
2391A caring, affectionate man, Will would risk his life and happiness for the people he loves.
2392
2393<p>In his youth, when Will's instinct had been to push people away, Will kept his good traits hidden behind arrogance and sarcasm. To those who didn't know him, he came across as rude, childish, and egotistic, with his quick wit and sarcasm.
2394
2395<p>Will reads extensively and has an exceptional memory. He can find a quote for almost any situation and often makes his own (very bad according to even his friends and family, although sometimes purposefully) poetry.
2396
2397
2398<h1>PHYSICAL DESCRIPTION</h1>
2399
2400Will has black hair and blue eyes with long, thick eyelashes. He has high cheekbones, full lips, and is often described as extremely handsome by most people. He is said to greatly resemble his mother. He is muscular and well-built with broad shoulders and callused hands from his years of training as a Shadowhunter. He is also quite tall, standing at five foot ten.
2401
2402He has a tattoo of the Welsh Dragon on an intimate spot on his body. Will's parabatai rune is on his chest, over his heart. When he was married, one of his marriage runes would have been placed on his chest, as per tradition, and would have ended up next to his faded parabatai rune.
2403
2404
2405<h1>STATISTICS</h1>
2406
2407• <i>full Name:</i> William Owen Herondale.
2408<br>• <i>commonly Known As:</i> Will.
2409<br>• <i>other Names:</i> Gwylim, Mr Herondale.
2410<br>• <i>Year Of Birth:</i> 1861.
2411<br>• <i>place Of Birth:</i> North Wales.
2412<br>• <i>age:</i> Verse Dependent.
2413<br>• <i>current Location:</i> London Institute.
2414<br>• <i>gender:</i> Male.
2415<br>• <i>pronouns:</i> He/him/his.
2416<br>• <i>orientation:</i> Hetrosexual.
2417<br>• <i>species:</i> Nephilim.
2418<br>• <i>occupation:</i> Shadowhunter, Head of the London Institute.
2419<br>• <i>languages Spoken:</i> English, Welsh.
2420
2421
2422<p>
2423• <i>Face Claim:</i> Henry Cavill.
2424<br>• <i>Hair Colour:</i> Black.
2425<br>• <i>Eye Colour:</i> Blue.
2426<br>• <i>Height:</i> 5'10".
2427<br>• <i>Build:</i> muscular, well-built, broad.
2428<br>• <i>Distinguishing Marks:</i> Star shaped birth mark on left shoulder.
2429<br>• <i>Tattoos:</i> None.
2430<br>• <i>Piercings:</i> None.
2431
2432
2433<p>
2434• <i>allergies:</i> None known.
2435<br>• <i>sleeping Habits:</i> Sleeps when he can, no schedule.
2436<br>• <i>body Temperature:</i> Average.
2437<br>• <i>tobacco Use:</i> Casual.
2438<br>• <i>alcohol Use:</i> Whenever he wants a drink, he has one.
2439
2440<p>
2441<br>• <i>positive Traits:</i> caring, affectionate, loving, would risk his life and happiness for the people he loves.
2442<br>• <i>negative Traits:</i> arrogant, rude, childish, egotistic, quick witted, sarcastic.
2443<br>• <i>fears:</i> Killing those he cares for via a curse for loving them, Losing his loved ones, Ducks.
2444<br>• <i>habits:</i> Reads Extensively, Quotes Books, Makes up poetry.
2445
2446<p>
2447• <i>Father:</i> Edmund Herondale.
2448<br>• <i>Mother:</i> Linette Owens.
2449<br>• <i>Wife:</i> Tessa Gray.
2450<br>• <i>children:</i> James Herondale, Lucie Herondale.
2451<br>• <i>Parabatai:</i> Jem Carstairs.
2452
2453</div class="mdescription">
2454
2455</li>
2456
2457
2458
2459
2460<li>
2461
2462<div class="mdescription">
2463
2464<blockquote>T<b>he Mortal Instruments franchise</b> introduces us to a world that contains terminology that'll be entirely confusing for anyone unfamiliar with the novels. So while I could easily refer people to the according wiki pages that will each contain more information than you need to grasp the concept of each word, I'm assembling a list consisting of numerous terms that you're likely to come across at one point on this blog. See it as an encyclopedia of sorts. <i>This list will be updated as time passes.</i></blockquote>
2465
2466
2467<h1>Shadowhunters / Nephilim</h1>
2468D<i>escensus facilis Averno est;</i> <b>The descent into Hell is easy.</b> The Nephilim, commonly known as Shadowhunters are a race of mortal beings that're born human and appear as such, but have angelic blood running through their veins. They represent an order, if you will, that fight against demons alongside Downworlders in the Shadow World that is invisible to the mere human eye. In essence, the Shadowhunters' objective is to one day rid the world of Earth of these demons, bringing an end to a war that dates back well over a thousand years.
2469
2470<h1>The Angel Raziel</h1>
2471Known as the patron and creator of the race of the Shadowhunters. Legend goes that they were created well over a thousand years ago, during an uprising of demons invading the Mundane world. A warlock is said to have summoned an angel by the name of Raziel. This assumed archangel chose to mix his own blood with that of mortal men into a cup, that would later become known as the <i>Mortal Cup,</i> and offered the mixture to these same men to drink. Those who chose to consume it became Shadowhunters, a decision that would mark their family's line, as all descendants would then be born Nephilim as well.
2472
2473
2474<h1>Mundanes & Glamour </h1>
2475In the world of Cassandra Clare's <b>The Mortal Instruments,</b> the term <i>mundane</i> is utilized for those of human birth. In essence, they are individuals like you and I. They are generally entirely oblivious to the existence of Nephilim, demons and Downworlders as a whole— as this war is combatted behind <i>glamour,</i> which is a form of magic that conceals the Shadow World to the naked eye, visible to only those with ability known as The Sight.
2476
2477<h1>The Sight </h1>
2478Shadowhunters are generally <i>naturally born with</i> the ability of <b>The Sight</b> to see through glamour; it is a trait that is inherited through their Shadowhunter parents, which is bettered through training and then further improved upon further through usage of a permanent rune known as the rune of Voyance.
2479
2480<h1>Runes (+ Stele)</h1>
2481For Shadowhunters, these runes (known as <b>Marks)</b> are the language of Angels, a very <i>complex runic language</i> that was granted to them by the Angel Raziel. It consists of symbols that are burned into a Nephilim's skin with help of a stele (which is a tool created for the specific purpose of drawing these symbols) and work as empowerments, protection or various other uses. There are thousands of runes in existence.
2482
2483<p>Most runes are temporary and fade to white before vanishing from a Shadowhunter’s skin entirely through time. There are few runes that are permanent and they are Voyance, Parabatai and Mnemosyne. The first rune that a shadowhunter receives is the Voyance rune and it is placed upon their <i>dominant hand,</i> this is simultaneously also the clearest identification marker of a Shadowhunter. Young shadowhunters slowly learn the different runes to understand their use and how to draw them properly, which take fair practice and patience, but skillful accuracy is rewarded with maximum benefit. As power is released from the runes, they begin to fade on the body until they inevitably turns silvery-white. <i>Important: </i> Runes drawn closest to the heart and aorta will be most effective, as the strongest presence of blood mirrors the effectiveness of the runes.
2484
2485<h1>Downworlders</h1>
2486This is a commonly used term for the, in essence, counterpart of the Nephilim. Where they are part human and part angel, the Downworlders are part human and part demon. The Downworlders consist of the <i>werewolves, faeries, vampires and warlocks.</i> While they are all demonic in origin and nature, they are regarded as human by the inhabitants of Heaven due to possessing human souls, which is what sets them apart from demons as a whole. Though often considered the logical and biological counterpart of the Shadowhunters, they live in peace and can fight side by side against demons in an allegiance created by the Accords.
2487
2488<h1>The Accords</h1>
2489These are a set of amendments that together signify a peace treaty between Shadowhunters and Downworlders. As long as each of these amendments are never broken, the two can live side by side without bother, even finding allegiance when the need so arises. These Accords are revised and signed every fifteen years by <i>the Clave</i> (the political body of the Nephilim) and the representatives of all involved Downworlders.
2490
2491<h1>SILENT BROTHERS</h1>
2492The Silent Brothers are a powerful group of male Shadowhunterswho serve as archivists and medics of the Nephilim. To strengthen their minds, they have taken upon themselves the most powerful of runes known to Shadowhunters. They are feared among the Nephilim. They reside in the Silent City, away from the rest of their kind.
2493
2494
2495<h1>IRON SISTERS</h1>
2496The Iron Sisters are a communal organization of female Shadowhunters that forge weapons for their kind. The Iron Sisters are considered the female counterparts of the Silent Brothers, albeit more secluded. They reside in the Adamant Citadel, where they live in almost total solitude and speak only, and occasionally, to female Shadowhunters.
2497
2498</div class="mdescription">
2499
2500
2501</li>
2502
2503<li>
2504
2505
2506
2507<div class="mdescription">
2508
2509<h1>UNDER CONSTRUCTION</h1>
2510
2511
2512</div class="mdescription">
2513
2514</li>
2515</div id="pageWH" class="popup_block">
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525<!-- PAGE: MUSE NINE. -->
2526
2527
2528<div id="pageAL" class="popup_block">
2529
2530
2531
2532<div id="mimage">
2533<img src="https://i.imgur.com/vju3Pod.png">
2534</div id="mimage">
2535
2536
2537<ul id="tabs">
2538<li class="active" title="INFORMATION">01</li>
2539<li title="ENCYCLOPAEDIA">02</li>
2540<li title="DIFFERENCES">03</li>
2541<li title="NAVIGATION">04</li>
2542</ul>
2543
2544<ul id="tab">
2545<li class="active">
2546
2547<div class="mdescription">
2548
2549<h1>Alec Lightwood</h1>
2550
2551Borne of the Shadowhunter Chronicles by Cassandra Clare, Alec is compliant <i>ONLY</i> to the book series and is canon to all events within them.
2552
2553<p><b>
2554 * MUSE STATUS: PRIMARY<br/>
2555 * FACE CLAIM: MATTHEW DADDARIO<br/>
2556 * PREVIOUS URL: ARGUPHOS
2557</b>
2558
2559<h1>Quick Biography</h1>
2560
2561Alec is one of the few openly gay Shadowhunters. Since queer Shadowhunters are normally shunned by the Clave, Alec was skeptical about coming out. He eventually overcame his worries and revealed his relationship with warlock Magnus Bane to his family, friends, and fellow Shadowhunters—an act that inspired other closeted Shadowhunters to come out about their sexuality, as well.
2562
2563<p><b>* FURTHER INFORMATION: <a href="https://shadowhunters.wikia.com/wiki/Alec_Lightwood">WIKI.</a></b>
2564
2565
2566<h1>PHYSICAL DESCRIPTION</h1>
2567
2568He is tall and fit, with a thin, wiry build. He has jet-black hair that ends at his jaw and stunning blue eyes. Alec has angular cheekbones. He was said to share a startling resemblance with his distant relative Will Herondale.
2569<br><br>
2570
2571
2572<h1>PERSONALITY</h1>
2573
2574Alec is brave, caring, and compassionate. He is blunt and straightforward as he never grew accustomed to pretenses.
2575
2576<p>Alec was initially uncomfortable, self-conscious, and serious in most situations; in this sense, Alec was very much the opposite of his sister. He was rarely proud, believing himself without many accomplishments, though he'd always hoped to make his parents proud of him. When he turned eighteen, Alec took pride in being allowed to attend Council meetings with the other adult Nephilim.
2577
2578<p>Partly due to his upbringing and the beliefs he was taught in his youth, Alec was judgmental, arrogant and condescending at times, and initially held prejudice towards Downworlders, though this eventually changed when his life became so intertwined with many of them. He was also initially unwelcoming of strangers and people he deemed a threat to his family. Alec is also sarcastic, with a dry, biting sense of humor, particularly in remarks directed at people he doesn't feel particularly keen of. He would make no effort to hide his ill feelings towards them, showing it in small subtle ways like openly ignoring them or not heeding their opinions.
2579
2580<p>Alec was also once scared of admitting, even to himself, his own sexuality and feelings, even more so because he was concerned about his parents' and other people's opinions. For a long time, Alec chose to avoid potentially getting into any form of relationship by letting himself believe that he was hopelessly in love with Jace, whom he is not allowed to fall in love with, because it would have been easier than facing the consequences of embracing his sexuality.
2581
2582<p>He can also be quite insecure and jealous, when it came to his own achievements as well as Magnus's romantic history. His insecurities along with the pressure he'd placed on himself made him somewhat guarded, though he eventually, he overcame his own insecurities and became more confident in himself, with the help and assurance of those around him over the course of their adventures.
2583
2584<p>Alec leans towards more cautious and practical decisions, except perhaps when it comes to the well-being of those he loves. Alec is very protective of his family and tends to assume the most responsibility as the oldest of his siblings. For years, Alec served as the protector and healer in the group, focused more on the safety of his siblings and has thus never killed a demon until after he turned eighteen, frequently putting himself in danger to protect them as well. Because of this role he'd grown into, Alec always responded well to having people relying on him and turning to him with problems. Though he is also committed to the accomplishment of their task and following Clave law, Alec would do anything, even defy authority, if it would help his friends. He also dislikes seeing his loved ones in pain and is just as hurt when he cannot do anything to ease their sorrow; he would even choose to suffer with them instead of even considering leaving them behind.
2585
2586
2587<h1>ETYMOLOGY</h1>
2588
2589His first name, Alexander, means 'defending men' in Greek, while his middle name, Gideon, is of biblical origin and means 'a destroyer'.
2590<br><br><br>
2591
2592<h1>STATISTICS</h1>
2593
2594• <i>full Name:</i> Alexander Gideon Lightwood.
2595<br>• <i>commonly Known As:</i> Alec.
2596<br>• <i>date Of Birth:</i> September 12th 1989.
2597<br>• <i>place Of Birth:</i> Idris.
2598<br>• <i>age:</i> Verse Dependent
2599<br>• <i>current Location:</i> New York.
2600<br>• <i>gender:</i> Male.
2601<br>• <i>pronouns:</i> He/him/his.
2602<br>• <i>orientation:</i> Homosexual.
2603<br>• <i>species:</i> Nephilim.
2604<br>• <i>occupation:</i> Shadowhunter.
2605
2606
2607<p>
2608• <i>Face Claim:</i> Matthew Daddario.
2609<br>• <i>Hair Colour:</i> Black.
2610<br>• <i>Eye Colour:</i> Blue.
2611<br>• <i>Height:</i> 6ft.
2612<br>• <i>Build:</i> Tall and fit, with a thin wirey build.
2613<br>• <i>Tattoos:</i> Only Runes.
2614<br>• <i>Piercings:</i> None.
2615<br>• <i>Clothing Style:</i> Black and Comfortable.
2616
2617
2618<p>
2619• <i>allergies:</i> Hayfever/Pollen.
2620<br>• <i>sleeping Habits:</i> Mostly nocternal.
2621<br>• <i>drug Use:</i> Strictly none.
2622<br>• <i>tobacco Use:</i> Strictly none.
2623<br>• <i>alcohol Use:</i> Mostly none.
2624
2625<p>
2626• <i>father:</i> Robert Lightwood.
2627<br>• <i>mother:</i> Maryse Trueblood.
2628<br>• <i>Siblings:</i> Isabelle Lightwood, Max Lightwood, Jace Lightwood-Herondale (parabatai).
2629<br>• <i>boyfriend/fiance:</i> Magnus Bane.
2630<br>• <i>children:</i> Max Lightwood-Bane, Rafael Lightwood-Bane.
2631
2632</div class="mdescription">
2633
2634</li>
2635
2636
2637
2638
2639<li>
2640
2641<div class="mdescription">
2642
2643<blockquote>T<b>he Mortal Instruments franchise</b> introduces us to a world that contains terminology that'll be entirely confusing for anyone unfamiliar with the novels. So while I could easily refer people to the according wiki pages that will each contain more information than you need to grasp the concept of each word, I'm assembling a list consisting of numerous terms that you're likely to come across at one point on this blog. See it as an encyclopedia of sorts. <i>This list will be updated as time passes.</i></blockquote>
2644
2645
2646<h1>Shadowhunters / Nephilim</h1>
2647D<i>escensus facilis Averno est;</i> <b>The descent into Hell is easy.</b> The Nephilim, commonly known as Shadowhunters are a race of mortal beings that're born human and appear as such, but have angelic blood running through their veins. They represent an order, if you will, that fight against demons alongside Downworlders in the Shadow World that is invisible to the mere human eye. In essence, the Shadowhunters' objective is to one day rid the world of Earth of these demons, bringing an end to a war that dates back well over a thousand years.
2648
2649
2650<h1>The Angel Raziel</h1>
2651Known as the patron and creator of the race of the Shadowhunters. Legend goes that they were created well over a thousand years ago, during an uprising of demons invading the Mundane world. A warlock is said to have summoned an angel by the name of Raziel. This assumed archangel chose to mix his own blood with that of mortal men into a cup, that would later become known as the <i>Mortal Cup,</i> and offered the mixture to these same men to drink. Those who chose to consume it became Shadowhunters, a decision that would mark their family's line, as all descendants would then be born Nephilim as well.
2652
2653
2654<h1>Mundanes & Glamour </h1>
2655In the world of Cassandra Clare's <b>The Mortal Instruments,</b> the term <i>mundane</i> is utilized for those of human birth. In essence, they are individuals like you and I. They are generally entirely oblivious to the existence of Nephilim, demons and Downworlders as a whole— as this war is combatted behind <i>glamour,</i> which is a form of magic that conceals the Shadow World to the naked eye, visible to only those with ability known as The Sight.
2656
2657<h1>The Sight </h1>
2658Shadowhunters are generally <i>naturally born with</i> the ability of <b>The Sight</b> to see through glamour; it is a trait that is inherited through their Shadowhunter parents, which is bettered through training and then further improved upon further through usage of a permanent rune known as the rune of Voyance.
2659
2660<h1>Runes</h1>
2661For Shadowhunters, these runes (known as <b>Marks)</b> are a <i>complex runic language</i> granted to them by the Angel Raziel, consisting of symbols that are burned into a Nephilim's skin with help of a stele (a tool created for the specific purpose of drawing these symbols) and work as empowerments, protection or various other uses. There are thousands of runes in existence.
2662
2663<h1>Downworlders</h1>
2664This is a commonly used term for the, in essence, counterpart of the Nephilim. Where they are part human and part angel, the Downworlders are part human and part demon. The Downworlders consist of the <i>werewolves, faeries, vampires and warlocks.</i> While they are all demonic in origin and nature, they are regarded as human by the inhabitants of Heaven due to possessing human souls, which is what sets them apart from demons as a whole. Though often considered the logical and biological counterpart of the Shadowhunters, they live in peace and can fight side by side against demons in an allegiance created by the Accords.
2665
2666<h1>WARLOCKS</h1>
2667Warlocks, also known as Lilith's Children, are an immortal race of Downworlder offsprings of demons and mundanes. Warlocks are born from demons and humans, usually rape or deceit from shape-shifting Eidolon demons, disguised as humans or a human's loved one or an object of sexual desire.
2668Warlocks are immortal beings. At one point in their lives, they stop ageing—which point exactly will depend on their warlock parent. At one point, however, after an unspecific but long duration of time, warlocks, like most immortal or long-lived beings such as Silent Brothers, can "fade" and "petrify"—when they grow bored or unsurprised by life and stop looking forward to their years ahead, when the weight of their long lives settle on them, they may begin to lose their minds, and/or stop feeling and living, in all other essences of the word except literally.
2669<p>A universal trait among them are their warlock or demon marks, a part of their body that is strange or unique that identifies them as unearthly.
2670Additionally, warlocks are unable to have children. Warlock pregnancy always results in stillbirth as they are crossbreeds and are thus sterile.
2671<p>An exception from these limitations are the very rare offspring of demons and unmarked Shadowhunters; without Marks to resist the demonic energy in a fetus, the pregnancy results in a living child—particularly, a dominantly Shadowhunter being with traces of warlock abilities. The only known case so far is Tessa Gray, who does not have a warlock mark and has given birth.
2672<p>Because of their half-demon, half-human nature, other Downworlders sometimes insultingly refer to them as "half-breeds."
2673
2674<h1>The Accords</h1>
2675These are a set of amendments that together signify a peace treaty between Shadowhunters and Downworlders. As long as each of these amendments are never broken, the two can live side by side without bother, even finding allegiance when the need so arises. These Accords are revised and signed every fifteen years by <i>the Clave</i> (the political body of the Nephilim) and the representatives of all involved Downworlders.
2676
2677<h1>THE MORTAL INSTRUMENTS</h1>
2678Three divine items given by the Angel Raziel to Jonathan Shadowhunter, the first of the Nephilim. Raziel gave them to the Nephilim not only for individual use, but also in case of dire emergency, when he would heed their call only once; when used all together, the Instruments would summon the Angel.
2679<p>A thousand years ago, the Angel Raziel was summoned during a time when the Incursion was at its peak, when a huge wave of demons crossed dimensions into the human world. Raziel rose from Lake Lyn and mixed some of his own blood with the blood of Jonathan in a Cup, which became known as the Mortal Cup, and gave it to him to drink, entrusting with him the responsibility of creating more of his kind by letting others drink from it. Along with the Cup, Raziel also gave him the Mortal Sword.
2680<p>For years, however, the Mortal Mirror was believed to be lost. It was in 2007 when it was revealed, after being deduced by Hodge Starkweather, that it was in fact Lake Lyn in Idris. The same year, the Mortal Instruments were used by Valentine Morgenstern to summon Raziel. Because of this, the Instruments can apparently no longer be used to re-summon him.
2681
2682<h1>INSTITUTE</h1>
2683An Institute is an asylum for Shadowhunters, and in some cases Downworlders and mundanes under their protection, and a safe house meant to lodge and assist Nephilim from around the world in their quest to kill demons. They are found in every major city across the world and are often located in churches or built on holy ground.
2684
2685<h1>PORTALS</h1>
2686The invention of the first successful Portal was a product of a collaboration between a Shadowhunter and a Downworlder, namely Henry Branwell from the London Institute, who drafted the plans for the device, and Magnus Bane, the warlock, whose name as the co-creator of the Portal is not recorded or credited in history, who used magic and demonic runes to make it work, in 1878.
2687Sometimes referred to as a Five-Dimensional Door, a portal is a magical means of transportation used by Shadowhunters.
2688<p>Portals are used as means for rapid travel all over the world which, if not warded properly, may be used by powerful demons to get through.
2689When a Portal is active, the surroundings light up brightly.
2690<p>The kind of runic manipulation required to create Portals is not available to Shadowhunters, and so they need to be created and set up by warlocks. To get around this, a large number of permanent Portals have been established to transport Nephilim to and from Idris without having to hire warlocks for every trip, which is still the case in other parts of the world. Warlocks are now also able to easily create Portals.
2691<p>The only known Shadowhunter to have successfully made a Portal without aid from a warlock is Clary Fray, who first managed it in late 2007 with an ancient rune.
2692<p>Additionally, a person needs to be familiar with the destination when going through a Portal. Otherwise, it will take the person to whatever place he/she is thinking of, or the place the last user of the Portal went to.
2693
2694<h1>WITCHLIGHT</h1>
2695Witchlight is a light, flat, smooth gray stone that emits light, giving off a pure white glow when held by Shadowhunters. All Shadowhunters carry witchlight stones to remind them that light can be found even among the darkest shadows, and also to supply them with actual light when they are literally among dark shadows. Shadowhunters typically carry two witchlights.
2696<p>Although witchlight normally does not respond to the touch of mundanes and Downworlders; it glows a deep red, instead of the usual bright white, when held by Magnus Bane. This a result of his ancestry, as his father, Asmodeus, is a fallen angel.
2697
2698<h1>THE GRAY BROOK</h1>
2699The Gray Book, formally The Book of Gramarye, is a tome that contains an exact replica of the original Book of the Covenant, in which the Angel Raziel inscribed the runes, or Marks, the Nephilim are permitted to use.
2700<p>There are only a few copies of the book, as each has to be specially made by Silent Brothers, particularly because it requires special paper to withstand the power of the runes. The High Warlock of Brooklyn, Magnus Bane, and every Institute each have their own copy of the book.
2701<p>All young Shadowhunters learn the Marks from this book. Because of the fragility of the human mind, most Shadowhunter children grow up learning one rune from the Book at a time over a period of years. Reading too many runes at once would apparently give the reader a headache.
2702
2703<h1>THE CLAVE</h1>
2704The Clave is the collective name for the political body made up of all active Shadowhunters. The Clave keeps and interprets the Law, and makes decisions about the guidance of the Nephilim through history as it unfolds and decides on important matters that affect the Nephilim.
2705
2706<h1>SILENT BROTHERS</h1>
2707The Silent Brothers are a powerful group of male Shadowhunterswho serve as archivists and medics of the Nephilim. To strengthen their minds, they have taken upon themselves the most powerful of runes known to Shadowhunters. They are feared among the Nephilim. They reside in the Silent City, away from the rest of their kind. In the 17th century, as an orphan, Magnus Bane was raised by the Silent Brothers in Madrid, Spain.
2708
2709<h1>IRON SISTERS</h1>
2710The Iron Sisters are a communal organization of female Shadowhunters that forge weapons for their kind. The Iron Sisters are considered the female counterparts of the Silent Brothers, albeit more secluded. They reside in the Adamant Citadel, where they live in almost total solitude and speak only, and occasionally, to female Shadowhunters.
2711
2712<h1>PRAETOR LUPUS</h1>
2713Praetor Lupus is an alliance of werewolves founded by Woolsey Scott in the 1800s. It literally means "Wolf Guardians," and is based on the Praetorians, an elite Roman military force. The Praetor is the first and largest self-policing organization among the Downworlders.
2714
2715<h1>SCHOLOMANCE</h1>
2716The Scholomance is a Shadowhunter school where the most elite of Shadowhunters are trained to deal with demons and Downworlders.
2717It had been open for centuries until it was closed in 1872, when the First Accords were signed, as a show of good faith that Downworlders and Shadowhunters were no longer at war.
2718<p>A while after the Dark War in 2007, the Scholomance was reopened during the advent of the Cold Peace. It now trains Centurions to investigate cases involving faeries and continue their research.
2719
2720<h1>THE WILD HUNT</h1>
2721The Wild Hunt are an independent and free-ranging group of faeries who have no allegiance to any of the earthly Courts, which they disdain. They also have no agreement with the Nephilim. They do not fall under and nor do they recognize or the jurisdiction of the Clave; they do not abide by any laws and refuse to involve themselves with the Accords.
2722<p>Led by Gwyn ap Nudd, the Wild Hunt rides at night across the skies or along the ground, in mad pursuit of an eternal hunt. They anticipate battles and lie in wait until it's all over, after which they come to gather the dead, though at times they choose their battles. From these dying men, they claim some to either serve them or join them in their hunts. Aside from this, new Hunters are recruited once a year, when a mortal is allowed or given the opportunity to join them; once they join the Hunt, however, they can never leave it. The only time a Hunter may leave is when they are actually given permission.</p>
2723
2724</div class="mdescription">
2725
2726
2727</li>
2728
2729
2730
2731
2732<li>
2733
2734<div class="mdescription">
2735
2736<blockquote>There are a great many differences between the show <i>Shadowhunters</i> and the books, <i>The Shadowhunter Chronicles</i>. I have compiled a list of things in the show that are <i>not</i> the same as in the books. Remember, this portrayal is <i>strictly book based</i> and so this list is purely to help those that aren't sure about what won't be the same between the books and the show, should we interact. This may be added to in the future, but for now, these are the things that are <b>important</b> to remember when interacting with my Alec.</blockquote>
2737
2738
2739
2740<h1>PORTALS</h1>
2741Contrary to the show's wonderful world of <b>a portal can be created by a warlock at any time, anywhere</b>, mentality... Portal's don't actually work that way. The only person who can whip up a portal on a whim is Clary Fairchild, and she has Angelic Blood to help her do that. The fact is, portals are either created temporarily and specifically for a purpose, which takes some time to put together, or the ones that already exist are utilised – which is more usually the case. Want to portal in New York? Then we're travelling to the nearest one and if you want Magnus Bane to do it, then it'll probably cost you more than a plane ticket would.
2742
2743
2744<h1>RUNES</h1>
2745Aside from three permanent runes (Voyance, Parabatai and Mnemosyne), every rune needs to be re-drawn. There is no process in the books as there is in the show, where the stele is hovered over a 'faded' rune and that it reactivates. That isn't how they work. Permanent and fresh runes are black and when their effect fades, the runes fade through shades of grey until it turns to a faint silvery white scar of sorts— which vanishes entirely over time. THERE IS NO SUCH THING AS FADED RED-LOOKING RUNES THAT ARE REACTIVATED.
2746
2747
2748<h1>TECHNOLOGY</h1>
2749Shadowhunters don't use technology. In fact, they barely use phones -- and only those that live outside Idris are able to have one. Their Institutes are <i>not</i> kitted out with all the latest technology, in fact, they are structually old buildings that were once holy buildings which are usually drafty and passed down throughout the generations. Technology doesn't work in Idris and is useless to the Nephilim as a whole and they ride horses as vehicles won't work within the capital city, Alicante.
2750
2751
2752<h1>THE SHOW WEDDING OF ALEC AND LYDIA BRANWELL</h1>
2753I mean, first and foremost, Lydia Branwell doesn't exist as far as we know within the Mortal Instruments books. The whole idea that Alec would ever agree to marry someone he didn't love when he knew that he couldn't ever be happy with them is ridiculous. Furthermore, it isn't in the books and will not be accepted into any part of my portrayal of Alec. It didn't happen.
2754
2755
2756<h1>MAX LIGHTWOOD'S DEATH</h1>
2757I don't fully understand why Max didn't die in the show? I know the death of a child can be traumatic and alter the characters affected by that death in many ways, but <i>that</i> is the reason why Max Lightwood's death is so important to the Lightwood family and their development. It's part of what spurs Jace on to kill Sebastian. It's what allows Maryse and Robert to separate. It's what play's on Alec's mind and Max is who Alec and Magnus name their Warlock son after when they adopt him. Alec wants to do the best he can by his son so that he gets to do right by his brother in some way. Max's death is <i>important</i> for character development. <b>Max had to die.</b> I never would ask for the death of a child, regardless of the fact that he's a fictional character, but Max Lightwood's death is important in so many ways and the show has brushed it aside as if all the things that Max's death brings about are unimportant.
2758
2759
2760<h1>THE BREAK UPâ„¢</h1>
2761The Angel give me strength... Honestly, I know a lot of show watchers liked the break up but really? The show writers took something so important to Magnus and Alec's development and made it meaningless. Firstly, what was Magnus' reasons for breaking up with Alec? Because Alec has 'hidden' the fact that the Soul Sword, that wasn't even activated by the way, was missing. Okay, sure, if that thing was activated, then it could do some real damage to the Downworld... but it wasn't activated! Also the two people that <i>can</i> activate it are both within reach? Honestly, were the show runner's reaching with this one or what?!
2762<p>The book break up goes thus; Alec is secretly meeting up with Camille Belcourt, someone that Magnus warned was manipulative, talking about a way to take away Magnus' immortality. (Doesn't this sound like a really good reason to break up with someone? I know!) Magnus hadn't been opening up to Alec properly and had been talking about people he had previously been with, Alec was jealous and sneaking around. In short, Magnus follows Alec one time when he goes to meet Camille and Magnus out's him, breaks up with him and admits that he loves Alec but that it doesn't change anything. There we go, a <i>legitimate</i> reason to break up with someone.
2763
2764
2765<h1>HEADING AN INSTITUTE</h1>
2766Alec at <b>no point</b> is head of the New York Institute. In fact, he doesn't <i>want</i> to head any institute at all. The Clave had been trying to make him Head of an Institute since the Cold War -- thus Jace Herondale co-head's the New York Institute with CLary Fairchild. Later Alec is made temportary Head of the London Institute before taking the Blackthorn kids alongside Kit Herondale, Emma Carstairs and Kieran Hunter to Idris. I stress that the position is temporary due to the fact that Alec had agreed to take over his father's role as Inquisitor upon Robert finding a time to step down.
2767.
2768
2769</div class="mdescription">
2770
2771
2772</li>
2773
2774<li>
2775
2776
2777
2778<div class="mdescription">
2779
2780<h1>UNDER CONSTRUCTION</h1>
2781
2782
2783</div class="mdescription">
2784
2785</li>
2786
2787</div id="pageWH" class="popup_block">
2788
2789
2790
2791
2792
2793
2794<!-- PAGE: MUSE TEN. -->
2795
2796
2797<div id="pagePM" class="popup_block">
2798
2799
2800
2801<div id="mimage">
2802<img src="https://i.imgur.com/ayK99qe.png">
2803</div id="mimage">
2804
2805
2806<ul id="tabs">
2807<li class="active" title="INFORMATION">01</li>
2808<li title="ENCYCLOPAEDIA">02</li>
2809<li title="NAVIGATION">03</li>
2810</ul>
2811
2812<ul id="tab">
2813<li class="active">
2814
2815<div class="mdescription">
2816
2817<h1>Peeta Mellark</h1>
2818
2819Borne of the Hunger Games franchise, Peeta is compliant to canon featured within the books with marginal movie influences.
2820
2821<p><b>
2822* MUSE STATUS: SECONDARY<br/>
2823* FACE CLAIM: JOSH HUTCHERSON
2824</b>
2825
2826<h1>Quick Biography</h1>
2827
2828Peeta Mellark, a baker's son from District 12, is one of the main characters of the The Hunger Games trilogy. He is a very compassionate person and is good with words. He has been in love with Katniss Everdeen since the age of 5, but never confessed his feelings until he was reaped alongside her for the 74th Hunger Games. He and Katniss play out a romance in the arena in order to garner sponsors and manage to both become victors by tricking the Gamemakers. Although his feelings are genuine, he is hurt to discover that Katniss' were not entirely. He and Katniss become friends despite the fact that they are forced to use their fake romance to both placate and subvert the capitol during their Victory Tour and the 75th Hunger Games. At the end of the 75th Games, Peeta is captured by the Capitol and hijacked to believe that Katniss is an evil muttation. He manages to fall in love with her all over again during the end of the war and the years afterwards. Eventually, Katniss realizes that she is also in love with him, and they have two children (it is unclear whether or not they are married).
2829
2830<p><b>*FURTHER INFORMATION: <a href="https://thehungergames.fandom.com/wiki/Peeta_Mellark">WIKIA</a></b>
2831
2832
2833<h1>PHYSICAL DESCRIPTION</h1>
2834
2835Peeta is described as having "ashy blonde hair that falls in waves over his forehead," blue eyes, pale skin, and a stocky build. Even with a stocky build, Peeta is petite in size. He is very small for a male, and shorter than many.
2836
2837<p>After an injury caused by Cato during during the 74th Hunger Games, Peeta's left leg is amputated at the thigh, with him using an artificial one. Peeta is said to be handsome by both Haymitch and Caesar Flickerman.
2838
2839<p>On several occasions, Peeta's hair is described by Katniss as having wavy locks. Despite his living in District 12, he is slightly better built and more fit than others, especially people living in the seam, due to his family owning a bakery where he is kept better fed. In Mockingjay, following his capture by the Capitol, Katniss describes his mental and physical condition as slowly deteriorating, because of the torture and interrogation methods used on him.
2840
2841
2842<h1>PERSONALITY</h1>
2843
2844A very likable personality, Peeta is bold, having announced that he was in love with Katniss to the whole nation; smart, figuring out strategies to use in the Games; and willing to go to extremes to keep Katniss alive. However, in the first book, Peeta told Katniss that he did not expect he would win. He is a great public speaker and is very brave. Peeta is also loving and cares about the people around him and hates killing unless the pursuer is a threat to himself or Katniss. He is selfless (for his willingness to sacrifice his own life for Katniss's), has a good sense of humor that he uses during tough times, and always knows exactly what to say to make someone feel better. He is able to work with Haymitch on goals and strategy and, unlike Katniss, able to keep secrets and is trusted by Haymitch. It is noted throughout the series his deep understanding of situations such as the Hunger Games where he says, "I don't want to be just a piece in their Games." It took Katniss much longer for her to understand the same concept. In Catching Fire, Finnick Odair states that Peeta is one of the only truly good people to survive the arena. He is usually the more sentimental of all of the main characters, "feeling" things more than everyone else. He doesn't have Katniss or Gale's "fire," but he isn't soft. He teases Katniss at times; for example, in Catching Fire, when Katniss wonders why Johanna, Chaff, and Finnick act differently toward her, Peeta explains it's because of her discomfort with nakedness.
2845
2846<p>His favorite color is sunset orange. Katniss notices that he always double-knots his shoelaces, sleeps with the windows open, and never takes sugar in his tea.
2847
2848<p>Peeta is described as sweet, gentle, strong, and steady by Katniss several times. She said that he is like "dandelion in the spring." He tends to make jokes and sweet comments. When he's hijacked, he becomes out-of-control, homicidal, and suicidal. Eventually, through separating "shiny" hijacked memories and real ones, he essentially cures himself.
2849
2850
2851<h1>SKILLS</h1>
2852
2853His main talents are baking, painting, speaking, camouflage and brute strength. Peeta's artistic talents developed from helping out at his parents' bakery by making bread and decorating cakes. His larger build and strength also give him an advantage during hand-to-hand combat and wrestling, coming in second place in a District 12 wrestling contest. In the Games, he usually carries a knife or a sword, although he rarely uses them in battle as he is not particularly violent and dislikes killing unless it is completely necessary. The Career tributes say that "he is handy with a knife." Peeta has a lot of strength from working at the bakery; Katniss says she's seen him lift bags of flour over a hundred pounds. It is also revealed in Catching Fire that Peeta has a talent for painting, which he publicizes as his victor's talent. First Collins describes of Peeta painting pictures of the games and later a picture of Rue after Katniss decorated her corpse during his private training session in the third Quarter Quell. Peeta also has a talent for speaking to crowds; he can always pick the right words to say to win them over. Katniss says that he can "change his pain into words that will move people." She thinks he should have led the rebellion, with his talent for public speaking. Peeta is an excellent liar. Katniss is unsure for much of The Hunger Games whether he's lying about his love for her. He lies in her defense when Katniss tries to explain knowing her Avox server, Lavinia. In The Hunger Games: Tribute Guide, his weapons are shown to be Camouflage, Strength and Spear, indicating he's quite good with spears too.
2854
2855</div class="mdescription">
2856
2857</li>
2858
2859
2860
2861
2862<li>
2863
2864<div class="mdescription">
2865
2866<h1>UNDER CONSTRUCTION</h1>
2867
2868</div class="mdescription">
2869
2870
2871</li>
2872
2873<li>
2874
2875
2876
2877<div class="mdescription">
2878
2879<h1>UNDER CONSTRUCTION</h1>
2880
2881
2882</div class="mdescription">
2883
2884</li>
2885
2886</div id="pagePM" class="popup_block">
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899<!-- PAGE: MUSE ELEVEN. -->
2900
2901
2902<div id="pageM" class="popup_block">
2903
2904
2905
2906<div id="mimage">
2907<img src="https://i.imgur.com/P4rn7Qf.png">
2908</div id="mimage">
2909
2910
2911<ul id="tabs">
2912<li class="active" title="INFORMATION">01</li>
2913<li title="NAVIGATION">02</li>
2914</ul>
2915
2916<ul id="tab">
2917<li class="active">
2918
2919<div class="mdescription">
2920
2921<h1>Michonne</h1>
2922
2923Borne of the Walking Dead franchise, Michonne is compliant to canon featured within the <i>COMICS</i>.
2924
2925<p><b>
2926* MUSE STATUS: PRIMARY<br/>
2927* FACE CLAIM: COMICS & DANAI GURIRA<br/>
2928* PREVIOUS URL: SVASSH
2929</b>
2930
2931<p>Know from the outset that I am still reading the comics so my depiction will be up to issue 153, though this will change as I read the remaining 34 issues. This depiction of the character will be AMC adaptable, though there will be a few things that will be vetoed from the show from the outset when interacting.
2932
2933<p><i>THE TRASH PEOPLE DON’T EXIST.<br/>
2934CARL DOES NOT DIE. <br/>
2935RICK ALSO DOES NOT ‘DIE’.</i>
2936
2937<p>I understand that Michonne has taken a lot of Andrea’s canon comic content, though AMC seems to be throwing story-lines left and right wherever they feel like it. Please know that I will write Michonne within the show Michonne/Andrea changes that were made but wish to in no way diminish Andrea’s importance to the comics. These amc changes will be considered to be a separate verse to any comic content.
2938
2939<p>I have watched the show as far as (and including) Season 7, Episode 15, however I will endeavour to watch further onward to be able to write with show-based characters and keep within their show content.
2940
2941<h1>Quick Biography</h1>
2942
2943Michonne is a main character first encountered in Issue 19 of Image Comics' The Walking Dead, as well as the protagonist of the Michonne Special. She is a lone survivor who originally traveled with two zombies before eventually joining the prison group. Armed with a katana and deadly skills to complement it, Michonne is an effective and crucial defender of the survivors.
2944
2945<p><b>* FURTHER INFORMATION: <a href="https://walkingdead.fandom.com/wiki/Michonne_(Comic_Series)">WIKIA</a></b>
2946
2947<h1>PERSONALITY AND TRAITS</h1>
2948
2949Michonne is strong willed, introverted, practical, and skeptical. She is constantly surveying her surroundings, and is quick to size up a situation and its potential dangers. She is very skeptical of seemingly good people and situations, and takes everything at face value.
2950
2951<p>Despite her introversion due to post-apocalyptic trauma, Michonne claims to have once been quite gregarious. With this internal conflict, Michonne, perhaps to a fault, too easily falls in love with men she interacts with. Her true self is further repressed each time her lovers meet their fates, despite Michonne knowing full well how short life can be in the new world.
2952
2953<p>Michonne acknowledges just how far gone she is, and this constantly pains her. From losing all of her past lovers to abandoning her children, she has become someone she hates. She often exclaims her disdain for being seen as strong, because she thinks others see her as nothing more than a warrior and a weapon. Despite this, she is extremely loyal to her friends, and has developed a very close relationship with the Grimes family.
2954
2955<p>Michonne tends to work alone and quietly, but still fights for the survivors' defense as strongly as the other active defenders. She is frequently referred to and perceived by the other characters as one of the strongest members of the survivors, and frequently participates in the violent, but necessary, actions of the group, such as the conflict against the Governor and his henchmen. Her participation in the torture and slaughter of the Hunters showed a much more detached side of her than ever before. She admits in her imaginary conversations with her boyfriend that she cares for the group, showing that some humanity remains despite her torturous experiences. Michonne has shown from her break-down after torturing the Governor that she is still capable of vulnerability.
2956
2957<p>Despite her experiences, Michonne has proved her worth to the group, not only in her practical skills with her katana, but also in her constant participation in moving the survivors forward and keeping the group safe. She is the only survivor who arrived post-prison and pre-Woodbury. She remains a vital member of the survivors. Douglas Monroe appointed her constable along with Rick Grimes shortly after their arrival at the Alexandria Safe-Zone. During the war against the Saviors, Michonne proved to be valuable soldier. After the Battle of Hilltop she went to fish with Oceanside.
2958
2959
2960
2961
2962</div class="mdescription">
2963
2964</li>
2965
2966
2967
2968
2969<li>
2970
2971
2972
2973<div class="mdescription">
2974
2975<h1>UNDER CONSTRUCTION</h1>
2976
2977
2978</div class="mdescription">
2979
2980</li>
2981</div id="pageM" class="popup_block">
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002<!-- PAGE: MUSE TWELVE. -->
3003
3004
3005<div id="pageVM" class="popup_block">
3006
3007
3008
3009<div id="mimage">
3010<img src="https://i.imgur.com/sbAnb1V.png">
3011</div id="mimage">
3012
3013
3014<ul id="tabs">
3015<li class="active" title="INFORMATION">01</li>
3016<li title="ENCYCLOPAEDIA">02</li>
3017<li title="DIFFERENCES">03</li>
3018<li title="NAVIGATION">04</li>
3019</ul>
3020
3021<ul id="tab">
3022<li class="active">
3023
3024<div class="mdescription">
3025
3026<h1>Valentine Morgenstern</h1>
3027
3028Borne of the Shadowhunter Chronicles by Cassandra Clare, Valentine is compliant <i>ONLY</i> to the book series and is canon to all events within them.
3029
3030<p><b>
3031* MUSE STATUS: PRIMARY<br/>
3032* FACE CLAIM: JONATHAN RHYS MEYERS<br/>
3033* PERVIOUS URL: DEUSIDVULT / PHAESPHOROSBORNE
3034</b>
3035
3036<h1>Quick Biography</h1>
3037
3038Valentine Morgenstern was born to Oskar and Seraphina Morgenstern. Seemingly from a wealthy family, he was raised in Idris and spent his childhood in a valley not far from Lake Lyn. His father raised him as a warrior, causing fuck this Valentine to both hate and love him. When he was old enough, Valentine attended the Shadowhunter Academy in Alicante and excelled. His good looks, charisma and charm made him popular among both staff and fellow students. With his manipulative and charismatic personality, Valentine quickly gained many followers. In particular, Valentine befriended a large group of unpopular and outcast students, with whom he soon formed the Circle, an organization with the goal of reforming both the laws and society of the Shadowhunter world.</p>
3039
3040This goal changed, however, after the death of Valentine's father, who was supposedly killed by a werewolf. The incident changed Valentine for the worse and ultimately shaped his views and advocacy against Downworlders. The central ideal of The Circle changed from the reformation of the Shadow World to the destruction of all Downworlders, with the belief that the humans were the superior beings on the planet. Valentine's extremist beliefs intensified to the point that he came to believe that Downworlders were demons in human form who should be exterminated altogether to cleanse the world.</p>
3041
3042Through all this, Valentine became particularly close to Lucian Graymark, who soon became his parabatai, and the latter's best friend, Jocelyn Fairchild. At the young age of nineteen, he married Jocelyn and moved into the Fairchild manor to be with her. In the cellar of his new home, Valentine secretly conducted most of his experiments on Downworlders, demons and the angel Ithuriel, whom he somehow managed to summon, imprison, and torture for information regarding the Mortal Mirror. Valentine also began studying magic and had learned to perform spells; he began to summon demons and angels, and continued creating magical items.</p>
3043
3044<p><b>* FURTHER INFORMATION: <a href="http://shadowhunters.wikia.com/wiki/Valentine_Morgenstern">WIKIA</a></b>
3045
3046
3047
3048<h1>PERSONALITY</h1>
3049
3050Valentine embodied the classic traits of the evil overlord: charisma, a genius-level intellect and a narcissistic sense of entitlement. He was a sadistic, domineering, and power-hungry Machiavellian-type, and somewhat of a sociopath, driven by a furious rage and hatred brought about by his father's death at the hands of a werewolf. Despite this deep-seated anger, he usually maintained great emotional restraint in the face of dramatic situations, maintaining a demeanor of cool calculation and icy composure. He even considered empathy and compassion to be weaknesses.
3051
3052<p>He was also extraordinarily manipulative, able to bend others to his will with relative ease. He also exhibited a very dry, dark, cruel wit. He viewed no one as his equal and saw others as either tools to be used or obstacles to be demolished. Despite his vindictive nature, Valentine presented himself in a cultured and sophisticated manner, dressing in expensive suits and speaking in a polite, civilized, almost old-fashioned manner.
3053
3054<p>Despite everything, Valentine did not consider himself evil; instead, he viewed himself as a heroic figure, willing to challenge the authority of the Clave and even Heaven. He tried to justify his actions as being for the good of humanity and the world despite the numerous atrocities and acts of genocide he had committed in the process.
3055
3056
3057<h1>PHYSICAL DESCRIPTION</h1>
3058
3059At six feet tall, Valentine was described as a formidable man with a wide chest and thick muscular arms. Considered handsome and good-looking, Valentine had sharp features, an almost triangular face with a hard, pointed chin, black eyes, and hair so fair it was nearly white.
3060
3061
3062
3063<h1>STATISTICS</h1>
3064
3065• <i>full Name:</i> Valentine Morgenstern.
3066<br>• <i>commonly Known As:</i> Valentine.
3067<br>• <i>other Names:</i> Lord Valentine, Val.
3068<br>• <i>date Of Birth:</i> November 29, 1968.
3069<br>• <i>place Of Birth:</i> Idris, Alicante.
3070<br>• <i>age:</i> 39 (verse dependent).
3071<br>• <i>current Location:</i> Idris.
3072<br>• <i>gender:</i> Male.
3073<br>• <i>pronouns:</i> He/him/his.
3074<br>• <i>orientation:</i> Hetrosexual.
3075<br>• <i>species:</i> Nephilim.
3076<br>• <i>occupation:</i> Shadowhunter, Leader of the Circle.
3077<br>• <i>abilies:</i> Faster than the norm, quick reflexes.
3078<br>• <i>languages Spoken:</i> English.
3079
3080
3081<p>
3082• <i>Face Claim:</i> Jonathan Rhys Meyers.
3083<br>• <i>Hair Colour:</i> White.
3084<br>• <i>Eye Colour:</i> Black.
3085<br>• <i>Height:</i> 6'0".
3086<br>• <i>Build:</i> Wide chest and thick muscular arms.
3087<br>• <i>Distinguishing Marks:</i> White hair and handsome looks.
3088<br>• <i>Tattoos:</i> None.
3089<br>• <i>Piercings:</i> None.
3090<br>• <i>Clothing Style:</i> Well dressed, suits, clave issued shadowhunter gear.
3091
3092
3093<p>
3094• <i>allergies:</i> None known.
3095<br>• <i>sleeping Habits:</i> Sleeps when he can, no schedule.
3096<br>• <i>body Temperature:</i> Average.
3097<br>• <i>drug Use:</i> Experiments with Demon & Downworlder blood.
3098<br>• <i>tobacco Use:</i> None.
3099<br>• <i>alcohol Use:</i> Whenever he wants a drink, he has one.
3100
3101<p>
3102<br>• <i>positive Traits:</i> Charming, Polite, Civilised, Cultured, Caring.
3103<br>• <i>negative Traits:</i> Manipulative, Vindictive, Cruel, Anger.
3104<br>• <i>fears:</i> Losing his family.
3105<br>• <i>habits:</i> Meticulous in his organisation and cleanliness.
3106
3107<p>
3108• <i>Father:</i> Oskar Morgenstern.
3109<br>• <i>Mother:</i> Seraphina Morgenstern.
3110<br>• <i>Wife:</i> Jocelyn Fairchild.
3111<br>• <i>children:</i> Jonathan Christopher Morgenstern, Clarissa Adele Morgenstern.
3112<br>• <i>adopted:</i> Jonathan Christopher <strike>Wayland</strike> Herondale.
3113<br>• <i>Parabatai:</i> Lucian Graymark.
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124</div class="mdescription">
3125
3126
3127
3128</li>
3129
3130
3131
3132
3133
3134<li>
3135
3136<div class="mdescription">
3137
3138<blockquote>T<b>he Mortal Instruments franchise</b> introduces us to a world that contains terminology that'll be entirely confusing for anyone unfamiliar with the novels. So while I could easily refer people to the according wiki pages that will each contain more information than you need to grasp the concept of each word, I'm assembling a list consisting of numerous terms that you're likely to come across at one point on this blog. See it as an encyclopedia of sorts. <i>This list will be updated as time passes.</i></blockquote>
3139
3140
3141<h1>Shadowhunters / Nephilim</h1>
3142D<i>escensus facilis Averno est;</i> <b>The descent into Hell is easy.</b> The Nephilim, commonly known as Shadowhunters are a race of mortal beings that're born human and appear as such, but have angelic blood running through their veins. They represent an order, if you will, that fight against demons alongside Downworlders in the Shadow World that is invisible to the mere human eye. In essence, the Shadowhunters' objective is to one day rid the world of Earth of these demons, bringing an end to a war that dates back well over a thousand years.
3143
3144
3145<h1>The Angel Raziel</h1>
3146Known as the patron and creator of the race of the Shadowhunters. Legend goes that they were created well over a thousand years ago, during an uprising of demons invading the Mundane world. A warlock is said to have summoned an angel by the name of Raziel. This assumed archangel chose to mix his own blood with that of mortal men into a cup, that would later become known as the <i>Mortal Cup,</i> and offered the mixture to these same men to drink. Those who chose to consume it became Shadowhunters, a decision that would mark their family's line, as all descendants would then be born Nephilim as well.
3147
3148
3149<h1>Mundanes & Glamour </h1>
3150Kn the world of Cassandra Clare's <b>The Mortal Instruments,</b> the term <i>mundane</i> is utilized for those of human birth. In essence, they are individuals like you and I. They are generally entirely oblivious to the existence of Nephilim, demons and Downworlders as a whole— as this war is combatted behind <i>glamour,</i> which is a form of magic that conceals the Shadow World to the naked eye, visible to only those with ability known as The Sight.
3151
3152<h1>The Sight </h1>
3153Shadowhunters are generally <i>naturally born with</i> the ability of <b>The Sight</b> to see through glamour; it is a trait that is inherited through their Shadowhunter parents, which is bettered through training and then further improved upon further through usage of a permanent rune known as the rune of Voyance.
3154
3155<h1>Runes (+ Stele)</h1>
3156For Shadowhunters, these runes (known as <b>Marks)</b> are the language of Angels, a very <i>complex runic language</i> that was granted to them by the Angel Raziel. It consists of symbols that are burned into a Nephilim's skin with help of a stele (which is a tool created for the specific purpose of drawing these symbols) and work as empowerments, protection or various other uses. There are thousands of runes in existence.
3157
3158<p>Most runes are temporary and fade to white before vanishing from a Shadowhunter’s skin entirely through time. There are few runes that are permanent and they are Voyance, Parabatai and Mnemosyne. The first rune that a shadowhunter receives is the Voyance rune and it is placed upon their <i>dominant hand,</i> this is simultaneously also the clearest identification marker of a Shadowhunter. Young shadowhunters slowly learn the different runes to understand their use and how to draw them properly, which take fair practice and patience, but skillful accuracy is rewarded with maximum benefit. As power is released from the runes, they begin to fade on the body until they inevitably turns silvery-white. <i>Important: </i> Runes drawn closest to the heart and aorta will be most effective, as the strongest presence of blood mirrors the effectiveness of the runes.
3159
3160<h1>Downworlders</h1>
3161This is a commonly used term for the, in essence, counterpart of the Nephilim. Where they are part human and part angel, the Downworlders are part human and part demon. The Downworlders consist of the <i>werewolves, faeries, vampires and warlocks.</i> While they are all demonic in origin and nature, they are regarded as human by the inhabitants of Heaven due to possessing human souls, which is what sets them apart from demons as a whole. Though often considered the logical and biological counterpart of the Shadowhunters, they live in peace and can fight side by side against demons in an allegiance created by the Accords.
3162
3163<h1>The Accords</h1>
3164These are a set of amendments that together signify a peace treaty between Shadowhunters and Downworlders. As long as each of these amendments are never broken, the two can live side by side without bother, even finding allegiance when the need so arises. These Accords are revised and signed every fifteen years by <i>the Clave</i> (the political body of the Nephilim) and the representatives of all involved Downworlders.
3165
3166<h1>SILENT BROTHERS</h1>
3167The Silent Brothers are a powerful group of male Shadowhunterswho serve as archivists and medics of the Nephilim. To strengthen their minds, they have taken upon themselves the most powerful of runes known to Shadowhunters. They are feared among the Nephilim. They reside in the Silent City, away from the rest of their kind.
3168
3169
3170<h1>IRON SISTERS</h1>
3171The Iron Sisters are a communal organization of female Shadowhunters that forge weapons for their kind. The Iron Sisters are considered the female counterparts of the Silent Brothers, albeit more secluded. They reside in the Adamant Citadel, where they live in almost total solitude and speak only, and occasionally, to female Shadowhunters.
3172
3173</div class="mdescription">
3174
3175
3176</li>
3177
3178
3179
3180
3181<li>
3182
3183<div class="mdescription">
3184
3185
3186<blockquote>There are a great many differences between the show <i>Shadowhunters</i> and the books, <i>The Shadowhunter Chronicles</i>. I have compiled a list of things in the show that are <i>not</i> the same as in the books. Remember, this portrayal is <i>strictly book based</i> and so this list is purely to help those that aren't sure about what won't be the same between the books and the show, should we interact. This may be added to in the future, but for now, these are the things that are <b>important</b> to remember when interacting with my Valentine.</blockquote>
3187
3188
3189<h1>PORTALS</h1>
3190Contrary to the show's wonderful world of <b>a portal can be created by a warlock at any time, anywhere</b>, mentality... Portal's don't actually work that way. The only person who can whip up a portal on a whim is Clary Fairchild, and she has Angelic Blood to help her do that. The fact is, portals are either created temporarily and specifically for a purpose, which takes some time to put together, or the ones that already exist are utilised – which is more usually the case. Want to portal in New York? Then we're travelling to the nearest one and you better expect to pay heavily for it.
3191
3192<h1>CIRCLE RUNES</h1>
3193I don't honestly know where the show got these runes from seeing as they <i>don't exist</i> in the books. Hodge being cursed by the Clave, we can all get behind, that was in the book; but these big red runes that stand out quite obviously and would have needed to be created? I don't really understand? Seeing as Clary is the only one that can create new runes, I find it strange that the Circle magically managed to create a new rune for their cause and scar themselves visibly with it. Clearly I'm not a fan.
3194
3195<h1>MICHAEL WAYLAND</h1>
3196What was the idea that Valentine had a glamour on whilst pretending to be Michael Wayland? It didn't happen. Hodge was still working with Valentine when Jace came to the New York Institute, thus he would have been able to keep all images of the Circle, Valentine and Michael Wayland away from him, proclaiming that it would be upsetting to Jace (who had lost his father) to see them. There was never any need for Valentine to glamour himself in front of Jace, it would only make things more complicated later on down the line if he ever needed to bring him back into the fold.
3197
3198<h1>ACTIVATING MAELLARTACH (THE MORTAL SWORD)</h1>
3199The whole 'Jace or Clary needed to touch the Sword to activate it because of their advanced Angel blood' story like? Absolute crap. To be able to use the Sword as he wanted, Valentine would need to make it demonically-aligned, with which he could then use the Sword to summon and control demons to use for his own ends. None of this, 'destroy all Downworlders' storyline that they fabricated seemingly on the spot. To be able to make the Sword demonically-aligned, the Sword must be dipped in four different types of blood of a child (fair folk, vampire, werewolf and warlock) and burned in a fire in between each different blood change. A little more realistic than advanced Angel blooded (the first of their kind) children having to touch the Sword to activate it.
3200
3201<h1>PURE ANGEL BLOOD?</h1>
3202Just a quick one here, Clary and Jace <i>aren't</i> pure of Angel blood. They have <i>more</i> Angel blood in them than the average Nephilim, but that doesn't in any way mean that they're made up of pure Angel blood. Yes, that's where their powers come from, but Jace can't go activating Clary's runes through himself or any of that rubbish. It's all really that simple.
3203
3204<h1>TREATMENT OF JONATHAN HERONDALE</h1>
3205Honestly, people are going to disagree with me here, I'm pretty sure about that considering people's opinions of Valentine as a whole. This isn't necessarily a book/show difference but a quick reminder of how Valentine raised Jace.
3206<p>The first thing to remember is that Jace was still a Nephilim child, needing a certain amount of care and love. Because of this, Valentine did love Jace in his own way, despite Jace not being of his own blood. The next thing to consider is that to Valentine, his son's were to be raised as soldiers; he wanted obedience and loyalty. Raising Jace this way was always Valentine's plan, including discipline whenever Jace did something wrong, this meant that Valentine doesn't punish without cause. Everything has a cause and effect. An example of this is when Valentine finds Jace in the Silent City and doesn't free him. Valentine himself would never have allowed for Jace to be put into the Silent City for the night, seeing as he hadn't done anything to deserve such treatment, but he also didn't free him from his restraints because he was teaching Jace a lesson that Valentine was his father and that disobedience and disloyalty come with consequences, usually in the form of distrust (hence, the conversation they had).
3207<p>Jace was always rewarded with whatever he wanted on his birthday, as long as it was within Valentine's means to locate. This was explained with Jace's story about having a bath full of spaghetti. Valentine gave Jace books, music to play, a father that loved him and fond memories of a home in Idris.
3208<p>Now comes my main point; Valentine didn't abuse Jace. He didn't hit the child without Jace giving him a reason to, he wasn't cruel to him, he wasn't angry and quick to raise his voice. Valentine raised Jace with some influence of how Jocelyn would have raised a child with him and thus, Valentine loved Jace in his own way.
3209
3210<h1>TREATMENT OF JONATHAN MORGENSTERN</h1>
3211Again, this is less of a book/show difference and more of a reminder of how Valentine raised Jonathan. Once Again, people may not agree with me on these but this is how I see Valentine and how he raised his children.
3212<p>Despite the fact that Jonathan was raised by the same man as Jace, they were raised differently. While Jace was able to respond to love and nurture, Jonathan was raised strictly as a soldier; mostly due to the latter's lack of true, human emotions. Valentine got more than he bargained for, however, as Jonathan was not only born with enhanced physical abilities but also with the nature of a demon. He realised this early on and quickly grew tired of Jonathan's unpredictable behaviour, and thus, he often punished Jonathan.
3213<p>His harsh and strict treatment of the boy was due to the fact that, aside from Jonathan having a naturally dark nature and an inclination towards terrible acts that needed disciplining, he saw Jonathan as a living reminder of the evil he had committed. Valentine loved him to some extent and often confided in him, but he had hated him, too as Jonathan was in essence, the very thing that Valentine strived to rid the world of.
3214
3215<h1>MAGNUS/VALENTINE BODY SWAP</h1>
3216Didn't happen. I don't acknowledge it. Who even came up with that idea? No.
3217<br><br><br><br>
3218
3219<h1>JOCELYN'S SHOW-DEATH</h1>
3220This woman has been cheated in the show. She deserved better than the death she got. She deserves to fight until the end, she deserves to see her daughter happy, she deserves to marry Lucien Graymark, she deserves a second chance at happiness. I understand that sometimes actors have other commitments and have to leave a show, but honestly they could have just recast her. I'm pretty sure the fandom would have gotten over it. Not only has her death affected Clary, it also affected Luke; another person who deserved some happiness. I'm pretty sure I'm always going to be disappointed in this particular part of the show's development, but there we go.
3221<p>Pertaining to Valentine, know that he would never allow Jocelyn to be put in the way of that kind of harm. She would never have been in a situation where she could have died as she did, especially since it was Valentine that put the Demon in the institute to begin with. Honestly, none of this would ever happen and as far as my portrayal is concerned, she didn't die. Understand, that Valentine is still very much in love with Jocelyn and hopes that she might one day return to him. He would never allow her to come to harm.
3222
3223<h1>JACE & VALENTINE'S DEATHS</h1>
3224First of all, <i>CLARY AND JACE DO NOT ARRIVE AT THE SUMMONING SITE OF RAZIEL TO STOP VALENTINE TOGETHER,</i> Clary arrives there first by Portal. Upon awakening, she finds herself laying on damp earth, wrists bound and unable to speak because of a Quietude rune. When Jace arrives, he is not stabbed in surprise by Valentine. On the contrary, in the books, Jace initially has the upper-hand: a knife pointed at Valentine's throat. His death comes, in essence, as a result of him underestimating Valentine's conviction in his own cause and he's taken wholly by surprise. When he is stabbed through the heart, it is not at the hand of something that seems the size of merely a pocket knife, but instead, by <i>MAELLARTACH</i> itself, better known as the Mortal Sword. Furthermore, <i>THERE IS NO GOODBYE BETWEEN JACE AND CLARY,</i> instead, Jace dies while cradled by Valentine. When the latter returns to the ritual at hand, Clary utilizes all force she has to crawl over to Jace, but she is unable to touch him or speak. And lastly, when the Quietude rune is removed by a summoned Raziel— it is he who kills Valentine, <i>IT IS NOT CLARY.</i>
3225<p><i>VALENTINE GRIEVES FOR HIS SON:</i> You need to remember that Valentine does <i>love</i> Jace in his way, and regrets that he is forced to kill Jace. Also take into consideration that Jace is standing in the way of the goal that Valentine has worked his whole life for and is threatening to stop what he believes to be his higher cause.
3226
3227<h1>MADZIE</h1>
3228While in the show, Madzie is a good representation of what the show writers believe to be the way that Valentine treats children in his care, she doesn't actually exist in the books. Thus, this character doesn't exist to Valentine.
3229<br><br>
3230
3231<h1>DOROTHEA ROLLINS</h1>
3232Honestly, this character doesn't exist in the books and won't exist to me. The show character 'Dot' is a nice mix of Etta, who Magnus Bane dated in the 1900's and Madam Dorothea, the old woman that is possessed by a greater demon in City of Bones. I'm not even entirely sure what her purpose was in the show? To die a pointless and unacknowledged death? If so, good job, show runners! You achieved your goal.
3233
3234
3235</div class="mdescription">
3236
3237
3238</li>
3239
3240<li>
3241
3242
3243
3244<div class="mdescription">
3245
3246<h1>UNDER CONSTRUCTION</h1>
3247
3248
3249</div class="mdescription">
3250
3251</li>
3252
3253</div id="pageVM" class="popup_block">
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265<!-- PAGE: MUSE THIRTEEN. -->
3266
3267
3268<div id="pageP" class="popup_block">
3269
3270
3271
3272<div id="mimage">
3273<img src="https://i.imgur.com/zwjNxD4.png">
3274</div id="mimage">
3275
3276
3277<ul id="tabs">
3278<li class="active" title="INFORMATION">01</li>
3279<li title="ENCYCLOPAEDIA">02</li>
3280<li title="NAVIGATION">03</li>
3281</ul>
3282
3283<ul id="tab">
3284<li class="active">
3285
3286<div class="mdescription">
3287
3288<h1>Porthos</h1>
3289
3290Borne of the Musekeers franchise, Porthos is compliant to canon featured in the BBC television series. I have not read Alexandre Dumas' book, the Three Musketeers, thus my portrayal of Porthos will not include storylines featured within the book.
3291
3292<p><b>
3293 * MUSE STATUS: PRIMARY<br/>
3294 * FACE CLAIM: HOWARD CHARLES<br/>
3295 * PREVIOUS URL: praiseandglcry
3296</b>
3297
3298<h1>Quick Biography</h1>
3299
3300Porthos is one of the main characters of The Musketeers. A loyal and devoted Musketeer himself, he often puts himself in needless danger to protect his friends and family. When D'Artagnan arrives in Paris, he helps to train the newcomer in control during combat and believes he has a great influence. In his spare time, he likes visiting the tavern to enjoy a drink and a card game.
3301
3302<p>On the matter of his past, Porthos is less enthusiastic. He rarely talks about how his mother was once a slave from West Africa, who traveled to France and was freed. He continues to uphold his disgust for slavery and turns vicious towards Emile Bonnaire after discovering his plans to pack slave ships and send them to the Americas.
3303
3304<p><b>FURTHER INFORMATION: <a href="http://musketeers.wikia.com/wiki/Porthos">WIKIA</a></b>
3305
3306
3307<h1>PERSONALITY</h1>
3308
3309Porthos predominantly has a spirited character. His actions are based on what he feels like and whether he's in the right mood. He enjoys a challenge, and often heads directly for the front line to get a fight, because he's passionate about being a Musketeer. Fearless, even in precarious positions, he finds himself enjoying the experience and learning new tricks. This especially comes out in his fork against sword fight with Dujon. But, in some respects he can take fights seriously, especially when it comes to protecting the King and Queen. At times, he can properly enjoy himself, by enjoying a few drinks and using a mellon as target practice.
3310
3311<p>Sometimes, his deeper feelings get the better of him, and one example is where he loses his patience with Emile Bonnaire, as it is revealed that he trades slaves. He often threatens Marsac with his strength as he tries to protect Treville from his accusations.
3312
3313<p>Loyal to the last, Porthos has great loyalty towards his fellow Musketeers and those in need. When Athos is imprisoned, Porthos feels determined to prove him innocent, whatever the cost. The same is true with D'Artagnan, despite only knowing each other for a short time.
3314
3315<p>At times, Porthos does show a deeper wisdom, which he can often present when giving advice for another friend, such as warning Aramis about his affections for the Queen.
3316
3317<p>Mainly a reserved character, Porthos does have some deeper feelings, which derive from his family origins and his distant past. His reaction to slavery is quite absolute as he feels angered and distraught by Emile's plans to bring slavery from West Africa. He finds it difficult to recall his mother's terrifying situation of being slave, before being freed when she came to France. This is perhaps the cause for his supreme strength amongst his friends and his quick temper to boot.
3318
3319
3320<h1>ABILITIES</h1>
3321
3322Hand-to-hand combat is one of Porthos's main skills. The man grew up on the streets and learnt to fight dirty from a young age, also his large stature and intimidating appearance help with this aspect. Despite this form of combat, Porthos is also shown to be skilled enough to use a musket and sword. Porthos does not seem to have any skill in tending to wounds and often has Aramis patch him up when needed.
3323
3324It is suggested that Porthos may know a few people within the Court of Miracles that he trusts and can protect him such as Charon and Flea. Also, he is seen to have a very strong relationship with Captain Treville, who has stood up for Porthos as much as Porthos wishes to protect him and the Musketeers.
3325
3326Porthos also has the ability to drink a horse under the table, he is often seen drinking during the evenings and is considered to run on alcohol. Despite his common intoxication he is able to function quite well and even managed to shoot a melon of Aramis's head while severely intoxicated and from Athos's reaction, it seemed to be a common occurrence.
3327
3328
3329
3330</div class="mdescription">
3331
3332</li>
3333
3334
3335
3336
3337<li>
3338
3339<div class="mdescription">
3340
3341<h1>UNDER CONSTRUCTION</h1>
3342
3343</div class="mdescription">
3344
3345
3346</li>
3347
3348<li>
3349
3350
3351
3352<div class="mdescription">
3353
3354<h1>UNDER CONSTRUCTION</h1>
3355
3356
3357</div class="mdescription">
3358
3359</li>
3360
3361</div id="pageP" class="popup_block">
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374<!-- PAGE: FOURTEEN. -->
3375
3376
3377<div id="pageSR" class="popup_block">
3378
3379
3380
3381<div id="mimage">
3382<img src="https://i.imgur.com/ZLhlLoi.png">
3383</div id="mimage">
3384
3385
3386<ul id="tabs">
3387<li class="active" title="INFORMATION">01</li>
3388<li title="NAVIGATION">02</li>
3389</ul>
3390
3391<ul id="tab">
3392<li class="active">
3393
3394<div class="mdescription">
3395
3396<h1>Steve Rogers</h1>
3397
3398Borne of the Marvel franchise, Steve is compliant to canon featured within the cinematic universe.
3399
3400<p><b>
3401 * MUSE STATUS: SECONDARY<br/>
3402 * FACE CLAIM: CHRIS EVANS
3403</b>
3404
3405<h1>Quick Biography</h1>
3406
3407Steven Grant "Steve" Rogers is a World War II veteran, and is known as the world's first superhero. Born within Brooklyn, New York City, the young Rogers had suffered from numerous health problems, and upon America's entry into World War II, was rejected from military service despite several attempts to enlist. Determined to serve, he ultimately volunteered for the top-secret Super Soldier program, and the frail Rogers was then enhanced to the peak of human perfection. Rogers soon joined the war effort as the mascot, given the new moniker of Captain America, and later joined the war with a combat role after he single-handedly liberated captured Allied POWs.
3408
3409<p>From 1943 to 1945, Rogers attacked multiple HYDRA bases alongside his own team, the Howling Commandos, in another attempt to capture Red Skull, and recover the Tesseract. His famous World War II exploits had made him a living legend, and during this time he also formed a relationship with agent Peggy Carter. Despite seemingly losing his closest best friend and loyal teammate, Bucky Barnes, during a mission, Rogers carried on to help the Allies win the war, but crashed into the Arctic during his final mission. His friendship with Howard Stark spent time searching for his body. Rogers then spent sixty six years encased into ice in suspended animation before Rogers was eventually found by S.H.I.E.L.D. in the early 21st century.
3410
3411<p>When he awoke, Rogers had found himself alone in a modern world that he hardly recognized with no idea what to do with his life. Following an Asgardian named Loki having stolen the Tesseract from S.H.I.E.L.D. and declaring war on humanity, Director Nick Fury enlisted Rogers' help in retrieving what he had once known as HYDRA's weapon, and also foiling Loki's plans. Joining the team dubbed as the Avengers which had been made up of some of the Earth's mightiest heroes, which included Howard Stark's son Tony, Rogers then played one of the key roles in the Battle of New York, successfully stopping the Chitauri Invasion of Earth, capturing Loki, and reacquiring the Tesseract while finding his place within this new world.
3412
3413<p>Joining S.H.I.E.L.D. as his way to maintain peace and justice with the aid of Black Widow, Captain America had come into a fierce conflict against the Winter Soldier who had seemingly assassinated Nick Fury. Having been blamed for the incident by Alexander Pierce, Rogers discovered that HYDRA, whom he thought had dissolved in 1945, had existed in secret as a parasite within S.H.I.E.L.D., and that they were planning to use Project Insight as a way to bring about a new world order, while also learning that the Winter Soldier was in fact his best friend Bucky Barnes, operating as the brainwashed assassin. Along Romanoff, Maria Hill and the Falcon, Rogers had ended the HYDRA Uprising. As the immediate threat of HYDRA was quelled, Rogers embarked on a quest to locate Barnes.
3414
3415<p>In the midst of Rogers search for Barnes, the Avengers assembled in order to eliminate the remnants of HYDRA, which prompted Rogers to abandon his own quest and rejoin all of his former teammates to help capture the Scepter and Baron Wolfgang von Strucker. After securing their victory, Rogers was almost immediately thrown into another crisis when Ultron, the new peacekeeping artificial intelligent program designed by Tony Stark and Bruce Banner, began a plot to eliminate humanity. Following a prolonged and brutal conflict in which the Vision's creation gave them an advantage, Ultron was defeated during the Battle of Sokovia, however the cost of their battle meant many of the Avengers disbanded, while Rogers and Romanoff stayed to lead the second incarnation of the Avengers.
3416
3417<p>While the Avengers conducted worldwide missions, they soon began tracking down Crossbones, only for Scarlet Witch to be blamed for innocent deaths when she failed to fully contain an explosion that Crossbones caused. Thaddeus Ross used the disaster to write the Sokovia Accords, but Rogers refused to sign due to moral disagreements. Rogers' problems increased more as Bucky Barnes resurfaced having seemingly caused a recent terrorist bombing, as Rogers chose to protect Barnes, which then lead to Ross sending Iron Man out to apprehend them both. Upon learning Helmut Zemo was to blame, Rogers fought against his former allies to find Zemo, only for Zemo's schemes to finally be completed as he revealed Barnes killed Stark's parents, resulting in Rogers going on the run and the Avengers falling apart due to Rogers and Stark's conflict.
3418
3419<p>Having saved his friends from the Raft, Rogers sent Barnes to gain help from T'Challa in Wakanda while he and all his allies then became vigilantes. However when Thanos and his Black Order attacked Earth seeking the final Infinity Stones, Rogers came out of hiding in order to protect Vision. In order to keep the Vision safe, Rogers had brought him to Wakanda while he and Black Panther's army held off the onslaught of Outriders sent down by Thanos. Despite their success with destroying Thanos' forces, when Thanos himself arrived on the planet, he effortlessly overpowered Rogers and all the other heroes and took the Mind Stone, killing Vision in the process. Despite all their attempts, Thanos completed his goal and wiped out half of the population of the universe, leaving as Rogers witnessed his best friend die again alongside his countless others.
3420
3421<p><b>* FURTHER INFORMATION: <a href="https://marvelcinematicuniverse.fandom.com/wiki/Captain_America">WIKIA</a></b>
3422
3423
3424<h1>PERSONALITY</h1>
3425
3426
3427Considered by many as the world's first and greatest superhero, Steve Rogers has been defined by his courage and righteousness. Rogers has always had a noble and honest spirit, intolerant towards injustice and abuses of power. Since he grew up weak and small, he learned on his own that true strength is having the courage to fight against abuse no matter one's power and having compassion for the innocent. Despite being transformed into a perfect human by the Super Soldier Serum, he maintained his original spirit and character. Since his reawakening, Rogers was saddened by losing so much of his time but still retains the same values he had since the 1940s. Due to his famed past exploits and his continued works to save the world, Rogers is generally respected by many; even if he doesn't seek acknowledgment for his deeds. He was also very empathetic being able to understand and relate to both Scarlet Witch and Quicksilver before meeting them and understanding Tony Stark's motivation during the Avengers' Civil War despite Iron Man being on the opposing side.
3428
3429<p>What separates Steve Rogers from the other Avengers is his humanity and morality. Steve Rogers is an extremely dedicated person. Despite originally being physically weak and small, and rejected many times due to his frail health, he still tried to enlist in the Army during World War II. Steve tried to be of service in whatever way he was allowed; even when his talents were wasted when he was ordered to inspire the American soldiers and support the American war effort by starring in U.S. propaganda. When he heard that the 107th battalion, including Bucky, was captured in a nearby HYDRA facility, Rogers disobeyed his superior's orders and went behind enemy lines in an apparent suicide mission and rescued them. Rogers finds the courage to defend the weak and innocent, and does not hesitate to stand up to corrupt bureaucrats, hypocritical authority figures, powerful beings like Loki, or even the nearly omnipotent Thanos. His determination also aids him, giving him a boost in physical power to allow him to hold off beings of much greater strength, with this even allowing him to survive against Thanos. A true hero, Rogers is more than willing to sacrifice himself to protect others and does not care if he is considered the villain in his heroic job, as his desire to protect the world remained as strong as ever even after he was deemed a criminal.
3430
3431<p>Rogers is not afraid to do what's right for the greater good and make the tough choices, even if it might be costly to him personally. As a soldier and an Avenger, Rogers knows full well that war has its casualties and some of his dearest friends or even himself may need to make the ultimate sacrifice. He was willing to justify violence and killing to defend others and to preserve peace and freedom, even when Nick Fury called him out on various war crimes he and the American army committed during World War II. Rogers once had to tell Natasha Romanoff to close the Chitauri portal, despite Stark not being out yet. Rogers was also willing to fight his best friend Bucky Barnes when the latter was preventing Steve from saving over three million innocent lives. Nevertheless, Captain America will always prioritize civilian lives. For example, Rogers would not abandon Novi Grad until all of its citizens were evacuated; even when Ultron was planning on smashing the city to the ground to create more damage to Earth. His heroism and determination to what he believes is morally right no matter the personal cost even allowed him to move Mjølnir slightly when he attempted to lift it following the retrieval of the Chitauri Scepter, much to the surprise and discomfort of Thor. He also does not approve of sacrificing others to achieve victory should other options remain available; he refused to let Vision sacrifice himself, instead looking for a way to separate him from the Mind Stone.
3432
3433<p>As seen during World War II and the Chitauri Invasion, Captain America has demonstrated impressive charisma and leadership skills. He is able to command respect from his fellow Avengers and the undying loyalty of his Howling Commandos. Rogers' extraordinary ability to not only inspire the nobility in others but also assess combat situations and come up with effective strategies made his fellow Avengers recognize him as the leader of their team. During the Chitauri attack on New York, Captain America focused on directing civilian authorities in order to keep the citizens safe and off the streets while the rest of the Avengers focused their efforts on taking out the Chitauri's military assets. Even when outnumbered by the forces of HYDRA within S.H.I.E.L.D., Steve was able to get Wilson, Hill, Romanoff and even Fury, along with the loyal agents within S.H.I.E.L.D. to fight back against HYDRA and stop Project Insight from being achieved. As a result, Rogers dealt HYDRA their first devastating blow in decades, since he fought against them in World War II.
3434
3435<p>Captain America's uncompromising sense of morality and selflessness sometimes puts him at odds with Tony Stark, who is more comfortable with a grey morality to protect people. This has led to several moments of bickering, arguments, and almost physical fights over the direction of the Avengers in how to protect people. Despite their differences, however, they both respect each other, work well together, and have even formed a close friendship. This difference in attitude, reached a head in the Avengers Civil War, where Tony sought to compromise with governments who were increasingly intolerant with collateral damage while Rogers refused to do so believing it would inhibit the Avengers' response time, eventually causing him to become a fugitive. Rogers nevertheless still cared for Tony and did not desire for them to fight, as he pleaded with Tony to stop attacking Bucky as Bucky did it without having control and did not kill him after beating him, even going as far as to send him a letter to apologize and a phone so Stark can contact him. He was visibly ashamed when Tony furiously demanded he tell the truth of his parent's death and felt enough sympathy and remorse for keeping the truth hidden that he relinquished his shield and returned it to the Stark family. Two years later, after much of the anger between the two factions of Avengers had died down, Rogers outright referred to Iron Man as Earth's "greatest defender", even joking that he himself was a poor substitute emphasizing the respect he maintained for Tony.
3436
3437<p>While Captain America's sense of duty exceeds his personal feelings, his sense of loyalty is difficult to surpass. After realizing the Winter Soldier was his long thought to be a dead best friend, he only fought him to disable HYDRA's Helicarriers. However, once the Helicarriers were destroyed, he immediately stopped fighting the Winter Soldier in an attempt to reason with him and help him remember their friendship. This reached its apex in the Avengers Civil War where Steve steadfastly refused to give up on Bucky which caused the Avengers to fracture along with more than half their number to become fugitives.
3438
3439<p>Since being defrosted by S.H.I.E.L.D., Steve was lost in a world he no longer knew. The world had changed; though technology had greatly advanced, humane morals were constantly being compromised in favor of political expediency. To make matters worse, most of the people he loved from his past were gone, or greatly aged. Even while working with S.H.I.E.L.D. and the Avengers, Steve still had no real life outside of being a soldier. Steve did not know how to belong and strives to uphold his code of honor in this new complicated world. Although he eventually reunited with both Peggy and Bucky, Steve was still a "man out of time". However, after the battle against Ultron, Steve finally realized that he was no longer the man he was before he was frozen. Hence, Steve decided to focus his life on just helping people, taking a permanent role as the leader of the second incarnation of the Avengers.
3440
3441<p>He is very protective of his friends from his past, especially Bucky Barnes, and is willing to go to great lengths to save them, being susceptible to emotional and violent acts to fulfill his goal. He seems to have developed a trust and attraction towards Sharon Carter. During his time with the new team of Avengers, he developed a trust and bond with Black Widow. He also embraces links to his own time often seeing much of Howard Stark in Tony.
3442
3443<p>He does have a darker side, however, with Ultron noting that Rogers had been a soldier for so long, he subconsciously craved conflict and battles to avoid a civilian life and being forced to confront all he'd lost. Indeed his worst nightmare, caused by Wanda Maximoff, was shown to be the end of the war with people not needing him anymore leaving him with the realization that everyone whom he had ever loved was gone and he was alone. Overall, Rogers is a selfless person but one with a notable blindspot: his childhood friend Bucky Barnes. The last living link to his time, Rogers was willing to do everything to protect him, going so far as to abandon his role as leader of the Avengers and a team player. When Tony called Rogers out on failing the role of Captain America, at the end of their fight during the Avengers Civil War, Rogers abandoned his shield and with it, the identity of "Captain America", heeding Tony's point. Even years later, he had made no efforts to reclaim the moniker allowing his uniform to darken and removing the American stars that had once adorned it.
3444
3445<p>Rogers has a strong dislike for agencies or groups that express control over the individual due to having fought vigorously for his nations' freedom and losing the world he knew for that very reason. This dislike extends to groups of any ideology be they HYDRA or S.H.I.E.L.D.. Rogers himself admits that the Howling Commandos committed less than moral actions during World War II but it was for the basis that people could be free, whereas Project Insight was using fear to dissuade a security risk before it happens, eliminating the need for a soldier like himself and taking away the people's freedom. The desire for free will heavily influence Rogers' opinion on the Sokovia Accords. He strongly believed that the extravagant politics involved would restrict (or at least hinder) the Avengers' efforts to protect the people of the world, putting him at odds with the very pragmatic Tony Stark on the issue. His opinion on such groups lessened when the Joint Counter Terrorist Centre, locked up Barnes in a cage. In the end, such was his dislike that he cut all ties with them and became a fugitive after the Avengers Civil War. While he still retains his desire to protect the world, continuing to fight against terrorists, he has no desire to be re-acknowledged as a superhero and does not care about the opinions of the governments of the world, as he coldly told Thaddeus Ross that he did not care if the latter disapproves of him defending the world and even went as far as to say he would not hesitate to fight him and the governments if they get in the way.
3446
3447<p>While not as intelligent as Stark or Banner nor possessing Barton's keen awareness, Rogers frequently proved himself a quick study in battlefield situations being able to quickly ascertain details from minor actions. His bravery and determination further supplement this as he is willing to take even the most risky of choices to stand a chance to win, a trait best exemplified when he was quickly able to deduce the HYDRA personnel in an elevator were about to attack him and provoked them into attacking him. He again demonstrated this skill when Thanos arrived in Wakanda, quickly realizing that the Infinity Gauntlet had to be clenched for access to its powers and bravely charging the warlord to hold his hand open.
3448
3449
3450
3451
3452</div class="mdescription">
3453
3454</li>
3455
3456
3457<li>
3458
3459
3460
3461<div class="mdescription">
3462
3463<h1>UNDER CONSTRUCTION</h1>
3464
3465
3466</div class="mdescription">
3467
3468</li>
3469</div id="pageSR" class="popup_block">
3470
3471
3472
3473
3474
3475
3476<!-- POPUP PAGE BB. -->
3477
3478
3479<div id="pageDS" class="popup_block">
3480
3481<div id="mimage">
3482<img src="https://i.imgur.com/xmOuRZk.png">
3483</div id="mimage">
3484
3485
3486<ul id="tabs">
3487<li class="active" title="INFORMATION">01</li>
3488<li title="ENCYCLOPAEDIA">02</li>
3489<li title="NAVIGATION">03</li>
3490</ul>
3491
3492<ul id="tab">
3493<li class="active">
3494
3495<div class="mdescription">
3496
3497<h1>DAMON SALVATORE</h1>
3498
3499Borne of the Vampire Diaries franchise, Damon is compliant to canon featured within the television series, though will remain within the canon of seasons 1-3 only.
3500
3501<p><b>
3502* MUSE STATUS: SECONDARY<br/>
3503* FACE CLAIM: IAN SOMERHALDER
3504</b>
3505
3506<h1>QUICK BIOGRAPHY</h1>
3507
3508<p>Damon Salvatore is one of the two main male protagonists of The Vampire Diaries. Damon is a 178-year-old vampire. He was a major antagonist in the first part of Season One. He was born during the 1800s and lived in the colonial town of Mystic Falls with his brother Stefan, his father, Giuseppe Salvatore, and also with his mother Lillian Salvatore until her death in 1858. He became a vampire in 1864. At the time of his return to Mystic Falls, Damon and Stefan hadn't seen each other in fifteen years due to their bitter and violent relationship.
3509
3510<p>Damon's sole purpose in coming back to Mystic Falls was to free his sire Katherine Pierce from a tomb she was never in. Damon deeply loved her after 145 years. After realizing that Katherine never loved him, his love for her fades as his friendship and love for Elena, Katherine's descendant and doppelgänger, grows. Due to her impact on him and the strengthening relationship with his brother, they begin working together to protect Elena, along with her friends and family. He lives with his brother Stefan, girlfriend Elena (when she wasn't away at college), and her brother Jeremy Gilbert (after Elena burned their house down) in the Salvatore Boarding House.
3511
3512<p>In the Season Three, Damon filled the role as a deuteragonist in the first half of the season due to Stefan falling prey to Klaus. Damon is a member of the Salvatore Family and was a member of the Town Council.
3513
3514<p><b>* FURTHER INFORMATION: <a href="https://vampirediaries.fandom.com/wiki/Damon_Salvatore">WIKIA</a></b>
3515
3516<h1>PERSONALTY</h1>
3517
3518<p>HUMAN:
3519
3520<p>Damon was originally a very free-spirited young man, who was best friends with his younger brother Stefan Salvatore, both of whom were instantly smitten with the vampire Katherine Pierce. He had a positive relationship with Stefan and he held his position as elder brother in high regard, being the one to teach Stefan how to fight when they were younger. As a human, Damon also held a sense of duty as he enrolled in the confederacy, however their father saw him as very irresponsible and reckless, proving he was very much a free spirit who did things on a whim, taking no mind to what people thought.
3521
3522<p>Damon could be considered much the opposite to his brother in many regards. Whilst they both were respectful and polite, Damon had a dark side which came to play when he fell in love with Katherine, whilst initially terrified at the prospect, his love for Katherine and dependency for her affections made the choice easy and he willingly drank her blood and conspired with her to kill innocent humans, a trait which passed on to his vampire lifestyle. Damon was very naive as a human, he loved Katherine deeply and recklessly, regardless of the consequences and not caring that his father was ashamed of him. His carefree life fell apart when Stefan betrayed Damon by alluding to their father that Katherine was a vampire; information that resulted in Katherine being trapped and taken to a church to be burned, also doing whatever he could to get her back, even if it resulted in his death.
3523
3524<p>VAMPIRE:
3525
3526<p>After he became a vampire, he left Stefan's side, wanting no part in the life of the man who betrayed him. He selfishly kept the fact that Katherine was still alive from Stefan, jealous that his brother had also been turned by their shared lover. By the time he appears in season one, he's been away from Stefan for at least eighty years (including the meeting in 1912), and he immediately begins taunting his brother, as a colder, more calloused version of his human self.
3527
3528<p>Throughout season one, Damon pretends to be arrogant and sarcastic, showing little to no regard for human life and using whatever people he can get his hands on as his personal playthings. He shows pity to neither Caroline Forbes nor Vicki Donovan, even going so far as to kill Stefan's football coach to "prove" that he has no humanity left. He is also portrayed as a very impulsive vampire, known for his self-destructive behavior and his devious, sadistic mind. Despite this, he stays focused on his only goal: getting Katherine out of the tomb. This shows his ability for planning and forethought, and certainly the patience to wait one hundred and forty-five years for the necessary comet to return.
3529
3530<p>After Katherine is discovered to have been alive the entire time, and his reason for doing the things he has been doing shattered, Damon becomes more dangerous because he drinks alcohol constantly, bonding with others at the bar. He destructively taunts Alaric Saltzman about being the one to kill his wife, Isobel Flemming, but is confused when he finds that Isobel is Elena's birth mother. He tempts his brother with human blood, though he knows exactly what Stefan used to be, and when Stefan goes off the deep end, Damon helps Elena detox him. He also genuinely thanks Bonnie Bennett for disabling the device that could kill him, surprising her with his sincerity.
3531
3532<p>Every time his brother is put in a situation that endangers his life, Damon protects him, but he's not afraid to cause Stefan non-lethal harm. Despite his anger with Stefan for his actions in the past, he hangs around, protecting him and working with him, sometimes destroying the good in his life. Their perplexing relationship seems to center around Elena, who anchors them to Mystic Falls.
3533
3534<p>Elena is the oddity of Damon's behavior, the anomaly that makes his personality far from psychopathic. In the beginning of the first season, Stefan is prepared to give up on his brother, believing him to be an irreparable monster, but Damon displays true feeling for Elena. Elena Gilbert is physically identical to Katherine, the woman who turned him into a vampire, making her not only a constant reminder of what happened to him and Stefan, but a temptation to let history repeat itself. When Katherine reveals that she never loved him (in the beginning of season two), Damon reacts by trying to get Elena to admit that she loves him, and when she tells him that she loves Stefan, he reacts impulsively, set off by both Katherine and Elena choosing his brother instead of him. He kills Elena's brother, spending many weeks afterwards trying to make it up to Elena, showing true regret for his actions. Their relationship began with taunting and cruelty, but she became what he clings to for humanity; he became her occasional protector, a guardian of sorts. His impulsive actions often drive her away but she refuses to let him die, and he does the same for her.
3535
3536<p>With Elena influencing him throughout the second and third seasons, Damon becomes slightly kinder, if only for the fact that he no longer mindlessly kills and torments humans without good reason, and he controls himself to be strong for Elena's sake. He proves that he is capable of love, nobility, loyalty, and selflessness, masking the most intense of his emotions to spare himself from seeming weak, but expressing just enough to draw in a very small circle of friends (which he later drives away). He continues to claim that his emotions can be turned off, but several older vampires reveal that this is a lie; after a certain amount of time, a vampire has to pretend they can't feel. The only time Damon had ever admitted his pain was when Elena told him that she would never kiss him back, to which he responded, “Now I'm hurt.â€
3537
3538<p>About halfway through the third season, Damon believes that Elena is trying to turn him into Stefan by constantly telling him to be the 'better man.' Others continue to underestimate him and, to display that he doesn't care at all, he kills Alaric, with whom he'd developed a strong friendship. He also spends time trying to make it up to Alaric after his ring brings him back to life, treating him like a friend even though Alaric is extremely angry with him. He also snaps and feeds from Caroline's father, and, after a very violent fight with Caroline, he is confronted by Elena. He's even cruel to her, accusing her of trying to make him into something he's not. His inner turmoil continues when Katherine reappears, and he recklessly takes her offer of a 'road trip,' leaving Elena defenseless only because he is mad at her. When he returns, he displays genuine regret and, in one of his most tell-all, modest moments of the show, he tells her that he will never leave her again, showing his extreme love and devotion to Elena, and his regret for making another impulsive decision.
3539
3540<h1>PHYSICAL DESCRIPTION</h1>
3541
3542<p>Damon is very handsome, standing 5'10" in height with a well-built, toned physique. His physical appearance is of around a 24-25 year old despite being over 170. Damon has a light complexion with olive undertones and has a strong bone structure with high cheek bones and a solid jaw line. He has dark brown almost black hair, which hangs just over his ears, usually styled in a casual disarray yet sometimes gelled for special occasions. With striking, intense light blue eyes contrasting wonderfully against darkened lashes and eyebrows, a "bad boy" smile, he can be described as relatively athletic, tall, strong, sexy and seductive. He also considers himself the "eternal stud".
3543
3544<p>Damon's clothing style has remained somewhat similar throughout the series, usually favoring darker clothing; black shirts, t-shirts and boots underneath darkened jeans and black trousers, although on occasion has been seen wearing lighter colors. Damon is rarely seen without his leather jackets and his favorite clothing designer is "John Varvatos". On special events, such as dances, he wears smart attire such as tuxedo's and dress shoes. As a vampire, he wears a large lapis lazuli daylight ring enchanted by Emily Bennett, as a means to walk around in the sunlight as a vampire. The ring has the Salvatore crest and an embedded "D" for his first name.
3545
3546<p>In flashbacks, as a human in the 1860's era, Damon generally wore the same attire as his younger brother; Stefan, including dress shirts with suspenders, waistcoats, dress coats, hats, cravats and leather laced boots as his usual style. His color scheme as a human was much lighter, Damon was seen wearing a red waistcoat, yet still formal, showing the Salvatore family's wealth. His hair was slightly longer in style, with slight curls, showing a much more youthful appearance.
3547
3548</div class="mdescription">
3549
3550
3551</li>
3552
3553
3554<li>
3555
3556
3557<div class="mdescription">
3558
3559<h1>UNDER CONSTRUCTON</h1>
3560
3561</div class="mdescription">
3562
3563
3564</li>
3565
3566<li>
3567
3568
3569
3570<div class="mdescription">
3571
3572<h1>UNDER CONSTRUCTON</h1>
3573
3574</div class="mdescription">
3575
3576</li>
3577</ul id="tab">
3578
3579</div id="pageDS" class="popup_block">
3580
3581
3582
3583
3584
3585
3586<!-- PAGE: MUSE FIFTEEN. -->
3587
3588
3589<div id="pageMS" class="popup_block">
3590
3591
3592
3593<div id="mimage">
3594<img src="https://i.imgur.com/bR39WIQ.png">
3595</div id="mimage">
3596
3597
3598<ul id="tabs">
3599<li class="active" title="INFORMATION">01</li>
3600<li title="NAVIGATION">02</li>
3601</ul>
3602
3603<ul id="tab">
3604<li class="active">
3605
3606<div class="mdescription">
3607
3608<h1>Mary, Queen of Scotts</h1>
3609
3610Borne of the Reign franchise, Mary is <i>CANON DIVERGENT</i> to events further than season 2a with some historical elements added where they are able to be added. Know that though I am primarily Reign and historically based, I will also be headcanon based in places where the show differed from historical elements and was out of character for Mary herself. Most interactions will need a small amount of plotting or a general understanding of how I approach Mary as I do not completely follow the way she was presented in Reign.</p>
3611
3612This will be clear in the way that I approach any Queen Catherine de' Medici, King Henri II de Valois, Marie de Guise and the like, as the way Mary spoke to those that raised, took care of and loved her, was completely uncharacteristic for a young woman of her time. Also know that though Mary is Scottish and has been Queen of her country for the majority of her life, she was raised and has lived in France much more than she was in Scotland. Thus, France is Mary's home and she will treat it as such, while Scotland holds her duty and she will continue to be of service to her own crown and her people.
3613
3614
3615<p><b>
3616* MUSE STATUS: SECONDARY<br/>
3617* FACE CLAIM: ADELAIDE KANE<br/>
3618* PREVIOUS URL: MONCOMMENCEMENT
3619</b>
3620
3621
3622
3623<p><i>SHIPPING:</i> Oh boy, here we go. I hope you're ready for this; <i>Frary</i>. I'm honestly of the firm belief that Francis is Mary's soulmate, if such a thing exists. You can see so often when they're together that they love each other so fiercely. Francis (and France) is her home, he's everything she's known for as far back as she can remember. She could have been happy with Francis for the rest of her life. Though I may not agree with some of what the show did with Frary, I do love them beyond a shadow of a doubt. Know that if I write with a Francis, that we would need to headcanon and generally talk about the pair to establish common ground as I will not follow everything that Reign brought to the couple. As such Frary is my primary and only ship for Mary, as she isn't able to love another before or after Francis.
3624
3625<p>Following this, there are a few more I need to mention;
3626
3627<p><i>Bash</i>: I understand that he loved Mary and I will acknowledge his feelings, but know that Mary holds nothing for him except deep friendly affection toward him. Bash is someone that Francis loves dearly and thus Mary cares deeply for him also.
3628
3629<p><i>Conde</i>: Honestly, I don't know where to start with this? The entire thing that the show did with Conde and Mary was a shit show. I will be willing to write it but I don't believe that Mary truly loves him, only seeks comfort in him in a time where things are hard for her. Anything with any Conde would need to be plotted heavily but please know that I will not follow the show as it made Mary into someone completely out of character to herself.
3630
3631<h1>Quick Biography</h1>
3632
3633Mary Stuart is the Queen of Scotland, as the only surviving child of James V of Scotland. Her father died just days after her birth, so she inherited the crown. She had been engaged to the then Prince Francis since they were children, and when they turned 16, they were married. A year later, when her husband became the King of France, Mary became Queen Consort.
3634
3635<p><b>* FURTHER INFORMATION: <a href="https://reign-cw.fandom.com/wiki/Mary_Stuart">WIKIA</a></b>
3636
3637<h1>PERSONALITY</h1>
3638
3639Mary Stuart is a passionate woman with a clear moral compass. She tries her best to be fair and wants to be a strong leader. Mary is very caring and sympathetic, as seen with her dealings with Clarissa. She also has a strong sense of duty and had no romantic or sexual relationships before arriving in France the second time.
3640
3641<h1>STATISTICS</h1>
3642
3643<i>Full Name:</i> Mary Stuart.
3644<br/><i>House:</i> House of Stuart.
3645<br/><i>Date of Birth:</i> 8 December, 1542.
3646<br/><i>Birthplace:</i> Linlithgow Palace, Linlithgow, Scotland.
3647<br/><i>Gender:</i> Female.
3648<br/><i>Ethnicity:</i> Caucasian.
3649<br/><i>Romantic Orientation:</i> Heteroromantic.
3650<br/><i>Sexual Orientation:</i> Heterosexual.
3651<br/><i>Religion:</i> Roman Catholic.
3652<br/><i>Title(s):</i> Queen of Scots, Queen Consort of France, Queen Dowager of France.
3653<br/><i>Residence:</i> Linlithgow Palace, Lilithgow, Scotland. Château Royal de Blois, Loir-et-Cher, France.
3654
3655<p>
3656<i>HEIGHT:</i> 5'3" // 1.63cm.
3657<br/><i>Build:</i> Slender, Petite.
3658<br/><i>Eye color:</i> Light Brown.
3659<br/><i>Hair color:</i> Dark Brunette.
3660<br/><i>Notable physical traits:</i> None, though she was considered a pretty child and later, as a woman, strikingly attractive.
3661
3662<p>
3663<i>Personality Strengths:</i> Loyal, compassionate, headstrong, respectful, devoted, involved, values morality.
3664<br/><i>Personality weaknesses:</i> Temperamental, headstrong, at times reckless.
3665
3666</div class="mdescription">
3667
3668</li>
3669
3670<li>
3671
3672
3673
3674<div class="mdescription">
3675
3676<h1>UNDER CONSTRUCTION</h1>
3677
3678
3679</div class="mdescription">
3680
3681</li>
3682</div id="pageMS" class="popup_block">
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696<!-- PAGE: MUSE SIXTEEN. -->
3697
3698
3699<div id="pageDW" class="popup_block">
3700
3701
3702
3703<div id="mimage">
3704<img src="https://i.imgur.com/KHWDskl.png">
3705</div id="mimage">
3706
3707
3708<ul id="tabs">
3709<li class="active" title="INFORMATION">01</li>
3710<li title="ENCYCLOPAEDIA">02</li>
3711<li title="NAVIGATION">03</li>
3712</ul>
3713
3714<ul id="tab">
3715<li class="active">
3716
3717<div class="mdescription">
3718
3719<h1>Dean Winchester</h1>
3720
3721Borne of the Supernatural franchise, Dean is compliant to canon throughout the Kiripke era (Seasons 1-5) <i>ONLY</i>.
3722
3723<p><b>
3724* MUSE STATUS: SECONDARY<br/>
3725* FACE CLAIM: JENSEN ACKLES<br/>
3726* PREVIOUS URL: SHOCTFIRST / VENALSOUL / THATWINCHESTERWORRIOR
3727</b>
3728
3729<h1>Biography</h1>
3730
3731Dean Winchester (b. January 24, 1979) is a Human and Hunter with his younger brother Sam. He and his brother are members of the Winchester and Campbell families. Through his father, Dean is the older half-brother of Adam Milligan.
3732
3733<p>Dean is also the destined Vessel of the Archangel Michael. He and Sam are also the surrogate sons of the late Bobby Singer. Dean is best friends with the Angel Castiel, close friend to the late prophet Kevin Tran, and reluctant ally of Crowley. Dean has an ex-girlfriend, Lisa Braeden who he lived with for a year when he thought Sam was in Hell. She has a child named Ben, who Dean acted as a father for during that year. Dean's biological child was an amazon named Emma. He is also the former apprentice of Alastair.
3734
3735<p>Both Dean and Sam were raised in the hunting life by their father, after the demon Azazel killed their mother. Dean's main role in the series is being the self-appointed guardian of Sam and often going to extreme lengths to protect him regardless of personal cost. Often in these occurrences Dean finds himself the center of a much larger picture.
3736
3737<p><b>* FURTHER INFORMATION: <a href="https://supernatural.fandom.com/wiki/Dean_Winchester">WIKIA</a></b>
3738
3739
3740<h1>PHYSICAL DESCRIPTION</h1>
3741
3742Green eyes, light freckles on his face and short-cropped Ivy-league hair that is dark blonde. He is 6'1"-- making him shorter than his younger brother Sam—and muscular. Dean is noted to be "handsome" or even "pretty" by other characters constantly.
3743
3744<p>He usually wears a plaid shirt over a T-shirt, jeans, and boots, unless he has to wear a disguise in order to impersonate someone. Until Season 6, Dean often wore his father's leather jacket. He also used to wear a watch and a silver ring. As of Season 4, Dean has a hand-shaped burn scar on his left shoulder from where Castiel pulled him out of Hell. This mark has since disappeared from his body.
3745
3746<p>For the first four seasons, Dean also wore an amulet around his neck that resembled the head of a bull made of brass, attached to a black cord. This amulet was given to him by Sam as a Christmas gift when they were children. Throughout the first half of Season 5, Castiel attempts to use this amulet to find God, as its claimed power is to burn hot in God's presence. When Castiel is unsuccessful, he declares the amulet "useless," and Dean throws it away.
3747
3748<p>Sometime before Jus In Bello, Dean got a tattoo on his chest of the anti-possession symbol to protect himself from demons.
3749
3750<h1>PERSONALITY</h1>
3751
3752Dean Winchester, from the moment of his debut, was shown to be an understanding, funny, mischievous, and, in contrast to his younger brother, a little immature. Dean's shown countless times to be good with kids and the ladies. At an early age, Dean was trained by his father, John Winchester, to hunt and kill creatures of the supernatural. However, unlike his brother Sam, he did not resent his father for having him "raised like a warrior". He seemed to prefer hunting the supernatural over any normal "apple pie" life, though it was revealed that when he was sixteen, he did in fact desire (or at least hope for) a normal life: He just couldn't leave Sam. This however did not last long, as later on - while still sixteen - following a werewolf hunt, he realized just how unique his life was. However, by Season 7, following all that he has seen and done, Dean admits to Eliot Ness that he no longer wants to be a hunter and would give it up if he could.
3753
3754<p>Dean is an avid fan of classic rock music. Many of his aliases have included the names of famous rock musicians. He is known to use crude humor, use pop culture references, make sexual innuendos, and indulge in pornography (especially about Busty Asian Beauties). He has even stated once that he does enjoy anime and Japanese animated porn (Hentai).
3755
3756<p>Dean typically avoids emotional intimacy, preferring to engage with women only as sexual partners. However, he has had a few long-term relationships over the years, with Cassie Robinson, pre-series, and Lisa Braeden, in season 6. After the tragic events that led Dean to ask Castiel to make it as if Lisa and her son Ben had never met him, Dean seemed to give up on ever having a family other than his brother. After his break up with Lisa, Dean was reluctant to get back into his old routine of "new town, new girl." However, the one time he was shown to indulge in a one-night stand in The Slice Girls he ended up fathering an Amazon that tried to kill him. He was reluctant to defend himself against his Amazonian daughter and Sam ended up making the kill. After these events, he became even more reluctant to get in a physical relationship let alone an emotional one. This seems to fade when he engages in intercourse with Suzy Lee.
3757
3758<p>Dean values his family's safety over anything else, even going so far as to kill a demon and its human host in order to save Sam's life, as well as sacrificing his very soul and suffering in hell to resuscitate his brother.
3759
3760<p>Even though Dean keeps himself in excellent physical shape, he is known to have very bad eating habits. He is often shown enjoying greasy, fattening or otherwise unhealthy food, especially cheeseburgers and pie, and dismisses salads as "rabbit food."
3761
3762<p>Dean is terrified of flying and claims that is the reason why he drives everywhere.
3763
3764<p>Despite his working knowledge of the supernatural, Dean is skeptical with regard to the "good aspects of religion." However, he becomes somewhat more open-minded after meeting the angel Castiel, yet the antagonistic behavior of most angels and God's reluctance to openly participate in events prevents him from being a true believer, like Sam. When he did meet God, he was shocked but not like Sam who was rambling on and after God called him on his anger. Dean opened up though held back some of his anger and supposedly abandoning humanity before God told him to stop comparing him to his father.
3765
3766<p>Dean has also shown on several occasions that he is a great fan of movies, particularly westerns, and was thrilled to be given a chance to go to the old west. He was also overjoyed when he met and was able to work with Eliot Ness, frequently referencing The Untouchables during the episode.
3767
3768
3769</div class="mdescription">
3770
3771</li>
3772
3773
3774
3775
3776<li>
3777
3778<div class="mdescription">
3779
3780<h1>UNDER CONSTRUCTION</h1>
3781
3782</div class="mdescription">
3783
3784
3785</li>
3786
3787<li>
3788
3789
3790
3791<div class="mdescription">
3792
3793<h1>UNDER CONSTRUCTION</h1>
3794
3795
3796</div class="mdescription">
3797
3798</li>
3799</div id="pageDW" class="popup_block">
3800
3801
3802
3803
3804</ul>
3805</font></font>
3806</div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
3807
3808<!-- CREDIT -->
3809
3810<div id="credit">
3811
3812<a href="https://descarriado.tumblr.com/commissions" title="theme by MarÃa."> S</a>
3813</div>
3814<!-- CREDIT -->
3815
3816
3817
3818</div>
3819</div></div></div></div></div></div></div></div></div></div></div></div></div></div>
3820
3821
3822
3823</body>
3824</html>