· 5 years ago · Mar 03, 2020, 09:08 PM
1<!DOCTYPE html>
2
3
4
5<!-- (BASE) THEME BY SAE (INIZIARE) -->
6
7
8
9<head>
10<title>{Title}</title>
11<link rel="shortcut icon" href="{Favicon}">
12<link rel="alternate" type="application/rss+xml" href="{RSS}">
13{block:Description}
14<meta name="description" content="{MetaDescription}" />
15{/block:Description}
16</head>
17
18
19
20
21
22
23
24
25<!-- SCRIPT: TOOLTIP -->
26
27<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
28<script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
29<script>
30(function($){
31$(document).ready(function(){
32$("a[title]").style_my_tooltips({
33tip_follows_cursor:true,
34tip_delay_time:90,
35tip_fade_speed:600,
36attribute:"title"
37});
38});
39})(jQuery);
40</script>
41
42
43
44
45
46
47
48
49<!-- SCRIPT: jQuery -->
50
51<script src="https://static.tumblr.com/gjexvml/cszpz4vyd/jquery-3.4.1.min.js"></script>
52
53
54
55
56
57
58
59
60<!-- SCRIPT: AUDIO PLAYER -->
61
62<script>
63 $(document).ready(function() {
64 $('iframe.tumblr_audio_player').load( function() {
65 $('iframe.tumblr_audio_player').contents().find("head")
66 .append($("<style type='text/css'> .audio-player{background:transparent!important; color:{color:bold}!important;} </style>"));
67 });
68 });
69</script>
70
71
72
73
74
75<!-- SCRIPT: CLICK MENU -->
76
77<script>
78$(document).ready(function(){
79 jQuery('.dropbtn').click( function() {
80 $(this).next('.dropdown-content').fadeToggle();
81 return false;
82 });
83});
84</script>
85
86
87
88
89
90
91<!-- SCRIPT: CLICK MENU #2 -->
92
93<script>
94$(document).ready(function(){
95 jQuery('.dropbtn2').click( function() {
96 $(this).next('.dropdown-content2').fadeToggle();
97 return false;
98 });
99});
100</script>
101
102
103
104
105
106<!-- SCRIPT: CLICK MENU #3 -->
107
108<script>
109$(document).ready(function(){
110 jQuery('.dropbtn3').click( function() {
111 $(this).next('.dropdown-content3').fadeToggle();
112 return false;
113 });
114});
115</script>
116
117
118
119
120
121<!-- SCRIPT: NAVIGATION TABS -->
122
123<script>
124function openNavi(naviName) {
125 var i;
126 var x = document.getElementsByClassName("navi");
127 for (i = 0; i < x.length; i++) {
128 x[i].style.display = "none";
129 }
130 document.getElementById(naviName).style.display = "block";
131}
132</script>
133
134
135
136<script>
137function openMuse(museName) {
138 var i;
139 var x = document.getElementsByClassName("muse");
140 for (i = 0; i < x.length; i++) {
141 x[i].style.display = "none";
142 }
143 document.getElementById(museName).style.display = "block";
144}
145</script>
146
147
148
149
150
151<script type="text/javascript" src="https://static.tumblr.com/8pnyeus/10hors8sn/themekid-popup.min.js">
152</script>
153
154<script type="text/javascript">
155$(document).ready(function(){
156 popUp(true);
157});
158</script>
159
160
161
162
163
164<!-- SCRIPT: NAVIGATION TABS -->
165
166
167<script>
168function openPage(pageName) {
169 var i;
170 var x = document.getElementsByClassName("page");
171 for (i = 0; i < x.length; i++) {
172 x[i].style.display = "none";
173 }
174 document.getElementById(pageName).style.display = "block";
175}
176
177</script>
178
179
180
181
182
183<!-- SCRIPT: TOGGLE -->
184
185<script>
186$(document).ready(function(){
187 $(".nlinksbutton").click(function(){
188 $(".nlinkscontent").toggle();
189 });
190});
191</script>
192
193<script>
194$(document).ready(function(){
195 $(".nlinksbutton1").click(function(){
196 $(".nlinkscontent1").toggle();
197 });
198});
199</script>
200
201<script>
202$(document).ready(function(){
203 $(".nlinksbutton2").click(function(){
204 $(".nlinkscontent2").toggle();
205 });
206});
207</script>
208
209<script>
210$(document).ready(function(){
211 $(".nlinksbutton3").click(function(){
212 $(".nlinkscontent3").toggle();
213 });
214});
215</script>
216
217<script>
218$(document).ready(function(){
219 $(".nlinksbutton4").click(function(){
220 $(".nlinkscontent4").toggle();
221 });
222});
223</script>
224
225
226
227
228<!-- SCRIPT: POPUP TABS -->
229
230<script>$(document).ready(function(){
231 $("ul#tabs li").click(function(e){
232 if (!$(this).hasClass("active")) {
233 var tabNum = $(this).index();
234 var nthChild = tabNum+1;
235 $("ul#tabs li.active").removeClass("active");
236 $(this).addClass("active");
237 $("ul#tab li.active").removeClass("active");
238 $("ul#tab li:nth-child("+nthChild+")").addClass("active");}});});</script>
239
240
241
242<!-- SCRIPT: VIDEO WIDTH (CREDIT: SHYTHEMES) -->
243
244<script>
245$(document).ready(function(){
246 resizeVideos();
247});
248function resizeVideos() {
249 $('.video:not(.resized) iframe:not(.tumblr_video_iframe)').each(function(){
250 var vw = $(this).width(482);
251 var vh = $(this).height(auto);
252 var scale = $(this).parents('.video').width() / vw;
253 $(this).attr({
254 width: Math.floor($(this).attr('width') * scale),
255 height: Math.floor($(this).attr('height') * scale)
256 });
257 $(this).parents('.video').addClass('resized');
258 });
259 $('.video:not(.resized) .tumblr_video_iframe').each(function(){
260 var vw = $(this).width();
261 var vh = $(this).height();
262 var scale = $(this).parents('.video').width() / vw;
263 $(this).css({
264 'transform': 'scale(' + scale + ')',
265 'margin': vh * (scale - 1) / 2 + 'px ' + vw * (scale - 1) / 2 + 'px'
266 });
267 $(this).parents('.tumblr_video_container').css({
268 width: Math.floor(vw * ( scale + 1 ) / 2),
269 height: Math.floor(vh * ( scale + 1 ) / 2)
270 });
271 $(this).parents('.video').addClass('resized');
272 });
273}
274</script>
275
276
277
278
279
280
281<!-- CUSTOM FONTS -->
282
283<link href="https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre" rel="stylesheet">
284
285<link rel="stylesheet" href="https://static.tumblr.com/gjexvml/yTwpxxahr/stylesheet.css">
286
287
288
289
290
291
292<!-- META LINES -->
293
294<meta name="image:Background" content="https://static.tumblr.com/m7qloac/B4Aq65obz/bg6.png"/>
295<meta name="image:Sidebar Background" content="https://static.tumblr.com/m7qloac/KWzq65ocf/008.png"/>
296<meta name="image:Sidebar Image Top" content="https://static.tumblr.com/m7qloac/LrAq65ocv/009.png"/>
297<meta name="image:Sidebar Image Bottom" content="https://static.tumblr.com/m7qloac/z59q65od5/007.png"/>
298
299<meta name="text:Custom Capitals Font" content="'customfonthere'">
300<meta name="text:Sidebar Title" content="Side"/>
301<meta name="text:Title" content="Title">
302<meta name="text:Title Font Size" content="111px">
303
304<meta name="color:Background" content="#191919"/>
305<meta name="color:Border" content="#47423f"/>
306<meta name="color:Body Text" content="#c6c6c6"/>
307<meta name="color:Button Active" content="#c6c6c6"/>
308<meta name="color:Button Inactive" content="#494543"/>
309<meta name="color:Bold" content="#605b57"/>
310<meta name="color:Headers" content ="#5d5855"/>
311<meta name="color:Italic" content="#ffffff"/>
312<meta name="color:Links" content="#ffffff"/>
313<meta name="color:Navigation List Links" content="#5d5855"/>
314<meta name="color:Links Hover" content="#ffffff"/>
315<meta name="color:First Letter" content="#151515"/>
316<meta name="color:Title" content="#000000"/>
317<meta name="color:Title Shadow" content="#151515"/>
318<meta name="color:Permalink" content="#55504f"/>
319<meta name="color:Tags" content="#282726"/>
320
321<meta name="if:Text Wrapping" content="1"/>
322<meta name="if:Boxed Blockquotes" content="1"/>
323<meta name="if:Icon Borders" content="1"/>
324<meta name="if:Bigger Tags on Hover" content="0"/>
325<meta name="if:First Letter Styling" content="0"/>
326<meta name="if:Calibri Font" content="0"/>
327<meta name="if:BlogTitle" content="0"/>
328<meta name="if:SidebarTitle" content="0"/>
329
330<style type="text/css">
331
332
333
334
335/* SCROLLBAR */
336
337
338/* Set all margins and paddings to 0 on all browsers */
339
340
341::-webkit-scrollbar {
342 background-color:transparent;
343 height: 0px;
344 display:none;
345 width: 0px
346 -ms-overflow-style: none; // IE 10+
347 overflow: -moz-scrollbars-none; // Firefox
348}
349
350
351::-webkit-scrollbar-thumb {
352 background-color:transparent;
353}
354
355
356
357/* TEXT SELECTION */
358
359::selection {
360 background: {color:background};
361 color:{color:links};
362}
363
364
365::-moz-selection {
366 background: {color:background};
367 color:{color:links};
368}
369
370
371
372
373
374
375/* TOOLTIP */
376
377
378#s-m-t-tooltip {
379 z-index:99;
380 max-width:250px;
381 line-height:13px;
382 margin-left:12.5px;
383 margin-top:12.5px;
384 font-weight:bold;
385 background-color:{color:background};
386 border:1px solid {color:border};
387 padding-left:25px;
388 padding-right:25px;
389 padding-top:12.5px;
390 padding-bottom:12.5px;
391 font-family:calibri;
392 font-size:10px;
393 color: {color:italic};
394 text-transform:uppercase;
395 text-shadow: 0px 0px 1px {color:italic};
396}
397
398
399
400
401
402/* FOUNDATION */
403
404
405body {
406 background-image:url({image:background});
407 background-attachment:fixed;
408 background-repeat:no-repeat;
409 background-position:top left;
410 background-color:{color:background};
411 color:{color:Body Text};
412 font-size:10px;
413 line-height:14px;
414 word-spacing:-1px;
415 color:{color:Body Text};
416 font-family: 'Frank Ruhl Libre', serif;
417 {block:ifCalibriFont}
418 font-family:calibri;
419 {/block:ifCalibriFont}
420 word-wrap: break-word;
421}
422
423
424body a {
425 font-size:10px;
426 font-weight:bold;
427 color:{color:links};
428 text-decoration:none!important;
429 -moz-transition-duration:1.5s;
430 -webkit-transition-duration:1.5s;
431 -o-transition-duration:1.5s;
432 text-shadow: 0px 0px 1px {color:links};
433}
434
435
436body a:hover {
437 color:{color:links hover};
438 -moz-transition-duration:1.5s;
439 -webkit-transition-duration:1.5s;
440 -o-transition-duration:1.5s;
441 text-shadow: 0px 0px 1px {color:links hover};
442}
443
444
445
446
447p:first-letter {
448 text-transform:capitalize!important;
449}
450
451
452
453
454
455/* BLOCKQUOTES */
456
457
458{block:IfBoxedBlockquotes}
459
460blockquote {
461 padding-left:25px;
462 padding-right:25px;
463 padding-top:12px;
464 padding-bottom:12px;
465 margin-top:12px;
466 margin-bottom:12px;
467 text-align:justify;
468 margin-left:0px;
469 margin-right:0px;
470 outline:1px solid {color:border};
471 word-wrap: break-word!important;
472}
473
474
475
476blockquote blockquote {
477 outline:0px solid {color:border};
478 border-left:1px solid {color:border}!important;
479 border-top:0px!important;
480 border-bottom:0px!important;
481 border-right:0px!important;
482 padding-top:0px!important;
483 padding-bottom:0px!important;
484 padding-left:25px;
485 padding-right:0px;
486 margin-top:12px!important;
487 margin-bottom:0px!important;
488}
489{/block:IfBoxedBlockquotes}
490
491
492
493
494{block:IfNotBoxedBlockquotes}
495blockquote {
496 padding-left:25px;
497 margin-top:12px;
498 margin-left:0px;
499 margin-right:0px;
500 text-align:justify;
501 margin-bottom:25px;
502 border-left:1px solid {color:border};
503 background-color:transparent;
504 word-wrap: break-word!important;
505}
506
507
508
509blockquote blockquote {
510 margin-top:12px;
511 margin-bottom:12px;
512}
513
514
515
516blockquote img {
517 max-width:386px!important;
518 height:auto;
519}
520{/block:IfNotBoxedBlockquotes}
521
522
523
524
525
526 /* FONT-RELATED */
527
528
529small {
530 font-size:10px;
531}
532
533
534sub, sup {
535 font-size:10px;
536 vertical-align: baseline!important;
537 position: relative!important;
538 top: 0em!important;
539 line-height:14px;
540}
541
542
543big {
544 font-size:125%;
545}
546
547
548ul, ol {
549 padding:0;
550 list-style: decimal outside;
551 margin-left:8px;
552}
553
554
555li {
556 padding-left:2px;
557}
558
559
560b, bold, strong {
561 font-size:9.5px;
562 text-transform:uppercase;
563 font-family: calibri, sans-serif;
564 font-weight:bold!important;
565 color:{color:bold};
566 text-shadow: 0px 0px 1px {color:bold};
567
568}
569
570
571em, i, italic {
572 color: {color:italic};
573 margin-right:1px;
574}
575
576
577 {block:ifFirstLetterStyling}
578u, u a {
579 background-color: {color:background};
580 outline: 1px solid {color:border};
581 font-family:'Frank Ruhl Libre', serif;
582 color:{color:background};!important;
583 text-decoration:none!important;
584 font-style:normal!important;
585 font-weight:bold!important;
586 text-transform:uppercase!important;
587 float:left;
588 margin-top:0px;
589 height:60px;
590 width:60px;
591 font-size: 48px;
592 margin-right: 12px;
593 position: relative;
594 text-align: center;
595 vertical-align: middle;
596 line-height: 60px;
597 text-shadow:
598 -1px -1px 0 {color:border},
599 1px -1px 0 {color:border},
600 -1px 1px 0 {color:border},
601 1px 1px 0 {color:border};
602}
603 {/block:ifFirstLetterStyling}
604
605
606
607
608pre {
609 overflow: hidden;
610 background-color: {color:background};
611 outline:1px solid {color:border};
612 padding-left:25px;
613 padding-right:25px;
614 padding-top:8px;
615 padding-bottom:8px;
616 margin-bottom:18px!important;
617 margin-top:18px!important;
618 margin-right:1px;
619 text-transform:uppercase;
620 line-height:155%;
621 font-weight:lighter!important;
622 color:{color:body text};
623 font-size:8.4px;
624 letter-spacing:0.6px;
625 white-space: pre-wrap;
626 white-space: -moz-pre-wrap;
627 white-space: -pre-wrap;
628 white-space: -o-pre-wrap;
629 word-wrap: break-word;
630}
631
632
633
634pre a, pre b, pre strong {
635 font-family:monospace!important;
636 font-weight:lighter!important;
637 font-size:8.4px!important;
638 letter-spacing:0.6px!important;
639 line-height:155%;
640 color:{color:bold};
641 -moz-transition-duration:1.5s;
642 -webkit-transition-duration:1.5s;
643 -o-transition-duration:1.5s;
644}
645
646
647
648h1 {
649 outline: 1px solid {color:border};
650 background-color:{color:background};
651 overflow:hidden;
652 margin-top:8px!important;
653 margin-left:0px;
654 margin-bottom:12px;
655 padding-left:25px;
656 padding-right:25px;
657 height:25px;
658 line-height:25px;
659 text-align:left!important;
660 font-family:calibri;
661 font-weight:bold;
662 font-size:10px!important;
663 text-transform:uppercase;
664 color: {color:headers};
665 text-shadow: 0px 0px 1px {color:headers};
666}
667
668
669
670h1 a {
671 color: {color:links};
672 font-size:10px!important;
673 text-shadow: 0px 0px 1px {color:links};
674}
675
676
677
678h2 {
679 font-family: calibri, sans-serif;
680 font-size:11px!important;
681 text-transform:uppercase!important;
682 color:{color:headers};
683 letter-spacing:-0.2px;
684 text-shadow: 0px 0px 1px {color:headers};
685}
686
687
688h2 a {
689 font-family: calibri, sans-serif;
690 font-size:11px!important;
691 text-transform:uppercase!important;
692 color:{color:links};
693 letter-spacing:-0.4px;
694 text-shadow: 0px 0px 1px {color:links};
695}
696
697
698h4 {
699 border:1px solid {color:border};
700 margin-bottom:12.5px;
701 margin-top:12.5px;
702 padding-left:25px;
703 padding-right:25px;
704 height:25px;
705 text-align:left;
706 font-family:calibri;
707 font-style:normal;
708 font-weight:bold;
709 font-size:10px;
710 line-height:25px;
711 color: {color:headers};
712 text-transform:uppercase;
713 text-shadow: 0px 0px 1px {color:headers};
714}
715
716
717h4:first-child {
718 margin-top:0px;
719}
720
721
722h4 a {
723 font-family:calibri;
724 font-style:normal;
725 font-weight:700;
726 font-size:10px;
727 line-height:10px;
728 color: {color:links};
729 text-shadow: 0px 0px 1px {color:links};
730}
731
732
733
734
735
736
737
738
739/* CONTAINER */
740
741
742#container {
743 z-index:98;
744 left: 50%;
745 margin-left:-450px;
746 margin-top:175px;
747 position:fixed;
748 width:895px;
749 height:475px;
750 overflow:hidden;
751 outline:1px solid {color:border};
752 background:rgba(25,25,25,.95);
753 -webkit-box-shadow: 0px 0px 48px 20px {color:background};
754 -moz-box-shadow: 0px 0px 48px 20px {color:background};
755 box-shadow: 0px 0px 48px 20px {color:background};
756}
757
758
759
760.sidebar {
761 position:absolute;
762 width:283px;
763 height:423px;
764 left:26px;
765 top:26px;
766 overflow-y:hidden;
767 outline:1px solid {color:border};
768}
769
770
771
772{block:ifSidebarTitle}
773.sidebartitle {
774 position:absolute;
775 font-family: 'janeaustennosecret';
776 color:{color:title};
777 font-weight:bold!important;
778 text-transform:none;
779 padding-left:4px;
780 padding-right:4px;
781 font-size:55px;
782 width:222px;
783 left:26px;
784 top:133px;
785 line-height:14px;
786 letter-spacing:-2px;
787 text-align:right!important;
788 z-index:999;
789 pointer-events:none;
790 background-color:transparent;
791 text-shadow:
792 -1px -1px 0 {color:title shadow},
793 1px -1px 0 {color:title shadow},
794 -1px 1px 0 {color:title shadow},
795 1px 1px 0 {color:title shadow};
796}
797{/block:ifSidebarTitle}
798
799
800
801
802.sidebarbg {
803 background-image:url('{Sidebar Background}');
804 background-position:top left;
805 position:absolute;
806 width:284px;
807 height:423px;
808 -webkit-filter: brightness(.4) contrast(.88) saturate(1);
809}
810
811
812
813.inner {
814 position:absolute;
815 width:231px;
816 margin-left:26px;
817 margin-top:26px;
818 outline:0px solid {color:border};
819 background:rgba(0,0,0,0);
820 -webkit-box-shadow: 0px 0px 48px 4px {color:background};
821 -moz-box-shadow: 0px 0px 48px 4px {color:background};
822 box-shadow: 0px 0px 48px 4px {color:background};
823}
824
825
826.sidebarimgtop {
827 background-image:url('{Sidebar Image Top}');
828 background-position:top left;
829 outline:1px solid {color:border};
830 overflow:hidden;
831 width:231px;
832 height:120px!important;
833 -webkit-filter: brightness(1) contrast(1) saturate(1);
834}
835
836
837.sidebarimgbottom {
838 background-image:url('{Sidebar Image Bottom}');
839 background-position:top left;
840 margin-top:0px;
841 outline:1px solid {color:border};
842 overflow:hidden;
843 width:231px;
844 height:120px;
845 -webkit-filter: brightness(1) contrast(1) saturate(1);
846}
847
848
849{block:ifBlogTitle}
850.title {
851 position:fixed;
852 font-family: 'janeaustennosecret';
853 color:{color:title};
854 font-weight:lighter!important;
855 text-transform:none;
856 padding-left:8px;
857 padding-right:8px;
858 font-size:{text:title font size};
859 width:490px;
860 margin-left:340px;
861 margin-top:400px;
862 line-height:14px;
863 letter-spacing:-4px;
864 word-spacing:-1px;
865 text-align:right!important;
866 z-index:70!important;
867 padding-right:25px;
868 pointer-events:none;
869 background-color:transparent;
870 text-shadow:
871 -1px -1px 0 {color:title shadow},
872 1px -1px 0 {color:title shadow},
873 -1px 1px 0 {color:title shadow},
874 1px 1px 0 {color:title shadow};
875}
876{/block:ifBlogTitle}
877
878
879
880
881
882
883.description {
884 width:181px;
885 height:80px;
886 padding-left:25px;
887 padding-right:25px;
888 outline:1px solid {color:border};
889 border-top:25px solid {color:background};
890 border-bottom:25px solid {color:background};
891 background-color:{color:background};
892 text-shadow: 0px 0px 1px {color:Navigation List Links};
893 line-height:13px;
894 margin-top:-3px;
895 text-align:justify;
896 overflow-y:scroll;
897 background-color:{color:background};
898 -moz-transition-duration:1.5s;
899 -webkit-transition-duration:1.5s;
900 -o-transition-duration:1.5s;
901}
902
903
904
905
906.description a {
907 color:{color:body text};
908 font-family:monospace;
909 letter-spacing:0.6px;
910 font-size:8.4px;
911 font-weight:lighter;
912 font-style:normal;
913 text-transform:uppercase;
914 -moz-transition-duration:1.5s;
915 -webkit-transition-duration:1.5s;
916 -o-transition-duration:1.5s;
917 text-shadow: 0px 0px 1px {color:bold};
918}
919
920
921
922
923
924
925
926
927
928/* POSTS: GENERAL */
929
930
931#content {
932 position:absolute;
933 text-align:justify;
934 height:320px;
935 width:533px;
936 left:336px;
937 top:76px;
938 background-color:transparent;
939 overflow-y:scroll;
940 overflow-x:hidden;
941 z-index:9;
942 outline:1px solid {color:border}!important;
943}
944
945
946#content2 {
947 width:483px;
948 height:270px;
949 overflow-y:scroll;
950 padding-left:25px;
951 padding-right:25px;
952 margin-left:0px;
953 margin-top:25px!important;
954}
955
956
957
958.posts {
959 width:482px;
960 word-wrap: break-word;
961 text-align:justify;
962 line-height:15px;
963 margin-bottom:36px;
964}
965
966
967.posts:first-child, .posts:first-of-type {
968 margin-top:13px;
969}
970
971
972.posts:last-child {
973 margin-bottom:0px!important;
974}
975
976
977
978.posts a {
979 font-size:9.5px;
980 text-transform:uppercase;
981 font-family: calibri, sans-serif;
982 font-weight:bold!important;
983 color:{color:links};
984 text-shadow: 0px 0px 1px {color:links};
985 -moz-transition-duration:1.5s;
986 -webkit-transition-duration:1.5s;
987 -o-transition-duration:1.5s;
988}
989
990
991.posts a:hover {
992 color:{color:links hover};
993 text-shadow: 0px 0px 1px {color:links hover};
994 -moz-transition-duration:1.5s;
995 -webkit-transition-duration:1.5s;
996 -o-transition-duration:1.5s;
997}
998
999
1000.posts img {
1001 max-width: -webkit-calc(100% - 22px);
1002 max-width: -moz-calc(100% - 22px);
1003 max-width: calc(100% - 22px);
1004 height:auto;
1005}
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015/* TEXT-WRAPPING AROUND ICONS/IMAGES */
1016
1017#wrap {
1018 margin-top:12px;
1019 margin-bottom: 12px;
1020}
1021
1022
1023#wrap img {
1024 width: auto;
1025 overflow: hidden;
1026 background-color:{color:background}!important;
1027 margin-top:0px!important;
1028 margin-bottom:0px!important;
1029 padding-right:3px;
1030 padding-bottom:3px;
1031 {block:IfTextWrapping}
1032 float:left;
1033 margin-right:12px;
1034 {/block:IfTextWrapping}
1035 {block:ificonborders}
1036 padding:12px;
1037 outline:1px solid {color:border};
1038 {/block:ificonborders}
1039}
1040
1041
1042
1043 {block:IfTextWrapping}
1044#wrap blockquote img {
1045 position:relative;
1046 background-color:{color:background}!important;
1047 margin-top:12px!important;
1048 margin-bottom:0px!important;
1049 margin-left:16px;
1050 margin-right:0px!important;
1051 float:right;
1052 z-index:150;
1053}
1054 {/block:IfTextWrapping}
1055
1056
1057
1058
1059
1060
1061/* NAVIGATION BAR */
1062
1063
1064.navigation {
1065 top:25px;
1066 left:335px;
1067 width:600px;
1068 position:absolute;
1069 border:0px!important;
1070 height:25px;
1071 z-index:99!important;
1072}
1073
1074
1075button {
1076 display:inline-block;
1077 box-sizing: border-box;
1078 font-size:9.5px;
1079 text-align:center;
1080 padding-left:25px;
1081 padding-right:25px;
1082 font-family: calibri, sans-serif;
1083 text-transform:uppercase;
1084 width:180px;
1085 max-width:180px;
1086 height:25px;
1087 background-color:{color:background};
1088 border:1px solid {color:border};
1089 line-height:22px;
1090 margin-left:0px;
1091 margin-right:-4px;
1092 color: {color:button inactive};
1093 cursor:pointer;
1094 font-weight:bold!important;
1095 overflow:hidden;
1096 text-shadow: 0px 0px 1px {color:button inactive};
1097 -webkit-transition: all 1.5s ease-in-out;
1098 -moz-transition: all 1.5s ease-in-out;
1099 -o-transition: all 1.5s ease-in-out;
1100 -ms-transition: all 1.5s ease-in-out;
1101 transition: all 1.5s ease-in-out;
1102}
1103
1104
1105button:focus, button:active {
1106 border:1px solid {color:border}!important;
1107 outline:0px!important;
1108 color:{color:button active}!important;
1109 text-shadow: 0px 0px 1px {color:button active};
1110}
1111
1112
1113
1114button:hover {
1115 color:{color:links hover}!important;
1116 -webkit-transition: all 1.5s ease-in-out;
1117 -moz-transition: all 1.5s ease-in-out;
1118 -o-transition: all 1.5s ease-in-out;
1119 -ms-transition: all 1.5s ease-in-out;
1120 transition: all 1.5s ease-in-out;
1121 text-shadow: 0px 0px 1px {color:links hover};
1122}
1123
1124
1125
1126#tabcontent {
1127 z-index:75;
1128 position:absolute;
1129 text-align:justify;
1130 box-sizing: border-box;
1131 height:296px;
1132 max-height:300px;
1133 width:844px;
1134 left:25px;
1135 top:26px;
1136 padding-top:0px!important;
1137 background-color:{color:background}!important;
1138 border-top:0px solid {color:background};
1139 border-bottom:0px solid {color:background};
1140 padding-left:25px;
1141 padding-right:25px;
1142 outline:0px solid {color:border}!important;
1143}
1144
1145
1146
1147
1148
1149
1150
1151/* POSTS: TEXT */
1152
1153#textbody {
1154 margin-top:-12px!important;
1155 {block:permalinkpage}
1156 margin-top:-12px!important;
1157 {/block:permalinkpage}
1158}
1159
1160
1161
1162
1163
1164
1165/* POSTS: PHOTO/PHOTOSETS */
1166
1167
1168#psingle {
1169 width: 502px;
1170 margin-top:-12px!important;
1171 pointer-events:none;
1172 -webkit-filter: brightness(.6) contrast(.8) saturate(0.7);
1173 -webkit-transition: all 1.5s ease-in-out;
1174 -moz-transition: all 1.5s ease-in-out;
1175 -o-transition: all 1.5s ease-in-out;
1176 -ms-transition: all 1.5s ease-in-out;
1177 transition: all 1.5s ease-in-out;
1178}
1179
1180
1181#psingle:hover {
1182 -webkit-filter: brightness(.6) contrast(.8) saturate(0.7);
1183 -webkit-transition: all 1.5s ease-in-out;
1184 -moz-transition: all 1.5s ease-in-out;
1185 -o-transition: all 1.5s ease-in-out;
1186 -ms-transition: all 1.5s ease-in-out;
1187 transition: all 1.5s ease-in-out;
1188}
1189
1190
1191#pset {
1192 margin-top:-11px!important;
1193 {block:permalinkpage}
1194 margin-top:0px;
1195 {block:permalinkpage}
1196 width: 485px;
1197 pointer-events:none;
1198 -webkit-filter: brightness(.6) contrast(.8) saturate(0.7);
1199 -webkit-transition: all 1.5s ease-in-out;
1200 -moz-transition: all 1.5s ease-in-out;
1201 -o-transition: all 1.5s ease-in-out;
1202 -ms-transition: all 1.5s ease-in-out;
1203 transition: all 1.5s ease-in-out;
1204}
1205
1206
1207#pset:hover {
1208 -webkit-filter: brightness(.6) contrast(.8) saturate(0.7);
1209 -webkit-transition: all 1.5s ease-in-out;
1210 -moz-transition: all 1.5s ease-in-out;
1211 -o-transition: all 1.5s ease-in-out;
1212 -ms-transition: all 1.5s ease-in-out;
1213 transition: all 1.5s ease-in-out;
1214}
1215
1216
1217
1218
1219
1220
1221/* POSTS: QUOTE */
1222
1223
1224#quote {
1225 font-size:15px;
1226 text-align:left;
1227 padding-top:0px;
1228 padding-bottom:0px;
1229 letter-spacing:-1px;
1230 line-height:15px;
1231 margin-top:-12px!important;
1232}
1233
1234
1235
1236.source {
1237 border:1px solid {color:border};
1238 font-family:calibri;
1239 font-weight:bold;
1240 text-align:left;
1241 font-size:9.5px;
1242 height:25px;
1243 line-height:25px;
1244 color: {color:bold};
1245 text-transform:uppercase;
1246 letter-spacing:0.2px;
1247 margin-top:25px;
1248 padding-right:25px;
1249 padding-left:25px;
1250 margin-top:25px;
1251 text-shadow: 0px 0px 1px {color:bold};
1252}
1253
1254
1255
1256.source a {
1257 color: {color:bold};
1258 text-shadow: 0px 0px 1px {color:bold};
1259}
1260
1261
1262
1263
1264
1265
1266
1267/* POSTS: LINK */
1268
1269
1270#link {
1271 outline:1px solid {color:border};
1272 padding:25px;
1273 margin-top:-12px!important;
1274}
1275
1276
1277#link a {
1278 font-size:12px;
1279}
1280
1281
1282
1283
1284
1285
1286/* POSTS: CHAT */
1287
1288
1289#chat {
1290 margin-top:-16px!important;
1291 padding-left:0px;
1292 padding-right:0px;
1293}
1294
1295
1296
1297
1298
1299
1300/* POSTS: AUDIO */
1301
1302
1303.audioplayer {
1304 margin-left:12.5px;
1305 margin-top:-12px!important;
1306 width: 25px;
1307 height: 25px;
1308 overflow: hidden;
1309}
1310
1311
1312.audioinfo {
1313 outline:1px solid {color:border};
1314 margin-right: 0px;
1315 padding-left:60px;
1316 padding-right:25px;
1317 margin-top:-24px;
1318 margin-bottom:12px;
1319 height:25px;
1320 line-height:25px;
1321 display: block;
1322 font-family:calibri;
1323 font-weight:bold;
1324 text-transform: uppercase;
1325 text-align: left;
1326 letter-spacing:0.2px;
1327 word-spacing:-0.5px;
1328 overflow:hidden;
1329 font-size:9.5px;
1330 color:{color:bold};
1331 text-shadow: 0px 0px 1px {color:bold};
1332}
1333
1334
1335
1336
1337
1338
1339
1340 /* POSTS: VIDEO */
1341
1342
1343.video {
1344 margin-top:-15px!important;
1345}
1346
1347
1348
1349
1350
1351
1352/* POSTS: ASK */
1353
1354
1355#question {
1356 position:relative;
1357 width: 80%;
1358 height:70px;
1359 margin-left:0px;
1360 margin-top:-9px!important;
1361 background-color:{color:background};
1362}
1363
1364
1365#ask {
1366 position:relative;
1367 z-index:999999!important;
1368 float:left;
1369 font-family:calibri!important;
1370 text-transform:uppercase;
1371 font-weight:bold;
1372 background-color:{color:background};
1373 font-size:8.5px!important;
1374 letter-spacing:0.2px!important;
1375 line-height:12px!important;
1376 width:368px;
1377 min-height:21px;
1378 max-height:21px;
1379 overflow:scroll;
1380 margin-top:0px;
1381 margin-left:0px;
1382 margin-bottom:0px;
1383 padding-left:24px;
1384 padding-right:24px;
1385 outline:solid 1px {color:border};
1386 border-top:22px solid {color:background};
1387 border-bottom:22px solid {color:background};
1388 -moz-transition-duration:1.5s;
1389 -webkit-transition-duration:1.5s;
1390 -o-transition-duration:1.5s;
1391}
1392
1393
1394#ask:hover {
1395 max-height:35px!important;
1396 width:432px;
1397 z-index:999999!important;
1398 -moz-transition-duration:1.5s;
1399 -webkit-transition-duration:1.5s;
1400 -o-transition-duration:1.5s;
1401}
1402
1403
1404#ask a {
1405 font-family:monospace!important;
1406 font-weight:lighter!important;
1407 font-size:8.5px!important;
1408 letter-spacing:0.6px!important;
1409 color:{color:bold};
1410 text-decoration:none;
1411 text-shadow: 0px 0px 1px {color:bold};
1412}
1413
1414
1415#ask b {
1416 color:{color:bold};
1417 font-family:monospace!important;
1418 font-weight:lighter!important;
1419 font-size:8.5px!important;
1420 letter-spacing:0.6px!important;
1421 line-height:11px;
1422 text-shadow: 0px 0px 1px {color:bold};
1423}
1424
1425
1426.letterask {
1427 font-family:'Frank Ruhl Libre', serif;
1428 color:#000000!important;
1429 text-decoration:none!important;
1430 font-style:normal!important;
1431 font-weight:bold!important;
1432 text-transform:uppercase!important;
1433 position:absolute;
1434 z-index:9999!important;
1435 text-align:center;
1436 font-size:48px;
1437 width:60px;
1438 margin-left:417px;
1439 outline:1px solid {color:border};
1440 background-color:{color:background};
1441 padding-top:25px;
1442 padding-bottom:27px;
1443 padding-right:3px;
1444 color:{color:title};
1445 -webkit-user-select: none;
1446 -moz-user-select: none;
1447 -ms-user-select: none;
1448 user-select: none;
1449 text-shadow:
1450 -1px -1px 0 {color:title shadow},
1451 1px -1px 0 {color:title shadow},
1452 -1px 1px 0 {color:title shadow},
1453 1px 1px 0 {color:title shadow};
1454}
1455
1456
1457#response {
1458 margin-bottom:-4px!important;
1459 margin-top:20px;
1460}
1461
1462
1463#response blockquote {
1464 margin-top:12px;
1465 margin-bottom:12px!important;
1466 padding-top:12px;
1467 padding-bottom:12px;
1468}
1469
1470
1471
1472
1473
1474
1475/* POST INFORMATION */
1476
1477
1478.permalink {
1479 margin-top:25px!important;
1480 margin-left:-27px!important;
1481 margin-right:-27px;
1482 margin-bottom:25px!important;
1483}
1484
1485
1486
1487.permalinkbuttons {
1488 height:25px;
1489 background-color:{color:background};
1490 font-weight:bold!important;
1491 line-height:25px;
1492 letter-spacing:-0.2px;
1493 margin-left:0px!important;
1494 margin-bottom:1px!important;
1495 border:1px solid {color:border};
1496 color: {color:permalink};
1497}
1498
1499
1500.permalinkbuttons a {
1501 letter-spacing:0px;
1502 display:inline-block;
1503 box-sizing: border-box;
1504 font-size:9.5px!important;
1505 text-align:center;
1506 padding-left:25px;
1507 padding-right:25px;
1508 font-family: calibri, sans-serif;
1509 text-transform:uppercase;
1510 width:177px;
1511 max-width:177px;
1512 height:25px;
1513 background-color:{color:background};
1514 outline:1px solid {color:border};
1515 line-height:25px;
1516 color: {color:permalink};
1517 font-weight:bold!important;
1518 overflow:hidden;
1519 text-shadow: 0px 0px 1px {color:permalink};
1520}
1521
1522
1523.permalinkbuttons a:hover {
1524 color:{color:links hover};
1525 -moz-transition-duration:1.5s;
1526 -webkit-transition-duration:1.5s;
1527 -o-transition-duration:1.5s;
1528 text-shadow: 0px 0px 1px {color:links hover};
1529}
1530
1531
1532.tags {
1533 font-family: calibri!important;
1534 font-weight:bold!important;
1535 background-color:{color:background};
1536 border:1px solid {color:border};
1537 padding-top:12px;
1538 padding-bottom:12px;
1539 padding-left:24px;
1540 padding-right:24px;
1541 margin-top:-2px;
1542 color:{color:tags};
1543 text-transform:uppercase!important;
1544 font-style:normal;
1545 line-height:150%;
1546 font-size:8.5px;
1547 text-align:justify;
1548 -moz-text-align-last: center; /* Code for Firefox */
1549 text-align-last: center;
1550
1551}
1552
1553
1554.tags a {
1555 text-decoration:none!important;
1556 font-weight:lighter!important;
1557 font-size:8.5px;
1558 margin-right:0px;
1559 letter-spacing:0px;
1560 text-transform:uppercase!important;
1561 font-family: calibri!important;
1562 color:{color:tags};
1563 -moz-transition-duration:1.5s;
1564 -webkit-transition-duration:1.5s;
1565 -o-transition-duration:1.5s;
1566 text-shadow: 0px 0px 1px {color:border};
1567}
1568
1569
1570
1571.tags a:hover {
1572 color:{color:italic}!important;
1573 -moz-transition-duration:1.5s;
1574 -webkit-transition-duration:1.5s;
1575 -o-transition-duration:1.5s;
1576 text-shadow: 0px 0px 1px {color:links hover};
1577 {block:ifBiggerTagsonHover}
1578 font-size:9px!important;
1579 {block:ifBiggerTagsonHover}
1580}
1581
1582
1583
1584
1585
1586
1587/* PERMAPAGE NOTES */
1588
1589
1590#notes {
1591 outline:1px solid {color:border};
1592 margin-bottom:1px!important;
1593 margin-left:1px;
1594 margin-right:1px;
1595 margin-top:25px!important;
1596 padding-top:16px;
1597 padding-bottom:16px;
1598 padding-left:16px;
1599 padding-right:16px;
1600 letter-spacing:0px;
1601 font-weight:bold;
1602 font-size:9.4px!important;
1603 color:{color:permalink}!important;
1604 text-shadow: 0px 0px 1px {color:permalink};
1605}
1606
1607
1608
1609#notes span, .note span {
1610 color:{color:permalink}!important;
1611 text-shadow: 0px 0px 1px {color:permalink};
1612}
1613
1614
1615
1616.note li, .note, .note a {
1617 list-style-type:none;
1618 padding-top:0px;
1619 line-height:14px;
1620 padding-bottom:0px;
1621 padding-left:0px;
1622 padding-right:2px;
1623 letter-spacing:-0.3px;
1624 text-align:left!important;
1625 -moz-transition-duration:0.5s;
1626 -webkit-transition-duration:0.5s;
1627 -o-transition-duration:0.5s;
1628 font-family:calibri!important;
1629 font-size:9.4px!important;
1630 font-weight:bold;
1631 text-transform:uppercase;
1632 color:{color:permalink}!important;
1633 text-shadow: 0px 0px 1px {color:permalink};
1634}
1635
1636
1637.note li a {
1638 text-align:left!important;
1639 font-family:calibri!important;
1640 font-size:9.4px!important;
1641 padding-right:2px;
1642 letter-spacing:-0.3px;
1643 font-weight:bold;
1644 text-transform:uppercase;
1645 color:{color:button active}!important;
1646 text-shadow: 0px 0px 1px {color:button active};
1647}
1648
1649
1650.more_notes_link, .more_notes_link a {
1651 text-align:left!important;
1652 margin-top:25px!important;
1653 padding-top:25px!important;
1654 color:{color:button active}!important;
1655 text-shadow: 0px 0px 1px {color:button active};
1656}
1657
1658
1659.note blockquote a {
1660 padding-top:12px;
1661 padding-bottom:12px;
1662 padding-left:24px;
1663 padding-right:24px;
1664 margin-top:12px;
1665 margin-bottom:12px;
1666 margin-left:0px;
1667 margin-right:0px;
1668 font-weight:bold;
1669 color:{color:button active}!important;
1670 text-shadow: 0px 0px 1px {color:button active};
1671}
1672
1673
1674.note img.avatar {
1675 display:none;
1676 width: 0px;
1677 height: 0px;
1678}
1679
1680
1681
1682
1683
1684
1685/* PAGINATION */
1686
1687
1688.navigationbottom {
1689 left:336px;
1690 top:424px;
1691 position:absolute;
1692 width: 533px;
1693 outline:1px solid {color:border};
1694 height:25px;
1695 line-height:25px;
1696 z-index:5;
1697}
1698
1699
1700.pagination {
1701 height:25px;
1702 line-height:25px;
1703}
1704
1705
1706.pagination b {
1707 color:{color:button inactive}!important;
1708 text-shadow: 0px 0px 1px {color:button inactive};
1709}
1710
1711
1712.pagination a {
1713 display:inline-block;
1714 box-sizing: border-box;
1715 font-size:10px;
1716 text-align:center;
1717 padding-left:25px;
1718 padding-right:25px;
1719 font-family: calibri, sans-serif;
1720 text-transform:uppercase;
1721 width:177px;
1722 max-width:177px;
1723 height:25px;
1724 background-color:{color:background};
1725 outline:1px solid {color:border};
1726 line-height:25px;
1727 margin-right:0px;
1728 color: {color:button inactive};
1729 font-weight:bold!important;
1730 overflow:hidden;
1731 text-shadow: 0px 0px 1px {color:button inactive};
1732}
1733
1734
1735.pagination a:first-child {
1736 margin-left:0px!important;
1737}
1738
1739
1740.pagination a:last-child {
1741 margin-right:0px!important;
1742}
1743
1744
1745.navigationbottom a:hover, .pagination a:hover, .pagination:hover {
1746 font-weight:bold!important;
1747 color:{color:links hover}!important;
1748 -moz-transition-duration:1.5s;
1749 -webkit-transition-duration:1.5s;
1750 -o-transition-duration:1.5s;
1751 text-shadow: 0px 0px 1px {color:links hover};
1752}
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765/* TRANSFORM */
1766
1767
1768.transformmenu {
1769 position:fixed;
1770 margin-top:25px!important;
1771 margin-left:0px!important;
1772 font-family:calibri;
1773 text-transform:uppercase;
1774 font-weight:bold;
1775 padding-left:25px;
1776 padding-right:25px;
1777 height:25px;
1778 line-height:25px;
1779}
1780
1781
1782
1783.transformlist {
1784 position:absolute;
1785 z-index:99!important;
1786 margin-left:26px;
1787 margin-top:75px;
1788 height:119px;
1789 max-height:119px;
1790 width:178px;
1791 max-width:178px;
1792 background-color:{color:background};
1793 overflow-y:scroll;
1794 padding-left:0px;
1795 padding-right:0px;
1796 outline:1px solid {color:border}!important;
1797}
1798
1799
1800.transformlinks {
1801 margin-top:-1px;
1802 margin-left:-1px;
1803 width:275px;
1804 background-color:{color:background};
1805}
1806
1807
1808.transformlinks a, .transformlinks li, .transformlinks button {
1809 display:inline-block;
1810 box-sizing: border-box;
1811 padding-right:24px;
1812 border-top:1px solid {color:border};
1813 background-color:{color:background};
1814 width:275px;
1815 overflow:hidden;
1816 height:32.5px;
1817 padding-left:24px;
1818 padding-right:24px;
1819 font-family:calibri;
1820 text-align:left!important;
1821 font-style:normal;
1822 font-weight:bold!important;
1823 margin-right:0px;
1824 margin-bottom:-3px;
1825 font-size:9.5px;
1826 letter-spacing:0px;
1827 line-height:32.5px;
1828 color: {color:Navigation List Links};
1829 text-transform:uppercase;
1830 cursor:pointer;
1831 text-shadow: 0px 0px 1px {color:Navigation List Links};
1832 -moz-transition-duration:1.5s;
1833 -webkit-transition-duration:1.5s;
1834 -o-transition-duration:1.5s;
1835}
1836
1837
1838.transformlinks li:hover, .transformlinks li:nth-of-type(even):hover {
1839 color:{color:links}!important;
1840 text-shadow: 0px 0px 1px {color:links};
1841 -moz-transition-duration:1.5s;
1842 -webkit-transition-duration:1.5s;
1843 -o-transition-duration:1.5s;
1844}
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857/* POPUPS: GENERAL */
1858
1859
1860.popup_block {
1861 box-sizing: border-box;
1862 width:400px;
1863 height:388px;
1864 max-height:388px;
1865 margin-top:76px!important;
1866 margin-left:337px!important;
1867 display:none;
1868 background-color:{color:background}!important;
1869 outline:1px solid {color:border};
1870 border-bottom:24px solid {color:background};
1871 padding-left:24px;
1872 padding-right:24px;
1873 position:absolute;
1874 z-index:99999999;
1875 opacity:1;
1876 overflow-y:hidden;
1877 text-align:justify;
1878 overflow-x:hidden;
1879}
1880
1881
1882.popup_block a {
1883 margin-right:0px;
1884 vertical-align:top;
1885 font-family: calibri, sans-serif;
1886 font-size:9.5px;
1887 color:{color:links};
1888 font-weight:bold!important;
1889 position: relative;
1890 text-decoration:none;
1891 text-transform:uppercase;
1892 text-shadow: 0px 0px 1px {color:links};
1893}
1894
1895
1896*html #fade {
1897 position: absolute;
1898}
1899
1900
1901*html .popup_block {
1902 position: absolute;
1903}
1904
1905
1906#fade {
1907 display:none;
1908 position:fixed;
1909 left:0px;
1910 top:0px;
1911 width:100%;
1912 height:100%;
1913 z-index:9;
1914 background:transparent;
1915 opacity:0;
1916}
1917
1918
1919
1920
1921
1922
1923/* NAVIGATION LIST */
1924
1925
1926.nlist {
1927 position:absolute;
1928 z-index:88!important;
1929 left:52px;
1930 margin-top:173px;
1931 height:129px;
1932 max-height:129px;
1933 width:231px;
1934 max-width:231px;
1935 border-bottom:0px solid {color:background}!important;
1936 border-top:0px solid {color:background}!important;
1937 background-color:{color:background};
1938 overflow-y:scroll;
1939 padding-left:0px;
1940 padding-right:0px;
1941 outline:0px solid {color:border}!important;
1942}
1943
1944
1945.nlinks {
1946 margin-top:-1px;
1947 padding-left:0px!important;
1948 width:275px;
1949 background-color:{color:background};
1950}
1951
1952
1953.nlinks a, .nlinks li {
1954 display:inline-block;
1955 box-sizing: border-box;
1956 border-top:1px solid {color:border};
1957 background-color:{color:background};
1958 width:275px;
1959 overflow:hidden;
1960 height:31.5px;
1961 padding-left:25px;
1962 padding-right:25px;
1963 font-family:calibri;
1964 text-align:left;
1965 font-style:normal;
1966 font-weight:bold;
1967 margin-right:0px;
1968 margin-bottom:-3px;
1969 font-size:9.4px;
1970 letter-spacing:0px;
1971 line-height:31.5px;
1972 color: {color:Navigation List Links};
1973 text-transform:uppercase;
1974 font-weight:bold;
1975 cursor:pointer;
1976 text-shadow: 0px 0px 1px {color:Navigation List Links};
1977 -moz-transition-duration:1.5s;
1978 -webkit-transition-duration:1.5s;
1979 -o-transition-duration:1.5s;
1980}
1981
1982
1983.nlinks li:hover, .nlinks li:nth-of-type(even):hover {
1984 color:{color:links}!important;
1985 text-shadow: 0px 0px 1px {color:links};
1986 -moz-transition-duration:1.5s;
1987 -webkit-transition-duration:1.5s;
1988 -o-transition-duration:1.5s;
1989}
1990
1991
1992
1993.nlinksbutton, .nlinksbutton1, .nlinksbutton2, .nlinksbutton3, .nlinksbutton4 {
1994 display:inline-block;
1995 box-sizing: border-box;
1996 border-top:1px solid {color:border};
1997 background-color:{color:background};
1998 width:275px;
1999 overflow:hidden;
2000 height:31.5px;
2001 padding-left:25px;
2002 padding-right:25px;
2003 text-align:left;
2004 color:{color:body text};
2005 font-family:monospace;
2006 letter-spacing:0.6px;
2007 font-size:8.4px;
2008 font-weight:lighter;
2009 font-style:normal;
2010 font-weight:bold;
2011 margin-right:0px;
2012 margin-bottom:-3px;
2013 line-height:31.5px;
2014 text-transform:uppercase;
2015 cursor:pointer;
2016 -moz-transition-duration:1.5s;
2017 -webkit-transition-duration:1.5s;
2018 -o-transition-duration:1.5s;
2019}
2020
2021
2022
2023.nlinkscontent, .nlinkscontent1, .nlinkscontent2, .nlinkscontent3, .nlinkscontent4 {
2024 display:none;
2025 max-width:484px;
2026 background-color:#000000;
2027 overflow:hidden;
2028 outline:0px solid {color:border};
2029}
2030
2031
2032.nlinkscontent a {
2033 outline:0px solid {color:border};
2034 border:0px;
2035 width:242.1px!important;
2036 margin-top:-1px!important;
2037 margin-left:0px!important;
2038 margin-right:-1px!important;
2039 margin-bottom:0px!important;
2040}
2041
2042
2043.nlinkscontent a:nth-child (odd) {
2044 border-right:1px solid {color:border};
2045 width:243px!important;
2046}
2047
2048
2049
2050/*NAVIGATION PAGES: SIDEBAR */
2051
2052
2053.npside {
2054 position:absolute;
2055 width:283px;
2056 height:423px;
2057 left:1px;
2058 top:0px;
2059 overflow-y:hidden;
2060 outline:1px solid {color:border};
2061 background-color:{color:background}!important;
2062}
2063
2064
2065.npsidetitle {
2066 position:absolute;
2067 font-family: 'janeaustennosecret';
2068 color:{color:title};
2069 font-weight:bold!important;
2070 text-transform:none;
2071 padding-left:25px;
2072 padding-right:25px;
2073 font-size:70px;
2074 width:488px;
2075 margin-left:-24px;
2076 top:123px;
2077 line-height:14px;
2078 letter-spacing:-2px;
2079 text-align:right!important;
2080 z-index:90;
2081 pointer-events:none;
2082 background-color:transparent;
2083 text-shadow:
2084 -1px -1px 0 {color:title shadow},
2085 1px -1px 0 {color:title shadow},
2086 -1px 1px 0 {color:title shadow},
2087 1px 1px 0 {color:title shadow};
2088}
2089
2090
2091
2092.npsideinner {
2093 position:absolute;
2094 width:231px;
2095 margin-left:26px;
2096 margin-top:26px;
2097 outline:1px solid {color:border};
2098 background-color:{color:background};
2099 -webkit-box-shadow: 0px 0px 48px 4px {color:background};
2100 -moz-box-shadow: 0px 0px 48px 4px {color:background};
2101 box-shadow: 0px 0px 48px 4px {color:background};
2102}
2103
2104
2105.npsideimgtop {
2106 background-image:url('{Sidebar Image Top}');
2107 background-position:top left;
2108 outline:1px solid {color:border};
2109 overflow:hidden;
2110 width:231px;
2111 height:120px!important;
2112 -webkit-filter: brightness(1) contrast(1) saturate(1);
2113}
2114
2115
2116.npsideimgbottom {
2117 background-image:url('{Sidebar Image Bottom}');
2118 background-position:top left;
2119 outline:1px solid {color:border};
2120 margin-top:131px;
2121 overflow:hidden;
2122 width:231px;
2123 height:120px;
2124 -webkit-filter: brightness(1) contrast(1) saturate(1);
2125}
2126
2127
2128
2129
2130.nlist2 {
2131 position:relative;
2132 z-index:20!important;
2133 margin-left:0px;
2134 margin-top:1px;
2135 height:129px;
2136 max-height:129px;
2137 width:231px;
2138 max-width:231px;
2139 border-bottom:0px solid {color:background}!important;
2140 border-top:0px solid {color:background}!important;
2141 background-color:{color:background};
2142 overflow-y:scroll;
2143 padding-left:0px;
2144 padding-right:0px;
2145 outline:1px solid {color:border}!important;
2146}
2147
2148
2149.nlinks2 {
2150 margin-top:0px;
2151 padding-left:0px!important;
2152 width:275px;
2153 background-color:{color:background};
2154}
2155
2156
2157.nlinks2 a, .nlinks2 li {
2158 display:inline-block;
2159 box-sizing: border-box;
2160 padding-right:24px;
2161 outline:1px solid {color:border};
2162 background-color:{color:background};
2163 width:275px;
2164 overflow:hidden;
2165 height:31.5px;
2166 padding-left:24px;
2167 padding-right:24px;
2168 font-family:calibri;
2169 text-align:left;
2170 font-style:normal;
2171 font-weight:bold!important;
2172 margin-right:0px;
2173 margin-bottom:-3px;
2174 font-size:9.5px;
2175 letter-spacing:0px;
2176 line-height:31.5px;
2177 color: {color:Navigation List Links};
2178 text-transform:uppercase;
2179 cursor:pointer;
2180 text-shadow: 0px 0px 1px {color:Navigation List Links};
2181}
2182
2183
2184.nlinks2 li:hover, .nlinks2 li:nth-of-type(even):hover {
2185 color:{color:links}!important;
2186 text-shadow: 0px 0px 1px {color:links};
2187 -moz-transition-duration:1.5s;
2188 -webkit-transition-duration:1.5s;
2189 -o-transition-duration:1.5s;
2190}
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203/* NAVIGATION PAGES */
2204
2205
2206#page {
2207 width:484px;
2208 height:373px;
2209 margin-left:286px;
2210 margin-top:50px;
2211 overflow-x:hidden;
2212 outline:1px solid {color:border};
2213 padding-left:24px;
2214 padding-right:25px;
2215 background-color:{color:background}!important;
2216}
2217
2218
2219
2220#page pre {
2221 overflow: hidden;
2222 background-color: {color:background};
2223 outline:1px solid {color:border};
2224 padding-left:25px;
2225 padding-right:25px;
2226 width:432px;
2227 padding-top:8px;
2228 padding-bottom:8px;
2229 margin-bottom:18px!important;
2230 margin-top:18px!important;
2231 text-transform:uppercase;
2232 line-height:155%;
2233 font-weight:lighter!important;
2234 color:{color:body text};
2235 font-size:8.4px;
2236 letter-spacing:0.6px;
2237 white-space: pre-wrap;
2238 white-space: -moz-pre-wrap;
2239 white-space: -pre-wrap;
2240 white-space: -o-pre-wrap;
2241 word-wrap: break-word;
2242}
2243
2244
2245#pre a {
2246 color:{links hover}!important;
2247 text-shadow: 0px 0px 1px {links hover}!important;
2248}
2249
2250
2251#page pre:first-child {
2252 margin-top:1px!important;
2253}
2254
2255
2256
2257
2258.npheader {
2259 margin-top:0px;
2260 margin-left:-24px;
2261 margin-bottom:0px!important;
2262 height:90px;
2263 width:538px;
2264 overflow:hidden;
2265 outline:1px solid {color:border};
2266 -webkit-filter: brightness(1.1) contrast(1) saturate(1);
2267}
2268
2269
2270.npnavi {
2271 margin-top:1px;
2272 margin-left:-25px!important;
2273 margin-right:-25px!important;
2274 margin-bottom:0px;
2275 outline:0px;
2276}
2277
2278
2279
2280
2281.npnavi2 {
2282 margin-top:1px;
2283 margin-left:-25px!important;
2284 margin-right:-25px!important;
2285 margin-bottom:0px;
2286 outline:0px;
2287}
2288
2289
2290
2291
2292.dropbtn {
2293 display:inline-block;
2294 box-sizing: border-box;
2295 font-size:9.5px;
2296 text-align:center;
2297 min-width:539px!important;
2298 padding-left:25px;
2299 padding-right:25px;
2300 margin-left:0px;
2301 margin-top:-1px;
2302 margin-bottom:0px!important;
2303 font-family: calibri, sans-serif;
2304 text-transform:uppercase;
2305 height:26px;
2306 background-color:transparent;
2307 outline:0px solid {color:border};
2308 border:1px solid {color:border};
2309 line-height:23px;
2310 margin-right:0px;
2311 color: {color:bold};
2312 font-weight:bold!important;
2313 overflow:hidden; /* older browsers */
2314}
2315
2316
2317
2318
2319.dropbtn:hover, .dropbtn:focus {
2320 color:{color:links};
2321}
2322
2323
2324
2325
2326.dropdown {
2327 position: relative;
2328 display: inline-block;
2329}
2330
2331
2332
2333.dropdown-content {
2334 display: none;
2335 position: absolute;
2336 margin-top:-1px!important;
2337 margin-left:0px;
2338 outline:1px solid {color:border};
2339 border:0px solid {color:border};
2340 background-color: {color:background};
2341 width:537px;
2342 z-index: 99;
2343 -webkit-box-shadow: 0px 25px 0px -1px rgba(25,25,25,1);
2344 -moz-box-shadow: 0px 25px 0px -1px rgba(25,25,25,1);
2345 box-shadow: 0px 25px 0px -1px rgba(25,25,25,1);
2346}
2347
2348
2349.dropdown-content a {
2350 color: black;
2351 padding: 12px 16px;
2352 text-decoration: none;
2353 display: block;
2354}
2355
2356
2357.dropdown-content a:hover, .dropdown a:hover {
2358 color:{color:links hover};!important;
2359}
2360
2361
2362
2363
2364.dropdown2 {
2365 position: relative;
2366 display: inline-block;
2367}
2368
2369
2370
2371
2372.dropdown-content2 {
2373 display: none;
2374 position: absolute;
2375 margin-top:-1px!important;
2376 margin-left:1px;
2377 outline:1px solid {color:border};
2378 border:0px solid {color:border};
2379 background-color: {color:background};
2380 width:200px;
2381 z-index: 99;
2382 -webkit-box-shadow: 0px 25px 0px -1px rgba(0,0,0,1);
2383 -moz-box-shadow: 0px 25px 0px -1px rgba(0,0,0,1);
2384 box-shadow: 0px 25px 0px -1px rgba(0,0,0,1);
2385}
2386
2387
2388.dropdown-content2 a {
2389 color: black;
2390 padding: 12px 16px;
2391 text-decoration: none;
2392 display: block;
2393}
2394
2395
2396.dropdown-content2 a:hover, .dropdown2 a:hover {
2397 color:{color:links hover};!important;
2398}
2399
2400
2401
2402
2403
2404
2405.show {
2406 display:block;
2407}
2408
2409
2410ul#tabs {
2411 text-align: left;
2412 Cursor:pointer;
2413}
2414
2415
2416ul#tabs li {
2417 display:inline-block;
2418 box-sizing: border-box;
2419 font-size:9.5px;
2420 text-align:center;
2421 padding-left:24px;
2422 padding-right:24px;
2423 margin-bottom:-5px!important;
2424 font-family: calibri, sans-serif;
2425 text-transform:uppercase;
2426 width:268.5px;
2427 max-width:268.5px;
2428 height:25px;
2429 background-color:transparent;
2430 border-bottom:1px solid {color:border};
2431 border-left:1px solid {color:border};
2432 border-right:1px solid {color:border};
2433 line-height:25px;
2434 margin-left:-1px;
2435 margin-right:-1px;
2436 color: {color:navigation list links};
2437 font-weight:bold!important;
2438 overflow:hidden;
2439 text-shadow: 0px 0px 1px {color:navigation list links};
2440}
2441
2442
2443ul#tabs li.active {
2444 color:{color:body text};
2445}
2446
2447
2448ul#tab, ul#tabs{
2449 list-style-type:none;
2450 margin:0px;
2451 padding:0px;
2452}
2453
2454
2455ul#tab li.active {
2456 display: block;
2457}
2458
2459
2460ul#tab li {
2461 display: none;
2462}
2463
2464
2465.npcontent {
2466 margin-top:2px!important;
2467 border-top:24px solid {color:background};
2468 border-bottom:24px solid {color:background};
2469 padding-left:25px;
2470 padding-right:25px;
2471 margin-left:-25px;
2472 margin-right:-25px;
2473 overflow-y:scroll!important;
2474 height:205px;
2475 background-color:{color:background};
2476}
2477
2478
2479.nplinks {
2480 margin-top:0px!important;
2481 margin-bottom:0px!important;
2482 padding-top:0px!important;
2483 padding-bottom:0px;
2484 background-color:{color:background};
2485 width:491px;
2486}
2487
2488
2489.nplinks h4 {
2490 color:{color:headers}!important;
2491 width:433px!important;
2492 text-shadow: 0px 0px 1px {color:headers};
2493}
2494
2495
2496.nplinks a {
2497 font-family:calibri!important;
2498 font-weight:bold!important;
2499 color: {color:bold}!important;
2500 text-transform:uppercase;
2501 display:inline-block;
2502 box-sizing: border-box;
2503 width:238.7px;
2504 height:25px!important;
2505 padding-left:25px;
2506 padding-right:25px;
2507 line-height:25px;
2508 margin-left:-0px;
2509 margin-right:6px;
2510 margin-bottom:8.4px;
2511 text-align:left;
2512 border: 1px solid {color:border};
2513 font-size:9.5px;
2514 text-shadow: 0px 0px 0px {color:bold}!important;
2515}
2516
2517
2518.nplinks a:hover, .nplinks:hover {
2519 color:{color:links hover}!important;
2520 -moz-transition-duration:1.5s;
2521 -webkit-transition-duration:1.5s;
2522 -o-transition-duration:1.5s;
2523 text-shadow: 0px 0px 1px {color:links hover};
2524}
2525
2526
2527.nplinks a:last-child, .nplinks a:last-of-type {
2528 margin-right:-2px!important;
2529}
2530
2531
2532
2533
2534
2535/* CREDIT */
2536
2537
2538#credit {
2539 background-color:{color:background};
2540 border:1px solid {color:border};
2541 padding:6px 10px;
2542 z-index:999;
2543 position:absolute;
2544 bottom:44px;
2545 right:44px;
2546 width:6px;
2547 height:14px;
2548 word-wrap:break-word;
2549 font-family:calibri;
2550 overflow:hidden;
2551 -webkit-transition:all 1.5s ease;
2552 -moz-transition:all 1.5s ease;
2553 -o-transition:all 1.5s ease;
2554 transition:all 1.5s ease-in-out;
2555}
2556
2557
2558#credit a {
2559 color:{color:links};
2560 text-transform:uppercase;
2561 font-size:9.5px;
2562 text-shadow: 0px 0px 1px {color:links};
2563}
2564
2565
2566#credit:hover {
2567 width:73px;
2568}
2569
2570
2571#credit span {
2572 color:{color:bold};
2573 font-family:calibri;
2574 margin-right:10px;
2575 font-size:10.5px;
2576 text-shadow: 0px 0px 1px {color:bold};
2577}
2578
2579
2580</style>
2581</head>
2582
2583
2584
2585
2586<body>
2587
2588
2589
2590
2591
2592<!-- CONTAINER -->
2593
2594<div id="container">
2595
2596
2597
2598
2599<!-- SIDEBAR -->
2600
2601<div class="sidebar">
2602
2603{block:ifSidebarTitle}
2604<div class="sidebartitle">
2605{text:Sidebar Title}
2606</div class="sidebartitle">
2607{/block:ifSidebarTitle}
2608
2609<div class="sidebarbg">
2610<img src="{image:Sidebar Background}">
2611</div class="sidebarbg">
2612
2613
2614<div class="inner">
2615
2616<img class="sidebarimgtop" src="{image:Sidebar Image Top}" alt="Black Image" />
2617
2618
2619<div class="description">
2620
2621<b>“Gentlemen, milady ---- you will always remember this as the day you <i>almost</i> caught Captain Jack Sparrow."</b> Indie RP blog for Captain Jack Sparrow, adored by Lottie. Established on 21st August 2014, rebooted on 23rd February 2020.
2622
2623</div class="description">
2624
2625
2626<img class="sidebarimgbottom" src="{image:Sidebar Image Bottom}" alt="Black Image" />
2627
2628
2629</div class="inner">
2630
2631</div class="sidebar">
2632
2633
2634
2635
2636
2637
2638<!-- NAVIGATION: TOP -->
2639
2640
2641<div class="navigation">
2642
2643<button class="w3-bar-item w3-button" onclick="openPage('Index'); openNavi('Index'); openMuse('Index');" autofocus style="text-align:left; color:{color:button active}; text-shadow: 0px 0px 1px {color:button active};">
2644Close the popups
2645</button>
2646
2647<button class="w3-bar-item w3-button" onclick="openMuse('Inquiries')">
2648Parley
2649</button>
2650
2651<button class="w3-bar-item w3-button" onclick="openMuse('Muses')" style="text-align:right;">
2652The Navigation
2653</button>
2654
2655</div class="navigation">
2656
2657
2658
2659
2660
2661
2662
2663<!-- POSTS -->
2664
2665
2666<div id="content">
2667<div id="content2">
2668
2669
2670{block:Posts}
2671<div class="posts">
2672
2673
2674
2675
2676
2677
2678<!-- POSTS: TEXT -->
2679
2680
2681{block:Text}
2682<div id="textbody">
2683{block:Title}
2684<h1>{Title}</h1>
2685{/block:Title}
2686
2687<div id="wrap">
2688{Body}
2689</div id="wrap">
2690<div style="clear:both">
2691</div style="clear:both">
2692</div id="textbody">
2693{/block:Text}
2694
2695
2696
2697
2698
2699
2700<!-- POSTS: PHOTO/SET -->
2701
2702
2703{block:Photo}
2704<div id="psingle">
2705{LinkOpenTag}
2706
2707<img src="{PhotoURL-HighRes}">
2708{LinkCloseTag}
2709
2710</div id="psingle">
2711
2712
2713{block:Caption}
2714
2715<div id="pcaption">
2716{Caption}
2717</div id="pcaption">
2718
2719{/block:Caption}
2720
2721{/block:Photo}
2722
2723
2724
2725
2726{block:Photoset}
2727<div id="pset">
2728{Photoset}
2729</div id="pset">
2730
2731{block:Caption}
2732{Caption}
2733{/block:Caption}
2734
2735{/block:Photoset}
2736
2737
2738
2739
2740
2741
2742<!-- POSTS: QUOTE -->
2743
2744
2745{block:Quote}
2746<div id="quote">
2747"{Quote}"
2748
2749<div class="source">
2750Source: {Source}
2751</div class="source">
2752
2753</div id="quote">
2754{/block:Quote}
2755
2756
2757
2758
2759
2760
2761<!-- POSTS: LINK -->
2762
2763
2764{block:Link}
2765<div id="link">
2766
2767<a href="{URL}" {Target}>{Name} ►</a>
2768
2769</div id="link">
2770{/block:Link}
2771
2772
2773
2774
2775
2776
2777<!-- POSTS: CHAT -->
2778
2779
2780{block:Chat}
2781<div id="chat">
2782
2783{block:Lines}
2784<div id="{Alt}">
2785
2786{block:Label}<b>{Label}</b>{/block:Label} {Line}
2787
2788</div id="{Alt}">
2789{/block:Lines}
2790
2791</div id="chat">
2792{/block:Chat}
2793
2794
2795
2796
2797
2798
2799<!-- POSTS: AUDIO -->
2800
2801
2802{block:Audio}
2803<div class="audioplayer">
2804
2805{AudioPlayerWhite}
2806
2807</div class="audioplayer">
2808
2809
2810<div class="audioinfo">
2811{block:TrackName}{TrackName}{/block:TrackName} — {block:Artist}{Artist}{/block:Artist}
2812</div class="audioinfo">
2813
2814{block:Caption}
2815{Caption}
2816{/block:Caption}
2817
2818{/block:Audio}
2819
2820
2821
2822
2823
2824
2825<!-- POSTS: VIDEO -->
2826
2827
2828{block:Video}
2829<div class="video">
2830
2831{VideoEmbed-500}
2832
2833</div class="video">
2834
2835{block:Caption}
2836{Caption}
2837{/block:Caption}
2838
2839{/block:Video}
2840
2841
2842
2843
2844
2845
2846<!-- POSTS: ASK -->
2847
2848
2849{block:Answer}
2850
2851<div id="question">
2852<div id="ask">
2853
2854<b>{Asker} has come to parley:</b>
2855{Question}
2856
2857</div id="ask">
2858<div class="letterask">Q</div class="letterask">
2859
2860</div id="question">
2861
2862<div id="response">
2863<div id="wrap">{Answer}</div id="wrap">
2864
2865</div id="response">
2866
2867{/block:Answer}
2868
2869
2870
2871
2872
2873
2874
2875
2876<!-- POST INFORMATION -->
2877
2878
2879
2880{block:Date}
2881
2882{block:indexpage}
2883
2884<div class="permalink">
2885<div class="permalinkbuttons">
2886
2887<a href="{Permalink}" style="text-align:left;" title="{NoteCountWithLabel}">
2888{Month} {DayOfMonth}{DayOfMonthSuffix} / {12Hour}:{Minutes}{CapitalAmPm}</a>
2889
2890{block:RebloggedFrom}
2891<a href="{ReblogParentURL}" title="{ReblogParentName}: {ReblogParentTitle}">
2892REBLOGGED FROM / VIA
2893</a>
2894{/block:RebloggedFrom}
2895
2896<a href="{ReblogURL}" target="_blank" class="details" style="float:right; text-align:right;">
2897CLICK HERE TO REBLOG THIS POST
2898</a>
2899
2900</div class="permalinkbuttons">
2901
2902
2903{block:HasTags}
2904<div class="tags">
2905
2906{block:Tags}
2907<a href="{TagURL}">{Tag} </a>
2908{/block:Tags}
2909
2910</div class="tags">
2911{/block:HasTags}
2912
2913
2914</div class="permalink">
2915{/block:indexpage}
2916
2917
2918
2919
2920
2921
2922{block:permalinkpage}
2923<div class="permalink">
2924<div class="permalinkbuttons">
2925
2926{block:RebloggedFrom}
2927<a href="{ReblogParentName}" title="{ReblogParentName}" style="text-align:left;">
2928REBLOGGED FROM / VIA
2929</a>
2930{/block:RebloggedFrom}
2931
2932<a href="{ReblogURL}" target="_blank" class="details" style="float:right; ">
2933CLICK HERE TO REBLOG THIS POST
2934</a>
2935
2936</div class="permalinkbuttons">
2937
2938{block:HasTags}
2939<div class="tags">
2940{block:Tags}
2941
2942<a href="{TagURL}">
2943{Tag}
2944</a>
2945
2946{/block:Tags}
2947</div class="tags">
2948{/block:HasTags}
2949
2950</div class="permalink">
2951{/block:permalinkpage}
2952
2953{/block:Date}
2954
2955
2956
2957
2958
2959
2960<!-- NOTES -->
2961
2962{block:PostNotes}
2963<div id="notes">
2964
2965<div class="note">
2966{PostNotes}
2967</div class="note">
2968
2969</div id="notes">
2970{/block:PostNotes}
2971
2972
2973
2974
2975
2976
2977<!-- HIDE VIA/SOURCE IN POSTS -->
2978
2979
2980{block:ContentSource}<!-- {SourceURL}
2981{block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
2982{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
2983{/block:ContentSource}
2984
2985
2986<!-- {block:NoRebloggedFrom}
2987{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
2988{/block:NoRebloggedFrom} -->
2989
2990
2991</div class="posts">
2992{/block:Posts}
2993
2994
2995</div id="content2">
2996</div id="content">
2997
2998
2999
3000
3001
3002{block:ifBlogTitle}
3003<div class="title">
3004{text:Title}
3005</div class="title">
3006{/block:ifBlogTitle}
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016<!-- NAVIGATION: BOTTOM -->
3017
3018
3019<div class="navigationbottom">
3020<div class="pagination">
3021
3022<a href="/" title="Refresh the page" autofocus style="text-align:left; color:{color:button active}; text-shadow: 0px 0px 1px {color:button active};">RETURN TO MAIN PAGE</a>
3023
3024{block:Indexpage}
3025{block:PreviousPage}<a href="{PreviousPage}">RETURN TO LAST PAGE</a>{/block:PreviousPage}
3026{block:NextPage}<a href="{NextPage}" style="float:right; margin-right:1px; text-align:right;">PROCEED TO NEXT PAGE</a>{/block:NextPage}
3027{/block:Indexpage}
3028
3029
3030
3031{block:PermalinkPagination}
3032{block:PreviousPost}<a href="{PreviousPost}" title="Previous Post">RETURN TO LAST POST</a>{/block:PreviousPost}
3033{block:NextPost}<a href="{NextPost}" title="Next Post" style="float:right; margin-right:1px; text-align:right;">PROCEED TO NEXT POST</a>{/block:NextPost}
3034{/block:PermalinkPagination}
3035
3036
3037</div class="pagination">
3038</div class="navigationbottom">
3039
3040
3041
3042
3043<div id="Index" class="Muse; navi; page;" style="display:block">
3044
3045</div id="Index" class="Muse; navi; page;">
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061<!-- PAGE: INQUIRIES -->
3062
3063<div id="Inquiries" class="page" style="display:none;">
3064<div id="tabcontent">
3065
3066
3067<div class="npside">
3068
3069
3070<div class="sidebarbg">
3071<img src="{image:Sidebar Background}">
3072</div class="sidebarbg">
3073
3074
3075<div class="inner">
3076
3077
3078<img class="sidebarimgtop" src="{image:Sidebar Image Top}" alt="Black Image" />
3079
3080
3081<div class="description">
3082
3083<b>“Gentlemen, milady ---- you will always remember this as the day you <i>almost</i> caught Captain Jack Sparrow."</b> Indie RP blog for Captain Jack Sparrow, adored by Lottie. Established on 21st August 2014, rebooted on 23rd February 2020.
3084
3085</div class="description">
3086
3087
3088<img class="sidebarimgbottom" src="{image:Sidebar Image Bottom}" alt="Black Image" />
3089
3090
3091</div class="inner">
3092</div class="npside">
3093
3094
3095<div id="page">
3096
3097
3098<div class="npheader">
3099<img src="https://static.tumblr.com/m7qloac/qw2q4j931/guidelinesheader02.png">
3100</div class="npheader">
3101
3102
3103<div class="npnavi">
3104<div class="dropdown">
3105
3106<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
3107Inquiries / Askbox / Curiosities</button>
3108
3109</div class="dropdown">
3110</div class="npnavi">
3111
3112
3113<!-- TAB ONE -->
3114
3115<ul id="tab"><li class="active">
3116
3117<div class="npcontent">
3118
3119<iframe frameborder="0" scrolling="yes" width="465px" height="200px" src="https://www.tumblr.com/ask_form/trickstercaptain.tumblr.com" style="padding:8px;margin-top:px; background-color:transparent; border:1px solid #151515; overflow:hidden;" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]--></p>
3120
3121
3122</div class="npcontent">
3123
3124
3125
3126</div id="page">
3127
3128
3129</div id="tabcontent">
3130</div id="Inquiries" class="page">
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147<!-- NAVIGATIONAL LIST LINKS -->
3148
3149<div id="Muses" class="muse" style="display:none;">
3150
3151
3152<div class="nlist">
3153<div class="nlinks">
3154
3155
3156
3157<!-- COPY/PASTE THESE IF YOU WANT MORE LINKS -->
3158
3159<div class="nlinksbutton">Guidelines / Notes</div>
3160<div class="nlinkscontent">
3161
3162<li onclick="openPage('Codex')">
3163The Pirata Codex
3164</li>
3165
3166<li onclick="openPage('Mains')">
3167Mains / Exclusives
3168</li>
3169
3170<li onclick="openPage('Navigation')">
3171The Navigation
3172</li>
3173
3174</div class="nlinkscontent">
3175
3176
3177
3178
3179<div class="nlinksbutton1">Universes: Canon</div>
3180<div class="nlinkscontent1">
3181
3182<li onclick="openPage('CanonBio')">
3183Information: Biography
3184</li>
3185
3186<li onclick="openPage('CanonYoung')">
3187Timeline: Young
3188</li>
3189
3190<li onclick="openPage('CanonEITC')">
3191Timeline: East India Trading Company
3192</li>
3193
3194<li onclick="openPage('CanonPPMutiny')">
3195Timeline: Pre/Post-Mutiny
3196</li>
3197
3198<li onclick="openPage('CanonFilms')">
3199Timeline: Individual Films
3200</li>
3201
3202<li onclick="openPage('CanonAlternate')">
3203Timeline: Alternate(s)
3204</li>
3205
3206
3207</div class="nlinkscontent">
3208
3209
3210
3211
3212
3213
3214
3215<div class="nlinksbutton2">Universes: Modern</div>
3216<div class="nlinkscontent2">
3217
3218<li onclick="openPage('ModernBio')">
3219Information: Biography
3220</li>
3221
3222<li onclick="openPage('ModernYoung')">
3223Timeline: Young
3224</li>
3225
3226<li onclick="openPage('ModernMagic')">
3227Timeline: Magic / Supernatural
3228</li>
3229
3230<li onclick="openPage('ModernMCU')">
3231Timeline: Marvel Cinematic Universe
3232</li>
3233
3234<li onclick="openPage('ModernAlternate')">
3235Timeline: Alternate(s)
3236</li>
3237
3238
3239</div class="nlinkscontent">
3240
3241
3242
3243
3244
3245
3246<div class="nlinksbutton3">Universes: Crossover</div>
3247<div class="nlinkscontent3">
3248
3249<li onclick="openPage('CrossoverWizard')">
3250Timeline: Wizarding World
3251</li>
3252
3253<li onclick="openPage('CrossoverASOIAF')">
3254Timeline: A Song of Ice and Fire
3255</li>
3256
3257<li onclick="openPage('CrossoverVictorian')">
3258Timeline: Victorian
3259</li>
3260
3261<li onclick="openPage('CrossoverBS')">
3262Timeline: Black Sails
3263</li>
3264
3265<li onclick="openPage('CrossoverDA')">
3266Timeline: Dragon Age
3267</li>
3268
3269<li onclick="openPage('CrossoverTHG')">
3270Timeline: The Hunger Games
3271</li>
3272
3273<li onclick="openPage('CrossoverWW')">
3274Westworld
3275</li>
3276
3277</div class="nlinkscontent">
3278
3279
3280
3281
3282
3283
3284
3285<div class="nlinksbutton4">Universes: Private</div>
3286<div class="nlinkscontent4">
3287
3288<li onclick="openPage('PrivatePirateWar')">
3289Timeline: Pirate War
3290</li>
3291
3292<li onclick="openPage('PrivateSoulmate')">
3293Timeline: Soulmate AU
3294</li>
3295
3296<li onclick="openPage('PrivateApocalypse')">
3297Timeline: Apocalypse
3298</li>
3299
3300<li onclick="openPage('PrivatePearl')">
3301Timeline: Humanised Pearl
3302</li>
3303
3304</div class="nlinkscontent">
3305
3306
3307<!-- / COPY/PASTE THESE IF YOU WANT MORE LINKS -->
3308
3309
3310
3311</div class="nlinks">
3312</div class="nlist">
3313
3314</div id="Muses" class="muse">
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330<!-- PAGE: CODEX -->
3331
3332<div id="Codex" class="page" style="display:none;">
3333<div id="tabcontent">
3334
3335
3336<div class="npside">
3337
3338
3339<div class="sidebarbg">
3340<img src="{image:Sidebar Background}">
3341</div class="sidebarbg">
3342
3343
3344<div class="npsideinner">
3345
3346
3347<div class="npsideimgtop">
3348<img src="https://static.tumblr.com/m7qloac/zoLq4j95k/guidelineslefttop02.png">
3349</div class="npsideimgtop">
3350
3351
3352
3353<div class="npsideimgbottom">
3354<img src="https://static.tumblr.com/m7qloac/lmjq4j99f/guidelinesleftbottom02.png">
3355</div class="npsideimgbottom">
3356
3357
3358</div class="npsideinner">
3359</div class="npside">
3360
3361
3362<div id="page">
3363
3364
3365
3366<div class="npheader">
3367<img src="https://static.tumblr.com/m7qloac/qw2q4j931/guidelinesheader02.png">
3368</div class="npheader">
3369
3370
3371<div class="npnavi">
3372<div class="dropdown">
3373
3374<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
3375The Pirata Codex
3376</button>
3377 <div id="myDropdown" class="dropdown-content">
3378
3379
3380 </div id="myDropdown" class="dropdown-content">
3381
3382</div class="dropdown">
3383</div class="npnavi">
3384
3385
3386<!-- TAB ONE -->
3387
3388<ul id="tab"><li class="active">
3389
3390<div class="npcontent">
3391
3392
3393<h4>001. Introduction</h4>
3394
3395First things first, a couple of notes about my particular portrayal:
3396
3397<p>My portrayal of Jack draws on both movie & book canon, primarily the trilogy and Ann Crispin’s <i>The Price of Freedom</i>, the latter of which concerns Jack’s past, although I do borrow sparingly from other sources across extended canon. He is much more than the witty rogue with a fondness for rum that he is often dismissed as; I therefore ask that you please respect this and my reasons for being picky when it comes to incorporating certain ‘canon’ established in <i>Dead Men Tell No Tales</i> in particular.
3398
3399<p>I have been writing Jack on this blog for more than five years now. In that time, I have developed him far beyond his canon, and have covered a lot of ground in terms of interactions. In particular, having written a reply to many a tavern starter over the years, I can no longer guarantee that my muse will spark into life if you write me a generic greeter starter without any prior plotting beforehand. This isn’t to say that I won’t reply to one, only to point out that you may wait a while for a reply and therefore it is much better to come to me to plot out something if you’re ever unsure of the sort of starter to throw my way.
3400
3401<p>Essentially, communication is the key! And after all this time, plotted dynamics and threads are far more likely to convince Jack’s muse into sticking beyond only a few replies, so just be aware of this.
3402
3403<h4>002. Private / Selective </h4>
3404
3405This blog is private and selective, meaning that I only write with mutuals for my own state of mind. I work and have a busy life outside of tumblr which takes priority, so I cannot write with everyone. I also do sometimes practice exclusivity, although I tend to be very picky about this: any portrayal to which I am mains or exclusive is listed in that tab to the left of this page.
3406
3407<h4>003. Drama / Tumblr Politics</h4>
3408
3409I do not care to see call out posts or any other kind of drama. I will unfollow and potentially block if I see it on my dash: I am here to <i>write</i>, not to engage in tumblr politics.
3410
3411<h4>004. Shipping</h4>
3412
3413I am multiship and Jack is <i>bisexual</i>, but both mun and muse are picky when it comes to shipping. Just because Jack is promiscuous does not necessarily mean that he will emotionally invest or jump into bed with just anyone. He is, however, a huge flirt, but conversely please do not assume that this is an attempt to force a ship on you and your muse. My son just loves to turn on the charm.
3414
3415<h4>005. General Etiquette</h4>
3416
3417Usual Tumblr etiquette applies. Please don’t godmod, don’t rush me on replies as I am very slow, please make sure meme replies are transferred over to a new post etc etc. Icons were made, although not capped by me, so please do not take them.
3418
3419
3420<h4>006. Mature Content / Triggers</h4>
3421
3422NSFW may appear from time to time, as well as certain dark topics considering that Jack is a pirate and a dangerous individual. I do not have any triggers myself, but I will certainly try to tag anything particularly sensitive that may appear on this blog.
3423
3424
3425<h4>007. Following = Writing</h4>
3426
3427If we are mutuals, I absolutely want to write with you! Hitting up my IMs for plotting is likely the easiest way to get something going with me, but sending a meme or liking a starter/interaction call absolutely works too!
3428
3429
3430<h4>008. About the mun</h4>
3431
3432Lottie. Early twenties. She/hers. GMT timezone, so I live in the land of tea and the never-ending dfs sale. Mutuals are certainly welcome to ask for my discord!
3433
3434
3435<h4>009. Disclaimer / Rights</h4>
3436
3437I do not have any association with Disney, Pirates of the Caribbean, or the wonderful Johnny Depp. Any ignorant and uneducated hate towards my faceclaim will not be tolerated on my dash and, out of respect to him as a human being, as well as for my own comfort, I will not write or interact with any blog who uses Amber Heard as a faceclaim.
3438
3439
3440</div class="npcontent">
3441
3442
3443</li></ul>
3444
3445
3446</div id="page">
3447
3448
3449</div id="tabcontent">
3450</div id="Codex" class="page">
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472<!-- PAGE: MAINS -->
3473
3474<div id="Mains" class="page" style="display:none;">
3475<div id="tabcontent">
3476
3477
3478<div class="npside">
3479
3480
3481<div class="sidebarbg">
3482<img src="{image:Sidebar Background}">
3483</div class="sidebarbg">
3484
3485
3486<div class="npsideinner">
3487
3488
3489<div class="npsideimgtop">
3490<img src="https://static.tumblr.com/m7qloac/zoLq4j95k/guidelineslefttop02.png">
3491</div class="npsideimgtop">
3492
3493
3494
3495<div class="npsideimgbottom">
3496<img src="https://static.tumblr.com/m7qloac/lmjq4j99f/guidelinesleftbottom02.png">
3497</div class="npsideimgbottom">
3498
3499
3500</div class="npsideinner">
3501</div class="npside">
3502
3503
3504<div id="page">
3505
3506
3507
3508<div class="npheader">
3509<img src="https://static.tumblr.com/m7qloac/qw2q4j931/guidelinesheader02.png">
3510</div class="npheader">
3511
3512
3513<div class="npnavi">
3514<div class="dropdown">
3515
3516<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
3517Mains / Exclusives
3518</button>
3519 <div id="myDropdown" class="dropdown-content">
3520
3521
3522 </div id="myDropdown" class="dropdown-content">
3523
3524</div class="dropdown">
3525</div class="npnavi">
3526
3527
3528<!-- TAB ONE -->
3529
3530<ul id="tab"><li class="active">
3531
3532<p>All of the portrayals listed on this page are near and dear to my heart, and have been in most cases for several years. Exclusives are my one and only, and something I only tend to extend to others when there is copious plotting and a strong out of character relationship involved.</p>
3533
3534<div class="nplinks">
3535
3536<h4>Exclusives</h4>
3537
3538
3539<a href="http://empireburned.tumblr.com">
3540angelica / empireburned
3541</a>
3542
3543<a href="http://krakensdotter.tumblr.com">
3544asha greyjoy / krakensdotter
3545</a>
3546
3547<a href="http://thecodekeeper.tumblr.com">
3548edward teague / thecodekeeper
3549</a>
3550
3551<a href="http://hangtherules.tumblr.com">
3552elizabeth swann / hangtherules
3553</a>
3554
3555<a href="http://crimeblogger.tumblr.com">
3556john watson / crimeblogger
3557</a>
3558
3559<a href="http://piraticalwit.tumblr.com">
3560killian jones / piraticalwit
3561</a>
3562
3563<a href="http://empireburned.tumblr.com">
3564maria sparrow / empireburned
3565</a>
3566
3567<a href="http://scavengered.tumblr.com">
3568rey / scavengered
3569</a>
3570
3571<a href="http://nailedbats.tumblr.com">
3572steve harrington / nailedbats
3573</a>
3574
3575<a href="http://talktoten.tumblr.com">
3576tenth doctor / talktoten
3577</a>
3578</div class="nplinks">
3579
3580<p>In regards to mains, I will accept up to <strong>two per character/muse,</strong> who I will prioritise when it comes to plotting and writing. However, with these, I am still open to interacting with other portrayals.</p>
3581
3582<div class="nplinks">
3583
3584<h4>Mains</h4>
3585
3586<a href="http://empireburned.tumblr.com">
3587carina smyth / empireburned
3588</a>
3589
3590<a href="http://empireburned.tumblr.com">
3591claire fraser / empireburned
3592</a>
3593
3594<a href="http://empireburned.tumblr.com">
3595eleanor guthrie / empireburned
3596</a>
3597
3598<a href="http://khruseos.tumblr.com">
3599ezio auditore / khruseos
3600</a>
3601
3602<a href="http://saliberte.tumblr.com">
3603humanised pearl / saliberte
3604</a>
3605
3606<a href="http://thevictors.tumblr.com">
3607tia dalma / thevictors
3608</a>
3609
3610
3611</div class="nplinks">
3612
3613
3614
3615</li></ul>
3616
3617
3618</div id="page">
3619
3620
3621</div id="tabcontent">
3622</div id="Mains" class="page">
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641<!-- PAGE: NAVIGATION -->
3642
3643<div id="Navigation" class="page" style="display:none;">
3644<div id="tabcontent">
3645
3646
3647<div class="npside">
3648
3649
3650<div class="sidebarbg">
3651<img src="{image:Sidebar Background}">
3652</div class="sidebarbg">
3653
3654
3655<div class="npsideinner">
3656
3657
3658<div class="npsideimgtop">
3659<img src="https://static.tumblr.com/m7qloac/zoLq4j95k/guidelineslefttop02.png">
3660</div class="npsideimgtop">
3661
3662
3663
3664<div class="npsideimgbottom">
3665<img src="https://static.tumblr.com/m7qloac/lmjq4j99f/guidelinesleftbottom02.png">
3666</div class="npsideimgbottom">
3667
3668
3669</div class="npsideinner">
3670</div class="npside">
3671
3672
3673<div id="page">
3674
3675
3676
3677<div class="npheader">
3678<img src="https://static.tumblr.com/m7qloac/qw2q4j931/guidelinesheader02.png">
3679</div class="npheader">
3680
3681
3682<div class="npnavi">
3683<div class="dropdown">
3684
3685<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
3686General Navigation
3687</button>
3688 <div id="myDropdown" class="dropdown-content">
3689
3690
3691 </div id="myDropdown" class="dropdown-content">
3692
3693</div class="dropdown">
3694</div class="npnavi">
3695
3696
3697<!-- TAB ONE -->
3698
3699<ul id="tab"><li class="active">
3700
3701<div class="npcontent">
3702
3703
3704<div class="nplinks">
3705
3706<h4>General tags</h4>
3707
3708
3709<a href="/tagged/%26.-fly-fast-and-far-and-free-%28-musings.-%29">
3710Musings
3711</a>
3712
3713<a href="/tagged/%26.-your-words-surround-you-like-fog-and-make-you-hard-to-see-%28-character-study.-%29">
3714Character Study / About
3715</a>
3716
3717<a href="/tagged/%26.-these-clothes-do-not-flatter-you-at-all.-it-should-be-a-dress-or-nothing-%28-desires.-%29">
3718Desires
3719</a>
3720
3721<a href="/tagged/%26.-he-plays-things-closer-to-the-vest-now-%28-headcanon.-%29">
3722Headcanons
3723</a>
3724
3725<a href="/tagged/%26.-depths-few-had-ever-begun-to-glimpse-%28-meta-tag.-%29">
3726Meta
3727</a>
3728
3729<a href="/tagged/%26.-we-shall-have-a-magnificent-garden-party-and-you’re-not-invited-%28-crack.-%29">
3730Crack
3731</a>
3732
3733<a href="/tagged/%26.-the-worst-fate-a-person-can-conjure-for-himself-%28-the-locker.-%29">
3734The Locker
3735</a>
3736
3737<a href="/tagged/%26.-as-for-raising%3F-i-more-or-less-raised-meself-%28-childhood.-%29">
3738Childhood
3739</a>
3740
3741<a href="/tagged/%26.-freedom-%28-the-black-pearl.-%29">
3742The Black Pearl
3743</a>
3744
3745<a href="/tagged/%26.-drink-up-me-hearties-yo-ho-%28-music.-%29">
3746Music
3747</a>
3748
3749<a href="/tagged/%26.-not-all-treasure-is-silver-and-gold-%28-save-tag.-%29">
3750Save Tag
3751</a>
3752
3753<a href="/tagged/%26.-the-thing-you-want-most-in-this-world-%28-wishlist.-%29">
3754Wishlist
3755</a>
3756
3757<a href="/tagged/%26.-bring-me-that-horizon-%28-aesthetic.-%29">
3758Aesthetic
3759</a>
3760
3761<a href="/tagged/%26.-first-love-%28-the-sea.-%29">
3762The Sea
3763</a>
3764
3765<a href="/tagged/%26.-magic-is-among-the-most-finicky-of-sciences-%28-reference.-%29">
3766Reference
3767</a>
3768
3769<a href="/tagged/%26.-we’re-devils-and-black-sheep-and-really-bad-eggs-%28-potc.-%29">
3770POTC
3771</a>
3772
3773<a href="/tagged/%26.-we-all-know-who-the-real-captain-is-%28-psa-tag.-%29">
3774PSA tag
3775</a>
3776
3777<a href="/tagged/%26.-i’m-curious-to-know-my-worth-on-the-open-market-%28-self-promo.-%29">
3778Self promotion
3779</a>
3780
3781<a href="/tagged/%26.-it-just-so-happens-that-you-know-the-man-who-knows-the-man-who-knows-the-finest-sailors-in-all-of-tortuga-%28-promo.-%29">
3782Promotion
3783</a>
3784
3785<a href="/tagged/%26.-and-you-want-to-turn-pirate-yourself.-is-that-it%3F-%28-answered.-%29">
3786Answered
3787</a>
3788
3789<a href="/tagged/%26.-don’t-ever-insult-captain-jack-sparrow-in-front-of-me-%28-ooc.-%29">
3790Out of character
3791</a>
3792
3793<a href="/tagged/%26.-i-hadn%27t-planned-on-not-sparing-your-life-but-i%27m-willing-to-listen-to-offers-%28-meme.-%29">
3794Memes
3795</a>
3796
3797
3798
3799<h4>Character Tags</h4>
3800
3801
3802<a href="/tagged/%26.-a-lost-bird-who-never-learned-to-fly-%28-captain-jack-sparrow.-%29">
3803Captain Jack Sparrow
3804</a>
3805
3806<a href="/tagged/%26.-lizzie-%28-elizabeth-swann.-%29">
3807Elizabeth Swann
3808</a>
3809
3810<a href="/tagged/%26.-the-whelp-%28-will-turner.-%29">
3811Will Turner
3812</a>
3813
3814<a href="/tagged/%26.-commodore-%28-james-norrington.-%29">
3815James Norrington
3816</a>
3817
3818<a href="/tagged/%26.-you’re-like-a-child.-an-overgrown-angry-child-%28-cutler-beckett.-%29">
3819Cutler Beckett
3820</a>
3821
3822<a href="/tagged/%26.-shoot-him-and-cut-out-his-tongue.-and-then-shoot-his-tongue-%28-hector-barbossa.-%29">
3823Hector Barbossa
3824</a>
3825
3826<a href="/tagged/%26.-captain-calamari-%28-davy-jones.-%29">
3827Davy Jones
3828</a>
3829
3830<a href="/tagged/%26.-loyal-first-mate-%28-joshamee-gibbs.%29">
3831Joshamee Gibbs
3832</a>
3833
3834<a href="/tagged/%26.-she-wears-a-woman’s-body-the-same-way-you-would-wear-a-gown-%28-tia-dalma.-%29">
3835Tia Dalma
3836</a>
3837
3838<a href="/tagged/%26.-it’ll-be-far-worse-not-to-have-her-%28-anamaria.-%29">
3839Anamaria
3840</a>
3841
3842<a href="/tagged/%26.-well-acquainted-with-the-palm-of-their-hand-%28-giselle-%26-scarlett.-%29">
3843Giselle & Scarlett
3844</a>
3845
3846<a href="/tagged/%26.-pride-of-the-king’s-navy-you-are-%28-murtogg-%26-mullroy.-%29">
3847Murtogg & Mullroy
3848</a>
3849
3850<a href="/tagged/%26.-the-belligerent-homunculus-%28-pintel.-%29">
3851Pintel
3852</a>
3853
3854<a href="/tagged/%26.-his-friend-with-the-wooden-eye-%28-ragetti.-%29">
3855Ragetti
3856</a>
3857
3858<a href="/tagged/%26.-lie-to-me.-say-you-forgive-me-for-being-born-%28-captain-teague.-%29">
3859Captain Teague
3860</a>
3861
3862<a href="/tagged/%26.-he’ll-burn-you-down-like-wax-if-you-let-him-%28-christophe-de-rapièr.-%29">
3863Christophe de Rapièr
3864</a>
3865
3866<a href="/tagged/%26.-el-matador-del-mar-%28-captain-salazar.-%29">
3867Captain Salazar
3868</a>
3869
3870<a href="/tagged/%26.-like-the-son-i-never-had-%28-henry-turner.-%29">
3871Henry Turner
3872</a>
3873
3874<a href="/tagged/%26.-no-need-for-name-calling-%28-carina-smyth.-%29">
3875Carina Smyth
3876</a>
3877
3878<a href="/tagged/%26.-i-could-agree-with-you-but-then-we’d-both-be-wrong-%28-scrum.-%29">
3879Scrum
3880</a>
3881
3882<a href="/tagged/%26.-consummate-in-the-art-of-deception-%28-angelica.-%29">
3883Angelica
3884</a>
3885
3886<a href="/tagged/%26.-mum-%28-maria-sparrow.-%29">
3887Mum
3888</a>
3889
3890
3891<h4>Dynamics</h4>
3892
3893<a href="/tagged/%26.-dyn.-very-much-alike-%28-jack-%26-elizabeth.-%29">
3894Sparrabeth
3895</a>
3896
3897<a href="/tagged/%26.-dyn.-nigh-inseparable-we-are.-were.-have-been.-before-%28-jack-%26-tia.-%29">
3898Jack & Tia
3899</a>
3900
3901<a href="/tagged/%26.-dyn.-how-else-can-we-live-except-in-the-midst-of-ruin-%28-jack-%26-angelica.-%29">
3902Jack & Angelica
3903</a>
3904
3905<a href="/tagged/%26.-dyn.-how-many-scars-did-we-justify-because-we-loved-the-person-holding-the-knife%3F-%28-jack-%26-christophe.-%29">
3906Jack & Christophe
3907</a>
3908
3909<a href="/tagged/%26.-dyn.-don’t-do-anything-stupid-%28-jack-%26-will.-%29">
3910Jack & Will
3911</a>
3912
3913<a href="/tagged/%26.-dyn.-sometimes-things-come-back.-we’re-living-proof-you-and-me-%28-jack-%26-barbossa.-%29">
3914Jack & Barbossa
3915</a>
3916
3917<a href="/tagged/%26.-dyn.-honest-streak-%28-jack-%26-gibbs.-%29">
3918Jack & Gibbs
3919</a>
3920
3921<a href="/tagged/%26.-dyn.-a-tether-that-has-stood-the-test-of-time-%28-jack-%26-pearl.-%29">
3922Jack & Pearl
3923</a>
3924
3925<a href="/tagged/%26.-dyn.-like-islands-in-the-sea-we’re-connected-in-the-deep-%28-jack-%26-asha.-%29">
3926Jack & Asha
3927</a>
3928
3929<a href="/tagged/%26.-dyn.-you-looked-sexy-on-crimewatch-%28-jack-%26-irene.-%29">
3930Jack & Irene
3931</a>
3932
3933<a href="/tagged/%26.-dyn.-you-were-my-chaos-but-also-my-peace-%28-jack-%26-john.-%29">
3934Jack & John
3935</a>
3936
3937<a href="/tagged/%26.-dyn.-just-friends-don’t-kiss-like-this-%28-jack-squared.-%29">
3938Jack Squared
3939</a>
3940
3941<a href="">
3942Jack & Steve
3943</a>
3944
3945<a href="/tagged/%26.-dyn.-running-away-in-style-%28-jack-%26-the-tenth-doctor.-%29">
3946Jack & the Tenth Doctor
3947</a>
3948
3949<a href="/tagged/%26.-dyn.-i-believe-in-annoyed-at-first-sight-%28-jack-%26-killian.-%29">
3950Jack & Killian
3951</a>
3952
3953</div class="nplinks">
3954
3955
3956</div class="npcontent">
3957
3958
3959</li></ul>
3960
3961
3962</div id="page">
3963
3964
3965</div id="tabcontent">
3966</div id="Navigation" class="page">
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986<!-- PAGE: CANONBIO -->
3987
3988<div id="CanonBio" class="page" style="display:none;">
3989<div id="tabcontent">
3990
3991
3992<div class="npside">
3993
3994
3995<div class="sidebarbg">
3996<img src="{image:Sidebar Background}">
3997</div class="sidebarbg">
3998
3999
4000<div class="npsideinner">
4001
4002
4003<div class="npsideimgtop">
4004<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
4005</div class="npsideimgtop">
4006
4007
4008
4009<div class="npsideimgbottom">
4010<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
4011</div class="npsideimgbottom">
4012
4013
4014
4015</div class="npsideinner">
4016</div class="npside">
4017
4018
4019<div id="page">
4020
4021
4022
4023<div class="npheader">
4024<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
4025</div class="npheader">
4026
4027
4028<div class="npnavi">
4029<div class="dropdown">
4030
4031<button onclick="myFunction()" class="dropbtn">
4032Click for links
4033</button>
4034 <div id="myDropdown" class="dropdown-content">
4035
4036
4037<ul id="tabs">
4038<li style="text-align:left;" autofocus>Biography</li>
4039<li style="text-align:right;">Timeline</li>
4040<li style="text-align:left;">Important Headcanons/Meta</li>
4041</ul id="tabs">
4042
4043
4044 </div id="myDropdown" class="dropdown-content">
4045
4046</div class="dropdown">
4047</div class="npnavi">
4048
4049
4050<!-- TAB ONE -->
4051
4052<ul id="tab">
4053<li class="active">
4054
4055<div class="npcontent">
4056
4057<h4>Basic information</h4>
4058
4059
4060<strong>FULL NAME:</strong> Captain Jack Sparrow <br />
4061<strong>NICKNAME(S):</strong> Jackie, Jacky boy, Witty Jack, mi corazón, Captain Looby, Uncle Jack, little bird <br />
4062<strong>ALIAS(ES):</strong> Mister / Justice Smith <br />
4063<strong>OCCUPATION:</strong> Pirate / Captain of the Black Pearl / Pirate Lord of the Caribbean <br />
4064<strong>AGE:</strong> 38 ( post AWE / main verse ) <br />
4065<strong>SEXUAL ORIENTATION:</strong> Bisexual <br />
4066<strong>ROMANTIC ORIENTATION:</strong> Demiromantic <br />
4067<strong>DATE OF BIRTH:</strong> 6th August 1704 <br />
4068<strong>NATIONALITY:</strong> English <br />
4069<strong>RELIGION:</strong> Agnostic
4070
4071<h4>PHYSICAL INFORMATION</h4>
4072
4073<p><strong>HEIGHT:</strong> 5'10" <br />
4074<strong>EYE COLOUR:</strong> Brown <br />
4075<strong>HAIR COLOUR:</strong> Black <br />
4076<strong>DOMINANT HAND:</strong> Right, but somewhat ambidextrous <br />
4077<strong>DISTINGUISHING FEATURES:</strong> High cheekbones, mane of hair, large, kohl-rimmed eyes <br />
4078<strong>TATTOO(S):</strong> Sparrow flying over stylised waves on his right forearm, ‘mi corazón’ on the left hand side of his chest, the desiderata poem on his back <br />
4079<strong>SCAR(S):</strong> ‘P’ brand on his right wrist/forearm, two powder burns on the right hand side of his chest, extensive burns along his left arm, scar through his right eyebrow, other nicks and scars scattered across his torso<br />
4080<strong>PIERCING(S):</strong> Both ears <br />
4081
4082<h4>BACKGROUND INFORMATION</h4>
4083
4084<strong>HOMETOWN:</strong> Shipwreck Cove <br />
4085<strong>CURRENT RESIDENCE:</strong> The Black Pearl, Tortuga, at sea <br />
4086<strong>LANGUAGE(S):</strong> English, Spanish, French, along with some Latin, Mandarin & others <br />
4087<strong>PARENTS:</strong> Edward Teague & Maria Sparrow <i>( deceased )</i><br />
4088<strong>SIBLING(S):</strong> None <i>( Isobel Sparrow in an AU )</i> <br />
4089<strong>EXTENDED FAMILY:</strong> Uncle Jack <i>( Paternal Uncle )</i>, Henry Turner <i>( Stepson / Surrogate Son )</i>, Bartholomew <i>( Paternal Grandfather )</i>, Anne Teague <i>( Paternal Grandmother )</i> <br />
4090<strong>SIGNIFICANT OTHER:</strong> Multiple, verse dependent <br />
4091<strong>CHILD(REN):</strong> Verse dependent; Emma, Jacob & Lily Swann Sparrow <br />
4092<strong>PET(S):</strong> Tim <i>( Dog with Keys )</i>, the animals on board the Pearl, including Cotton’s Parrot and, begrudgingly, Jack the Monkey <br />
4093<strong>FRIENDS / ALLIES:</strong> Joshamee Gibbs, Will Turner, Elizabeth Swann, Marty, Cotton, Anamaria, Scrum, Tia Dalma, Bootstrap Bill Turner, Carina Smyth, John Watson, Asha Greyjoy, Tenth Doctor <br />
4094<strong>ENEMIES / ANIMOSITIES:</strong> Cutler Beckett, Davy Jones, Edward Teach, Ian Mercer, the Royal Navy, the East India Trading Company, Sao Feng, Hector Barbossa, the cursed crew, James Norrington, Christophe-Julien de Rapièr, Armando Salazar
4095
4096<h4>PERSONALITY INFORMATION</h4>
4097
4098<strong>POSITIVE TRAITS:</strong> Independent, charming, open-minded, unprejudiced, intelligent, perceptive, hard-working, ambitious, well-read, merciful, witty, capable of gentleness & selflessness, flirtatious, individualistic, opinionated, charismatic, resilient, adaptable, flamboyant <br />
4099<strong>FLAWS:</strong> Stubborn, manipulative, perfectionistic, emotionally stunted, self-serving, reckless, spiteful, petty, cynical, untrustworthy, proud, distrustful, paranoid, egocentric, obsessive, unreliable, chaotic, unpredictable, moody, sometimes melancholic <br />
4100<strong>LIKES:</strong> Freedom, sailing, trouble-making, gambling, reading, rum, risk-taking, swimming <br />
4101<strong>DISLIKES:</strong> Stupidity, ignorance, injustice, cruelty, complacency, staying in one place <br />
4102<strong>FEARS:</strong> Not being good enough, loneliness, abandonment, not being remembered, death, failure, fire <br />
4103<strong>SKILLS:</strong> Navigation, cartography, sailing, fencing, using a pistol/musket, reading people, improvising, learning languages, disguise, leadership <br />
4104
4105<h4>VICES + HABITS</h4>
4106
4107<strong>SMOKES?</strong> No <br />
4108<strong>DRINKS?</strong> Yes <br />
4109<strong>DRUGS?</strong> Occasional recreational use <br />
4110<strong>SELF-DESTRUCTIVE?</strong> Yes <br />
4111
4112<h4>MISCELLANEOUS INFORMATION</h4>
4113
4114<strong>HOUSE:</strong> Slytherin <br />
4115<strong>ZODIAC:</strong> Leo <br />
4116<strong>VICE:</strong> All of them at one point or another <br />
4117<strong>VIRTUE:</strong> Cricket noises <br />
4118<strong>ELEMENT:</strong> Fire & water <br />
4119<strong>ALIGNMENT:</strong> Chaotic Neutral <br />
4120<strong>MBTI:</strong> ENTP <br />
4121
4122<h4>BIOGRAPHY</h4>
4123
4124<blockquote><i>❝ I grew up here and there, love. My first memory is of climbing up the ratlines to the yardarm and seeing the ocean, all spread out. As for raising… I more or less raised meself. ❞</i></blockquote>
4125
4126<p>The Indian Ocean. 1704. A storm is raging out to sea, and as it calmed around the Misty Lady, the first cries of a baby sparrow could be heard by the exhausted, rain-sodden crew. His mother: a lady of education and breeding, fled from the slave plantation owned by her father both in search of adventure, and to avoid the prospect of an arranged marriage. His father: one of the most notorious pirate captains to sail these waters, his harshness tempered by the woman who taught him how to love.</p>
4127
4128<p>The arrival of a child into their lives created a fissure that would never heal between them: a storm of their own, a human life in need of love and stability in a life of anything but. The young Jack Sparrow was shielded from the brunt of the tension, however, by his mother, spending the first seven years of his childhood in relative happiness. He was not immediately a pirate, spending time in more legitimate ports as Captain Teague took up a privateering contract, and even when he was tempted back into more dishonest means of making a living, Jack did not know true loneliness and pain until his mother died of an illness when he was seven years old.</p>
4129
4130<p>On that day, he all but lost both parents. A year was spent in the company of his brutal grandmother, abandoned by everyone, before he was taken on as a cabin boy on Teague’s ship. Father became an all but forbidden word: it was captain and protégé, though Jack never felt good enough to live up to the latter. Still, he learned all he could, growing up wild and street savvy in Shipwreck Cove between voyages, quickly realising that his true strength resided in his wits, not his fists. He paid a Portuguese master of the blade to teach him swordplay, and perfected his aim with the help of abandoned, empty rum bottles from the stores of one of the island’s many taverns.</p>
4131
4132<p>Making a name for himself was not something that would happen here, stuck both in Edward Teague’s shadow and the scrutiny of his gaze. But when he read a passage of the Pirate’s Code regarding freedom aged fourteen and stowed on a ship away from Shipwreck, he was quickly dragged back to a place that was quickly becoming a prison. One ( seemingly ) good thing came of it though: a meeting with a dashing French captain during Jack’s adolescence: Christophe-Julien de Rapièr. A man who Jack came to idolise, and one of the few friends he had.</p>
4133
4134<p>Jack had resolved to leave with the older man’s crew on numerous occasions, but was thwarted at every turn by Teague and his apparent efforts to keep him where he was, something which only served to greater infuriate him. Even in the face of a growing threat to the Brethren: rogue pirates, those who refuse to follow the Pirate Codex and slaughtered the crews of the ships they took as prizes, before burning the evidence. With their presence in the Caribbean came a greater threat from the navies dedicated to hunting pirates down, and Teague, along with the Pirate Lords had put themselves in charge of dealing with them.</p>
4135
4136<p>It was during one of these rogue hunting missions that the Brethren came into contact with Armando Salazar, a Spanish naval captain intent on seeing all pirates rid from the West Indies. Serving on Troudabour, Teague’s ship, it was Jack’s ingenuity that won them the day – winning him some respect among his peers, but only serving as further proof that little would change while he was unable to escape the Keeper of the Code.</p>
4137
4138<p>Shipwreck Cove welcomed Hector Barbossa for the first time, a victim of a rogue attack on his ship, and another new visitor: the Lady Esmeralda, granddaughter to Pirate Lord of the Caribbean Don Rafael. Jack was captivated. But as the two grew closer, Christophe began to interfere with the chasteness of their meetings, and Jack began to get closer to the truth of the rogues’ whereabouts: traitors in Shipwreck themselves, members of the very Court who proclaimed to follow the Code.</p>
4139
4140<p>After summoning Davy Jones himself, the traitors names became clear – but as Christophe de Rapièr was named, Jack’s outrage at what could only be a false accusation was inflamed. He resolved to break his innocent friend out of gaol and help him escape, but as soon as he’d unlocked the cell, the Frenchman’s true nature was revealed. Pirates began to riot as the rest of the rogue crews were freed, and before Jack had a chance to do anything, he was knocked out and pressganged on board the man’s ship.</p>
4141
4142<p>He had few options now. Returning to Shipwreck would carry a death sentence for breaking the Code and turning his back on his very own heritage and, having not been given a chance to sign the articles of Christophe’s ship, Jack could expect no help were he to be wounded in battle. So, with the aid of a fellow conscriptee, Robby Greene, Jack escaped the ship with enough supplies to get the two new friends to shore, and they both signed onto the East India Trading Company.</p>
4143
4144<blockquote><i>❝ As long as he stayed within the letter of the law, and didn’t bend the rules too much, he’d never again have to fear mounting a scaffold to the sound of a drumbeat, then feeling the noose tighten around his neck. ❞</i></blockquote>
4145
4146<p>Five years passed, and in that time Jack finally found a place where his merits were recognised. Stifled as he was in the dress and manner of an honest merchant sailor, Jack rose through the ranks to the role of first mate – and, after a chance reunion with Esmeralda, his first love – was handed an opportunity to vie for the position of captain. His new employer in West Africa granted it to him, Cutler Beckett, and so Jack became the commander of a charming, if weather-beaten brig: the Wicked Wench. It was love at first sight.</p>
4147
4148<p>The two began a successful partnership working to transport material cargo around the Triangle for Beckett, and are enlisted for a venture of particular interest. The lost island of Kerma was said to contain a trove of treasure within its labyrinth, recorded in a book that both Jack and Cutler had read avidly as younger men. With one of the Zerzurans in his custody, Beckett requested that Jack earn her trust, and get her to lead him to the island ready to hand over the coordinates.</p>
4149
4150<p>As the venture wore on, confronted by the people of Zerzura and the vulnerabilities of their magical island ( as well as a final, fateful confrontation with the very Frenchman who had betrayed him ), Jack began to doubt the motives of Beckett and the company behind him. Taking his share of the treasure from the labyrinth for helping the captured Zerzuran, the lost princess of the island, return home, Jack refused to divulge the bearings. Covering his tracks well, Beckett was unable to prove his employee’s dishonesty, and so set about teaching him a lesson for his disobedience.</p>
4151
4152<p>Having previously objected to getting involved in the Atlantic slave trade, Beckett offered him an ultimatum: transport these slaves for me and you can purchase the Wench for just one shilling. Refusing on principle, Jack was then told that to resign his position would mean he’d owe money for lost cargo due to pirate attacks and other misfortunes that had befallen him during his voyages for the company.</p>
4153
4154<p>He had no choice but to accept.</p>
4155
4156<blockquote><i>❝ “And what is it that I want, Jack?” Beckett asked, sounding genuinely puzzled, as though he really didn’t know.<br /> Jack looked at him. “Fear. Love. Respect. None of which you will get from me.” ❞</i></blockquote>
4157
4158<p>Days into the slave voyage, roaming his own ship like a wraith, Jack decided to renege on his agreement. He took the people on his ship to Zerzura, whose people agree to offer them asylum and a safe place away from those who would see them recaptured. But as he made for his escape, intending to sail for Port Royal and release any unwilling sailors there, before going back on the account, the Wench is captured by Beckett’s forces. </p>
4159
4160<p>Imprisoned along with Robby for nigh on a month, Jack was eventually taken on board an EITC ship out to sea, only to see his own ship moored opposite. Branding his former employee a pirate wasn’t enough: Beckett then saw to it that the vessel Jack so loved was set aflame, and left to sink beneath the waves.</p>
4161
4162<p>Jack broke free of his captors and desperately tried to save her, but ended up suck inside of his own cabin, suffocating as the ship sank into the depths. Stuck between life and death, Jack did the only thing he could think of, and summoned Davy Jones, offering him an ultimatum of his own. His ship, his life and his freedom for thirteen years, in exchange for his immortal soul.</p>
4163
4164<p>True to his word, the Wench was restored to her former glory, albeit charred and scarred like her captain. Inspired by the words of his former friend Robby, who he had urged to save himself during their final confrontation with Beckett, Jack rechristened her the Black Pearl, and had her hull painted black to hide the scorch marks. Never again would he serve a king or company or empire. True freedom was in the pirate’s life and, with both rogue pirates he’d previously freed dead, he could make a plea for a pardon from the Brethren and finally create a legend worth telling stories about.</p>
4165
4166<blockquote><i>❝ He plays things closer to the vest now. And a hard-learned lesson it was. See, three days out on the venture, the first mate comes to him and says everything’s an equal share. That should mean the location of the treasure, too. So, Jack gives up the bearings. That night, there was a mutiny. They marooned Jack on an island and left him to die, but not before he’d gone mad with the heat. ❞</i></blockquote>
4167
4168<p>Two years into his newly discovered freedom, Jack Sparrow suffered the cruel hand of betrayal again, this time by Hector Barbossa as the two set out for the Aztec gold believed to be contained on the Isla de Muerta. Given a pistol with one shot meant to put him out of his misery, Jack languished for three days on a deserted island before salvation arrived in the form of rumrunners, using the island as a cache from which to smuggle alcohol into legitimate ports. Jack struck a bargain for passage off of his place of abandonment, offering the only thing he had left to give: service as an able hand before the mast.</p>
4169
4170<p>After weeks of smuggling rum and paying back his due to the rumrunners, Jack is left in Tortuga with vengeance in his heart. However, with his mutinous first mate and the Black Pearl unattainable, beginning a ten year campaign of terror across the West Indies, the help of a new friend, Joshamee Gibbs, ensured that Jack did not forget to live. He travelled the world, captaining multiple ships of his own, and made a name for himself before a spurned marriage proposal ( or two ) led him on a stolen dory to Port Royal, setting into a motion a series of events that would give him the leverage needed to gain his ship back.</p>
4171
4172<p>But not before tragedy struck, and the position of Pirate Lord of the Caribbean passed from the late Lady Esmeralda, Doña Pirata, to Jack.</p>
4173
4174<p>With the help of Governor’s daughter Elizabeth Swann and the blacksmith Will Turner, the curse set upon Barbossa and his mutinous crew when they arrived at the Isla de Muerta is lifted, and justice is served. Escaping from his very own hanging, Jack is reunited with the ship he gave up his soul for, roughly a year before the terms of his agreement with Davy Jones were due to run out.</p>
4175
4176<p>The subsequent year was spent chasing a fantasy: from revisiting the Isla de Muerta only to find that the treasure had been reclaimed by the sea, to being chased across the Atlantic and almost through a hurricane by an enraged James Norrington, Jack’s crew went from one misfortune to the other. With discontent growing, Jack feared another mutiny would soon be on his hands – but a need to find a way out of the debt that he would soon owe led him to Constantinople.</p>
4177
4178<p>Inside one of their most notorious prisons supposedly held the answer to Jack’s prayers: a man who had survived an encounter with the Flying Dutchman, or so the stories said. Breaking into the gaol, Jack gained some of the information he sought, but during a botched break-out attempt he became the only survivor. Frustrated, and still no closer to actually leveraging his way out of his pact, it was that night that he received an emissary from Jones himself: none other than Bootstrap Bill Turner, the one man to stand up for him after the mutiny more than a decade before.</p>
4179
4180<p>With the black spot for his trouble, a visceral symbol that Jones had marked him for death, so began a frantic search for the dead man’s chest – and in it, the heart of Davy Jones, cut out of his body after suffering a betrayal from the sea goddess, Calypso. But with Jones’ re-emergence also came that of another old adversary: Cutler Beckett, now a lord of the realm and intent on controlling the seas for himself.</p>
4181
4182<p>One Judas kiss later, and Jack finally had to face what he had feared all along: Davy Jones’ Locker, a living purgatory, designed to recreate the deepest fear of the man contained in it. For Jack, that meant a vast desert, stretching on forever, and for months he languished there, with naught but himself and his demons for company.</p>
4183
4184<blockquote><i>❝ No, mate. I’m free forever. Free to sail the seas beyond the edges of the map. Free from death itself. ❞ </i></blockquote>
4185
4186<p>Haunted from his time in the Locker, and determined not to end up there again once his rescue arrives, Jack resolves that there is only one way forward from here: to stab the heart of Davy Jones himself, taking his place as Captain of the Dutchman and sailing the seas forever. It takes a moment’s hesitation, during the height of the struggle for the Brethren to assert their freedom over Lord Beckett and the forces of the East India Trading Company, for Davy Jones’ blade to pierce Will Turner’s chest and change Jack’s mind. Making Will the new Captain of the Dutchman, his actions separate the two lovers but spare their lives, leaving him – for the first time since she was rechristened – with his Black Pearl in his possession and unburdened by a debt.<strong>*</strong></p>
4187
4188<p>Once again losing the Pearl to Barbossa, Jack spends the subsequent years chasing both her and his next shot at immortality, the Fountain of Youth. In the meantime, he regularly visits Shipwreck Cove, bridging boundaries and rekindling a friendship with Elizabeth and her son, Henry. His quest for the Fountain culminates when he encounters Angelica, an old flame who informs him of her next con: tricking the famed Blackbeard into believing that she was his daughter. Knowing that Jack had learned the whereabouts of the Fountain, sought after by Teach to combat a prophecy told by one of his crew, Angelica coerces him into helping her – and once again Jack is forced into a position to give up the immortality he sought.</p>
4189
4190<p>However, his desire for eternal youth soon comes back to bite him. As the years pass following his venture to the Fountain, bottled Pearl in his possession ( but without the means to release her back into her true form ), his aging slows. Jack even begins to wonder whether he truly has become immortal, whether the waters of the Fountain have rubbed off on him somehow… but, having reached the peak of his legendary status, cemented as a figure set to go down in the history books, there is only one way to go from there and that is down.</p>
4191
4192<p>A curse, set upon him in envy, impacts his ability to free his beloved ship, and sends him into a self-destructive spiral of misfortune after misfortune, reawakening past trauma and leading him to his very lowest point since the Locker. Losing their fleet of bottled ships, Jack and the few remaining loyal members of his crew are forced to captain the pitiful Dying Gull to the island of Saint Martin, where the skiff is beached and leaves them stranded.</p>
4193
4194<p>Jack has one last ditch plan to save them, and it involves the seduction of the Governor’s wife, Frances Dix, and an ambitious bank robbery that would give them the funds to refit theDying Gull and get back to sea. But it ends in failure. His crew storm off in a huff, and Jack finally hits rock bottom. The curse inflicted upon him then sets about its crowning glory, forcing Jack to betray the compass he owns and release an imprisoned evil upon the seas, taking command of the dead…</p>
4195
4196<h4>extra notes:</h4>
4197<strong>*</strong>Default point of my main verse. Unless specified otherwise all interactions will take place immediately post-At World's End, <i>with</i> the Black Pearl in Jack's possession.</p>
4198
4199
4200</div class="npcontent">
4201
4202</li>
4203
4204
4205
4206
4207
4208
4209
4210<li>
4211
4212<div class="npcontent">
4213
4214<h4>TIMELINE</h4>
4215
4216<strong>NOTE:</strong> This is not the definitive, canon timeline for the movies ( that was shot to hell the moment DMTNT came out ), but purely my own version of events that I use to make sense of Jack’s winding, twisting canon and my own portrayal. I purely use this as a guide; there is absolutely no expectation for any of my partners to adhere to it.
4217
4218
4219<p><strong>1704, 6th August -</strong> Jack was born on board the Misty Lady, during a typhoon, somewhere out in the Indian Ocean.
4220
4221<p><strong>1711 -</strong> the death of Jack’s mother, <a href="http://empireburned.tumblr.com">Maria Sparrow</a>, after a short illness.
4222
4223<p><strong>1722 -</strong> Captain Salazar is trapped in the Devil’s Triangle by Jack, now aged eighteen. Jack is <strong>not</strong> on the <i>Wicked Wench</i>, but a ship sailing on behalf of the Brethren Court who had partially formed in order to fight this Spanish pirate hunter. Upon returning to Shipwreck Cove, Jack returned to serving on board Captain Teague’s new ship, <i>Troubadour</i>.
4224
4225<p><strong>1724 -</strong> events of the Shipwreck chapters of <i>The Price of Freedom</i>. Jack meets Esmeralda and Don Rafael, and is betrayed by Christophe, forcing him to join the East India Trading Company with fellow crewman, Robby Greene.
4226
4227<p><strong>1729 -</strong> events of <i>The Price of Freedom</i>. Jack is given his first command, the <i>Wicked Wench</i>, sails her for nigh on a year until he refuses to give up the coordinates of the island of Zerzura. After being coerced into transporting slaves, he frees them and invokes the wrath of Cutler Beckett. He ends up branded a pirate and his ship set on fire. While trying to save her, Jack is dragged down along with his vessel, striking a pact with Davy Jones to raise her again for thirteen years captaining her. He returns to Shipwreck Cove, clearing his name in the eyes of the Brethren after the deaths of the two rogues at his hand, and returns to the account.
4228
4229<p><strong>1731 -</strong> mutiny aboard the <i>Black Pearl</i>. Jack is betrayed by first mate, Hector Barbossa, and abandoned on a spit of land to die. After three days and heatstroke, Jack escapes with the aid of rumrunners, now with revenge in his heart.
4230
4231<p><strong>1731/2 -</strong> the death of Esmeralda Maria Consuela Anna de Sevilla. The position of Pirate Lord of the Caribbean, and her piece of eight, pass to Jack.
4232
4233<p><strong>1733-1740 -</strong> Jack at some point meets <a href="http://empireburned.tumblr.com">Angelica</a>, disguised in a Spanish convent and in search of the church’s fortune. Realising she needs Jack’s help, she confides her plan in him, the two make off with the money and begin a lucrative partnership that results in an affair. It is promptly ended when Jack makes off with the gold and leaves Angelica behind. The two meet sporadically over the following years, their relationship tumultuous.
4234
4235<p><strong>1741 -</strong> events of The Curse of the Black Pearl. Ten years have passed since the mutiny, but upon meeting the son of Bootstrap Bill Turner, whose blood is needed to lift the curse upon the men of the Black Pearl, Jack plans to use him as leverage to finally get his ship back and enact revenge on the first mate who took it from him.
4236
4237<p><strong>1742 -</strong> events of Dead Man’s Chest. Jack’s thirteen year debt with Davy Jones has finally run out, and it’s time to pay. In order to avoid damnation, Jack begins a desperate search for the Captain’s chest, containing his heart and valuable leverage to save him and his ship from the kraken.
4238
4239<p><strong>1742/3 -</strong> events of At World’s End. Jack is rescued from the Locker and the Brethren Court is convened in order to fight the War Against Piracy, culminating in the release of Calypso and the battle of the maelstrom, where both Davy Jones and Cutler Beckett were killed, and Will Turner assumed the role of Captain of the <i>Flying Dutchman</i>.
4240
4241<p><strong>1742/3 -</strong> post-AWE ; Jack meets Margaret Smyth.
4242
4243<p><strong>1745 -</strong> Jack meets the young Henry Turner for the first time after arriving in Shipwreck Cove. Developing a fondness for the boy during his visit, over the years Jack checks in every now and again, and comes to be known by the lad as Uncle Jack.
4244
4245<p><strong>1750 -</strong> events of On Stranger Tides. After more than seven years of searching for the Fountain of Youth, Jack ends up in London to rescue first mate Gibbs from hanging in his name. From there, he ends up coerced onto Blackbeard’s ship, forced to lead an expedition to the Fountain and meeting up with Barbossa again along the way. While not tasting the waters of the Fountain himself, its youthful effects rub off on him, slowing his age process and making Jack wonder, later down the line, whether he truly is immortal.
4246
4247<p><strong>roughly 1751-4 -</strong> Jack is cursed by Shansa as a pact made with Barbossa – whether mistakenly, or not, Jack is included in the list of Barbossa’s enemies – and his luck slowly begins to deteriorate.
4248
4249<p><strong>1762 -</strong> Jack sails the <i>Dying Gull</i> to Saint Martin, where it is beached and he and his crew are stranded on the island. Several months pass until the crew plot a bank robbery in order to fund restorations to the ship so they can make it off the island, aiming for Tortuga or Shipwreck. It is here that he begins an affair with Francis Dix. events of Dead Men Tell No Tales.</p>
4250
4251</div class="npcontent">
4252
4253</li>
4254
4255
4256
4257
4258
4259
4260<li>
4261
4262<div class="npcontent">
4263
4264Text for meta
4265
4266<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4267
4268</div class="npcontent">
4269
4270</li>
4271
4272
4273</ul id="tab">
4274
4275
4276
4277</div id="page">
4278
4279
4280</div id="tabcontent">
4281</div id="CanonBio" class="page">
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297<!-- PAGE: CANONYOUNG -->
4298
4299<div id="CanonYoung" class="page" style="display:none;">
4300<div id="tabcontent">
4301
4302
4303<div class="npside">
4304
4305
4306<div class="sidebarbg">
4307<img src="{image:Sidebar Background}">
4308</div class="sidebarbg">
4309
4310
4311<div class="npsideinner">
4312
4313
4314<div class="npsideimgtop">
4315<img src="https://static.tumblr.com/m7qloac/LxDq4mqqa/youngside03.png">
4316</div class="npsideimgtop">
4317
4318
4319
4320<div class="npsideimgbottom">
4321<img src="https://static.tumblr.com/m7qloac/bGrq4mqsw/youngside04.png">
4322</div class="npsideimgbottom">
4323
4324
4325</div class="npsideinner">
4326</div class="npside">
4327
4328
4329<div id="page">
4330
4331
4332
4333<div class="npheader">
4334<img src="https://static.tumblr.com/m7qloac/e45q4mqou/youngheader02.png">
4335</div class="npheader">
4336
4337
4338<div class="npnavi">
4339<div class="dropdown">
4340
4341<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
4342Timeline: Young
4343</button>
4344 <div id="myDropdown" class="dropdown-content">
4345
4346
4347 </div id="myDropdown" class="dropdown-content">
4348
4349</div class="dropdown">
4350</div class="npnavi">
4351
4352
4353<!-- TAB ONE -->
4354
4355<ul id="tab"><li class="active">
4356
4357<div class="npcontent">
4358
4359<h4>VERSE SUMMARY</h4>
4360
4361<p>la la la </p>
4362
4363
4364<div class="nplinks">
4365
4366<h4>Navigation</h4>
4367
4368<a href="/tagged/%26.-verse.-young-protégé-%28-canon-%2F-young.-%29">
4369Verse Tag
4370</a>
4371
4372<a href="https://www.pinterest.co.uk/summerspride1/ch-captain-jack-sparrow/verse-youth-tpof/">
4373Pinterest Board
4374</a>
4375
4376</div class="nplinks">
4377
4378
4379
4380
4381</div class="npcontent">
4382
4383
4384</li></ul>
4385
4386
4387</div id="page">
4388
4389
4390</div id="tabcontent">
4391</div id="CanonYoung" class="page">
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409<!-- PAGE: CANONEITC -->
4410
4411<div id="CanonEITC" class="page" style="display:none;">
4412<div id="tabcontent">
4413
4414
4415<div class="npside">
4416
4417
4418<div class="sidebarbg">
4419<img src="{image:Sidebar Background}">
4420</div class="sidebarbg">
4421
4422
4423<div class="npsideinner">
4424
4425
4426<div class="npsideimgtop">
4427<img src="https://static.tumblr.com/m7qloac/Q6lq4mows/eitcleft04.png">
4428</div class="npsideimgtop">
4429
4430
4431
4432<div class="npsideimgbottom">
4433<img src="https://static.tumblr.com/m7qloac/bczq4mpsf/eitcleft07.png">
4434</div class="npsideimgbottom">
4435
4436
4437</div class="npsideinner">
4438</div class="npside">
4439
4440
4441<div id="page">
4442
4443
4444
4445<div class="npheader">
4446<img src="https://static.tumblr.com/m7qloac/Vtiq4mofw/eitcheader.png">
4447</div class="npheader">
4448
4449
4450<div class="npnavi">
4451<div class="dropdown">
4452
4453<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
4454Timeline: East India Trading Company
4455</button>
4456 <div id="myDropdown" class="dropdown-content">
4457
4458
4459 </div id="myDropdown" class="dropdown-content">
4460
4461</div class="dropdown">
4462</div class="npnavi">
4463
4464
4465<!-- TAB ONE -->
4466
4467<ul id="tab"><li class="active">
4468
4469<div class="npcontent">
4470
4471
4472<h4>VERSE SUMMARY</h4>
4473
4474<p>la la la </p>
4475
4476
4477<div class="nplinks">
4478
4479<h4>Navigation</h4>
4480
4481<a href="/tagged/%26.-verse.-five-sodding-years-of-work-%28-eitc.-%29">
4482Verse Tag
4483</a>
4484
4485<a href="https://www.pinterest.co.uk/summerspride1/ch-captain-jack-sparrow/verse-merchant-captain-tpof/">
4486Pinterest Board
4487</a>
4488
4489</div class="nplinks">
4490
4491
4492
4493
4494
4495
4496</div class="npcontent">
4497
4498
4499</li></ul>
4500
4501
4502</div id="page">
4503
4504
4505</div id="tabcontent">
4506</div id="CanonEITC" class="page">
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524<!-- PAGE: CanonPPMutiny -->
4525
4526<div id="CanonPPMutiny" class="page" style="display:none;">
4527<div id="tabcontent">
4528
4529
4530<div class="npside">
4531
4532
4533<div class="sidebarbg">
4534<img src="{image:Sidebar Background}">
4535</div class="sidebarbg">
4536
4537
4538<div class="npsideinner">
4539
4540
4541<div class="npsideimgtop">
4542<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
4543</div class="npsideimgtop">
4544
4545
4546
4547<div class="npsideimgbottom">
4548<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
4549</div class="npsideimgbottom">
4550
4551
4552
4553</div class="npsideinner">
4554</div class="npside">
4555
4556
4557<div id="page">
4558
4559
4560
4561<div class="npheader">
4562<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
4563</div class="npheader">
4564
4565
4566<div class="npnavi">
4567<div class="dropdown">
4568
4569<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
4570Timeline: Pre-Mutiny
4571</button>
4572 <div id="myDropdown" class="dropdown-content">
4573
4574
4575 </div id="myDropdown" class="dropdown-content">
4576
4577</div class="dropdown">
4578</div class="npnavi">
4579
4580
4581<!-- TAB ONE -->
4582
4583<ul id="tab"><li class="active">
4584
4585<div class="npcontent">
4586
4587
4588<h4>PRE MUTINY</h4>
4589
4590<p>la la la </p>
4591
4592<h4>POST MUTINY</h4>
4593
4594<p>la la la </p>
4595
4596
4597<div class="nplinks">
4598
4599<h4>Navigation</h4>
4600
4601<a href="/tagged/%26.-verse.-freedom-isn’t-free.-it-comes-with-the-highest-of-costs-%28-pre-mutiny.-%29">
4602Pre Mutiny Verse Tag
4603</a>
4604
4605<a href="/tagged/%26.-verse.-a-hard-learned-lesson-it-was-%28-post-mutiny.-%29">
4606Post Mutiny Verse Tag
4607</a>
4608
4609</div class="nplinks">
4610
4611
4612
4613
4614
4615
4616</div class="npcontent">
4617
4618
4619</li></ul>
4620
4621
4622</div id="page">
4623
4624
4625</div id="tabcontent">
4626</div id="CanonPPMutiny" class="page">
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644<!-- PAGE: CanonFilms -->
4645
4646<div id="CanonFilms" class="page" style="display:none;">
4647<div id="tabcontent">
4648
4649
4650<div class="npside">
4651
4652
4653<div class="sidebarbg">
4654<img src="{image:Sidebar Background}">
4655</div class="sidebarbg">
4656
4657
4658<div class="npsideinner">
4659
4660
4661<div class="npsideimgtop">
4662<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
4663</div class="npsideimgtop">
4664
4665
4666
4667<div class="npsideimgbottom">
4668<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
4669</div class="npsideimgbottom">
4670
4671
4672
4673</div class="npsideinner">
4674</div class="npside">
4675
4676
4677<div id="page">
4678
4679
4680
4681<div class="npheader">
4682<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
4683</div class="npheader">
4684
4685
4686<div class="npnavi">
4687<div class="dropdown">
4688
4689<button onclick="myFunction()" class="dropbtn">
4690Timeline: Individual Films
4691</button>
4692 <div id="myDropdown" class="dropdown-content">
4693
4694
4695<ul id="tabs">
4696<li style="text-align:left;" autofocus>Curse of the Black Pearl</li>
4697<li style="text-align:right;">Dead Man's Chest</li>
4698<li style="text-align:left;">At World's End</li>
4699<li style="text-align:right;">Post-At World's End</li>
4700<li style="text-align:left;">On Stranger Tides</li>
4701<li style="text-align:right;">Dead Men Tell No Tales</li>
4702<li style="text-align:left;">Post-Dead Men Tell No Tales</li>
4703
4704
4705</ul id="tabs">
4706
4707
4708 </div id="myDropdown" class="dropdown-content">
4709
4710</div class="dropdown">
4711</div class="npnavi">
4712
4713
4714<!-- TAB ONE -->
4715
4716<ul id="tab">
4717<li class="active">
4718
4719<div class="npcontent">
4720
4721<h4>Curse of the Black Pearl</h4>
4722
4723<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4724
4725</div class="npcontent">
4726
4727</li>
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737<li>
4738
4739<div class="npcontent">
4740
4741<h4>Dead Man's Chest</h4>
4742
4743<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4744
4745</div class="npcontent">
4746
4747</li>
4748
4749
4750
4751
4752
4753
4754<li>
4755
4756<div class="npcontent">
4757
4758<h4>At World's End</h4>
4759
4760<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4761
4762</div class="npcontent">
4763
4764</li>
4765
4766
4767
4768
4769
4770
4771
4772<li>
4773
4774<div class="npcontent">
4775
4776<h4>Post-At World's End</h4>
4777
4778<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4779
4780</div class="npcontent">
4781
4782</li>
4783
4784
4785
4786
4787
4788
4789
4790<li>
4791
4792<div class="npcontent">
4793
4794<h4>On Stranger Tides</h4>
4795
4796<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4797
4798</div class="npcontent">
4799
4800</li>
4801
4802
4803
4804
4805
4806
4807
4808<li>
4809
4810<div class="npcontent">
4811
4812<h4>Dead Men Tell No Tales</h4>
4813
4814<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4815
4816</div class="npcontent">
4817
4818</li>
4819
4820
4821
4822
4823
4824
4825
4826<li>
4827
4828<div class="npcontent">
4829
4830<h4>Post-Dead Men Tell No Tales</h4>
4831
4832<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4833
4834</div class="npcontent">
4835
4836</li>
4837
4838
4839</ul id="tab">
4840
4841
4842</div id="page">
4843
4844
4845</div id="tabcontent">
4846</div id="CanonFilms" class="page">
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862<!-- PAGE: CanonAlternate -->
4863
4864<div id="CanonAlternate" class="page" style="display:none;">
4865<div id="tabcontent">
4866
4867
4868<div class="npside">
4869
4870
4871<div class="sidebarbg">
4872<img src="{image:Sidebar Background}">
4873</div class="sidebarbg">
4874
4875
4876<div class="npsideinner">
4877
4878
4879<div class="npsideimgtop">
4880<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
4881</div class="npsideimgtop">
4882
4883
4884
4885<div class="npsideimgbottom">
4886<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
4887</div class="npsideimgbottom">
4888
4889
4890
4891</div class="npsideinner">
4892</div class="npside">
4893
4894
4895<div id="page">
4896
4897
4898
4899<div class="npheader">
4900<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
4901</div class="npheader">
4902
4903
4904<div class="npnavi">
4905<div class="dropdown">
4906
4907<button onclick="myFunction()" class="dropbtn">
4908Timeline: Alternate(s)
4909</button>
4910 <div id="myDropdown" class="dropdown-content">
4911
4912<ul id="tabs">
4913<li style="text-align:left;" autofocus>Sparrabeth</li>
4914<li style="text-align:right;">Canon Post-AWE</li>
4915</ul id="tabs">
4916
4917 </div id="myDropdown" class="dropdown-content">
4918
4919</div class="dropdown">
4920</div class="npnavi">
4921
4922
4923<!-- TAB ONE -->
4924
4925<ul id="tab">
4926<li class="active">
4927
4928<div class="npcontent">
4929
4930<h4>Sparrabeth Verse</h4>
4931
4932<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4933
4934</div class="npcontent">
4935
4936</li>
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946<li>
4947
4948<div class="npcontent">
4949
4950<h4>Canon post-AWE</h4>
4951
4952<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4953
4954</div class="npcontent">
4955
4956</li>
4957
4958
4959</ul>
4960
4961</div id="page">
4962
4963
4964</div id="tabcontent">
4965</div id="CanonAlternate" class="page">
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981<!-- PAGE: ModernBio -->
4982
4983<div id="ModernBio" class="page" style="display:none;">
4984<div id="tabcontent">
4985
4986
4987<div class="npside">
4988
4989
4990<div class="sidebarbg">
4991<img src="{image:Sidebar Background}">
4992</div class="sidebarbg">
4993
4994
4995<div class="npsideinner">
4996
4997
4998<div class="npsideimgtop">
4999<img src="https://static.tumblr.com/m7qloac/0Wsq4saul/modernside02.png">
5000</div class="npsideimgtop">
5001
5002
5003
5004<div class="npsideimgbottom">
5005<img src="https://static.tumblr.com/m7qloac/jYTq4scjk/modernside03.png">
5006</div class="npsideimgbottom">
5007
5008
5009</div class="npsideinner">
5010</div class="npside">
5011
5012
5013<div id="page">
5014
5015
5016
5017<div class="npheader">
5018<img src="https://static.tumblr.com/m7qloac/Vebq4scll/canonheader02.png">
5019</div class="npheader">
5020
5021
5022<div class="npnavi">
5023<div class="dropdown">
5024
5025<button onclick="myFunction()" class="dropbtn">
5026Click here for links
5027</button>
5028 <div id="myDropdown" class="dropdown-content">
5029
5030<ul id="tabs">
5031<li style="text-align:left;" autofocus>Biography/Navigation</li>
5032<li style="text-align:right;">Important headcanons/meta</li>
5033</ul id="tabs">
5034
5035 </div id="myDropdown" class="dropdown-content">
5036
5037</div class="dropdown">
5038</div class="npnavi">
5039
5040
5041<!-- TAB ONE -->
5042
5043<ul id="tab">
5044<li class="active">
5045
5046<div class="npcontent">
5047
5048<h4>Verse Summary</h4>
5049
5050<p>After a tumultuous early childhood as the son of two of the country’s most prolific bank robbers, and the tragic death of his mother at the age of seven, Jack is relocated to inner city London and tries to take advantage of the chance at a ‘normal’ life ( even as his father continues in his association with the criminal ring that he’d vowed to leave behind ). It is hard work and determination in both his commitment to further study and holding up a job that eventually earn him a flat of his own with his long term friend Gibbs. However, the chance to travel the world working as an operative on behalf of wealthy businessman Cutler Beckett uncovers a murky web of crime and depravity, and pushes him into a vagabond lifestyle that rarely has him staying in one place for very long. During this time, the appeal of confidence tricks and grifting lures him into a life of con artistry – and eventually leads him back to Soho, London, in order to enact revenge on the corrupt establishment that continues to masquerade its true nature, hiding in plain sight. He'll cheat others, of course, but only if he <i>gains</i> something in return. </p>
5051
5052<h4>BASIC INFORMATION</h4>
5053
5054<strong>NAME:</strong> Jack Sparrow <br />
5055<strong>NICKNAME(S):</strong> <strike>Jackie</strike>, <strike>Jacky Boy</strike>, little bird <br />
5056<strong>ALIAS(ES):</strong> A whole array; Sebastian Hawtrey-Ficks<br />
5057<strong>OCCUPATION:</strong> Con Artist <br />
5058<strong>AGE:</strong> 38 <i>( default )</i> <br />
5059<strong>SEXUAL ORIENTATION:</strong> Bisexual <br />
5060<strong>ROMANTIC ORIENTATION:</strong> Demiromantic <br />
5061<strong>DATE OF BIRTH:</strong> 6th August 1963<br />
5062<strong>NATIONALITY:</strong> British <br />
5063<strong>RELIGION:</strong> Agnostic <br />
5064
5065<h4>PHYSICAL INFORMATION</h4>
5066
5067<strong>HEIGHT:</strong> 5'10" <br />
5068<strong>EYE COLOUR:</strong> Brown <br />
5069<strong>HAIR COLOUR:</strong> Brown / Black<br />
5070<strong>DOMINANT HAND:</strong> Right, but somewhat ambidextrous <br />
5071<strong>DISTINGUISHING FEATURES:</strong> High cheekbones, large eyes sometimes accentuated with kohl, fondness for wearing hats & waistcoats <br />
5072<strong>TATTOO(S):</strong> Sparrow flying over stylised waves on his right forearm, the Desiderata Poem on his back <br />
5073<strong>SCAR(S):</strong> Extensive burns along his left arm, scar through his right eyebrow, <a href="https://66.media.tumblr.com/151e6169253e2061554725fce8f98692/tumblr_inline_pihteiFebP1smyfzk_540.png">triple-crossed brand in the shape of the modern EITC insignia on his right forearm</a> <br />
5074<strong>PIERCING(S):</strong> Both ears <br />
5075
5076<h4>BACKGROUND INFORMATION</h4>
5077
5078<strong>HOMETOWN:</strong> London <br />
5079<strong>CURRENT RESIDENCE:</strong> London, Europe, Singapore, the Caribbean, USA <br />
5080<strong>LANGUAGE(S):</strong> English, Spanish, French, along with some Latin, Mandarin & others <br />
5081<strong>PARENTS:</strong> Edward Teague & Maria Sparrow <i>( deceased )</i> <br />
5082<strong>SIBLING(S):</strong> None <i>( Isobel Sparrow in an AU )</i> <br />
5083<strong>EXTENDED FAMILY:</strong> Uncle Jack <i>( paternal uncle )</i>, Bartholomew <i>( paternal grandfather )</i>, Anne Teague <i>( paternal grandmother )</i> <br />
5084<strong>SIGNIFICANT OTHER:</strong> Dependent <br />
5085<strong>CHILD(REN):</strong> None <br />
5086<strong>PET(S):</strong> Tim <i>( Dog with Keys )</i> <br />
5087<strong>FRIENDS / ALLIES:</strong> Robby Greene, Joshamee Gibbs, Elizabeth Swann, Marty, Cotton, Anamaria, Scrum, Carina Smyth, Killian Jones, John Watson, Irene Adler, Steve Harrington, Robin Buckley <br />
5088<strong>ENEMIES / ANIMOSITIES:</strong> Cutler Beckett, Davy Jones <i>( verse dependent )</i>, Ian Mercer, Hector Barbossa, Christophe-Julien de Rapièr, Killian Jones, the modern EITC, much of the British Establishment <br />
5089
5090<h4>PERSONALITY INFORMATION</h4>
5091
5092<strong>POSITIVE TRAITS:</strong> Independent, charming, open-minded, unprejudiced, intelligent, perceptive, hard-working, ambitious, well-read, merciful, witty, capable of gentleness & selflessness, flirtatious, individualistic, opinionated, charismatic, resilient, adaptable, flamboyant <br />
5093<strong>FLAWS:</strong> Stubborn, manipulative, perfectionistic, emotionally stunted, self-serving, reckless, spiteful, petty, cynical, untrustworthy, proud, distrustful, paranoid, egocentric, obsessive, unreliable, chaotic, unpredictable, moody, sometimes melancholic <br />
5094<strong>LIKES:</strong> Freedom, sailing, trouble-making, gambling, reading, rum, risk-taking, swimming, cars, music, travelling, hats<br />
5095<strong>DISLIKES:</strong> Stupidity, ignorance, injustice, cruelty, complacency, staying in one place <br />
5096<strong>FEARS:</strong> Not being good enough, loneliness, abandonment, not being remembered, death, failure, fire <br />
5097<strong>SKILLS:</strong> Deception, sleight of hand, playing & composing music, navigation, sailing, reading people, improvising, handling & using a gun, self-defence, learning languages, disguise, hot-wiring a car, tinkering, CPR, acting / imitating accents<br />
5098
5099<h4>VICES + HABITS</h4>
5100
5101<strong>SMOKES?</strong> Sometimes <br />
5102<strong>DRINKS?</strong> Yes <br />
5103<strong>DRUGS?</strong> Recreational use in his youth <br />
5104<strong>SELF-DESTRUCTIVE?</strong> Yes
5105
5106<h4>MISCELLANEOUS INFORMATION</h4>
5107
5108<strong>HOUSE:</strong> Slytherin <br />
5109<strong>ZODIAC:</strong> Leo <br />
5110<strong>ELEMENT:</strong> Fire & water <br />
5111<strong>ALIGNMENT:</strong> Chaotic Neutral <br />
5112<strong>MBTI:</strong> ENTP <br />
5113
5114<h4>BIOGRAPHY</h4>
5115
5116<p>Born of a trainee nurse and one of the most prolific crime bosses in the country, the first seven years of the young Jack Sparrow’s life were anything but ordinary. Homeschooled, his mother attempted to create as stable an environment as possible for their small family, but Edward Teague’s criminal enterprise was only growing in influence, and the birth of a child soon became an irreparable fissure in the two parents’ relationship. This tension, along with the increased arguments and danger Teague was putting his family in, came to a head seven years later, during a car chase that would end with Maria dying of a gunshot wound in the backseat, her head resting in her son’s lap.</p>
5117
5118<p>Everything changed after that. Swearing off crime, Teague relocated with Jack, turning him over briefly to his own mother until he realised, with the help of a sober mind, the extent of the torment he’d subjected his son to at her hands. Eventually, the two were reunited in a home of their own, where Jack would stay for the remainder of his childhood and adolescence, and slowly come to loathe. School took adjustment of its own but, in spite of the bullies and, as he grew older, his habit of letting his sharp tongue get him into trouble, he at least thrived in his academic pursuits. And throughout it all, he had one constant friend, a year younger than him and far more sensible: Robby Greene. The two bond after Jack steps in to defend the younger man against a group of bullies, and they become as close as two brothers could be.</p>
5119
5120<p>Personally, however, was another matter. When he was nine, Teague left the home one night with the intent of going out drinking, and Jack heard nothing more from him until he returned three days later, nursing a headache and having left his son to fend for himself in the interim. From that point onwards, Jack would depend only on himself; he taught himself to cook, would spend hours cooped up in his own room studying, or reading, or teaching himself to play the guitar, and was intent on making success enough of himself to finally leave the family home as soon as he was able. Acing his O Levels / GCSEs without too much difficulty, he opted for A level History, English Literature and Spanish and, with the support of his teachers, aspired to university study – but that ambition, too, ended up derailed.<strong>*</strong></p>
5121
5122<p>Little did Jack know that his father had gone back into crime, this time keeping it very much under the radar. The truth only came out after a hostage attempt; shortly after turning fifteen, Jack was minding his own business before being kidnapped by a group of thugs intent on using him as leverage against his father. With Teague’s help, Jack escaped with only a few cuts and bruises, but the betrayal left its own mark and quickly pushed him into the company of another in his final few years of school.<strong>**</strong> Christophe was also a man ensconced in crime, but of a far more tempting variety: it was he who first introduced Jack to petty theft ( along with a variety of other vices, including alcohol and drugs ), grooming him in his own image only to threaten to discard him later on.</p>
5123
5124<p>A heist aimed at damaging another crime syndicate: the one run by Teague himself. When Jack discovered the identity of their mark, he tried to pull out, but by then it was already too late. He was offered an ultimatum by Christophe: pledge complete loyalty to his gang, or be set up and thrown to the wolves, painted as the instigator in a plot to betray his own family. With little choice in the matter, Jack went with them, leaving school several months early and forced to work for a man who had thrown his trust and affection back in his face.</p>
5125
5126<p>He then kept his head low for several weeks, looking for an opportunity to get his revenge. Compiling as much evidence of their illegal activities as he could, he arranged a set up of his own, inviting police to the crime scene and offering his own testimony to ensure they were sent down. With Christophe’s blackmail of him come to light, Jack is spared prison, but he’s still ordered community service and the whole experience makes him vow to clean up his act completely.</p>
5127
5128<p>Knowing that academic study was no longer in his future, and too ashamed to remain in his familial home, Jack moved into a modest flat with his longtime friend and mentor, Joshamee Gibbs. In the next seven years he took up a number of jobs to break even and make a living, from bartending to serving as a lifeguard at a public swimming pool and working at the local dockyard. In this time, he turned his life around and largely kicked any unpleasant habits from his youth ( except his one true vice: alcohol ).</p>
5129
5130<p>But nothing good ever lasted in his life, and during his work at the Tilbury Docks was when he got involved in an enterprise that nearly cost him his life. On paper, it had seemed ideal: managing the shipping of cargo into London, a job with a reputable employer and the prospect of advancement beyond the menial employment he’d been able to find thus far. But it had a sinister underbelly. Scarcely a year into his newfound partnership with its head of operations, Jack discovered that the distribution of materials and products was merely a veneer to disguise the true heart of the business: human trafficking. Sneaking into one of the EITC’s containment facilities, he and best friend Robby Greene, who had also taken a position with the organisation, were appalled at what they found, and managed to set free a group of hostages before being caught in the act.</p>
5131
5132<p>As punishment ( and providing a suitable warning of what was to come ), Jack was left with an indelible mark of initiation on his forearm, forever marring him as one of the very criminals he was seeking to expose. The threat was simple: blab about the EITC’s true nature, and he’d be implicated as one of the ring’s most prolific members, the first to be thrown to the wolves should the police close in. Yet that didn’t deter him; through his efforts, media doubt and scrutiny had already begun to be cast on the organisation, with Beckett’s own reputation on the brink of complete collapse.</p>
5133
5134<p>In the meantime, a ghost from his past was rearing its ugly head again. Five years behind bars and Christophe-Julien de Rapièr was free once more, and out for vengeance on the man who put him there in the first place. His path to Jack culminated in one dramatic final showdown. The Frenchman wasn’t pushed, but he did lose his footing as he made one last push to murder his quarry – and for the first time Jack Sparrow knew what it was to have someone’s blood on his hands.</p>
5135
5136<p>Clear that his previous threat hadn’t worked, and scrambling to protect his name and assets, Beckett was pushed to utilise his company’s unscrupulous connections to rid himself of his latest problem. A planned arson attack on Jack’s block of flats. He managed to save the lives of a few as the building went up in smoke ( fortunately Joshamee wasn’t home at the time ), but ended up injured and passed out before the firefighters arrived and found him. When he woke, he was in a hospital bed with scarring on his arm from being burned and the effects of smoke inhalation, and knew even before he was visited by his best friend that London was no longer safe for him. It might have been reported in the press as an accidental fire, but Jack knew who was responsible, and knew that if word got out that he’d survived they’d no doubt try again.</p>
5137
5138<p>He was resolved to leave the country, and as soon as he was well enough to abscond from his hospital ward, he and Gibbs headed for Dover and crossed the English Channel to France. For the next few years, he backpacked across Europe, his new goal being that of seeing the world and experiencing it. Sometimes he stayed in the local hostels, other times he’d earned enough money from both honest – and dishonest – employment to stay in a hotel, but he lived out of a mere suitcase, never staying in one place for too long.</p>
5139
5140<p>After the Champs Elysees and the Colosseum, the French Riviera and the Canary Islands, experiencing yachting and wine drinking and everything in between, Jack moved on to the Far East, residing in Singapore. It was there that he was exposed to a culture very different to his own and fell in love with it. He remained for two years before finally resolving to move on ( only after upsetting the wrong sorts of people ), and made for the next place on his bucket list: the Caribbean.</p>
5141
5142<p>It was during Jack's time there that he was betrayed for the second time in his life: this time, by another friend, Hector Barbossa. Left stranded on one of the many uninhabited islands, bereft of a phone or a map, money or ship, it was only the good fortune of a drug cartel's arrival (using the island as a base for their smuggling operations into Jamaica) that saved him from heatstroke and starvation. Hitching a ride back to the mainland in exchange for six months worth of employment to pay back his debt to them, Jack set about rebuilding his life.</p>
5143
5144<p>He stayed in Kingston, Jamaica for a while before the longing for revenge eventually -- after several deviations here and there -- drew him back to London. Now in his thirties, he returned to the city that had been the source of so many conflicted feelings, very much changed from the man who had earlier left it in such a hurry. He moved back in with Joshamee and settled back into an ordinary life, but the need for excitement and danger in his life led him back down an avenue that he’d narrowly avoided ten years prior: con artistry. This time, the crime was on his terms, targeting those most corrupt and susceptible to his schemes, while avoiding the innocent and anything as morally reprehensible as what prompted him to leave the city in the first place. After a few years, Jack had made a name for himself in criminal circles independent of Teague, and with the help of his best friend was making a reasonable profit for his time, too. He even managed to corner his traitorous former friend and, after a heated confrontation between the pair, believed that he had inflicted a mortal injury. He'd find out a couple of years later that this was not the case.</p>
5145
5146<p>The default for this verse is after this point, where Jack is in his late thirties and living in Soho, London, having already travelled and experienced a lot of the world and already enjoying success as a con artist in the city. There are also rumblings from members of the same organisation that Jack escaped and nearly dismantled thirteen years prior; when he’s not gaining valuable contacts in the city by targeting specific individuals’ reputations and purses to damage, he’s preparing to take down his former employer, Lord Beckett once and for all.</p>
5147
5148<h4>extra notes</h4>
5149<strong>*</strong>in two alternative modern verses, Jack never meets Christophe and is accepted into university, leading into both my Lawyer and Professor verses respectively.<br />
5150<strong>**</strong>this is the point at which my MCU Space Pirate verse diverges from my modern canon. </p>
5151
5152
5153<div class="nplinks">
5154
5155<h4>Navigation</h4>
5156
5157
5158<a href="/tagged/%26.-ridicule-is-nothing-to-be-scared-of-%28-aesthetic-%2F-modern.-%29">
5159Modern Aesthetic
5160</a>
5161
5162<a href="/tagged/%26.-everything-i-had-to-know-%2F-i-heard-it-on-my-radio-%28-mixtape-%2F-modern.-%29">
5163Modern Mixtape
5164</a>
5165
5166<a href="/tagged/%26.-verse.-don’t-have-anything-in-your-life-you-can’t-walk-away-from-in-a-second-%28-modern-%2F-main.-%29">
5167Main Verse Tag
5168</a>
5169
5170<a href="https://www.pinterest.co.uk/summerspride1/ch-captain-jack-sparrow/verse-modern/">
5171Pinterest Board
5172</a>
5173
5174</div class="nplinks">
5175
5176
5177</div class="npcontent">
5178
5179</li>
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189<li>
5190
5191<div class="npcontent">
5192
5193<h4>Important headcanons</h4>
5194
5195<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
5196
5197</div class="npcontent">
5198
5199</li>
5200</ul>
5201
5202
5203</div id="page">
5204
5205
5206</div id="tabcontent">
5207</div id="ModernBio" class="page">
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223<!-- PAGE: ModernYoung -->
5224
5225<div id="ModernYoung" class="page" style="display:none;">
5226<div id="tabcontent">
5227
5228
5229<div class="npside">
5230
5231
5232<div class="sidebarbg">
5233<img src="{image:Sidebar Background}">
5234</div class="sidebarbg">
5235
5236
5237<div class="npsideinner">
5238
5239
5240<div class="npsideimgtop">
5241<img src="https://static.tumblr.com/m7qloac/bVvq60r5t/myoungside03.png">
5242</div class="npsideimgtop">
5243
5244
5245
5246<div class="npsideimgbottom">
5247<img src="https://static.tumblr.com/m7qloac/ueEq4s9mh/canonside02.png">
5248</div class="npsideimgbottom">
5249
5250
5251</div class="npsideinner">
5252</div class="npside">
5253
5254
5255<div id="page">
5256
5257
5258
5259<div class="npheader">
5260<img src="https://static.tumblr.com/m7qloac/rDlq4s9nr/canonheader01.png">
5261</div class="npheader">
5262
5263
5264<div class="npnavi">
5265<div class="dropdown">
5266
5267<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5268Timeline: Young
5269</button>
5270 <div id="myDropdown" class="dropdown-content">
5271
5272
5273 </div id="myDropdown" class="dropdown-content">
5274
5275</div class="dropdown">
5276</div class="npnavi">
5277
5278
5279<!-- TAB ONE -->
5280
5281<ul id="tab"><li class="active">
5282
5283<div class="npcontent">
5284
5285
5286<h4>VERSE SUMMARY</h4>
5287
5288<p>la la la </p>
5289
5290
5291<div class="nplinks">
5292
5293<h4>Navigation</h4>
5294
5295<a href="/tagged/%26.-verse.-a-thin-moon-me-in-a-smoke-screen-sky-%28-modern-%2F-young.-%29">
5296Verse Tag
5297</a>
5298
5299<a href="https://www.pinterest.co.uk/summerspride1/ch-captain-jack-sparrow/verse-modern-youth/">
5300Pinterest Board
5301</a>
5302
5303</div class="nplinks">
5304
5305
5306</div class="npcontent">
5307
5308
5309</li></ul>
5310
5311
5312</div id="page">
5313
5314
5315</div id="tabcontent">
5316</div id="ModernYoung" class="page">
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332<!-- PAGE: ModernMagic -->
5333
5334<div id="ModernMagic" class="page" style="display:none;">
5335<div id="tabcontent">
5336
5337
5338<div class="npside">
5339
5340
5341<div class="sidebarbg">
5342<img src="{image:Sidebar Background}">
5343</div class="sidebarbg">
5344
5345
5346<div class="npsideinner">
5347
5348
5349
5350
5351<div class="npsideimgtop">
5352<img src="https://static.tumblr.com/m7qloac/Zmxq5g5x5/wizardingside02.png">
5353</div class="npsideimgtop">
5354
5355
5356
5357<div class="npsideimgbottom">
5358<img src="https://static.tumblr.com/m7qloac/HTgq5gd59/wizardingside05.png">
5359</div class="npsideimgbottom">
5360
5361
5362</div class="npsideinner">
5363</div class="npside">
5364
5365
5366<div id="page">
5367
5368
5369
5370<div class="npheader">
5371<img src="https://static.tumblr.com/m7qloac/Xwuq60req/wizardingheader01.png">
5372</div class="npheader">
5373
5374
5375<div class="npnavi">
5376<div class="dropdown">
5377
5378<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5379Timeline: Magic/Supernatural
5380</button>
5381 <div id="myDropdown" class="dropdown-content">
5382
5383
5384 </div id="myDropdown" class="dropdown-content">
5385
5386</div class="dropdown">
5387</div class="npnavi">
5388
5389
5390<!-- TAB ONE -->
5391
5392<ul id="tab"><li class="active">
5393
5394<div class="npcontent">
5395
5396
5397<h4>VERSE SUMMARY</h4>
5398
5399<p>la la la </p>
5400
5401
5402<div class="nplinks">
5403
5404<h4>Navigation</h4>
5405
5406<a href="/tagged/%26.-verse.-he-that-loves-pleasure-must-for-pleasure-fall-%28-modern-magic-%2F-supernatural.-%29">
5407Verse Tag
5408</a>
5409
5410</div class="nplinks">
5411
5412
5413</div class="npcontent">
5414
5415
5416</li></ul>
5417
5418
5419</div id="page">
5420
5421
5422</div id="tabcontent">
5423</div id="ModernMagic" class="page">
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444<!-- PAGE: ModernMCU -->
5445
5446<div id="ModernMCU" class="page" style="display:none;">
5447<div id="tabcontent">
5448
5449
5450<div class="npside">
5451
5452
5453<div class="sidebarbg">
5454<img src="{image:Sidebar Background}">
5455</div class="sidebarbg">
5456
5457
5458<div class="npsideinner">
5459
5460
5461<div class="npsideimgtop">
5462<img src="https://static.tumblr.com/m7qloac/hgkq60rvu/mcuside02.png">
5463</div class="npsideimgtop">
5464
5465
5466
5467<div class="npsideimgbottom">
5468<img src="https://static.tumblr.com/m7qloac/JnEq60rq9/mcuside01.png">
5469</div class="npsideimgbottom">
5470
5471
5472</div class="npsideinner">
5473</div class="npside">
5474
5475
5476<div id="page">
5477
5478
5479
5480<div class="npheader">
5481<img src="https://static.tumblr.com/m7qloac/j9Jq60ry8/mcuheader01.png">
5482</div class="npheader">
5483
5484
5485<div class="npnavi">
5486<div class="dropdown">
5487
5488<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5489Timeline: Marvel Cinematic Universe
5490</button>
5491 <div id="myDropdown" class="dropdown-content">
5492
5493
5494 </div id="myDropdown" class="dropdown-content">
5495
5496</div class="dropdown">
5497</div class="npnavi">
5498
5499
5500<!-- TAB ONE -->
5501
5502<ul id="tab"><li class="active">
5503
5504<div class="npcontent">
5505
5506
5507<h4>VERSE SUMMARY</h4>
5508
5509<p>la la la </p>
5510
5511
5512<div class="nplinks">
5513
5514<h4>Navigation</h4>
5515
5516<a href="/tagged/%26.-verse.-set-your-course-by-the-stars-%28-modern-%2F-mcu.-%29">
5517Verse Tag
5518</a>
5519
5520<a href="https://www.pinterest.co.uk/summerspride1/ch-captain-jack-sparrow/verse-space-pirate/">
5521Pinterest Board
5522</a>
5523
5524</div class="nplinks">
5525
5526
5527</div class="npcontent">
5528
5529
5530</li></ul>
5531
5532
5533</div id="page">
5534
5535
5536</div id="tabcontent">
5537</div id="ModernMCU" class="page">
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551<!-- PAGE: ModernAlternate -->
5552
5553<div id="ModernAlternate" class="page" style="display:none;">
5554<div id="tabcontent">
5555
5556
5557<div class="npside">
5558
5559
5560<div class="sidebarbg">
5561<img src="{image:Sidebar Background}">
5562</div class="sidebarbg">
5563
5564
5565<div class="npsideinner">
5566
5567
5568<div class="npsideimgtop">
5569<img src="https://static.tumblr.com/m7qloac/0Wsq4saul/modernside02.png">
5570</div class="npsideimgtop">
5571
5572
5573
5574<div class="npsideimgbottom">
5575<img src="https://static.tumblr.com/m7qloac/jYTq4scjk/modernside03.png">
5576</div class="npsideimgbottom">
5577
5578
5579</div class="npsideinner">
5580</div class="npside">
5581
5582
5583<div id="page">
5584
5585
5586
5587<div class="npheader">
5588<img src="https://static.tumblr.com/m7qloac/Vebq4scll/canonheader02.png">
5589</div class="npheader">
5590
5591
5592<div class="npnavi">
5593<div class="dropdown">
5594
5595<button onclick="myFunction()" class="dropbtn">
5596Timeline: Alternate(s)
5597</button>
5598 <div id="myDropdown" class="dropdown-content">
5599
5600<ul id="tabs">
5601<li style="text-align:left;" autofocus>Professor</li>
5602<li style="text-align:right;">Lawyer</li>
5603<li style="text-align:left;">Spice World</li>
5604<li style="text-align:right;">Modern Sparrabeth</li>
5605</ul id="tabs">
5606
5607 </div id="myDropdown" class="dropdown-content">
5608
5609</div class="dropdown">
5610</div class="npnavi">
5611
5612
5613<!-- TAB ONE -->
5614
5615<ul id="tab">
5616<li class="active">
5617
5618<div class="npcontent">
5619
5620<h4>Professor</h4>
5621
5622<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
5623
5624</div class="npcontent">
5625
5626</li>
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636<li>
5637
5638<div class="npcontent">
5639
5640<h4>Lawyer</h4>
5641
5642<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
5643
5644</div class="npcontent">
5645
5646</li>
5647
5648
5649
5650
5651
5652
5653<li>
5654
5655<div class="npcontent">
5656
5657<h4>Spice World</h4>
5658
5659<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
5660
5661</div class="npcontent">
5662
5663</li>
5664
5665
5666
5667
5668
5669
5670
5671<li>
5672
5673<div class="npcontent">
5674
5675<h4>Modern Sparrabeth</h4>
5676
5677<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
5678
5679</div class="npcontent">
5680
5681
5682</li>
5683
5684
5685</ul>
5686
5687
5688</div id="page">
5689
5690
5691</div id="tabcontent">
5692</div id="ModernAlternate" class="page">
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711<!-- PAGE: CrossoverWizard -->
5712
5713<div id="CrossoverWizard" class="page" style="display:none;">
5714<div id="tabcontent">
5715
5716
5717<div class="npside">
5718
5719
5720<div class="sidebarbg">
5721<img src="{image:Sidebar Background}">
5722</div class="sidebarbg">
5723
5724
5725<div class="npsideinner">
5726
5727
5728<div class="npsideimgtop">
5729<img src="https://static.tumblr.com/m7qloac/Zmxq5g5x5/wizardingside02.png">
5730</div class="npsideimgtop">
5731
5732
5733
5734<div class="npsideimgbottom">
5735<img src="https://static.tumblr.com/m7qloac/HTgq5gd59/wizardingside05.png">
5736</div class="npsideimgbottom">
5737
5738
5739</div class="npsideinner">
5740</div class="npside">
5741
5742
5743<div id="page">
5744
5745
5746
5747<div class="npheader">
5748<img src="https://static.tumblr.com/m7qloac/Xwuq60req/wizardingheader01.png">
5749</div class="npheader">
5750
5751
5752<div class="npnavi">
5753<div class="dropdown">
5754
5755<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5756Crossover: Wizarding World
5757</button>
5758 <div id="myDropdown" class="dropdown-content">
5759
5760
5761 </div id="myDropdown" class="dropdown-content">
5762
5763</div class="dropdown">
5764</div class="npnavi">
5765
5766
5767<!-- TAB ONE -->
5768
5769<ul id="tab"><li class="active">
5770
5771<div class="npcontent">
5772
5773
5774<h4>VERSE SUMMARY</h4>
5775
5776la la la
5777
5778<h4>BASIC INFORMATION</h4>
5779
5780<strong>FULL NAME:</strong> Captain Jack Sparrow <br />
5781<strong>NICKNAME(S):</strong> <strike>Jackie</strike>, <strike>Jacky boy</strike> <br />
5782<strong>ALIAS(ES):</strong> <br />
5783<strong>OCCUPATION:</strong> Former Curse-Breaker turned smuggler <br />
5784<strong>AGE:</strong> 32 <i>( start of the Second Wizarding War )</i> <br />
5785<strong>DATE OF BIRTH:</strong> 6th August 1963 <br />
5786<strong>NATIONALITY:</strong> British <br />
5787<strong>LOYALTY:</strong> Himself, later the Order <br />
5788<strong>BLOOD STATUS:</strong> Halfblood, but originates from a prominent Pureblood family <br />
5789
5790<h4>PHYSICAL INFORMATION</h4>
5791
5792<strong>HEIGHT:</strong> 5'10" <br />
5793<strong>EYE COLOUR:</strong> Brown <br />
5794<strong>HAIR COLOUR:</strong> Black <br />
5795<strong>DOMINANT HAND:</strong> Right, but somewhat ambidextrous <br />
5796<strong>DISTINGUISHING FEATURES:</strong> High cheekbones, large eyes sometimes accentuated with kohl, fondness for wearing hats & waistcoats <br />
5797<strong>TATTOO(S):</strong> Sparrow flying over stylised waves on his right forearm, the desiderata poem on his back <br />
5798<strong>SCAR(S):</strong> Extensive burns along his left arm, scar through his right eyebrow <br />
5799<strong>PIERCING(S):</strong> Both ears <br />
5800
5801<h4>BACKGROUND INFORMATION</h4>
5802
5803<strong>HOMETOWN:</strong> London <br />
5804<strong>CURRENT RESIDENCE:</strong> London, New York, at sea <br />
5805<strong>LANGUAGE(S):</strong> English, Spanish, French, along with some Latin, Mandarin & others <br />
5806<strong>PARENTS:</strong> Edward Teague <i>( Pureblood )</i> & Maria Sparrow <i>( Muggle Born / deceased )</i> <br />
5807<strong>SIBLING(S):</strong> none canonically <i>( Isobel Sparrow in an AU )</i> <br />
5808<strong>EXTENDED FAMILY:</strong> Uncle Jack <i>( paternal uncle )</i>, Bartholomew <i>( paternal grandfather )</i>, Anne Teague <i>( paternal grandmother )</i>, Credence Barebone <i>( surrogate son )</i> <br />
5809<strong>SIGNIFICANT OTHER:</strong> Dependent <br />
5810<strong>CHILD(REN):</strong> None <br />
5811<strong>PET(S):</strong> Tim <i>( crup )</i> <br />
5812<strong>FRIENDS / ALLIES:</strong> Joshamee Gibbs, Hattie Price, Dumbledore, Celeste Zamorano, Mary Sibley <br />
5813<strong>ENEMIES / ANIMOSITIES:</strong> Christophe-Julien de Rapièr, Cutler Beckett, Mary Sibley, Morgana Pendragon, Killian Jones, Voldemort / Grindelwald & followers, the Ministry for Magic <br />
5814
5815<h4>PERSONALITY INFORMATION</h4>
5816
5817<strong>POSITIVE TRAITS:</strong> Independent, charming, open-minded, unprejudiced, intelligent, perceptive, hard-working, ambitious, well-read, merciful, witty, capable of gentleness & selflessness, flirtatious, individualistic, opinionated, charismatic, resilient, adaptable, flamboyant <br />
5818<strong>FLAWS:</strong> Stubborn, manipulative, perfectionistic, emotionally stunted, self-serving, reckless, spiteful, petty, cynical, untrustworthy, proud, distrustful, paranoid, egocentric, obsessive, unreliable, chaotic, unpredictable, moody, sometimes melancholic <br />
5819<strong>LIKES:</strong> Freedom, sailing, trouble-making, gambling, reading, rum, risk-taking, swimming <br />
5820<strong>DISLIKES:</strong> Stupidity, ignorance, injustice, cruelty, complacency, staying in one place <br />
5821<strong>FEARS:</strong> Not being good enough, loneliness, abandonment, not being remembered, death, failure, fire<br />
5822<strong>SKILLS:</strong> Deception, sleight of hand, playing & composing music, navigation, sailing, reading people, improvising, learning languages, disguise, transfiguration, charms <br />
5823
5824<h4>VICES + HABITS</h4>
5825
5826<strong>SMOKES?</strong> Sometimes <br />
5827<strong>DRINKS?</strong> Yes <br />
5828<strong>DRUGS?</strong> No <br />
5829<strong>SELF-DESTRUCTIVE?</strong> Yes <br />
5830
5831<h4>MISCELLANEOUS INFORMATION</h4>
5832
5833<strong>ZODIAC:</strong> Leo <br />
5834<strong>ELEMENT:</strong> Fire & water <br />
5835<strong>ALIGNMENT:</strong> Chaotic Neutral <br />
5836<strong>MBTI:</strong> ENTP <br />
5837
5838<strong>WAND TYPE:</strong> Acacia wood with a unicorn hair core, 10 ¾ inches, quite bendy <br />
5839<strong>SPECIAL ABILITIES:</strong> None in particular, although he prides himself on the ability to identify magical artefacts and detect any curses or charms placed upon them <br />
5840<strong>PATRONUS:</strong> Sparrow <br />
5841<strong>BOGGART:</strong> Teague <i>( Hogwarts years )</i>, his own corpse burned to death <i>( post-Hogwarts )</i> <br />
5842
5843<h4>EDUCATION</h4>
5844
5845<strong>SCHOOL:</strong> Hogwarts School of Witchcraft and Wizardry <br />
5846<strong>HOUSE:</strong> Slytherin <br />
5847<strong>BEST CORE CLASS:</strong> Tranfiguration & Charms <br />
5848<strong>WORST CORE CLASS:</strong> Potions <br />
5849<strong>ELECTIVE:</strong> Arithmancy, Ancient Runes <br />
5850<strong>QUIDDITCH:</strong> Spectator <br />
5851<strong>EXTRA-CURRICULAR:</strong> Music <br />
5852
5853<h4>BIOGRAPHY</h4>
5854
5855<p>Born a halfblood into a family of pureblood smugglers, Jack was dismissed an outcast even before he could walk, much less wield a wand. Being a muggle born wizard, his mother’s relationship with his pureblood father had garnered disapproval from the very start, most notably from the matriarch of his family and, in the culture of pre-first wizarding war London, was ultimately doomed to a tragic end. An anonymous tip off to Voldemort’s followers ( coming from Teague’s mother, no less ), during his first rise to power, of a muggle-born member of the Order of the Phoenix had Death Eaters arrive at Jack’s familial home when he was seven. Only hiding in a cupboard managed to spare him from the killing curse, and Jack spent the rest of his early childhood meeting the gaze of a father who unconsciously resented his survival.</p>
5856
5857<p>Fortunately, amidst the mistreatment and neglect during his earlier years, Teague’s former betrothed, a young pureblood witch named Hattie Price, steps in and attempts to fill the void created by his mother’s death. Jack turns eleven, is sorted into Slytherin at Hogwarts ( after some deliberation between the snake house and Ravenclaw on the Sorting Hat’s part ), and Voldemort is not defeated at the hands of The Boy Who Lived until his final year at the school.</p>
5858
5859<p>During his Hogwarts years themselves, it isn’t long before Jack gains himself a reputation at the school as a troublemaker, but an ambitious, intelligent one; he is aided by the teachers to pursue his dreams of travelling the wizarding world as a curse-breaker, showing a particular talent in the art of transfiguration and charms. Leaving the school with the NEWTs he needs, Jack undergoes training by Gringotts’ goblins and begins an independent life uncovering hidden treasure and artefacts across the four corners of the world. A year passes, and he is offered work as a foreign operative by an official of the Ministry for Magic, Cutler Beckett, along with an old-fashioned sailship to use as he pleases in his new venture: the Wicked Wench. With his exposure to sailing during his youth, Jack falls in love on first sight, and gladly accepts the man’s offer.</p>
5860
5861<p>Not long after this, Jack encounters an enigmatic French wizard by the name of Christophe-Julien de Rapièr, and the two become extremely close in a short space of time. So assured of the man’s moral character, when aurors arrive to apprehend him and throw him in Azkaban, believing him to be a devout of the late Lord Voldemort, Jack is moved to extreme lengths to help him escape their capture. Only once the men are clear of their assailants and on the run does Christophe’s true loyalty become clear, and Jack is dragged unwillingly into his underground gang of sycophants. The Daily Prophet reports Jack Sparrow as turning on the Ministry in favour of bringing back the dark days of Voldemort’s reign of terror, and he is not only made a fugitive, but labelled a Death Eater in all but name. One particularly damning exposé in the press even draws attention to his apparent resemblance to a young Gellert Grindelwald.</p>
5862
5863<p>Jack’s attempts to expose his employer were also left in tatters by this betrayal; shortly before Christophe’s arrest, he had been preparing to reveal to the Ministry Beckett’s illicit business interests in the trafficking of muggles. Seen now as purely an attempt to smear his superior to cover his own loyalties to Voldemort, his allegations are automatically dismissed.</p>
5864
5865<p>But that ends up as the very least of his worries. Now aware of the true moral depravity of his former friend, Jack plots to undo his previous wrongs, and enlists the help of allies, both familial and from his time at Hogwarts, to ensure Christophe’s imprisonment in Azkaban for good. Successfully framing him, the Frenchman is taken prisoner and Jack is brought to the Wizengamot where, thanks primarily to Dumbledore’s influence during the trial, the charges brought against him are dismissed.</p>
5866
5867<p>Although, not everyone was happy with the verdict. Despite not being able to legitimately call for Jack’s arrest, Beckett was still keen on revenge, and sends men to attack Jack’s ship – not realising that Jack himself was on board. He manages to cast a spell to save the vessel from sinking, but not before the fire damage chars the hull of the ship. The next few months are spent restoring her to her former glory, before painting her black and rechristening her the Black Pearl.</p>
5868
5869<p>In the years that follow, Jack retreats further and further into the shadows of wizarding society. No longer able to gain legitimate employment anywhere as a curse-breaker, Jack turns to the family profession of smuggling, specialising in the identification and obtaining of magical artefacts and becoming associated with Borgin and Bourkes on Knockturn Alley. It’s during this time that Voldemort’s return to power becomes more and more assured, with the smearing of Dumbledore and Harry Potter in the press and culminating in the escape of Death Eaters ( including Christophe ) from Azkaban.</p>
5870
5871<p>With the escape of Christophe returns the rumours of Jack’s associations to the Dark Lord, only heightening the danger that he finds himself in, caught between the light and the dark as the Frenchman plots to hunt him down. But this also functions as the impetus Jack needs to throw his support behind the Order and clear his name for good.</p>
5872
5873<div class="nplinks">
5874
5875<h4>Navigation</h4>
5876
5877<a href="/tagged/%26.-verse.-i-solemnly-swear-i-am-up-to-no-good-%28-wizarding-world.-%29">
5878Verse Tag
5879</a>
5880
5881<a href="https://www.pinterest.co.uk/summerspride1/ch-captain-jack-sparrow/verse-wizarding-world/">
5882Pinterest Board
5883</a>
5884
5885</div class="nplinks">
5886
5887
5888
5889</div class="npcontent">
5890
5891
5892</li></ul>
5893
5894
5895</div id="page">
5896
5897
5898</div id="tabcontent">
5899</div id="CrossoverWizard" class="page">
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914<!-- PAGE: CrossoverASOIAF -->
5915
5916<div id="CrossoverASOIAF" class="page" style="display:none;">
5917<div id="tabcontent">
5918
5919
5920<div class="npside">
5921
5922
5923<div class="sidebarbg">
5924<img src="{image:Sidebar Background}">
5925</div class="sidebarbg">
5926
5927
5928<div class="npsideinner">
5929
5930
5931<div class="npsideimgtop">
5932<img src="https://static.tumblr.com/m7qloac/21Zq5gdax/asoiafside05.png">
5933</div class="npsideimgtop">
5934
5935
5936
5937<div class="npsideimgbottom">
5938<img src="https://static.tumblr.com/m7qloac/Pzsq5gdbd/asoiafside02.png">
5939</div class="npsideimgbottom">
5940
5941
5942</div class="npsideinner">
5943</div class="npside">
5944
5945
5946<div id="page">
5947
5948
5949
5950<div class="npheader">
5951<img src="https://static.tumblr.com/m7qloac/ybtq5gdc9/asoiafheader03.png">
5952</div class="npheader">
5953
5954
5955<div class="npnavi">
5956<div class="dropdown">
5957
5958<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5959Crossover: A Song of Ice and Fire
5960</button>
5961 <div id="myDropdown" class="dropdown-content">
5962
5963
5964 </div id="myDropdown" class="dropdown-content">
5965
5966</div class="dropdown">
5967</div class="npnavi">
5968
5969
5970<!-- TAB ONE -->
5971
5972<ul id="tab"><li class="active">
5973
5974<div class="npcontent">
5975
5976<h4>VERSE SUMMARY</h4>
5977
5978<p>la la la</p>
5979
5980
5981<h4>BASIC INFORMATION</h4>
5982
5983<strong>AGE:</strong> 38 ( ADWD ) <br />
5984<strong>DATE OF BIRTH:</strong> ( 6th August ) 262 AC <br />
5985<strong>SPOKEN LANGUAGES:</strong> The Common Tongue & Valyrian <br />
5986<strong>HERITAGE:</strong> Maternal ancestry originates in the Reach, whereas paternal ancestry originates in the Iron Islands <br />
5987<strong>OCCUPATION:</strong> Pirate <br />
5988<strong>HOMETOWN:</strong> Braavos <br />
5989<strong>RELIGION:</strong> Jack was never officially baptised by the Drowned God or adopted the religion as his own, and he develops a very agnostical attitude towards the idea of organised religion. However, given his later brush with R’hllor and his followers, he doesn’t discount the presence of the divine entirely <br />
5990<strong>HOUSE AFFILIATIONS:</strong> formerly, to House Teague of the Iron Islands, and House Greyjoy by extension <br />
5991
5992<h4>BIOGRAPHY</h4>
5993
5994<p>Jack is born at sea in the middle of a storm, and spends the first seven years of his life in Braavos, raised mostly by his mother ( who originated from the Reach and fled for the Narrow Sea in the face of an arranged marriage ), but with sporadic input from his father, who is part of an influential Ironborn family.</p>
5995
5996<p>After his mother’s death, Jack is taken on as a ‘ward’/cabin boy by Teague on his ship ( but not before spending a year on the Iron Islands with his grandmother, attempting to beat the ironborn into him ), and spends the majority of his upbringing either on the Iron Islands, at sea or in foreign ports, excelling at sailing but growing to hate the iron way of life. As a technical bastard child, Jack would have been given the surname ‘Pyke’ by the Ironborn he sailed with, but he is never called that by Teague in all the years that he grew up on the islands, and Jack stubbornly continues to refer to himself as Sparrow.</p>
5997
5998<p>Over the years he becomes a very talented sailor, although longing for nothing more than to leave the Iron Islands forever and strike out on his own – particularly as he was convinced that he was not tough enough or good enough to make it among their kind. It’s because of this that Jack grows close to Essos pirate Christophe-Julien de Rapièr during his teenage years, a man who represented the freedom to be that he so craved. As adulthood creeps closer, he also becomes aware that he would soon need to pledge his allegiance to the Drowned God if he hoped to ever gain the respect of his Ironborn peers, Jack had planned on multiple occasions to join the other man’s crew and leave the life behind, but is thwarted at every turn – until he turns twenty and finally gets his wish.</p>
5999
6000<p>Rebellion had broken out in Westeros against the Targaryen dynasty, and while the Ironborn stayed largely neutral in the conflict, there were still those who wanted to throw their lot behind a side – and those who wanted to stoke discord amongst their ranks. When Christophe is apprehended by the Ironborn, accused of being a so-called conspirator and meddler in their affairs, and a butcher of their kind out on the water, Jack is outraged and remains a firm believer in the man’s innocence. But in his attempt to break the man out and gaol and smuggle him and his men out of Pyke, the man’s true nature is revealed, and Jack is subsequently pressganged aboard his ship and taken with them.</p>
6001
6002<p>Aware that he can now never return to the Iron Islands unless he wishes to be branded a traitor, Jack finally claims the Sparrow name for himself ( determined to leave no evidence that he was ever one of them ) and later escapes Christophe’s ship, making for the place of his childhood, Braavos, and signing onto a merchant crew, transporting cargo around the continent and across the Narrow Sea.</p>
6003
6004<p>Within five years, Jack becomes the captain of his very own ship, working under a wealthy merchantman in Volantis. The arrangement is beneficial to both parties until a bargain between the two goes terribly wrong, and Jack is blackmailed into transporting a cargo of slaves out of the city. Refusing to do as he is ordered, Jack takes the slaves to Braavos and frees them, drawing his employer’s ire. His ship is captured, he is imprisoned in Volantis, branded a pirate and made to watch his ship burn as punishment for his so-called crime. In a desperate attempt to save the Wicked Wench, Jack breaks free of his captors and tries to put the fire out, but passes out and sinks into the water before he gets the chance.</p>
6005
6006<p>He washes up further down the coast, and is vaguely aware of only one thing: a choice between life and death, and the cost of a soul for the former. The next thing Jack remembers is waking up in one of Essos’ many Red Temples, homes of R’hllor. Whether he was dead and brought back by the Red Priests and Priestesses of the fiery god, and struck the pact in the afterlife, or was merely brought back from the brink, he can’t be sure, but what he does know is that he’s alive – for thirteen years, at least – and that his ship is waiting in the harbour, charred but as beautiful as the day he first laid eyes on her. After the thirteen years is up, he would belong to R’hllor and whatever divine plan of bringing light to the darkness he has planned, but for now, Jack would live.</p>
6007
6008<p>He rechristens his ship the Black Pearl and takes up high seas piracy, operating primarily out of Braavos and other popular ports around Essos. The affairs of Westeros are of no interest to him until, aged twenty-seven, he hears about Balon Greyjoy’s rebellion against the crown, a doomed attempt by the Ironborn to seize independence for themselves – and he can almost sympathise with their plight.</p>
6009
6010<p>By the point of the start of A Song of Ice and Fire/Game of Thrones, Jack is aged thirty-six, with two years left before he would need to pay his debt.</p>
6011
6012<div class="nplinks">
6013
6014<h4>Navigation</h4>
6015
6016<a href="/tagged/%26.-verse.-every-flight-begins-with-a-fall-%28-asoiaf.-%29">
6017Verse Tag
6018</a>
6019
6020<a href="https://www.pinterest.co.uk/summerspride1/ch-captain-jack-sparrow/verse-asoiaf/">
6021Pinterest Board
6022</a>
6023
6024</div class="nplinks">
6025
6026</div class="npcontent">
6027
6028
6029</li></ul>
6030
6031
6032</div id="page">
6033
6034
6035</div id="tabcontent">
6036</div id="CrossoverASOIAF" class="page">
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051<!-- PAGE: CrossoverVictorian -->
6052
6053<div id="CrossoverVictorian" class="page" style="display:none;">
6054<div id="tabcontent">
6055
6056
6057<div class="npside">
6058
6059
6060<div class="sidebarbg">
6061<img src="{image:Sidebar Background}">
6062</div class="sidebarbg">
6063
6064
6065<div class="npsideinner">
6066
6067
6068<div class="npsideimgtop">
6069<img src="https://static.tumblr.com/m7qloac/kvYq5ft7x/victorianside02.png">
6070</div class="npsideimgtop">
6071
6072
6073
6074<div class="npsideimgbottom">
6075<img src="https://static.tumblr.com/m7qloac/Y2wq5fsn3/victorianside01.png">
6076</div class="npsideimgbottom">
6077
6078
6079</div class="npsideinner">
6080</div class="npside">
6081
6082
6083<div id="page">
6084
6085
6086
6087<div class="npheader">
6088<img src="https://static.tumblr.com/m7qloac/abiq5ft8u/victorianheader01.png">
6089</div class="npheader">
6090
6091
6092<div class="npnavi">
6093<div class="dropdown">
6094
6095<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
6096Crossover: Victorian
6097</button>
6098 <div id="myDropdown" class="dropdown-content">
6099
6100
6101 </div id="myDropdown" class="dropdown-content">
6102
6103</div class="dropdown">
6104</div class="npnavi">
6105
6106
6107<!-- TAB ONE -->
6108
6109<ul id="tab"><li class="active">
6110
6111<div class="npcontent">
6112
6113<h4>VERSE SUMMARY</h4>
6114
6115<p>la la la </p>
6116
6117<h4>BASIC INFORMATION</h4>
6118
6119<strong>FULL NAME:</strong> Jack Sparrow <br />
6120<strong>NICKNAME(S):</strong> <strike>Jackie</strike>, <strike>Jacky boy</strike>, little bird <br />
6121<strong>ALIAS(ES):</strong> Jack Teague <br />
6122<strong>OCCUPATION:</strong> Former cartographer turned operative for the EITC / Gentleman / Agitator <br />
6123<strong>AGE:</strong> 38 <i>( default )</i> <br />
6124<strong>SEXUAL ORIENTATION:</strong> Bisexual <br />
6125<strong>ROMANTIC ORIENTATION:</strong> Demiromantic <br />
6126<strong>DATE OF BIRTH:</strong> 6th August <br />
6127<strong>NATIONALITY:</strong> British <br />
6128<strong>RELIGION:</strong> Agnostic <br />
6129
6130<h4>PHYSICAL INFORMATION</h4>
6131
6132<strong>HEIGHT:</strong>5'10" <br />
6133<strong>EYE COLOUR:</strong> Brown <br />
6134<strong>HAIR COLOUR:</strong> Brown <br />
6135<strong>DOMINANT HAND:</strong> Right, but somewhat ambidextrous <br />
6136<strong>DISTINGUISHING FEATURES:</strong> High cheekbones, large eyes, a quirky sense of dress <br />
6137<strong>TATTOO(S):</strong> Sparrow flying over stylised waves on his right forearm, the desiderata poem on his back <br />
6138<strong>SCAR(S):</strong> Extensive burns along his left arm, scar through his right eyebrow,<a href="https://66.media.tumblr.com/151e6169253e2061554725fce8f98692/tumblr_inline_pihteiFebP1smyfzk_540.png">triple-crossed brand in the shape of the EITC insignia on his right forearm</a> <br />
6139<strong>PIERCING(S):</strong> Both ears <br />
6140
6141<h4>BACKGROUND INFORMATION</h4>
6142
6143<strong>HOMETOWN:</strong> London <br />
6144<strong>CURRENT RESIDENCE:</strong> London, Europe, the Caribbean, India & the Far East <br />
6145<strong>LANGUAGE(S):</strong> English, Spanish, French, along with some Latin, Mandarin & others <br />
6146<strong>PARENTS:</strong> Edward Teague & Maria Sparrow <i>( deceased )</i> <br />
6147<strong>SIBLING(S):</strong> None <br />
6148<strong>EXTENDED FAMILY:</strong> Uncle Jack <i>( Paternal Uncle )</i>, Bartholomew <i>( paternal grandfather )</i>, Anne Teague <i>( paternal grandmother )</i>, Hattie Price <i>( Surrogate Mother )</i> <br />
6149<strong>SIGNIFICANT OTHER:</strong> Elizabeth Swann <br />
6150<strong>CHILD(REN):</strong> None <br />
6151<strong>PET(S):</strong> Tim <i>( Dog with Keys )</i> <br />
6152<strong>FRIENDS / ALLIES:</strong> Joshamee Gibbs <br />
6153<strong>ENEMIES / ANIMOSITIES:</strong> Cutler Beckett, Christophe-Julien de Rapièr, Anne Teague, much of polite society <br />
6154
6155<h4>PERSONALITY INFORMATION</h4>
6156
6157<strong>POSITIVE TRAITS:</strong> Independent, charming, open-minded, unprejudiced, intelligent, perceptive, hard-working, ambitious, well-read, merciful, witty, capable of gentleness & selflessness, flirtatious, individualistic, opinionated, charismatic, resilient, adaptable, flamboyant <br />
6158<strong>FLAWS:</strong> Stubborn, manipulative, perfectionistic, emotionally stunted, self-serving, reckless, spiteful, petty, cynical, untrustworthy, proud, distrustful, paranoid, egocentric, obsessive, unreliable, chaotic, unpredictable, moody, sometimes melancholic <br />
6159<strong>LIKES:</strong> Freedom, sailing, trouble-making, gambling, reading, rum, risk-taking, swimming <br />
6160<strong>DISLIKES:</strong> Stupidity, ignorance, injustice, cruelty, complacency, staying in one place <br />
6161<strong>FEARS:</strong> Not being good enough, loneliness, abandonment, not being remembered, death, failure, fire <br />
6162<strong>SKILLS:</strong> Deception, sleight of hand, navigation, cartography, sailing, reading people, improvising, handling & using a gun, self-defence, learning languages, disguise <br />
6163
6164<h4>VICES + HABITS</h4>
6165
6166<strong>SMOKES?</strong> Sometimes <br />
6167<strong>DRINKS?</strong> Yes <br />
6168<strong>DRUGS?</strong> Recreational use <br />
6169<strong>SELF-DESTRUCTIVE?</strong> Yes <br />
6170
6171<h4>MISCELLANEOUS INFORMATION</h4>
6172
6173<strong>ZODIAC:</strong> Leo <br />
6174<strong>ELEMENT:</strong> Fire & water <br />
6175<strong>ALIGNMENT:</strong> Chaotic Neutral <br />
6176<strong>MBTI:</strong> ENTP <br />
6177
6178<h4>BIOGRAPHY</h4>
6179
6180<p>The Teagues are a family notorious in 19th century London not only for their wealth, but for the scandal and crime that accompanies it. But when the heir to the estate and fortune, Edward Teague, and his lawfully wedded wife, Hattie Price, are unable to conceive a child to continue the family name, a plan is hatched by Anne, his mother and clan matriarch, to cover it up. Having engaged in an illicit -- though borne of genuine love and feeling -- with one of the household's kitchen servants, Maria Sparrow, and conceived an illegitimate son with her, the plan was simple, if cold: to pass the baby Jack off as the rightful son of Edward and Hattie.</p>
6181
6182<p>Not even Jack himself was let in on the secret, and spent the majority of his childhood and early adolescence believing that Hattie was his mother -- and Maria was merely a friendly kitchen servant, who sadly passed away not long after his seventh birthday. Her death caused an irreparable fissure in his relationship with Teague, and so therefore Jack relied more and more on Hattie and his governess for love and attention during these formative years.</p>
6183
6184<p>And then there was the rigidity of his upbringing. Between his harsh grandmother and emotionally distant father, Jack longed to escape to the world beyond London and the centre of the British Empire. He took an avid interest in history and cartography in the hope of being able to explore some of these far flung places -- and was certainly not interested in the life planned for him, of settling down with a wife and continuing the family line and business.</p>
6185
6186<p>Learning the truth about his parentage only isolated him further from those he was connected to by blood. The most tragic consequence of this was the fracturing of his relationship with a woman who had loved him unconditionally, despite him being the son of an extramarital affair: Hattie. The two eventually reconciled, but the betrayal of his entire family made him all the more resolved to leave them all behind, and forge his own path.</p>
6187
6188<p>Jack's first taste of travel was at the age of eighteen, when he travelled the Continent on his very own gentleman's sojourn, but that didn't prove enough to quench his thirst and so, very soon afterwards, he signed on as a cartographer's apprentice. It was an unorthodox position to take given his social standing, and some of the company he kept during those years was questionable to say the least, adding fuel to the fire of scandal in his family, but the skills he acquired subsequently led to a lucrative opportunity. At the age of twenty, he was offered the chance to travel the world for the East India Trading Company. Jack gladly accepted.</p>
6189
6190<p>He first worked as a cartographer, before then becoming an operative over the course of five years, before meeting one of the company's directions, Cutler Beckett. The two formed a close partnership in business in the Far East, but being stationed in India began to reveal the morally questionable cracks beneath the EITC's facade -- namely, their underhand methods and brutal attitudes towards those who already lived in the areas they had conquered.</p>
6191
6192<p>It led to him directly disobeying the rule of the British Raj on behalf of a local village, and Jack was officially branded an enemy of the East India Trading Company for his trouble ( coupled with an actual brand ). He was arrested and sent back to England in scandal -- though before he reached London, the ship Jack was on was attacked by a rogue group of EITC ships, sent on Beckett's orders. The ship burned and sank in the Mediterranean Ocean, just off the coast of Greece.</p>
6193
6194<p>Washing up on one of its many islands, a merchant ship docked three days later and came to Jack's aid. Opting to conceal his identity, Jack -- for the first time -- used his true name, Jack Sparrow, and served on board the ship as a sailor until it reached mainland Greece.</p>
6195
6196<p>It was the first time Jack had felt truly liberated and able to do as he pleased. No longer recognised for his family name or association to the EITC, Jack was in no hurry to return to England, and so set off for Constantinople. There, he pursued a wide range of professions and business ventures, from sailorship to smuggling to archaelogy and treasure hunting across Europe, Northern Africa and the Middle East.</p>
6197
6198<p>But after a number of years, restlessness began to settle in, and Jack eventually returned to England. The scandal surrounding his departure from the EITC had lessened in the interim, but still remained as he settled back into his life in London.</p>
6199
6200<p>Yet all he'd learned from his time abroad hadn't been in vain. Realising that he could use his name and reputation to agitate against certain societal norms in the city, Jack threw his support behind movements fighting for the rights of child and manual labourers -- as well as other vigilante-style groups capable of disrupting the status quo. He also wished to take on the stranglehold that powerful businessmen and politicians held, including one man in particular -- who had gained a peerage in the time he'd been away.<p>
6201
6202<p>But coming back to London ha been a mistake in one respect. Having returned as the heir apparent of the family, expectations were once again placed upon him to marry and continue the family line, as well as to take an active role in their shady business. Jack is later forced to marry Elizabeth Swann, so that the Teague family might levy the Swann's political influence and fortune.</p>
6203
6204<p>Jack's default point in this verse is as a scandalous, wealthy gentleman in London. He operates a number of clandestine organisations in the city, aided by his cartography skills in crafting maps of the underbelly of London society. Some of these are linked to various crime, and others linked to agitating the working classes. He is a man of connections and notoriety, and also has links to Pinkerton and anarchist-style law enforcement groups, who operate outside the law and without the newly formed Metropolitan police's official backing.</p>
6205
6206<div class="nplinks">
6207
6208<h4>Navigation</h4>
6209
6210<a href="/tagged/%26.-verse.-sometimes-a-pawn-is-enough-to-change-the-game-%28-victorian.-%29">
6211Verse Tag
6212</a>
6213
6214<a href="https://www.pinterest.co.uk/summerspride1/verse-sometimes-a-pawn-is-enough-to-change-the-gam/">
6215Pinterest Board
6216</a>
6217
6218</div class="nplinks">
6219
6220</div class="npcontent">
6221
6222
6223</li></ul>
6224
6225
6226</div id="page">
6227
6228
6229</div id="tabcontent">
6230</div id="CrossoverVictorian" class="page">
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247<!-- PAGE: CrossoverBS -->
6248
6249<div id="CrossoverBS" class="page" style="display:none;">
6250<div id="tabcontent">
6251
6252
6253<div class="npside">
6254
6255
6256<div class="sidebarbg">
6257<img src="{image:Sidebar Background}">
6258</div class="sidebarbg">
6259
6260
6261<div class="npsideinner">
6262
6263
6264<div class="npsideimgtop">
6265<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
6266</div class="npsideimgtop">
6267
6268
6269
6270<div class="npsideimgbottom">
6271<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
6272</div class="npsideimgbottom">
6273
6274
6275
6276</div class="npsideinner">
6277</div class="npside">
6278
6279
6280<div id="page">
6281
6282
6283
6284<div class="npheader">
6285<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
6286</div class="npheader">
6287
6288
6289<div class="npnavi">
6290<div class="dropdown">
6291
6292<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
6293Crossover: Black Sails
6294</button>
6295 <div id="myDropdown" class="dropdown-content">
6296
6297
6298 </div id="myDropdown" class="dropdown-content">
6299
6300</div class="dropdown">
6301</div class="npnavi">
6302
6303
6304<!-- TAB ONE -->
6305
6306<ul id="tab"><li class="active">
6307
6308<div class="npcontent">
6309
6310
6311<h4>VERSE SUMMARY</h4>
6312
6313<p>la la la </p>
6314
6315
6316<div class="nplinks">
6317
6318<h4>Navigation</h4>
6319
6320<a href="/tagged/%26.-verse.-thieves-awaiting-a-noose-%28-black-sails.-%29">
6321Verse Tag
6322</a>
6323
6324</div class="nplinks">
6325
6326
6327</div class="npcontent">
6328
6329
6330</li></ul>
6331
6332
6333</div id="page">
6334
6335
6336</div id="tabcontent">
6337</div id="CrossoverBS" class="page">
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351<!-- PAGE: CrossoverDA -->
6352
6353<div id="CrossoverDA" class="page" style="display:none;">
6354<div id="tabcontent">
6355
6356
6357<div class="npside">
6358
6359
6360<div class="sidebarbg">
6361<img src="{image:Sidebar Background}">
6362</div class="sidebarbg">
6363
6364
6365<div class="npsideinner">
6366
6367
6368<div class="npsideimgtop">
6369<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
6370</div class="npsideimgtop">
6371
6372
6373
6374<div class="npsideimgbottom">
6375<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
6376</div class="npsideimgbottom">
6377
6378
6379
6380</div class="npsideinner">
6381</div class="npside">
6382
6383
6384<div id="page">
6385
6386
6387
6388<div class="npheader">
6389<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
6390</div class="npheader">
6391
6392
6393<div class="npnavi">
6394<div class="dropdown">
6395
6396<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
6397Crossover: Dragon Age
6398</button>
6399 <div id="myDropdown" class="dropdown-content">
6400
6401
6402 </div id="myDropdown" class="dropdown-content">
6403
6404</div class="dropdown">
6405</div class="npnavi">
6406
6407
6408<!-- TAB ONE -->
6409
6410<ul id="tab"><li class="active">
6411
6412<div class="npcontent">
6413
6414
6415<h4>VERSE SUMMARY</h4>
6416
6417<p>la la la </p>
6418
6419
6420<div class="nplinks">
6421
6422<h4>Navigation</h4>
6423
6424<a href="/tagged/%26.-verse.-raider-of-the-waking-sea-%28-dragon-age.-%29">
6425Verse Tag
6426</a>
6427
6428</div class="nplinks">
6429
6430
6431</div class="npcontent">
6432
6433
6434</li></ul>
6435
6436
6437</div id="page">
6438
6439
6440</div id="tabcontent">
6441</div id="CrossoverDA" class="page">
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453<!-- PAGE: CrossoverTHG -->
6454
6455<div id="CrossoverTHG" class="page" style="display:none;">
6456<div id="tabcontent">
6457
6458
6459<div class="npside">
6460
6461
6462<div class="sidebarbg">
6463<img src="{image:Sidebar Background}">
6464</div class="sidebarbg">
6465
6466
6467<div class="npsideinner">
6468
6469
6470<div class="npsideimgtop">
6471<img src="https://static.tumblr.com/m7qloac/ffxq5ftx6/thgside01.png">
6472</div class="npsideimgtop">
6473
6474
6475
6476<div class="npsideimgbottom">
6477<img src="https://static.tumblr.com/m7qloac/W1eq5fu2a/thgside02.png">
6478</div class="npsideimgbottom">
6479
6480
6481</div class="npsideinner">
6482</div class="npside">
6483
6484
6485<div id="page">
6486
6487
6488
6489<div class="npheader">
6490<img src="https://static.tumblr.com/m7qloac/HMsq5fts4/thgheader01.png">
6491</div class="npheader">
6492
6493
6494<div class="npnavi">
6495<div class="dropdown">
6496
6497<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
6498Crossover: The Hunger Games
6499</button>
6500 <div id="myDropdown" class="dropdown-content">
6501
6502
6503 </div id="myDropdown" class="dropdown-content">
6504
6505</div class="dropdown">
6506</div class="npnavi">
6507
6508
6509<!-- TAB ONE -->
6510
6511<ul id="tab"><li class="active">
6512
6513<div class="npcontent">
6514
6515
6516<h4>VERSE SUMMARY</h4>
6517
6518<p>la la la </p>
6519
6520
6521<div class="nplinks">
6522
6523<h4>Navigation</h4>
6524
6525<a href="/tagged/%26.-verse.-the-odds-are-never-in-our-favour-%28-thg.-%29">
6526Verse Tag
6527</a>
6528
6529
6530</div class="npcontent">
6531
6532
6533</li></ul>
6534
6535
6536</div id="page">
6537
6538
6539</div id="tabcontent">
6540</div id="CrossoverTHG" class="page">
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556<!-- PAGE: CrossoverWW -->
6557
6558<div id="CrossoverWW" class="page" style="display:none;">
6559<div id="tabcontent">
6560
6561
6562<div class="npside">
6563
6564
6565<div class="sidebarbg">
6566<img src="{image:Sidebar Background}">
6567</div class="sidebarbg">
6568
6569
6570<div class="npsideinner">
6571
6572
6573<div class="npsideimgtop">
6574<img src="https://static.tumblr.com/m7qloac/IWGq5fufs/westworldside02.png">
6575</div class="npsideimgtop">
6576
6577
6578
6579<div class="npsideimgbottom">
6580<img src="https://static.tumblr.com/m7qloac/lBvq5fuad/westworldside01.png">
6581</div class="npsideimgbottom">
6582
6583
6584</div class="npsideinner">
6585</div class="npside">
6586
6587
6588<div id="page">
6589
6590
6591
6592<div class="npheader">
6593<img src="https://static.tumblr.com/m7qloac/aS9q5fv72/westworldheader01.png">
6594</div class="npheader">
6595
6596
6597<div class="npnavi">
6598<div class="dropdown">
6599
6600<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
6601Crossover: Westworld
6602</button>
6603 <div id="myDropdown" class="dropdown-content">
6604
6605
6606 </div id="myDropdown" class="dropdown-content">
6607
6608</div class="dropdown">
6609</div class="npnavi">
6610
6611
6612<!-- TAB ONE -->
6613
6614<ul id="tab"><li class="active">
6615
6616<div class="npcontent">
6617
6618
6619<h4>VERSE SUMMARY</h4>
6620
6621<p>la la la </p>
6622
6623
6624<div class="nplinks">
6625
6626<h4>Navigation</h4>
6627
6628<a href="/tagged/%26.-verse.-hell-is-empty-and-all-the-devils-are-here-%28-westworld.-%29">
6629Verse Tag
6630</a>
6631
6632
6633</div class="npcontent">
6634
6635
6636</li></ul>
6637
6638
6639</div id="page">
6640
6641
6642</div id="tabcontent">
6643</div id="CrossoverWW" class="page">
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665<!-- PAGE: PrivatePirateWar -->
6666
6667<div id="PrivatePirateWar" class="page" style="display:none;">
6668<div id="tabcontent">
6669
6670
6671<div class="npside">
6672
6673
6674<div class="sidebarbg">
6675<img src="{image:Sidebar Background}">
6676</div class="sidebarbg">
6677
6678
6679<div class="npsideinner">
6680
6681
6682<div class="npsideimgtop">
6683<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
6684</div class="npsideimgtop">
6685
6686
6687
6688<div class="npsideimgbottom">
6689<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
6690</div class="npsideimgbottom">
6691
6692
6693
6694</div class="npsideinner">
6695</div class="npside">
6696
6697
6698<div id="page">
6699
6700
6701
6702<div class="npheader">
6703<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
6704</div class="npheader">
6705
6706
6707<div class="npnavi">
6708<div class="dropdown">
6709
6710<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
6711Private verse: Pirate War
6712</button>
6713 <div id="myDropdown" class="dropdown-content">
6714
6715
6716 </div id="myDropdown" class="dropdown-content">
6717
6718</div class="dropdown">
6719</div class="npnavi">
6720
6721
6722<!-- TAB ONE -->
6723
6724<ul id="tab"><li class="active">
6725
6726<div class="npcontent">
6727
6728
6729<h4>VERSE SUMMARY</h4>
6730
6731<p>la la la </p>
6732
6733
6734<div class="nplinks">
6735
6736<h4>Navigation</h4>
6737
6738<a href="/tagged/%26.-verse.-perfect-paradise-tearing-at-the-seams-%28-pirate-war.-%29">
6739Verse Tag
6740</a>
6741
6742<a href="https://www.pinterest.co.uk/empireburned/verse-this-is-how-we-burn/">
6743Pinterest Board
6744</a>
6745
6746
6747</div class="npcontent">
6748
6749
6750</li></ul>
6751
6752
6753</div id="page">
6754
6755
6756</div id="tabcontent">
6757</div id="PrivatePirateWar" class="page">
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770<!-- PAGE: PrivateSoulmate -->
6771
6772<div id="PrivateSoulmate" class="page" style="display:none;">
6773<div id="tabcontent">
6774
6775
6776<div class="npside">
6777
6778
6779<div class="sidebarbg">
6780<img src="{image:Sidebar Background}">
6781</div class="sidebarbg">
6782
6783
6784<div class="npsideinner">
6785
6786
6787<div class="npsideimgtop">
6788<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
6789</div class="npsideimgtop">
6790
6791
6792
6793<div class="npsideimgbottom">
6794<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
6795</div class="npsideimgbottom">
6796
6797
6798
6799</div class="npsideinner">
6800</div class="npside">
6801
6802
6803<div id="page">
6804
6805
6806
6807<div class="npheader">
6808<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
6809</div class="npheader">
6810
6811
6812<div class="npnavi">
6813<div class="dropdown">
6814
6815<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
6816Private verse: Soulmate AU
6817</button>
6818 <div id="myDropdown" class="dropdown-content">
6819
6820
6821 </div id="myDropdown" class="dropdown-content">
6822
6823</div class="dropdown">
6824</div class="npnavi">
6825
6826
6827<!-- TAB ONE -->
6828
6829<ul id="tab"><li class="active">
6830
6831<div class="npcontent">
6832
6833
6834<h4>VERSE SUMMARY</h4>
6835
6836<p>la la la </p>
6837
6838
6839<div class="nplinks">
6840
6841<h4>Navigation</h4>
6842
6843<a href="/tagged/%26.-verse.-maybe-we’re-from-the-same-star-%28-soulmate-au.-%29">
6844Verse Tag
6845</a>
6846
6847
6848</div class="npcontent">
6849
6850
6851</li></ul>
6852
6853
6854</div id="page">
6855
6856
6857</div id="tabcontent">
6858</div id="PrivateSoulmate" class="page">
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874<!-- PAGE: PrivateApocalypse -->
6875
6876<div id="PrivateApocalypse" class="page" style="display:none;">
6877<div id="tabcontent">
6878
6879
6880<div class="npside">
6881
6882
6883<div class="sidebarbg">
6884<img src="{image:Sidebar Background}">
6885</div class="sidebarbg">
6886
6887
6888<div class="npsideinner">
6889
6890
6891<div class="npsideimgtop">
6892<img src="https://static.tumblr.com/m7qloac/lajq5fwt0/apocalypseside03.png">
6893</div class="npsideimgtop">
6894
6895
6896
6897<div class="npsideimgbottom">
6898<img src="https://static.tumblr.com/m7qloac/ALmq5fwaj/apocalypseside02.png">
6899</div class="npsideimgbottom">
6900
6901
6902</div class="npsideinner">
6903</div class="npside">
6904
6905
6906<div id="page">
6907
6908
6909
6910
6911<div class="npheader">
6912<img src="https://static.tumblr.com/m7qloac/RdPq5fw1o/apocalypseheader01.png">
6913</div class="npheader">
6914
6915
6916<div class="npnavi">
6917<div class="dropdown">
6918
6919<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
6920Private verse: Apocalypse
6921</button>
6922 <div id="myDropdown" class="dropdown-content">
6923
6924
6925 </div id="myDropdown" class="dropdown-content">
6926
6927</div class="dropdown">
6928</div class="npnavi">
6929
6930
6931<!-- TAB ONE -->
6932
6933<ul id="tab"><li class="active">
6934
6935<div class="npcontent">
6936
6937
6938<h4>VERSE SUMMARY</h4>
6939
6940<p>la la la </p>
6941
6942
6943<div class="nplinks">
6944
6945<h4>Navigation</h4>
6946
6947<a href="/tagged/%26.-verse.-the-grudges-of-gods-are-as-deathless-as-their-flesh-%28-apocalypse.-%29">
6948Verse Tag
6949</a>
6950
6951
6952</div class="npcontent">
6953
6954
6955</li></ul>
6956
6957
6958</div id="page">
6959
6960
6961</div id="tabcontent">
6962</div id="PrivateApocalypse" class="page">
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979<!-- PAGE: PrivatePearl -->
6980
6981<div id="PrivatePearl" class="page" style="display:none;">
6982<div id="tabcontent">
6983
6984
6985<div class="npside">
6986
6987
6988<div class="sidebarbg">
6989<img src="{image:Sidebar Background}">
6990</div class="sidebarbg">
6991
6992
6993<div class="npsideinner">
6994
6995
6996<div class="npsideimgtop">
6997<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
6998</div class="npsideimgtop">
6999
7000
7001
7002<div class="npsideimgbottom">
7003<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
7004</div class="npsideimgbottom">
7005
7006
7007
7008</div class="npsideinner">
7009</div class="npside">
7010
7011
7012<div id="page">
7013
7014
7015
7016<div class="npheader">
7017<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
7018</div class="npheader">
7019
7020
7021<div class="npnavi">
7022<div class="dropdown">
7023
7024<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
7025Private verse: Humanised Pearl
7026</button>
7027 <div id="myDropdown" class="dropdown-content">
7028
7029
7030 </div id="myDropdown" class="dropdown-content">
7031
7032</div class="dropdown">
7033</div class="npnavi">
7034
7035
7036<!-- TAB ONE -->
7037
7038<ul id="tab"><li class="active">
7039
7040<div class="npcontent">
7041
7042
7043<h4>VERSE SUMMARY</h4>
7044
7045<p>la la la </p>
7046
7047
7048<div class="nplinks">
7049
7050<h4>Navigation</h4>
7051
7052<a href="/tagged/%26.-verse.-a-pearl-of-great-price-%28-humanised-pearl.-%29">
7053Verse Tag
7054</a>
7055
7056
7057</div class="npcontent">
7058
7059
7060</li></ul>
7061
7062
7063</div id="page">
7064
7065
7066</div id="tabcontent">
7067</div id="PrivatePearl" class="page">
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078</div id="container">
7079
7080
7081<!-- CREDIT -->
7082
7083<div id="credit">
7084<div style="width:105px;margin-right:10px;">
7085
7086
7087<a href="http://iniziare.tumblr.com/post/183826974792/base-theme-viper-preview-download-code" target="blank">
7088<span>S.</span>MADE BY SAE.</a>
7089
7090
7091</div style>
7092</div id="credit">
7093
7094</body>
7095</html>