Advertisement
Guest User

FOR KARA FUCK OFF

a guest
Aug 31st, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 59.07 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4.  
  5. <script type="text/javascript">
  6. // <![CDATA[
  7. var colour="#652365"; // what colour are the blobs
  8. var speed=66; // speed of animation, lower is faster
  9. var blobs=15; // how many blobs are in the jar
  10. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  11.  
  12. /***************************\
  13. * Blobs in a Jar Effect *
  14. *(c)2012-13 mf2fm web-design*
  15. * http://www.mf2fm.com/rv *
  16. * DON'T EDIT BELOW THIS BOX *
  17. \***************************/
  18.  
  19. var div;
  20. var xpos=new Array();
  21. var ypos=new Array();
  22. var zpos=new Array();
  23. var dx=new Array();
  24. var dy=new Array();
  25. var dz=new Array();
  26. var blob=new Array();
  27. var swide=800;
  28. var shigh=600;
  29. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  30.  
  31. function addLoadEvent(funky) {
  32. var oldonload=window.onload;
  33. if (typeof(oldonload)!='function') window.onload=funky;
  34. else window.onload=function() {
  35. if (oldonload) oldonload();
  36. funky();
  37. }
  38. }
  39.  
  40. addLoadEvent(fill_the_jar);
  41.  
  42. function fill_the_jar() {
  43. var i, dvs;
  44. div=document.createElement('div');
  45. dvs=div.style;
  46. dvs.position='fixed';
  47. dvs.left='0px';
  48. dvs.top='0px';
  49. dvs.width='1px';
  50. dvs.height='1px';
  51. document.body.appendChild(div);
  52. set_width();
  53. for (i=0; i<blobs; i++) {
  54. add_blob(i);
  55. jamjar(i);
  56. }
  57. }
  58.  
  59. function add_blob(ref) {
  60. var dv, sy;
  61. dv=document.createElement('div');
  62. sy=dv.style;
  63. sy.position='absolute';
  64. sy.textAlign='center';
  65. if (ie_version && ie_version<10) {
  66. sy.fontSize="10px";
  67. sy.width="100px";
  68. sy.height="100px";
  69. sy.paddingTop="40px";
  70. sy.color=colour;
  71. dv.appendChild(document.createTextNode(charc));
  72. }
  73. else if (ie_version) {
  74. sy.fontSize="1px";
  75. sy.width="0px";
  76. sy.height="0px";
  77. }
  78. else {
  79. dv.appendChild(document.createTextNode(charc));
  80. sy.color='rgba(0,0,0,0)';
  81. }
  82. ypos[ref]=Math.floor(shigh*Math.random());
  83. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  84. xpos[ref]=Math.floor(swide*Math.random());
  85. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  86. zpos[ref]=Math.random()*20;
  87. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  88. blob[ref]=dv;
  89. div.appendChild(blob[ref]);
  90. set_blob(ref);
  91. }
  92.  
  93. function rejig(ref, xy) {
  94. if (xy=='y') {
  95. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  96. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  97. }
  98. else {
  99. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  100. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  101. }
  102. }
  103.  
  104. function sign(a) {
  105. if (a<0) return (-2);
  106. else if (a>0) return (2);
  107. else return (0);
  108. }
  109.  
  110. function set_blob(ref) {
  111. var sy;
  112. sy=blob[ref].style;
  113. sy.top=ypos[ref]+'px';
  114. sy.left=xpos[ref]+'px';
  115. if (ie_version && ie_version<10) {
  116. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  117. sy.fontSize=30-zpos[ref]+"px";
  118. }
  119. else if (ie_version) {
  120. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  121. }
  122. else {
  123. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  124. sy.fontSize=40+zpos[ref]+'px';
  125. }
  126. }
  127.  
  128. function jamjar(ref) {
  129. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  130. ypos[ref]+=dy[ref];
  131. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  132. xpos[ref]+=dx[ref];
  133. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  134. zpos[ref]+=dz[ref];
  135. set_blob(ref);
  136. setTimeout("jamjar("+ref+")", speed);
  137. }
  138.  
  139. window.onresize=set_width;
  140. function set_width() {
  141. var sw_min=999999;
  142. var sh_min=999999;
  143. if (document.documentElement && document.documentElement.clientWidth) {
  144. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  145. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  146. }
  147. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  148. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  149. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  150. }
  151. if (document.body.clientWidth) {
  152. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  153. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  154. }
  155. if (sw_min==999999 || sh_min==999999) {
  156. sw_min=800;
  157. sh_min=600;
  158. }
  159. swide=sw_min;
  160. shigh=sh_min;
  161. }
  162. // ]]>
  163. </script>
  164.  
  165. <!--- THEME 4 BY WEHRMXCHT
  166. DO NOT COPY, REDISTRUBUTE AS YOUR OWN, REMOVE CREDIT, LIFT CODE, OR STEAL, THAT'S A REAL SHITTY THING TO DO, K? --->
  167.  
  168. <!--- CUSTOM FONTS --->
  169.  
  170. <link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
  171.  
  172. <link href='https://fonts.googleapis.com/css?family=Homemade+Apple' rel='stylesheet' type='text/css'>
  173.  
  174. <link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
  175.  
  176. <link href='https://fonts.googleapis.com/css?family=Leckerli+One' rel='stylesheet' type='text/css'>
  177.  
  178. <!--- CUSTOM FONTS --->
  179.  
  180.  
  181. <!--- TOOLTIP --->
  182.  
  183. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  184. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  185. <script>
  186. (function($){
  187. $(document).ready(function(){
  188. $("a[title]").style_my_tooltips({
  189. tip_follows_cursor:true,
  190. tip_delay_time:7,
  191. tip_fade_speed:7,
  192. attribute:"title"
  193. });
  194. });
  195. })(jQuery);
  196. </script>
  197.  
  198. <!--- TOOLTIP --->
  199.  
  200. <!---POP UP ASK BOX--->
  201.  
  202. <script type="text/javascript"
  203. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  204. <script>
  205. $(document).ready(function() {
  206. //
  207. $('a.poplight[href^=#]').click(function() {
  208. var popID = $(this).attr('rel');
  209. var popURL = $(this).attr('href');
  210. var query= popURL.split('?');
  211. var dim= query[1].split('&');
  212. var popWidth = dim[0].split('=')[1];
  213. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  214. var popMargTop = ($('#' + popID).height() + 80) / 2;
  215. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  216. $('#' + popID).css({
  217. 'margin-top' : -popMargTop,
  218. 'margin-left' : -popMargLeft
  219. });
  220. $('body').append('<div id="fade"></div>');
  221. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn();
  222. return false;
  223. });
  224. $('a.close, #fade').live('click', function() {
  225. $('#fade , .popup_block').fadeOut(function() {
  226. $('#fade, a.close').remove();
  227. });
  228. return false;
  229. });
  230. });
  231. </script>
  232.  
  233. <!---POP UP ASK BOX--->
  234.  
  235. <!---POP UP LINKS--->
  236.  
  237. <script>
  238. $(document).ready(function() {
  239. $('a.poplight[href^=#]').click(function() {
  240. var popID = $(this).attr('rel');
  241. var popURL = $(this).attr('href');
  242. var query= popURL.split('?');
  243. var dim= query[1].split('&');
  244. var popWidth = dim[0].split('=')[1];
  245.  
  246. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend();
  247. var popMargTop = ($('#' + popID).height(250) + 80) / 2;
  248. var popMargLeft = ($('#' + popID).width(250) + 80) / 2;
  249. $('#' + popID).css({
  250. 'margin-top' : -popMargTop,
  251. 'margin-left' : -popMargLeft
  252. });
  253.  
  254. $('body').append('<div id="fade"></div>');
  255. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn();
  256. return false;
  257. });
  258. $('a.close, #fade').live('click', function() {
  259. $('#fade , .popup_block').fadeOut(function() {
  260. $('#fade, a.close').remove();
  261. });
  262. return false;
  263. });
  264. });
  265. </script>
  266.  
  267. <!---POPUP LINKS--->
  268.  
  269. <!---META--->
  270.  
  271. <title>{title}</title>
  272. <link rel="shortcut icon" href="http://cdn.bulbagarden.net/upload/e/e2/319MS.png">
  273. <link rel="altertnate" type="application/rss+xml" href="{RSS}">
  274. <meta name="description" content="" />
  275. <meta http-equiv="x-dns-prefetch-control" content="off"/>
  276.  
  277. <!--- COLOR OPTIONS --->
  278. <meta name="color:Background" content="#000000"/>
  279. <meta name="color:Posts BG" content="#222222"/>
  280. <meta name="color:Text" content="#ffffff"/>
  281. <meta name="color:Post Bold" content="#65bb71"/>
  282. <meta name="color:Post Italic" content="#7d9a8c"/>
  283. <meta name="color:Link" content="#1b6731"/>
  284. <meta name="color:Link Hover" content="#65bb71"/>
  285. <meta name="color:Scrollthumb" content="#ffffff"/>
  286. <meta name="color:Info BG" content="#000000"/>
  287. <meta name="color:Tooltip BG" content="#000000"/>
  288. <meta name="color:Tooltip Font" content="#ffffff"/>
  289.  
  290.  
  291. <!---META--->
  292.  
  293. <style type="text/css">
  294.  
  295. /* --- TO MAKE POSTS BLACK AND WHITE THEN COLOUR ON HOVER. REMOVE THIS IF YOU DON'T WANT THAT OPTION ---*/
  296.  
  297. img {
  298. -webkit-filter: grayscale(75%);
  299. z-index: -9999999999999999999999999px;
  300. -webkit-transition: all 0.9s ease-in-out;
  301. -moz-transition: all 0.9s ease-in-out;
  302. -o-transition: all 0.9s ease-in-out;
  303. -ms-transition: all 0.9s ease-in-out;
  304. transition: all 0.9s ease-in-out;
  305. }
  306.  
  307. img:hover {
  308. -webkit-filter: grayscale(0%);
  309. z-index: -9999999999999999999999999px;
  310. -webkit-transition: all 0.9s ease-in-out;
  311. -moz-transition: all 0.9s ease-in-out;
  312. -o-transition: all 0.9s ease-in-out;
  313. -ms-transition: all 0.9s ease-in-out;
  314. transition: all 0.9s ease-in-out;
  315. }
  316.  
  317.  
  318.  
  319. /* --- DESCRIPTION/SIDEBAR ---*/
  320.  
  321. #description {
  322. border-top:solid 1px transparent;
  323. border-bottom:solid 1px transparent;
  324. width: 120px;
  325. height: 290px;
  326. font-size: 8px;
  327. font-family:helvetica;
  328. text-align: justify;
  329. top: 310px;
  330. line-height:15px;
  331. position: fixed;
  332. overflow-y: scroll;
  333. padding-right: 5px;
  334. left: 700px;
  335. background-color:transparent;
  336.  
  337. }
  338.  
  339. #description b, strong {
  340. color: {color:Post Bold};
  341. font-family: 'Oswald', sans-serif;
  342. text-transform:none;
  343. text-shadow: 0px 0px 1px #9c3b3b;
  344. font-size:14px;
  345. letter-spacing:0px;
  346.  
  347. }
  348.  
  349. #description i, em {
  350. color: {color:Post Italic};
  351. font-family: 'Leckerli One', cursive;
  352. text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
  353. text-transform:none;
  354. font-size:12px;
  355. letter-spacing:1px;
  356. }
  357.  
  358.  
  359. /* --- DESCRIPTION/SIDEBAR ---*/
  360.  
  361.  
  362. /* --- CSS --- */
  363.  
  364.  
  365.  
  366. /* --- BACKGROUND --- */
  367.  
  368. html {
  369. background:#1c1c1c;
  370. background-image:url(http://i.imgur.com/1d6VbI5.png);
  371. background-attachment:fixed;
  372. background-repeat:no-repeat;
  373. background-position: top left;
  374. margin:0px;
  375. word-wrap:break-word;
  376.  
  377. /* --- SCROLLBAR --- */
  378.  
  379. }
  380.  
  381. ::-webkit-scrollbar {
  382. width: 1px;
  383. height: 4px;
  384. padding:2px;
  385. background: transparent;
  386. }
  387.  
  388. ::-webkit-scrollbar-thumb {
  389. background-color: {color:scrollthumb};
  390. }
  391.  
  392. /* --- FONTS AND STUFF --- */
  393.  
  394. body {
  395. margin:0px;
  396. color:{color:text};
  397. font-family:helvetica;
  398. text-transform:none;
  399. font-size:10px;
  400. text-align: justify;
  401. line-height:1.25em;
  402. letter-spacing:0px;
  403. margin-left:435px;
  404. }
  405.  
  406. h1 { /* --- Title style --- */
  407. font-family: 'Oswald', sans-serif;
  408. font-weight:bold;
  409. font-size:15px;
  410. text-align:center;
  411. font-style:bold;
  412. line-height:100%;
  413. letter-spacing:0px;
  414. color:{color:text};
  415. }
  416.  
  417. h2 { /* --- Subitle style --- */
  418. font-family:tahoma;
  419. font-size:16px;
  420. text-align:center;
  421. font-style:italic;
  422. line-height:100%;
  423. letter-spacing:1px;
  424. color:{color:text};
  425. padding:5px;
  426. padding-bottom:2px;
  427. }
  428.  
  429.  
  430. hr {
  431. border-color: #737373;
  432. }
  433.  
  434.  
  435. a { /* --- Link style --- */
  436. text-transform:uppercase;
  437. font-family: 'Raleway', sans-serif;
  438. color:#c4a7c6;
  439. text-shadow:0 0 2px #3f3f3f;
  440. text-decoration:none;
  441. -moz-transition-duration:0.5s;
  442. -webkit-transition-duration:0.5s;
  443. -o-transition-duration:0.5s;
  444. }
  445.  
  446. a:hover {
  447. text-shadow: 0 0 4px #3f3f3f;
  448. text-decoration:none
  449. -moz-transition-duration:0.5s;
  450. -webkit-transition-duration:0.5s;
  451. -o-transition-duration:0.5s;
  452. }
  453.  
  454.  
  455. blockquote {
  456. padding-left:5px;
  457. border-left:2px solid;
  458. }
  459.  
  460.  
  461. blockquote {
  462. border-left: solid;
  463. border-radius: 0px;
  464. border-left-width: 1px;
  465. border-color: #737373;
  466. padding:5px;
  467. padding-left: 7px;
  468. margin-left: 10px; }
  469.  
  470. #post { /* --- Post width/size --- */
  471. width:255px;
  472. padding-bottom:10px;
  473. padding-right:3px;
  474. padding-left:3px;
  475. }
  476.  
  477. #post b, strong { /* --- Bold font style --- */
  478. color: {color:Post Bold};
  479. font-family: 'Oswald', sans-serif;
  480. text-transform:none;
  481. text-shadow: 0px 0px 1px #9c3b3b;
  482. font-size:14px;
  483. letter-spacing:0px;
  484. }
  485.  
  486.  
  487. #post i, em { /* --- Italic font style --- */
  488. color: {color:Post Italic};
  489. font-family: 'Leckerli One', cursive;
  490. text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
  491. text-transform:none;
  492. font-size:14px;
  493. letter-spacing:1px;
  494. }
  495.  
  496. #post pre {
  497. font-family: times;
  498. color:{color:Post Bold};
  499. white-space: pre-wrap;
  500. white-space: -moz-pre-wrap;
  501. white-space: -pre-wrap;
  502. white-space: -o-pre-wrap;
  503. word-wrap: break-word;
  504. }
  505.  
  506. /* --- SMALL TEXT AND SUB-TEXT STYLES --- */
  507.  
  508. small {
  509.  
  510. word-spacing:0px;
  511. font-size:8px;
  512. letter-spacing:0px;
  513. line-height:130%;
  514. }
  515.  
  516. }
  517.  
  518. sup, sub {
  519. word-spacing:0px;
  520. font-size:8.5px;
  521. }
  522.  
  523.  
  524. big {
  525. font-size:12px;
  526. line-height:110%;
  527. text-shadow:1px 1px 0px #a77c62;
  528. }
  529.  
  530.  
  531. /* --- THIS IS HERE TO KEEP IMAGES IN TEXT
  532. POSTS FROM GETTING BIGGER THAN THE CONTAINER,
  533. SO DON'T MESS WITH IT BRO --- */
  534.  
  535. #post img.main_photo {
  536. width: 100%;
  537. }
  538.  
  539. #post img {
  540. max-width: 100%;
  541. height: auto;
  542. }
  543.  
  544. #post .photo img {
  545. opacity: 1;
  546. -webkit-transition: all 0.5s ease;
  547. -moz-transition: all 0.5s ease;
  548. -o-transition: all 0.5s ease;
  549. transition: all 0.5s ease;
  550. margin: 0;
  551. line-height: 0;
  552.  
  553. }
  554.  
  555. .tumblr_post.photo p {
  556. display: none;
  557. }
  558.  
  559. /* --- CSS --- */
  560.  
  561. .content { /* --- Entries within the container --- */
  562. padding:5px;
  563. width:260px;
  564. height:270px;
  565. margin-left:10px;
  566. margin-top:10px;
  567. margin-bottom:40px;
  568. position:fixed;
  569. overflow:scroll;
  570. overflow-x:hidden;
  571. background-color:transparent;
  572.  
  573.  
  574. }
  575.  
  576. .backcont { /* --- Container itself --- */
  577. padding:2px;
  578. width:290px;
  579. height:296px;
  580. left:400px;
  581. top:298px;
  582. position:fixed;
  583. background-color:transparent;
  584. }
  585.  
  586. /* --- NAVIGATION LINKS --- */
  587.  
  588.  
  589. .anavlinks {
  590. transform: rotate(0deg);
  591. text-shadow:1px 1px 3px #000;
  592. color:{color:Special};
  593. background: transparent;
  594. padding: 2px;
  595. position: fixed;
  596. height:auto;
  597. top:350px;
  598. left:880px;
  599. font-family: tahoma;
  600. text-transform:uppercase;
  601. text-align: right;
  602. font-size: 15px;
  603. letter-spacing:0.5px;
  604. padding-top: 5px;
  605. }
  606.  
  607. .anavlinks a {
  608. color:{color:link};
  609. }
  610.  
  611. .anavlinks a:hover {
  612. color: {color:link hover};
  613. text-transform: uppercase;
  614. text-shadow:3px 3px 3px #fff;
  615. }
  616.  
  617.  
  618.  
  619. /* --- PAGINATION --- */
  620.  
  621. .navigation {
  622. transform: rotate(0deg);
  623. transform-origin: left top 0;
  624. position:absolute;
  625. width:300px;
  626. text-align:left;
  627. margin-top:250px;
  628. margin-left:230px;
  629. letter-spacing:2px;
  630. word-spacing:6px;
  631. text-align:center;
  632. font-size:7px;
  633. word-spacing:0px;
  634. position:fixed;
  635. font-family: 'Archivo Narrow', sans-serif;
  636. z-index:999;
  637. }
  638.  
  639. .navigation a {
  640. font-weight:800;
  641. width:300px;
  642. color:#6c6c6c;
  643. text-shadow:0px 0px 1px #2e2e2d;
  644. border-bottom:1px dotted transparent;
  645. -moz-transition-duration:.7s;
  646. -webkit-transition-duration:.7s;
  647. -o-transition-duration:.7s;
  648. }
  649.  
  650. .navigation a:hover {
  651. text-decoration:none;
  652. color:#fff;
  653. text-shadow:3px 3px 3px #2e2e2d;
  654. -moz-transition-duration:.7s;
  655. -webkit-transition-duration:.7s;
  656. -o-transition-duration:.7s;
  657. }
  658.  
  659. /* --- TIMESTAMPS, REBLOGS, SOURCE, ETC --- */
  660.  
  661. #info {
  662. font-family: 'Archivo Narrow', sans-serif;
  663. width:244px;
  664. margin-top:5px;
  665. margin-bottom:5px;
  666. border-color:#222222;
  667. padding-top:10px;
  668. font-size:10px;
  669. background:transparent;
  670. text-shadow: 1px 1px 7px #222222;
  671. padding:10px;
  672. margin-top:5px;
  673. margin-left:0px;
  674. color:#282828;
  675. text-transform:uppercase;
  676. font-style:normal;
  677. text-align:left;
  678. -moz-transition-duration:0.5s;
  679. -webkit-transition-duration:0.5s;
  680. -o-transition-duration:0.5s;
  681. }
  682.  
  683. #info a {
  684. color:#404040;
  685. font-style:normal;
  686. }
  687.  
  688. #info a:hover {
  689. color:#383838;
  690. text-shadow: 1px 1px 7px #383838;
  691. }
  692.  
  693. /* --- TAGS --- */
  694.  
  695. .tags {
  696. width:200px;
  697. margin-top:2px;
  698. margin-left:25px;
  699. text-transform:uppercase;
  700. padding:10px;
  701. font-style:normal;
  702. line-height:100%;
  703. padding-top:7px;
  704. text-align:center;
  705. position: center;
  706. background: #1c1c1c;
  707. opacity:1;
  708. border-bottom-left-radius: 20px;
  709. border-top-right-radius: 20px;
  710. border-top:solid 1px #1c1c1c;
  711. box-shadow: 2px 2px 5px #040404;
  712. -moz-transition-duration:1.2s;
  713. -webkit-transition-duration:1.2s;
  714. -o-transition-duration:1.2s;
  715.  
  716. }
  717.  
  718. .tags a{
  719. font-size:9px;
  720. font-family: helvetica;
  721. text-transform:uppercase;
  722. font-weight:0;
  723. font-weight:none;
  724. text-shadow: none;
  725. color:#7d7d7d;
  726. opacity:0.8;
  727. font-weight:none;
  728. -moz-transition-duration:1.2s;
  729. -webkit-transition-duration:1.2s;
  730. -o-transition-duration:1.2s;
  731. }
  732.  
  733. .tags a:hover{
  734. color:#000;
  735. opacity:1;
  736. font-weight:none;
  737. -moz-transition-duration:1.2s;
  738. -webkit-transition-duration:1.2s;
  739. -o-transition-duration:1.2s;
  740.  
  741. }
  742.  
  743.  
  744. .audio{
  745. overflow:hidden;
  746. }
  747.  
  748. #ask {
  749. float:left;
  750. color:{color:text};
  751. }
  752.  
  753. /* --- TOOLTIP --- */
  754.  
  755. #s-m-t-tooltip {
  756. color:#d3d3d3;
  757. position:fixed;
  758. font-family: helvetica;
  759. letter-spacing: 1px;
  760. font-size:9px;
  761. background:#1c1c1c;
  762. text-shadow: 0px 0px 3px #d3d3d3;
  763. margin-left:15px;
  764. margin-top:-21px;
  765. text-transform:uppercase;
  766. padding: 5px;
  767. border:1px solid #1c1c1c;
  768. z-index:99999999999999999999999;
  769. transition:0.7s ease-in-out;
  770. -o-transition:0.7s ease-in-out;
  771. -ms-transition:0.7s ease-in-out;
  772. -moz-transition:0.7s ease-in-out;
  773. -webkit-transition:0.7s ease-in-out;
  774.  
  775. }
  776.  
  777. /* --- REMOVE THIS SHIT AND I'LL HAVE YOUR HEAD --- */
  778.  
  779. #credit {
  780. font-size:9px;
  781. font-family:verdana;
  782. font-style:none;
  783. letter-spacing:1px;
  784. -moz-transition-duration:0.5s;
  785. -webkit-transition-duration:0.5s;
  786. -o-transition-duration:0.5s;
  787. }
  788.  
  789. #credit a {
  790. background-color:transparent;
  791. padding:5px;
  792. position:fixed;
  793. right:15px;
  794. bottom:10px
  795. }
  796.  
  797. #credit a:hover {
  798. color:{color:Link Hover};
  799. background-color:{color:background};
  800. }
  801.  
  802.  
  803. /* --- POP-UP CSS --- */
  804.  
  805. #fade {
  806. display: none;
  807. background: #000;
  808. position: fixed; left: 0; top: 0;
  809. width: 100%; height: 100%;
  810. opacity: .50;
  811. z-index: 9999;
  812. }
  813. .popup_block{
  814. width: 300px;
  815. height: 300px;
  816. overflow-y:scroll;
  817. overflow-x:hidden;
  818. display: none;
  819. background:#141414;
  820. padding: 30px;
  821. border: 0px solid #ddd;
  822. float: left;
  823. font-size: 8px;
  824. word-spacing:2px;
  825. position: fixed;
  826. top: 50%; left: 60%;
  827. z-index: 99999;
  828. /*--CSS3 Box Shadows--*/
  829. -webkit-box-shadow: 0px 0px 20px #000;
  830. -moz-box-shadow: 0px 0px 20px #000;
  831. box-shadow: 0px 0px 20px #000;
  832. /*--CSS3 Rounded Corners--*/
  833. -webkit-border-radius: 0px;
  834. -moz-border-radius: 0px;
  835. border-radius: 0px;
  836. }
  837. img.btn_close {
  838. float: right;
  839. margin: 0px 0px 0 0;
  840. }
  841. *html #fade {
  842. position: absolute;
  843. }
  844. *html .popup_block {
  845. position: absolute;
  846. }
  847.  
  848. h2 {
  849. font-size: 10px;
  850. font-family: arial;
  851. font-weight:normal;
  852. line-height:15px;
  853. margin:0px;
  854. text-decoration: none;
  855. color: {color:Post Text};
  856. }
  857.  
  858. h2 a {
  859. text-decoration: none;
  860. color: {color:Post Link};
  861. }
  862.  
  863. /* --- Controls how bold and italic looks in your pop-up --- */
  864.  
  865. .popup_block b, strong {
  866. color: {color:Post Bold};
  867. font-family: 'Oswald', sans-serif;
  868. text-transform:uppercase;
  869. text-shadow: 0px 0px 1px #9c3b3b;
  870. font-size:14px;
  871. letter-spacing:0px;
  872. }
  873.  
  874.  
  875. .popup_block i, em {
  876. color: {color:Post Italic};
  877. font-family: 'Leckerli One', cursive;
  878. text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
  879. text-transform:none;
  880. font-size:14px;
  881. letter-spacing:1px;
  882. }
  883.  
  884.  
  885. {CustomCSS}
  886.  
  887.  
  888. </style></head><body>
  889.  
  890. <!-- DESCRIPTION HTML -->
  891.  
  892. <div id="description">
  893. <center>
  894. <figure data-orig-height="32" data-orig-width="32"><img src="https://31.media.tumblr.com/467f88096e28a2feb629ac0c6477b3e9/tumblr_inline_o8fidawSAe1tdtwad_500.gif" data-orig-height="32" data-orig-width="32"></figure>
  895. <p>Scrollable updates!
  896. <hr/>
  897. <h1>SHARK.</h1>
  898. <p>She's sitting on the <strike>O C E A N</strike> floor
  899. <br><strong>DROWNING</strong> herself just to keep a score.
  900. <br>Because she just needs to <em>FEEL</em> something more.
  901.  
  902. <hr/>
  903. <h1>WARNINGS.</h1>
  904. <p>It needs to be said but this blog has several trigger warnings!:
  905. <br> - <strong>tw; DROWNING</strong>
  906. <br> - <strong>tw; GORE</strong>
  907. <br> - <strong>tw; ABUSE MENTION</strong>
  908. <br> - <strong>tw; DEATH MENTION</strong>
  909. <p>I know it's a lot but if you're triggered by any of these then I highly suggest that you <em>do not</em> follow me. Thanks! Have a great day!
  910.  
  911. <hr/>
  912. <h1>BASICS.</h1>
  913. <p><strong>P</strong>rivate Selective Fandomless OC.
  914. <br>Written by <strong><em>Fawn!</em></strong>
  915. <br>Tracking: <em>#requiine</em>
  916. <br>Please read Rules and About before interacting!
  917. <br>Est. Aug 2014
  918. <br><script language="JavaScript">var fhs = document.createElement('script');var fhs_id = "5310438";
  919. var ref = (''+document.referrer+'');var pn = window.location;var w_h = window.screen.width + " x " + window.screen.height;
  920. fhs.src = "//s1.freehostedscripts.net/ocounter.php?site="+fhs_id+"&e1=&e2=&r="+ref+"&m=0&wh="+w_h+"&a=1&pn="+pn+"";
  921. document.head.appendChild(fhs);document.write("<span id='o_"+fhs_id+"'></span>");
  922. </script>&nbsp; | &nbsp;<script language="JavaScript">var fhsh = document.createElement('script');var fhs_id_h = "3145851";
  923. fhsh.src = "//s1.freehostedscripts.net/ocount.php?site="+fhs_id_h+"&name=&a=1";
  924. document.head.appendChild(fhsh);document.write("<span id='h_"+fhs_id_h+"'></span>");
  925. </script>
  926.  
  927. <hr/>
  928. <h1>UPDATES.</h1>
  929. <p>Drafts: lots
  930. <br>Asks: idk
  931. <br>Starters: 0
  932. <p>Currently: revamping cora!
  933. <p>Playing: Overwatch and Pokemon Platinum
  934.  
  935. <hr/>
  936. <h1>MUSIC.</h1>
  937. <embed src="http://www.sheepproductions.com/billy/billy.swf?autoplay=true&f0=https://a.tumblr.com/tumblr_n96qrfI6hx1smnkm3o1.mp3&t0=&f1=https://a.tumblr.com/tumblr_lz1kornSuq1qlo2mmo1.mp3&t1=&f2=https://a.tumblr.com/tumblr_o88phpFYoC1qzd219o1.mp3?play_key=e6ba8f023e92bbb5aaf06052cd0c6551&tumblelog=notsuki&post_id=145396342431&t2=&f3=https://a.tumblr.com/tumblr_o88x2gvSb01sfwwcqo1.mp3&t3=&total=4" quality="high" wmode="transparent" width="200" height="10" name="billy" align="middle" type="application/x-shockwave-flash" />
  938. <p><strong>We Are Destroyer</strong> - by Anberlin
  939. <br><strong>Revenga</strong> - by System of a Down
  940. <br><strong>Strawberry Trapper</strong> - by Guilty Kiss, subunit of Aquors
  941. <br><strong>Guilty Kiss, Guilty Night</strong> - by Guilty Kiss, subunit of Aquors
  942.  
  943. <hr/>
  944. <h1>CREDITS.</h1>
  945. <a href="http://www.pixiv.net/member_illust.php?mode=medium&illust_id=44059886">Art</a>
  946. <br><a href="http://yumis-icons.tumblr.com/">Icons</a>
  947. <br>And a huge thank you to <a href="http://rosecloak.god.jp/">Rexaconda</a> for coding the theme. Thank you so much!
  948. <p><p>cora is an original character whom belongs to me — therefore writing and headcanons along with icons here are my own, and I ask that you do not use them without my permission
  949.  
  950. </center>
  951.  
  952.  
  953.  
  954. </div>
  955.  
  956. <!--- CHANGE LINK NAMES HERE --->
  957.  
  958. <div class="anavlinks">
  959. <a href="/" title="RETREAT.">✕</a><br /><br /><br /><br />
  960. <a href="#?w=500" rel="askbox" class="poplight" title="INQUIRE.">✕</a><br /><br /><br /><br />
  961. <a href="#?w=500" rel="03" class="poplight" title="LAW.">✕</a><br /><br /><br /><br />
  962. <a href="#?w=500" rel="04" class="poplight" title="DOSSIER.">✕</a><br /><br /><br /><br />
  963. <a href="#?w=500" rel="06" class="poplight" title="MAP.">✕</a><br /><br /><br /><br />
  964. </div>
  965.  
  966. </div>
  967.  
  968. </div>
  969.  
  970. <div class="navigation">
  971. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"> surface / </a>{/block:PreviousPage} <br><br> {block:NextPage}<a href="{NextPage}">/ drown </a><br><br>{/block:NextPage}{/block:Pagination}</div>
  972.  
  973.  
  974.  
  975. <div class="backcont">
  976. <div class="content">
  977.  
  978. <div class="postcol">
  979. {block:Posts}<div id="post">
  980.  
  981. {block:Text}<h1>{block:Title}<a href={Permalink}>{Title}</a>{/block:Title}</h1>{Body}{/block:Text}
  982.  
  983. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  984.  
  985. <center>{block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}</center>
  986.  
  987. {block:Quote}<div style="padding:4px;font-size:15px;line-height:1.5em;color:{color:text};text-align:center;text-transform:lowercase;font-family: 'Homemade Apple', cursive;font-style:italic;">{Quote}</div>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  988.  
  989. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  990.  
  991. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  992.  
  993. {block:Audio}<div class="audio">{AudioPlayerBlack}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  994.  
  995. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  996.  
  997. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}" style="margin-left:7px;margin-right:13px;border:1px solid #e3e3e3;padding:2px;"></div> <em>{Asker}:</em><br>{Question}<br><br>{Answer}{/block:Answer}
  998.  
  999. {block:Date}<div id="info"> <a href="{Permalink}" title="{TimeAgo}">✕</a>
  1000. {/block:Date} {block:NoteCount}<a href="{Permalink}" title={NoteCount}>✕</a> {/block:NoteCount} <div style="float:right;">
  1001.  
  1002. {block:RebloggedFrom}<a title="{ReblogParentName}" href="{ReblogParentURL}">✕ </a> {/block:RebloggedFrom}{block:ContentSource}<a title="source" href="{SourceURL}">✕</a>{/block:ContentSource} {/block:RebloggedFrom}<a href={ReblogURL} title=REBLOG?>✕</a></a></div>
  1003. </div>
  1004.  
  1005.  
  1006. {block:HasTags}
  1007. <div class="tags">
  1008. {block:Tags} <a href="{TagURL}">&nbsp; #{Tag}</a> {/block:Tags}</div>
  1009. {/block:HasTags}
  1010. <div class="postnote">
  1011. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1012. </div>
  1013. </div>
  1014. {/block:Posts}
  1015. </div>
  1016. </div>
  1017. </div>
  1018. </div></div>
  1019.  
  1020. <div id="credit"><a href="http://wehrmxcht.tumblr.com">✠</a></div> </div></div>
  1021.  
  1022. <!---POP-UP CONTENT STARTS HERE --->
  1023. <!---POP-UP CONTENT STARTS HERE --->
  1024. <!---POP-UP CONTENT STARTS HERE --->
  1025.  
  1026. <div id="03" class="popup_block">
  1027.  
  1028. <body>
  1029.  
  1030. <h1>RULES</h1>
  1031. <h2>GENERAL.</h2>
  1032. <p><strong>ONE. &nbsp;</strong>This is a&nbsp;<em>private&nbsp;</em>and&nbsp;<em>highly selective&nbsp;</em>roleplay blog for a fandomless oc.<br />On the website of tumblr, the definition of private is the mutual following of two people. If one follows the other&nbsp;<strong>&amp;&amp;&nbsp;</strong>they follow back it is considered a mutual follow. I apologize but I will not be accepting asks, roleplays, or IMs from those whom I do not follow.&nbsp;<br />I am very selective when it comes to whom I roleplay with. I&rsquo;ve been around&nbsp;fandoms long enough to know who&nbsp;&amp;&amp;&nbsp;who not to associate with <strong>&amp;&amp;</strong> I&nbsp;will not&nbsp;hesitate to block you if you are one of those people.</p>
  1033. <p><strong>TWO. &nbsp;</strong>When it comes to OCs I am highly selective when choosing who to follow. My standards for OCs tends to be&nbsp;<em>VERY HIGH,&nbsp;</em>mostly because I have seen a lot of bad OCs in my days. As long as your OC has a well constructed backstory <strong>&amp;&amp;</strong> a well thought out bio, then I will consider following an OC.</p>
  1034. <p><strong>THREE. &nbsp;</strong> I do not follow nor do I roleplay with any self insert blogs. I apologize but I am just not comfortable with doing so. I <em>very sparingly</em> follow multimuse blogs but your blog musn&rsquo;t be cluttered for me to consider following you.</p>
  1035. <p><strong>FOUR. &nbsp;</strong> I refuse to be exclusive with any blog. I do not practice exclusivity <strong>&amp;&amp;</strong> I do not wish for you to force on me. I would rather wish to roleplay with everyone (whom I&rsquo;m comfortable with that is) <strong>&amp;&amp;&nbsp;</strong>let everyone (again&nbsp;<strong>whom I&rsquo;m comfortable with</strong>) have an equal chance of roleplaying with me, given that they are mutuals.&nbsp;</p>
  1036. <p><strong>FIVE. &nbsp;</strong> Do&nbsp;<strong><em>not</em>&nbsp;</strong>steal anything from this blog. All graphics <strong>&amp;&amp;</strong> a good portion of the icons were made by me. Credit goes to the respective artists <strong>&amp;&amp;</strong> I do not claim anything. I just made the icons, that&rsquo;s all.&nbsp;</p>
  1037. <br>Credit for my Oshawott icons goes to <a href="http://guiltfreeicons.tumblr.com/">Guilt Free Icons</a>! Thanks so much!
  1038. <h2>ROLEPLAYING.</h2>
  1039. <p><strong>ONE. &nbsp;&nbsp;</strong>If you are a blog that roleplays the same character as mine I will immediately block you. I apologize but there are no exceptions to this rule in this fandom. Seeing other people roleplaying the same character that I do causes me to be very anxious <strong>&amp;&amp;</strong> will make me not want to come on my blogs.</p>
  1040. <p><strong>TWO. &nbsp;&nbsp;</strong>Plotted roleplays are strongly appreciated but I however do tend to wing it more than often. Crack will appear from time to time on this blog and will be tagged accordingly. If you do not wish to see me participate in any shenanigans on the blog <strong>&amp;&amp;</strong> still wish to preserve the illusion that I am a &lsquo;quality&rsquo; blog then you can block the tag.</p>
  1041. <p><strong>THREE. &nbsp;&nbsp;</strong>When it comes to asks I will choose who to answer, however continuing threads from asks is strongly encouraged. I ask that you put it in a seperate post for me to reply in <strong>&amp;&amp;</strong> tell me what it&rsquo;s continued from.</p>
  1042. <p><strong>FOUR. &nbsp;&nbsp;</strong>I ship my muse with a considerable amount of people, so this blog is multiship. However our characters must have a developed relationship before she actually considers anything.&nbsp;<br />This being said, I am of age to do smut. But our characters must have a developed relationship for it to lead to any of that. If any of these ever occur, they will happen underneath a read more.&nbsp;</p>
  1043. <h2>MUNDANE.</h2>
  1044. <p><strong>ONE. &nbsp;&nbsp;</strong>I am very willing to tag any triggers that you ask me to. They will be tagged as tw; trigger name. As for my triggers I ask that you tag suicide and cheating. Thank you!</p>
  1045. <p><strong>TWO. &nbsp;&nbsp;</strong>My skype is open to my mutuals, mostly to whomever I&rsquo;m comfortable with. I love talking ooc so I encourage you to ask for my skype. Please I am less scarier than a butterfly, infact I&rsquo;m probably more scared of you than you are of me.</p>
  1046. <p><strong>THREE. &nbsp;&nbsp;</strong>Anonymous hate will not be tolerated on this blog. I have had too much hate come to me in the past <strong>&amp;&amp;</strong> I will not tolerate any. Your message will most likely get a sassy reply from me or I will delete it if it&rsquo;s too harsh. However if you persist I will turn anon off from time to time.&nbsp;</p>
  1047. <p><strong>FOUR. &nbsp;&nbsp;</strong>If you have any problem with me, as the mun, or my character <strong>&amp;&amp;</strong> how I portray them,&nbsp;<em>PLEASE&nbsp;</em>contact me about this off of anon. I will be more than happy to address this with you in a calm manner.</p>
  1048. <p><img src="https://66.media.tumblr.com/4033a226e99174499fc3b8f223d46a79/tumblr_inline_o8c0kxgdxg1und1qq_500.png" />&nbsp;<img src="https://65.media.tumblr.com/59896ec3e201dfd85f613a39f56dc943/tumblr_inline_o9c4zhL1xP1tdtwad_540.png" data-orig-height="100" data-orig-width="100">&nbsp;<img alt="image" src="http://66.media.tumblr.com/39a47e6d7297f8131a50058a1f84ca10/tumblr_inline_mzxggo8pn01s3ahfm.png" style="color: #444444; line-height: 1.4;" /></p>
  1049. <p><strong>&amp;&amp;&nbsp;</strong>I guess I'll introduce myself now. My name is Fawn and I'm 18 years old and in college. My face claim is usually lion from Steven Universe, Trainter Touko, or Oshawott. I use they/them pronouns! It's nice to meet you!</p>
  1050. <p>Thank you for reading my rules! If you have made it to this point then please send me the phrase &ldquo;You&rsquo;re never safe with sharks about!&rdquo; I am tracking who sends me the password, because it makes me comfortable to know that you have read my rules so I recommend that you send me the password, however I will not hound you for it.&nbsp;</p>
  1051. </div>
  1052. <p>
  1053.  
  1054. </div>
  1055.  
  1056. </body>
  1057. </html>
  1058. </div>
  1059.  
  1060.  
  1061. <div id="04" class="popup_block">
  1062.  
  1063. <body>
  1064.  
  1065.  
  1066. <p>
  1067. <figure class="tmblr-full" data-orig-height="100" data-orig-width="550"><img src="https://65.media.tumblr.com/37ba048eb656525767bc6cc6a20e837c/tumblr_inline_o8fkscyGG01tdtwad_540.png" data-orig-height="100" data-orig-width="550"></figure><p><b>Name:</b> Coral Arwing <br><b>Nickname:</b> Cora <br><b>Age:</b> 20 <br><b>Date of Birth:</b> January 27th | <b>Zodiac:</b> Aquarius <br><b>Affiliation:</b> none&nbsp;<br><b>Occupation:</b> assassin for hire<br><b>Species:</b>&nbsp;Half Human <i>/</i> Half Shark hybrid<br><b>Face Claim:</b> Kurami Zell | Kaya Scodelario</p><p><b>Semblance:</b> Blood Manipulation | <b>Name:</b> Sanglant <br><b>Aura Color:</b> Magenta | <b>Hex Code:</b> #ea24de <br><b>Strength of Aura:</b> Weak<br><b>Weapon Name:</b> Revenga <br><b>Type of Weapon:</b> Shotgun/double bladed axe</p><p><b>Blood Type:</b> B- <br><b>Handedness:</b> right <br><b>Eye Color:</b> violet | <b>Hex Code:</b> #9a29af <br><b>Hair Color:</b> amethyst | <b>Hex Code</b>: #d200ff <br><b>Height:</b> 5'9" | <b>Weight:</b> 127 lbs</p><p><b>Brief History:</b>&nbsp;</p><p>Coral Arwing was an experiment. While in the womb of her mother, scientists inserted bull shark DNA into her and observed the results when she was born. As a result, she was born with many features of a bull shark (listed below). Along with being a human/shark hybrid, she was also born with a special power: the power to manipulate blood into many shapes and forms. She can use it to heal herself during a fight or manipulate it while touching it.&nbsp;</p><p>At the age of 17, Cora was tired of being experimented on so she left the lab and found a place of her own. Before she left, the scientists taught her how to use and fight with the weapon her father made for her before his death. The scientists wanted to be sure that Cora could completely control her powers and protect herself, before allowing her to go out into the actual world. </p><p>She makes a living off of being an assassin for hire and now roams the city, looking for jobs.&nbsp;</p><p><b>About Being a Hybrid:</b></p><p>Cora is a Bull Shark hybrid. What <i>does</i> it mean to be a shark hybrid? Well here’s a list of the things that Cora can do:</p><ul>
  1068. <li>Cora’s body can process raw meat, meaning that she can eat fish without having to cook them first. However she cannot digest bones.&nbsp;</li>
  1069. <li>All of her teeth are as sharp as shark teeth. They are meant to tear through the flesh of fish and if needed&nbsp;<i>her enemies.</i></li>
  1070. <li>Cora has a gray tail that is about 3 ½ feet long and 6 inches wide. It attaches just above her butt.&nbsp;</li>
  1071. <li>Cora has a fin in the middle of her back. However there’s a nick in it.&nbsp;</li>
  1072. <li>Cora can smell blood from up to three miles away and can also determine where on the body the blood is coming from.&nbsp;</li>
  1073. <li>Cora can stay underwater without air for about an hour.</li>
  1074. </ul><p><b>Personality:</b></p><p>Cora is often a sarcastic person and loves to make snide remarks and tease people. She may come off as mean but it’s just the way she is. She is also very stubborn and loves to pull pranks. She hates it when people underestimate her because she looks younger than her actual age. <br>If Cora were to be described in three words they would be: Impulsive, Outgoing, and Lust. These three words say a lot about her personality, much more than what could be described</p><p><b>About her Semblance:</b></p><p>Cora’s semblance can only be used when she or her opponent is bleeding. It activates upon the smell of blood. Her eyes flash the color of her aura (magenta) and her aura strengthens so she can actually take some blows, but not too many that is. <br>She can make the blood into harmful shapes, such as a spike to pierce her opponent’s skin However, hardened blood can be broken easily with a gun shot. She can do many other things with it as well. <br>Cora can also use the blood to heal wounds. If she hardens the blood around a wound or gash, it will act as a scab and cause it to scab over much quicker. This takes in the fact for her lack of aura, or rather her weak aura, which would normally protect her from blows that could possibly break things and such. This means that Cora is much more prone to breaking a bone or getting hurt than anyone else. <br>While Cora’s semblance was supposed to be more healing that harmful, throughout training she learned how to turn it into a weapon. Without touching blood however, she has limited control of it. So if she wanted to give someone a heart attack, she’d have to dive her hand into a wound and widen it before stopping the blood from going to her victim’s heart.</p><p><b>About her Weapon:</b></p><br>Revenga was created and designed by Cora&rsquo;s father when she was about nine years old. He wanted his daughter to have something to protect herself with, so he crafted a complicated weapon design just for her. However soon after completing it, he was killed.
  1075. <br>It is a purple weapon that is mostly in its shotgun form. It has two forms with its shotgun form being the most portable. Cora has Revenga on her person about 98% of the time. Revenga is attached to two hooks on a belt that is worn on her short shorts and the gun is held above her tail. Its other form is a doubled bladed axe with sharp blades. The tip of the axe can still be used to shoot bullets, so its not much different from its shotgun form. When shot, Revenga does have some recoil, but Cora has used her weapon for so long that she is fairly used to it by now and hardly reacts to it.
  1076. <br>Revenga is a purple sawed off shotgun. It has a large barrel in which approximately seven bullets can be stored at a time as well as the blades. When she pushes a button, purple tinted blades will slide out that are shaped like shark fins and curved inwards. This is purely her father&rsquo;s design, meant to signify that she's a shark.
  1077. </div>
  1078.  
  1079.  
  1080.  
  1081. </body>
  1082. </html>
  1083.  
  1084.  
  1085. </div>
  1086. </div>
  1087.  
  1088. <div id="06" class="popup_block">
  1089. <body>
  1090.  
  1091.  
  1092. <p>
  1093. <h1>Verses</h1>
  1094. <h2>Information and bios of Cora's family can be found <a href="http://revenga.co.vu/a">here</a>, however her mother and father's bios are incomplete. All the bios are set within a RWBY like verse. </h2>
  1095. <p><img src="https://66.media.tumblr.com/fb73e3a6394aeb6ad5bb7abd206b2716/tumblr_inline_o8flup7fp51tdtwad_500.png" />&nbsp;<img src="https://67.media.tumblr.com/bfdbb8ffb128bd506c38318c42ebb7e8/tumblr_inline_o8flvi6Bmw1tdtwad_500.png" />&nbsp;<img src="https://66.media.tumblr.com/6174ef1f15fa7de968c5ed462df69a4c/tumblr_inline_o8flvyNAkc1tdtwad_500.png" /></p>
  1096. <p style="line-height: 19.6px;"><strong>Verse Name:&nbsp;</strong>Main<br /><strong>Tagged as:&nbsp;</strong><span style="line-height: 21px; background-color: rgba(255, 255, 255, 0.00784314);">🔪 ☵ : ❝ 🇮🇲🇵🇪🇹🇺🇴🇺🇸 🇧🇪🇮🇳🇬 ; 🇾🇴🇺 🇫🇪🇪🇱 🇾🇴🇺🇷 🇸🇮🇳🇸 🇨🇷🇦🇼🇱🇮🇳🇬 🇴🇳 🇾🇴🇺🇷 🇧🇦🇨🇰 ❞ ( main verse )</span><br /><strong>Quote:&nbsp;</strong><em>&ldquo; I&nbsp;<strong>SWEAR&nbsp;</strong>I'm just as human as you are. "</em><br /><strong>Description:&nbsp;<br /></strong>Being half shark/half human isn't easy. People stare at you, they wonder what's wrong with you. But Cora just wants to be just like them.</p>
  1097. <p><small>Dawn Arwing is <em>ALIVE</em> in this verse.</small>
  1098. <br><small>Cora's parents are <strong>DEAD</strong> in this verse</small>
  1099. <p style="line-height: 19.6px;"><strong>Face Claim:</strong>&nbsp;Kurami Zell from No Game No Life / Kaya Scodelario<br /><strong>Theme Song:&nbsp;</strong>We are Destroyer by Anberlin</p>
  1100. <p><img src="https://67.media.tumblr.com/6598165b3090e0f0a81706af9e14f6d8/tumblr_inline_o8fl9azG7S1tdtwad_500.png" />&nbsp;<img src="https://65.media.tumblr.com/27de989b25c7c0a2f0d4c0330b57b846/tumblr_inline_o8fl9nanqP1tdtwad_500.png" />&nbsp;<img src="https://67.media.tumblr.com/565c6616ebc5c23f4d573147198d4036/tumblr_inline_o8flcioadw1tdtwad_500.png" /></p>
  1101. <p><strong>Verse Name:&nbsp;</strong><a href="http://revenga.co.vu/a" target="_blank">RWBY</a><br /><strong>Tagged as:&nbsp;</strong><span style="line-height: 21px; background-color: rgba(255, 255, 255, 0.00784314);">🔪 ☵ : ❝ 🇸🇭🇪'🇸 🇭🇪🇱🇱🇧🇴🇺🇳🇩 ; 🇾🇪🇹 🇸🇭🇪 🇸🇹🇮🇱🇱 🇸🇱🇦🇺🇬🇭🇹🇪🇷🇸 ❞ ( rwby verse )</span><br /><strong>Quote:&nbsp;</strong><em>&ldquo; I will redeem my faunus status. No one will ever discriminate me.</em> &rdquo;<br /><strong>Description:&nbsp;<br /></strong>Cora Arwing works for the White Fang as an assassin for them. She keeps track of the people who leave the White Fang and goes out and kills them because they know too much.</p>
  1102. <p><small>Dawn Arwing is <strong>DEAD</strong> in this verse</small>
  1103. <br><small>Cora's parents are <strong>DEAD</strong> in this verse</small>
  1104. <p><strong>Face Claim:</strong>&nbsp;Kurami Zell from No Game No Life<br /><strong>Theme Song:&nbsp;</strong>We are Destroyer by Anberlin</p>
  1105. <p><img src="https://65.media.tumblr.com/bee9b11792e3a459363ba946bbc2568f/tumblr_inline_o8j75tVpvY1tdtwad_500.png" />&nbsp;<img src="https://66.media.tumblr.com/40b725fbdcdd040a83acc8ec5e874df5/tumblr_inline_o8j75kGYq31tdtwad_500.png" style="line-height: 1.4;" />&nbsp;<img src="https://67.media.tumblr.com/f6f328657333488e6a5ab2223f3dee67/tumblr_inline_o8j7617uDJ1tdtwad_500.png" /></p>
  1106. <p></p>
  1107. <p></p>
  1108. <p style="line-height: 19.6px;"><strong>Verse Name:&nbsp;</strong>Soul Eater<br /><strong>Tagged as:&nbsp;</strong><span style="line-height: 21px; background-color: rgba(255, 255, 255, 0.00784314);">🔪 ☵ : ❝ 🇹🇭🇪🇾'🇷🇪 🇯🇺🇸🇹 🇹🇼🇴 🇸🇴🇺🇱🇸 ; 🇷🇪🇸🇴🇳🇦🇹🇮🇳🇬 🇮🇳 🇹🇭🇪 🇩🇦🇷🇰 ❞ ( soul eater verse )</span><br /><strong>Quote:&nbsp;</strong><em>&ldquo; We're the best duo around!</em>&nbsp;&rdquo;<br /><strong>Description:&nbsp;<br /></strong>Cora Arwing and Revenga Tourne have been going to the DWMA for two years now. They're a pretty good duo and their hair matches! Kinda. Revenga's is dark purple with pink streaks while Cora's is a bright purple.&nbsp;</p>
  1109. <p style="line-height: 19.6px;">Revenga is mute, the only person she talks to is Cora, when no one is around. They've been best friends for years so their souls resonate easily. Cora talks for her friend if someone can't understand sign language. It's just the way they've always been</p>
  1110. <p><small>Dawn Arwing is <em>ALIVE</em> in this verse.</small>
  1111. <br><small>Cora's parents are <em>ALIVE</em> in this verse.</small>
  1112. <p style="line-height: 19.6px;"><strong>Face Claim:</strong>&nbsp;Kurami Zell for Cora / Stocking Anarchy for Revenga<br /><strong>Theme Song:&nbsp;</strong>Modern Age by Anberlin</p>
  1113. <p><img src="https://66.media.tumblr.com/292e1a4b6f44b455202edb11f8339cf0/tumblr_inline_o8flmnpOyF1tdtwad_500.png" /><span style="line-height: 1.4;">&nbsp;<img src="https://67.media.tumblr.com/b943543b2d48846a194347f29a4e9923/tumblr_inline_o8flslD90S1tdtwad_500.png" /><span style="line-height: 1.4;">&nbsp;<img src="https://66.media.tumblr.com/c82d46fd25a8e97b1d6b20736e9c0a71/tumblr_inline_o8flu1R2lB1tdtwad_500.png" /></span></span></p>
  1114. <p><strong>Verse Name:&nbsp;</strong><a href="http://revenga.co.vu/u">Under the Sea</a><br /><strong>Tagged as:&nbsp;</strong><span style="line-height: 21px; background-color: rgba(255, 255, 255, 0.00784314);">🔪 ☵ : ❝ 🇸🇭🇪'🇱🇱 🇯🇺🇸🇹 🇰🇪🇪🇵 🇴🇳 🇸🇼🇮🇲🇲🇮🇳🇬 ❞ ( mermaid verse )</span><br /><strong>Quote:&nbsp;</strong>&ldquo;<em>Just keep</em> swimming!&rdquo;<br /><strong>Description:&nbsp;<br /></strong>Cora, a mermaid, is trying to blend in with the humans. She turns into a mermaid if she touches water.&nbsp;</p>
  1115. <p><strong>Face Claim:&nbsp;</strong>Kurami Zell from No Game No Life<br /><strong>Theme Song:&nbsp;</strong>Wadanohara main tune.&nbsp;</p>
  1116. <p><img src="https://67.media.tumblr.com/622893417a684385b409117cbedf8314/tumblr_inline_o8j7h6MrsU1tdtwad_500.png" /></p>
  1117. <p></p>
  1118. <strong>Verse Name:&nbsp;</strong><a href="http://revenga.co.vu/poke">Pokemon AU</a><br /><strong>Tagged as:&nbsp;</strong>🔪 ☵ : ❝ 🇸🇭🇪'🇸 🇳🇴🇹 🇹🇷🇦🇮🇳🇮🇳🇬 🇹🇭🇪🇲 ; 🇹🇭🇪🇾'🇷🇪 🇹🇷🇦🇮🇳🇮🇳🇬 🇭🇪🇷 ❞ ( pokemon verse )</span><br /><strong>Quote:&nbsp;</strong>&ldquo;<em>&nbsp;The ocean waves are huge and powerful, but so are my swimming partners.&nbsp;</em>&rdquo;<br /><strong>Description:&nbsp;<br /></strong>Cora grew up in the Johto region. She received her first pokemon from her brother, Shane. It was a shiny Poliwag. It grew up with Cora and once she was old enough she left for her own journey. She's collected pokemon from all over. The Toxicroak was a gift from her mother but she still uses it.&nbsp;</p>
  1119. Cora spends most of her time in the ocean swimming with her pokemon.&nbsp;</p>
  1120. <p><small>Dawn Arwing is <em>ALIVE</em> in this verse.</small>
  1121. <br><small>Cora's parents are <em>ALIVE</em> in this verse.</small>
  1122. <p style="line-height: 19.6px;"><strong>Face Claim:&nbsp;</strong>Kurami Zell from No Game No Life<br /><strong>Theme Song:&nbsp;</strong>Wadanohara main tune.&nbsp;</p>
  1123. <p><span style="line-height: 1.4;"><span style="line-height: 1.4;"><img src="https://67.media.tumblr.com/789d2a6f1dfb776bab74b5ee2a9e720f/tumblr_inline_o8flouze3o1tdtwad_500.png" />&nbsp;<img src="https://66.media.tumblr.com/d2bbe11d808cd391c0df0e96c3eeb7de/tumblr_inline_o8flp36XNB1tdtwad_500.png" />&nbsp;<img src="https://66.media.tumblr.com/33996ca02041719ab8d8323931be4440/tumblr_inline_o8flpadhUd1tdtwad_500.png" /></span></span></p>
  1124. <p><strong>Verse Name:&nbsp;</strong><a href="http://revenga.co.vu/pr">Peacefully Rotting/Post!RWBY Verse</a><br /><strong>Tagged as:&nbsp;</strong><span style="line-height: 21px; background-color: rgba(255, 255, 255, 0.00784314);">🔪 ☵ : ❝ 🇸🇭🇪 🇯🇺🇸🇹 🇼🇦🇳🇹🇸 🇹🇴 🇷🇴🇹 🇵🇪🇦🇨🇪🇫🇺🇱🇱🇾 ; 🇦🇱🇴🇳🇪 ❞ ( modern verse )</span><br /><strong>Quote:&nbsp;</strong><em>&ldquo;The war is over. Just let me rot in</em> <em>peace</em>.&rdquo;<br /><strong>Description:</strong><br />Cora hasn't killed in years. She stopped doing her assassin job after she was nearly killed, leaving her with a large scar on her forearm. She now lives in a small apartment, barely eating everyday. Most of her money goes to rent, so she doesn't have much left over to eat.&nbsp;</p>
  1125. <p><small>Dawn Arwing is <strong>DEAD</strong> in this verse.</small>
  1126. <p><small>Cora's parents are <strong>DEAD</strong> in this verse.</small>
  1127. <p><strong>Face Claim:&nbsp;</strong>Kaya Scodelario<br /><strong>Theme Song:&nbsp;</strong>Armageddon by Anberlin</p>
  1128. <p><img src="https://67.media.tumblr.com/1a18c0a9f414db4fad431867aa4c9b94/tumblr_inline_o8flpva7hQ1tdtwad_500.png" />&nbsp;<img src="https://65.media.tumblr.com/d1047468ae7c42a299883b8631ba4113/tumblr_inline_o8flq3xNGc1tdtwad_500.png" />&nbsp;<img src="https://67.media.tumblr.com/c66680ff7c1c5a02d253bab55aa46cb2/tumblr_inline_o8flqhdnN01tdtwad_500.png" /></p>
  1129. <p><strong>Verse Name:&nbsp;</strong><a href="http://revenga.co.vu/gta">GTA verse</a><br /><strong>Tagged as:&nbsp;</strong><span style="line-height: 21px; background-color: rgba(255, 255, 255, 0.00784314);">🔪 ☵ : ❝ 🇬🇺🇳 🇹🇴 🇭🇪🇷 🇭🇪🇦🇩 ; 🇰🇳🇮🇫🇪 🇦🇹 🇭🇪🇷 🇹🇭🇷🇴🇦🇹 ❞ ( gta verse )</span><br /><strong>Quote:&nbsp;</strong><em>&ldquo;Get me on my good side and I&rsquo;ll <strong>consider</strong> not killing you.&rdquo;<br /></em><strong>Description:<br /></strong>Cora is 22 years old and makes her living by working as an assassin in the White Fang Gang. She makes most of her money as part of a gang that terrorizes the city that is known as the White Fang, which deals out drugs. Her job within the gang is to make sure no one leaks information to the police, and if they do she kills them.&nbsp;</p>
  1130. <p>She does try to live her life normally, although.&nbsp;<br />Cora is NOT a shark hybrid in this verse.&nbsp;</p>
  1131. <br>Cora is NOT a shark hybrid in this verse.
  1132. <p><small>Dawn Arwing is <strong>DEAD</strong> in this verse.</small>
  1133. <br><small>Cora's parents are <strong>DEAD</strong> in this verse.</small>
  1134. <p><strong>Face Claim:&nbsp;</strong>Kaya Scodelario<br /><strong>Theme Song:&nbsp;</strong>Watch you Bleed by Five Finger Death Punch</p>
  1135. <p><img src="https://66.media.tumblr.com/2d0cf85543a892c6c25bf1f4ed308bbf/tumblr_inline_o8fm16kB2t1tdtwad_500.png" /><span style="line-height: 1.4;">&nbsp;<img src="https://65.media.tumblr.com/574669784472c01a531bb5325ab0bd14/tumblr_inline_o8fm1igCtZ1tdtwad_500.png" /><span style="line-height: 1.4;">&nbsp;<img src="https://67.media.tumblr.com/fa406cc925e772bc48067d68b01938bb/tumblr_inline_o8fm2swadU1tdtwad_500.png" /></span></span></p>
  1136. <p><strong>Verse Name:&nbsp;</strong>Too Much Trouble For You/Alt RWBY verse<br /><strong>Tagged as:&nbsp;</strong><span style="line-height: 21px; background-color: rgba(255, 255, 255, 0.00784314);">🔪 ☵ : ❝ 🇼🇮🇱🇱 🇸🇴🇲🇪🇴🇳🇪 🇵🇱🇪🇦🇸🇪 🇹🇪🇱🇱 🇭🇪🇷 🇼🇭🇦🇹 🇸🇭🇪'🇸 🇫🇮🇬🇭🇹🇮🇳🇬 🇫🇴🇷? ❞ ( alt rwby verse )</span>&nbsp;&nbsp;<br /><strong>Quote:&nbsp;</strong><em>&ldquo;Trouble is my middle name. I love causing it.&rdquo;<br /></em><strong>Description:<br /></strong>Cora was born into the White Fang and such. Everything is the same exact she has more scars and she&rsquo;s a big troublemaker/prankster. Cora wandered into an anti-faunus resturant one day and was assaulted by three men, leaving her with many wounds. She was left broken and scared and an empty hollow but she manages.&nbsp;</p>
  1137. <p>In the meantime, Cora doesn&rsquo;t always follow orders but it&rsquo;s not like the White Fang can throw her out, considering the fact that she was born there and has no where else to go. Besides&hellip; she does do her job. Like&hellip; every once in a while.&nbsp;</p>
  1138. <p><small>Dawn Arwing is <strong>DEAD</strong> in this verse.</small>
  1139. <br><small>Cora's parents are <strong>DEAD</strong> in this verse.</small>
  1140. <p><strong>Face Claim:&nbsp;</strong>Kurami Zell from No Game No Life or Kaya Scodelario&nbsp;<br /><strong>Theme Song:&nbsp;</strong>Titanium by David Gueretta ft. Sia. / Self Starter by Anberlin</p>
  1141. <p><img src="https://66.media.tumblr.com/93e742e143d2d0473f6f35e181a51d4d/tumblr_inline_o8flnsGKtm1tdtwad_500.png" />&nbsp;<img src="https://67.media.tumblr.com/3a94c7a9756540caa41c09a68492b380/tumblr_inline_o8flnzuyc21tdtwad_500.png" />&nbsp;<img src="https://67.media.tumblr.com/fc395e6f055eb3018f5db3ac2a83652b/tumblr_inline_o8flo6U62K1tdtwad_500.png" /></p>
  1142. <p><strong>Verse Name:&nbsp;</strong>She&rsquo;s Happier With Him<br /><strong>Tagged as:&nbsp;</strong><span style="line-height: 21px; background-color: rgba(255, 255, 255, 0.00784314);">🔪 ☵ : ❝ 🇸🇭🇪'🇸 🇭🇦🇵🇵🇮🇪🇷 🇼🇮🇹🇭 🇭🇮🇲 ❞ ( alt modern verse )</span><br /><strong>Quote:&nbsp;</strong><em>&ldquo;He&rsquo;s like my brother! I love him too much.</em> &rdquo;<br /><strong>Description:&nbsp;</strong><br />Cora has joined the White Fang branch in Ireland so she can live with jacksepticeye or Jack (bossatrcnio) permanently! She just loves Jack like a brother and can&rsquo;t bare to be a away from him.&nbsp;</p>
  1143. <br> Cora IS a shark hybrid in this verse.
  1144. <p><strong>Face Claim:&nbsp;</strong>Kaya Scodelario<br /><strong>Theme Song:&nbsp;</strong>tba</p>
  1145. <p><img alt="image" src="https://66.media.tumblr.com/5e3594cd9131971217f8276b20b14dd4/tumblr_inline_ndok27Glqz1sk47ji.png" />&nbsp;<img src="https://66.media.tumblr.com/ddea1fbc537bbfde9449dc07b4da6dd4/tumblr_inline_nod6heYKGo1t5ug2x_500.gif" />&nbsp;<img alt="image" src="https://65.media.tumblr.com/e3ca245e8bb870beea5879a90dc560db/tumblr_inline_ndok22xfQR1sk47ji.png" style="line-height: 1.4;" /></p>
  1146. <p><strong>Verse Name:&nbsp;</strong>Monster Within Me<br /><strong>Tagged as:&nbsp;</strong><span style="line-height: 21px; background-color: rgba(255, 255, 255, 0.00784314);">🔪 ☵ : ❝ 🇸🇭🇪'🇸 🇦 🇲🇴🇳🇸🇹🇪🇷 ; 🇧🇺🇹 🇸🇭🇪 🇦🇱🇼🇦🇾🇸 🇰🇳🇪🇼 🇹🇭🇦🇹 ❞ ( alt modern verse )</span><br /><strong>Quote:&nbsp;</strong><em>&ldquo;Let me see your blood run. C'mon now, I need a good meal.&rdquo;<br /></em><strong>Description:&nbsp;<br /></strong>Cora is out to kill to eat. She's a cannibal and there's no denying that.&nbsp;</p>
  1147. <br>Cora IS NOT a shark hybrid in this verse
  1148. <p><Small>Dawn Arwing is <Strong>DEAD</Strong> in this verse.</Small>
  1149. <br><small>Cora's parents are <strong>DEAD</strong> in this verse.</small>
  1150. <p><strong>Face Claim:&nbsp;</strong>Mary Elizabeth Winstead/Ramona Flowers<br /><strong>Theme Song:&nbsp;</strong>Carnivore by Starset</p>
  1151. <p><img alt="image" src="https://66.media.tumblr.com/06dbbf159192bbfb1156208555259527/tumblr_inline_n5hdlchBOa1rrqqys.png" />&nbsp;<img alt="image" src="https://66.media.tumblr.com/8e28027924c8061535446f879a4e26fe/tumblr_inline_n5hdribwNw1rrqqys.png" style="line-height: 1.4;" />&nbsp;<img alt="image" src="https://66.media.tumblr.com/dec3ae1d2114d7a248f1b1ed7e72f6de/tumblr_inline_n5hdqiWidf1rrqqys.png" style="line-height: 1.4;" /><strong><br /></strong></p>
  1152. <p><strong>Verse Name:&nbsp;</strong>Pretty in Pink<br /><strong>Tagged as:&nbsp;</strong><span style="line-height: 21px; background-color: rgba(255, 255, 255, 0.00784314);">🔪 ☵ : ❝ 🇸🇭🇪'🇸 🇵🇷🇪🇹🇹🇮🇪🇷 🇮🇳 🇵🇮🇳🇰 ❞ ( alt rwby verse )</span><br /><strong>Quote:&nbsp;</strong><em>&ldquo;My hair is pink and long. Pink is a far better color than purple, don&rsquo;t you think?&rdquo;<br /></em>D<strong>escription:<br /></strong>Cora never dyed her hair purple when she was five. Instead she kept it pink and allowed it to grow out.</p>
  1153. <p>Somehow this made Cora become a better person. She is nicer overall but still does her job in such a sadistic manner. She isn&rsquo;t as sarcastic nor as much of a prankster or trouble. She&rsquo;s known around the base to probably be the nicest shark faunus they&rsquo;ve ever seen, and the only one besides her father and brother.&nbsp;</p>
  1154. <p><small>Dawn Arwing is <strong>DEAD</strong> in this verse.</small>
  1155. <p><small>Only Cora's mother is alive in this verse, along with her brother.</small>
  1156. <p><strong>Face Claim:&nbsp;</strong>Isuke Inukai from Akuma no Riddle<br /><strong>Theme Song:&nbsp;</strong>tba</p>
  1157. <p><img alt="image" src="https://67.media.tumblr.com/60e5b3846ee0e8ce970ea110b84d39cf/tumblr_inline_n35fy0JMYp1qkchao.png" />&nbsp;<img alt="image" src="https://67.media.tumblr.com/9390cffad391f750b924492fbbe6281c/tumblr_inline_n35g3o7DhK1qkchao.png" style="line-height: 1.4;" />&nbsp;<img alt="image" src="https://66.media.tumblr.com/64d796ab46fbdfb9f8620a75e8f7b2e0/tumblr_inline_n35g5edw6E1qkchao.png" style="line-height: 1.4;" /></p>
  1158. <p><strong>Verse Name:&nbsp;</strong>Pinkest Past<br /><strong>Tagged as:&nbsp;</strong><span style="line-height: 21px; background-color: rgba(255, 255, 255, 0.00784314);">🔪 ☵ : ❝ 🇹🇭🇪🇸🇪 🇼🇪🇷🇪 🇭🇪🇷 🇾🇴🇺🇳🇬🇪🇷 🇾🇪🇦🇷🇸 ❞ ( young verse )</span><br /><strong>Quote:&nbsp;</strong><em>&ldquo;I-I&rsquo;m r-really sorry if I trip you with my tail&hellip;&rdquo;<br /></em><strong>Description:<br /></strong>Only 8 years old, Cora has short pink hair that she normally wears in pigtails. She still has her innocence and has little knowledge as to what really goes on in the White Fang. She is soft spoken and often stutters her words, not confident enough yet to speak out much.</p>
  1159. <p><small>Cora's entire family is alive in this verse.</small>
  1160. <p><strong>Face Claim:&nbsp;</strong>Madoka Kaname from Puella Magi Madoka Magica<br /><strong>Theme Song:&nbsp;</strong>Bad Apple</p>
  1161. <p><img alt="image" src="https://67.media.tumblr.com/6e46d6e35b416d0e10bb955dd412b2b8/tumblr_inline_nl487uVEpY1tq4c2j.png" />&nbsp;<img src="https://66.media.tumblr.com/16ed7f49f5463ca39860b2826ef2197c/tumblr_inline_ncz0z2Eo0o1r79yns.jpg" style="line-height: 1.4;" />&nbsp;<img src="https://66.media.tumblr.com/4ab0b68d8c59a0c53066556f5a4621eb/tumblr_inline_ncz0zikzzg1r79yns.jpg" style="line-height: 1.4;" /></p>
  1162. <p><strong>Verse Name:&nbsp;</strong>You Left Me to Rot<br /><strong>Tagged as:&nbsp;</strong><span style="line-height: 21px; background-color: rgba(255, 255, 255, 0.00784314);">🔪 ☵ : ❝ 🇾🇴🇺 🇱🇪🇫🇹 🇭🇪🇷 🇹🇴 🇷🇴🇹 ❞ ( shelly verse )</span><br /><strong>Quote:&nbsp;</strong><em>&ldquo;Hai hai! Welcome to BeatDROP, the hottest club in Vacuo! Can I get you something to drink or will I see out on the dance floor?&rdquo;<br /></em><strong>Description:<br /></strong>Cora was never born. Shelly Arwing only gave birth to her son, Shane Arwing before she upped and left the White Fang to start a club in Vacuo.&nbsp;<br />She resides there now and is the head of security at her club, BeatDROP. Shelly does not tolerate violence at her club and deals with repeat offenders herself. Afterall, she did used to have Cora&rsquo;s job.</p>
  1163. <p><small>Cora does NOT exist in this verse, neither does Dawn. Shane and Shelly are the only Arwings alive.</small>
  1164. <p><strong>Face Claim:&nbsp;</strong>Megurine Luka from Vocaloid <br /><strong>Theme Song:&nbsp;</strong> Last of Me, orginal song by Vocacircus sung by Megurine Luka</p>
  1165. <p><em>&nbsp;</em></p>
  1166. </div>
  1167. </body>
  1168. </html>
  1169.  
  1170. </div>
  1171.  
  1172.  
  1173.  
  1174. <div id="askbox" class="popup_block">
  1175. <p style="text-transform:uppercase; font-family: 'Oswald', sans-serif; font-size:14px; text-align:center;letter-spacing:10px; border-bottom:1px ##393939 solid;padding-bottom:10px;">Ask me anything</p>
  1176. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{name}.tumblr.com" width="100%"></iframe>
  1177. </div>
  1178.  
  1179. <script language=JavaScript>
  1180. <!--
  1181.  
  1182. //Disable right mouse click Script
  1183. //By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
  1184. //For full source code, visit http://www.dynamicdrive.com
  1185.  
  1186. var message="disabled. find these themes at amysthemes.tumblr.com, they're beautiful !!";
  1187.  
  1188. ///////////////////////////////////
  1189. function clickIE4(){
  1190. if (event.button==2){
  1191. alert(message);
  1192. return false;
  1193. }
  1194. }
  1195.  
  1196. function clickNS4(e){
  1197. if (document.layers||document.getElementById&&!document.all){
  1198. if (e.which==2||e.which==3){
  1199. alert(message);
  1200. return false;
  1201. }
  1202. }
  1203. }
  1204.  
  1205. if (document.layers){
  1206. document.captureEvents(Event.MOUSEDOWN);
  1207. document.onmousedown=clickNS4;
  1208. }
  1209. else if (document.all&&!document.getElementById){
  1210. document.onmousedown=clickIE4;
  1211. }
  1212.  
  1213. document.oncontextmenu=new Function("alert(message);return false")
  1214.  
  1215. // -->
  1216. </script>
  1217.  
  1218. </div></div></div></div></div></div></div></div></div></div>
  1219.  
  1220. </html>
  1221.  
  1222. </body>
  1223. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement