Advertisement
ranuretz

Untitled

Apr 28th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.86 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html>
  4.  
  5. <!--
  6. PAGE BY: ZUVIA @ TUMBLR
  7. SIDEBAR PREVIEW IMAGE: mortgraphics @ livejournal
  8. BACKGROUND: subtlepatterns.com
  9.  
  10. Don't remove the credits!
  11. --!>
  12.  
  13. <title>{Title}</title>
  14. <link rel="shortcut icon" href="{Favicon}">
  15.  
  16. <head>
  17. <link href='http://fonts.googleapis.com/css?family=Economica' rel='stylesheet' type='text/css'>
  18.  
  19. <style type="text/css">
  20.  
  21. /*BACKGROUND*/
  22. body {
  23. background-color:#fff;
  24. background-attachment: fixed;}
  25.  
  26. ::-webkit-scrollbar-thumb:vertical {
  27. background-color: #FA7B98;
  28. height: 30px;}
  29.  
  30. ::-webkit-scrollbar {
  31. height: 30px;
  32. width: 4px;
  33. background-color:#fff;}
  34.  
  35. /*SIDEBAR*/
  36.  
  37. #side{
  38. position:fixed;
  39. margin-left:80px;
  40. top:100px;
  41. z-index:99;}
  42.  
  43. #side img{
  44. width:150px;
  45. height:150px;
  46. padding:4px;
  47. border: 1px solid #ccc;}
  48.  
  49. #desc{
  50. position:fixed;
  51. width:220px;
  52. margin-top:-10px;
  53. margin-left:-30px;
  54. font-family:georgia;
  55. font-size:10px;
  56. text-align:center;
  57. color:#999;}
  58.  
  59. #desc h1{
  60. font-family:Economica;
  61. font-size:16px;
  62. font-weight:normal;
  63. letter-spacing:2px;
  64. z-index:99;
  65. text-align:center;
  66. border-bottom:1px dotted;
  67. text-transform:uppercase;
  68. padding:2px;}
  69.  
  70. #desc a{
  71. color:#f09b26; /*THIS IS THE RETURN LINK COLOR*/
  72. text-decoration:none;
  73. font-size:9px;
  74. letter-spacing:1px;
  75. text-transform:uppercase;
  76. font-family:consolas;}
  77.  
  78. #container{
  79. position:absolute;
  80. margin-left:140px;
  81. width:1000px;
  82. top:20px;}
  83.  
  84. /*CHARACTER IMAGES AND DESCRIPTIONS CSS*/
  85.  
  86. .char{
  87. position:relative;
  88. float:left;
  89. width:260px;
  90. margin-left:180px;
  91. margin-bottom:20px;
  92. padding:4px;}
  93.  
  94. .char a{
  95. color: #000;
  96. text-decoration:none;}
  97.  
  98. .char a:hover{
  99. color:ffdd11;}
  100.  
  101. /* YOU CAN CHANGE THE BORDER COLOR HERE. CHANGE #CCC. */
  102.  
  103. .char img{
  104. width:150px;
  105. padding:4px;
  106. border:1px solid #ccc;}
  107.  
  108. .title{
  109. position:relative;
  110. margin-top:-40px;}
  111.  
  112. /* THIS IS THE SERIES TITLE */
  113.  
  114. .title h1{
  115. font-family:Economica;
  116. font-size:12px;
  117. font-weight:normal;
  118. letter-spacing:2px;
  119. z-index:99;
  120. width:175px;
  121. margin-left:-10px;
  122. text-align:center;
  123. text-transform:uppercase;
  124. padding:2px;
  125. color:#000;
  126. background-color:#ffdd11;}
  127.  
  128. /* THIS IS THE CHARACTER DESCRIPTION. */
  129.  
  130. .info{
  131. position:absolute;
  132. font-family:tahoma;
  133. font-size:10px;
  134. width:200px;
  135. margin-left:180px;
  136. padding:10px;
  137. border: 5px solid #eee;
  138. color: #999;
  139. background-color:#fff;}
  140.  
  141. /* THIS IS THE CHARACTER NAME */
  142.  
  143. .info h1{
  144. border-bottom:1px dotted;
  145. font-family: economica;
  146. color: #000;
  147. font-size:14px;
  148. margin-top:-8px;
  149. margin-bottom:2px;
  150. font-weight:normal;}
  151.  
  152. /* THIS IS THE BOLD COLOR */
  153.  
  154. .info b, strong{
  155. color: #eeaa55;
  156. text-transform:uppercase;
  157. font-size:8px;}
  158.  
  159. #credit{
  160. position:fixed;
  161. bottom:5px;
  162. right:15px;}
  163.  
  164. #credit a{
  165. color: #000;
  166. font-size:10px;
  167. font-family:consolas;
  168. text-decoration:none;}
  169.  
  170. </style>
  171.  
  172. <!-- DON'T TOUCH ANYTHING HERE --!>
  173.  
  174. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  175. <script src="http://static.tumblr.com/6hsqxdt/QBym35odk/jquery.masonry.js"></script>
  176. <script>
  177. $(function(){
  178. var $container = $('#container');
  179. $container.imagesLoaded(function(){
  180. $container.masonry({
  181. itemSelector: '.char',
  182. });
  183. });
  184. $container.infinitescroll({
  185. itemSelector : ".char",
  186. loadingImg : "",
  187. loadingText : "<em></em>",
  188. bufferPx : 10000,
  189. extraScrollPx: 12000,
  190. },
  191. // trigger Masonry as a callback
  192. function( newElements ) {
  193. var $newElems = $( newElements ).css({ opacity: 0 });
  194. // ensure that images load before adding to masonry layout
  195. $newElems.imagesLoaded(function(){
  196. $newElems.animate({ opacity: 1 });
  197. $container.masonry( 'appended', $newElems, true );
  198. });
  199. }
  200. );
  201. });
  202. </script>
  203. </head>
  204. <body>
  205. <div id="credit">
  206. <a title="ZuviaThemes" href="http://zuvia.tumblr.com">☡UVIA</a>
  207. </div>
  208.  
  209. <!--- OKAY CARRY ON ---!>
  210.  
  211. <div id="side">
  212.  
  213. <!--- HERE IS WHERE YOU CHANGE THE SIDEBAR IMAGE. REPLACE THE 'IMG SRC' URL BELOW. ---!>
  214. <img src="http://fc09.deviantart.net/fs70/f/2014/194/d/3/images_by_nyapapa-d7qk2i9.jpg">
  215.  
  216. <div id="desc">
  217.  
  218. <!--- HERE IS YOUR MAIN DESCRIPTION. ---!>
  219. <h1>Characters</h1>
  220. Characters who appeared in the nuzlocke so far.<p>
  221. <a href="http://datnuzlockeblog.tumblr.com/charactergallery">Click for Concepts, Sketches, WIPs, Cutouts</a>
  222.  
  223. <p>
  224. <a href="/">return</a>
  225. </div>
  226. </div>
  227.  
  228. <div id="container">
  229.  
  230. <!---
  231.  
  232. Below is where you add and remove characters.
  233.  
  234. To add another, simply copy everything from 'START CHAR' to 'END CHAR' and paste.
  235.  
  236. To change images, replace the img src URL.
  237.  
  238. To change character names and series names, observe the proper places in the examples below.
  239.  
  240. ---!>
  241.  
  242. <!-- START CHAR --!>
  243. <div class="char">
  244. <div class="info">
  245.  
  246. <!--Character Name--!>
  247. <h1>» Noah Evien</h1>
  248.  
  249. <!--Character Description. Be sure to close all bolded tags. --!>
  250. <b>Status:</b> Active<br>
  251. <b>Age:</b> kek <br>
  252. <b>Nature:</b> Relaxed<br>
  253. <b>Species:</b> Croconaw<br>
  254. <b>Desc:</b> Withdrawn and stern. Prefers using his legs and feet in combat rather than fists. Background unknown. Promised to a Hoothoot (Senna) that he would help her attempt the 'League Challenge'. Accident-prone. <br>
  255. </div>
  256.  
  257. <!--Character Image--!>
  258. <img src="http://orig09.deviantart.net/ca78/f/2015/064/2/0/4_by_nyapapa-d8kjg5h.png">
  259.  
  260. <div class="title"><h1>
  261.  
  262. <!--Series Name and Roleplay Link--!>
  263. <a href="/tagged/noah">Noah</a>
  264.  
  265. </h1></div>
  266. </div>
  267. <!-- End Char --!>
  268.  
  269. <!-- START CHAR --!>
  270. <div class="char">
  271. <div class="info">
  272.  
  273. <!--Character Name--!>
  274. <h1>» Senna Sova</h1>
  275.  
  276. <!--Character Description. Be sure to close all bolded tags. --!>
  277. <b>Status:</b> Active <br>
  278. <b>Age:</b> 15 <br>
  279. <b>Nature:</b> Bold<br>
  280. <b>Species:</b> Hoothoot<br>
  281. <b>Desc:</b> Hyperactive and easygoing. Was taught how to fight in the Sprout Tower. Apparently is taking the 'League Challenge' to find her big brother.<br>
  282. </div>
  283.  
  284. <!--Character Image--!>
  285. <img src="http://fc00.deviantart.net/fs70/f/2014/194/c/d/d_by_nyapapa-d7qjnpe.png">
  286.  
  287. <div class="title"><h1>
  288.  
  289. <!--Series Name and Roleplay Link--!>
  290. <a href="/tagged/senna">Senna</a>
  291.  
  292. </h1></div>
  293. </div>
  294. <!-- End Char --!>
  295.  
  296. <!-- START CHAR --!>
  297. <div class="char">
  298. <div class="info">
  299.  
  300. <!--Character Name--!>
  301. <h1>» Gabriel Brandeve</h1>
  302.  
  303. <!--Character Description. Be sure to close all bolded tags. --!>
  304. <b>Status:</b> Active <br>
  305. <b>Age:</b> 18 <br>
  306. <b>Nature:</b> Modest<br>
  307. <b>Species:</b> Cyndaquil<br>
  308. <b>Desc:</b> Caring and friendly. Works as Professor Elm's assistant. Was attacked by a mysterious Koffing in Elm's lab. Currently going to Hayes's location with Arun. <br>
  309. </div>
  310.  
  311. <!--Character Image--!>
  312. <img src="http://fc02.deviantart.net/fs70/f/2015/031/8/4/2_by_nyapapa-d8g5cys.png">
  313.  
  314. <div class="title"><h1>
  315.  
  316. <!--Series Name and Roleplay Link--!>
  317. <a href="/tagged/gabe">Gabe</a>
  318.  
  319. </h1></div>
  320. </div>
  321. <!-- End Char --!>
  322.  
  323. <!-- START CHAR --!>
  324. <div class="char">
  325. <div class="info">
  326.  
  327. <!--Character Name--!>
  328. <h1>» Hayes Frondemen</h1>
  329.  
  330. <!--Character Description. Be sure to close all bolded tags. --!>
  331. <b>Status:</b> Active <br>
  332. <b>Age:</b> 17 <br>
  333. <b>Nature:</b> Adamant<br>
  334. <b>Species:</b> Chikorita<br>
  335. <b>Desc:</b> Proud and stubborn. Was training to take on the 'League Challenge' but started on her journey early because of a certain Totodile. <br>
  336. </div>
  337.  
  338. <!--Character Image--!>
  339. <img src="http://fc08.deviantart.net/fs71/f/2015/031/c/a/11_by_nyapapa-d8g5cvy.png">
  340.  
  341. <div class="title"><h1>
  342.  
  343. <!--Series Name and Roleplay Link--!>
  344. <a href="/tagged/hayes">Hayes</a>
  345.  
  346. </h1></div>
  347. </div>
  348. <!-- End Char --!>
  349.  
  350.  
  351. <!-- START CHAR --!>
  352. <div class="char">
  353. <div class="info">
  354.  
  355. <!--Character Name--!>
  356. <h1>» Erik Nenner</h1>
  357.  
  358. <!--Character Description. Be sure to close all bolded tags. --!>
  359. <b>Status:</b> Active <br>
  360. <b>Age:</b> 17 <br>
  361. <b>Nature:</b> Impish<br>
  362. <b>Species:</b> Zubat<br>
  363. <b>Desc:</b> Chill and understanding. Is close friends with Gabe and Hayes. He has a little sister named Annie (who can influence Erik pretty easily ho ho.) Taking the 'League Challenge' early with Hayes to accompany her.<br>
  364. </div>
  365.  
  366. <!--Character Image--!>
  367. <img src="http://fc03.deviantart.net/fs71/f/2015/031/5/5/9_by_nyapapa-d8g5cwp.png">
  368.  
  369. <div class="title"><h1>
  370.  
  371. <!--Series Name and Roleplay Link--!>
  372. <a href="/tagged/erik">Erik</a>
  373.  
  374. </h1></div>
  375. </div>
  376. <!-- End Char --!>
  377.  
  378. <!-- START CHAR --!>
  379. <div class="char">
  380. <div class="info">
  381.  
  382. <!--Character Name--!>
  383. <h1>» Herman</h1>
  384.  
  385. <!--Character Description. Be sure to close all bolded tags. --!>
  386. <b>Status:</b> Active <br>
  387. <b>Age:</b> 44 <br>
  388. <b>Nature:</b> Bold<br>
  389. <b>Species:</b> Arcanine<br>
  390. <b>Desc:</b> Serious. Chief of police (in Violet City). Apparently knows Hayes. <br>
  391. </div>
  392.  
  393. <!--Character Image--!>
  394. <img src="http://fc02.deviantart.net/fs70/f/2015/031/e/a/4_by_nyapapa-d8g5cy1.png">
  395.  
  396. <div class="title"><h1>
  397.  
  398. <!--Series Name and Roleplay Link--!>
  399. <a href="/tagged/herman">herman</a>
  400.  
  401. </h1></div>
  402. </div>
  403. <!-- End Char --!>
  404.  
  405. <!-- START CHAR --!>
  406. <div class="char">
  407. <div class="info">
  408.  
  409. <!--Character Name--!>
  410. <h1>» Sang-min</h1>
  411.  
  412. <!--Character Description. Be sure to close all bolded tags. --!>
  413. <b>Status:</b> Active <br>
  414. <b>Age:</b> 48 <br>
  415. <b>Nature:</b> Calm<br>
  416. <b>Species:</b> Kadabra<br>
  417. <b>Desc:</b> Friendly but is serious when he needs to. Herman's best friend and partner in the police department. Uses barriers and screens. He was apparently one of Hayes's teachers. <br>
  418. </div>
  419.  
  420. <!--Character Image--!>
  421. <img src="http://fc02.deviantart.net/fs70/f/2015/031/b/7/8_by_nyapapa-d8g5cwy.png">
  422.  
  423. <div class="title"><h1>
  424.  
  425. <!--Series Name and Roleplay Link--!>
  426. <a href="/tagged/sang-min">sang-min</a>
  427.  
  428. </h1></div>
  429. </div>
  430. <!-- End Char --!>
  431.  
  432. <!-- START CHAR --!>
  433. <div class="char">
  434. <div class="info">
  435.  
  436. <!--Character Name--!>
  437. <h1>» Jain Pace</h1>
  438.  
  439. <!--Character Description. Be sure to close all bolded tags. --!>
  440. <b>Status:</b> Active <br>
  441. <b>Age:</b> 17 <br>
  442. <b>Nature:</b> Quirky<br>
  443. <b>Species:</b> Spinarak<br>
  444. <b>Desc:</b> Friendy and sociable. Has a Pidgey boyfriend. Gave Noah her phone number in case he needs any help on his journey.<br>
  445. </div>
  446.  
  447. <!--Character Image--!>
  448. <img src="http://fc05.deviantart.net/fs70/f/2014/194/1/e/sketch_by_nyapapa-d7qjuak.png">
  449.  
  450. <div class="title"><h1>
  451.  
  452. <!--Series Name and Roleplay Link--!>
  453. <a href="/tagged/jain">jain</a>
  454.  
  455. </h1></div>
  456. </div>
  457. <!-- End Char --!>
  458.  
  459. <!-- START CHAR --!>
  460. <div class="char">
  461. <div class="info">
  462.  
  463. <!--Character Name--!>
  464. <h1>» Azel Carmine</h1>
  465.  
  466. <!--Character Description. Be sure to close all bolded tags. --!>
  467. <b>Status:</b> Active <br>
  468. <b>Age:</b> Presumably 25)<br>
  469. <b>Nature:</b> Calm<br>
  470. <b>Species:</b> Gastly<br>
  471. <b>Desc:</b> Generally quiet and reserved. Quite intelligent and explains things whenever he needs to. He can also be quite sassy with his words. Was given permission to live in the Sprout Tower with his fellow tribe members by Elder Li. <br>
  472. </div>
  473.  
  474. <!--Character Image--!>
  475. <img src="http://i.imgur.com/22W4EgR.png">
  476.  
  477. <div class="title"><h1>
  478.  
  479. <!--Series Name and Roleplay Link--!>
  480. <a href="/tagged/azel">azel</a>
  481.  
  482. </h1></div>
  483. </div>
  484. <!-- End Char --!>
  485.  
  486. <!-- START CHAR --!>
  487. <div class="char">
  488. <div class="info">
  489.  
  490. <!--Character Name--!>
  491. <h1>» Damien Moreno</h1>
  492.  
  493. <!--Character Description. Be sure to close all bolded tags. --!>
  494. <b>Status:</b> Active <br>
  495. <b>Age:</b> Presumably 17<br>
  496. <b>Nature:</b> Rash<br>
  497. <b>Species:</b> Gastly<br>
  498. <b>Desc:</b> A prankster and a bit stuck up. He was staying in Sprout Tower with Azel before he decided to leave and join Hayes's team. He dislikes Azel. A lot.
  499. <br>
  500. </div>
  501.  
  502. <!--Character Image--!>
  503. <img src="http://fc03.deviantart.net/fs71/f/2015/031/2/0/10_by_nyapapa-d8g5cwi.png">
  504.  
  505. <div class="title"><h1>
  506.  
  507. <!--Series Name and Roleplay Link--!>
  508. <a href="/tagged/damien">damien</a>
  509.  
  510. </h1></div>
  511. </div>
  512. <!-- End Char --!>
  513.  
  514.  
  515. <!-- START CHAR --!>
  516. <div class="char">
  517. <div class="info">
  518.  
  519. <!--Character Name--!>
  520. <h1>» Elder Li</h1>
  521.  
  522. <!--Character Description. Be sure to close all bolded tags. --!>
  523. <b>Status:</b> Active <br>
  524. <b>Age:</b> 86<br>
  525. <b>Nature:</b> Mild<br>
  526. <b>Species:</b> Hoothoot<br>
  527. <b>Desc:</b> Comical and friendy, but he can be serious when he needs to. He takes care of Sprout Tower and trains gijinka how to fight there.
  528. <br>
  529. </div>
  530.  
  531. <!--Character Image--!>
  532. <img src="http://fc00.deviantart.net/fs71/f/2014/194/7/f/b_by_nyapapa-d7qk25f.png">
  533.  
  534. <div class="title"><h1>
  535.  
  536. <!--Series Name and Roleplay Link--!>
  537. <a href="/tagged/elder-li">Elder Li</a>
  538.  
  539. </h1></div>
  540. </div>
  541. <!-- End Char --!>
  542.  
  543. <!-- START CHAR --!>
  544. <div class="char">
  545. <div class="info">
  546.  
  547. <!--Character Name--!>
  548. <h1>» Professor Elm</h1>
  549.  
  550. <!--Character Description. Be sure to close all bolded tags. --!>
  551. <b>Status:</b> Active <br>
  552. <b>Age:</b> 53<br>
  553. <b>Nature:</b> Hasty<br>
  554. <b>Species:</b>Raticate<br>
  555. <b>Desc:</b> Johto's well-known professor who resides in humble New Bark town. Elm taught Gabe, Erik, and Hayes when they were kids in school, and he is acquainted with Noah. He might have the slight urge to choke Noah, Hayes, and Erik right now. He might also be a little mad at Gabe for burning down his labratory.
  556. <br>
  557. </div>
  558.  
  559. <!--Character Image--!>
  560. <img src="http://i.imgur.com/HODWH5I.pngg">
  561.  
  562. <div class="title"><h1>
  563.  
  564. <!--Series Name and Roleplay Link--!>
  565. <a href="/tagged/elm">Elm</a>
  566.  
  567. </h1></div>
  568. </div>
  569. <!-- End Char --!>
  570.  
  571. <!-- START CHAR --!>
  572. <div class="char">
  573. <div class="info">
  574.  
  575. <!--Character Name--!>
  576. <h1>» Professor Oak</h1>
  577.  
  578. <!--Character Description. Be sure to close all bolded tags. --!>
  579. <b>Status:</b> Active <br>
  580. <b>Age:</b> 65<br>
  581. <b>Nature:</b> Modest<br>
  582. <b>Species:</b> Charizard<br>
  583. <b>Desc:</b> A very famous professor from Kanto who is friends with Professor Elm. He's really cool.
  584. <br>
  585. </div>
  586.  
  587. <!--Character Image--!>
  588. <img src="http://fc03.deviantart.net/fs70/f/2014/194/7/3/a_by_nyapapa-d7qjmpz.png">
  589.  
  590. <div class="title"><h1>
  591.  
  592. <!--Series Name and Roleplay Link--!>
  593. <a href="/tagged/oak">Oak</a>
  594.  
  595. </h1></div>
  596. </div>
  597. <!-- End Char --!>
  598.  
  599. <!-- START CHAR --!>
  600. <div class="char">
  601. <div class="info">
  602.  
  603. <!--Character Name--!>
  604. <h1>» Sabel Marquez</h1>
  605.  
  606. <!--Character Description. Be sure to close all bolded tags. --!>
  607. <b>Status:</b> Active <br>
  608. <b>Age:</b> 24<br>
  609. <b>Nature:</b> Mild<br>
  610. <b>Species:</b> Pidgey<br>
  611. <b>Desc:</b> The referee of Violet City's gym. Is a friend of Momo's & the reason why Momo comes to the gym often.
  612. <br>
  613. </div>
  614.  
  615. <!--Character Image--!>
  616. <img src="http://fc04.deviantart.net/fs70/f/2014/221/1/7/c_by_nyapapa-d7uiafu.png">
  617.  
  618. <div class="title"><h1>
  619.  
  620. <!--Series Name and Roleplay Link--!>
  621. <a href="/tagged/sabel">Sabel</a>
  622.  
  623. </h1></div>
  624. </div>
  625. <!-- End Char --!>
  626.  
  627.  
  628. <!-- START CHAR --!>
  629. <div class="char">
  630. <div class="info">
  631.  
  632. <!--Character Name--!>
  633. <h1>» Red Baron</h1>
  634.  
  635. <!--Character Description. Be sure to close all bolded tags. --!>
  636. <b>Status:</b> Active <br>
  637. <b>Age:</b> -<br>
  638. <b>Nature:</b>-<br>
  639. <b>Species:</b> Pidgeotto<br>
  640. <b>Desc:</b> The chill ass bro gym leader of Violet City.
  641. <br>
  642. </div>
  643.  
  644. <!--Character Image--!>
  645. <img src="http://i.imgur.com/2FJKZkN.png">
  646.  
  647. <div class="title"><h1>
  648.  
  649. <!--Series Name and Roleplay Link--!>
  650. <a href="/tagged/baron">Red Baron</a>
  651.  
  652. </h1></div>
  653. </div>
  654. <!-- End Char --!>
  655.  
  656.  
  657. <!-- START CHAR --!>
  658. <div class="char">
  659. <div class="info">
  660.  
  661. <!--Character Name--!>
  662. <h1>» Rider</h1>
  663.  
  664. <!--Character Description. Be sure to close all bolded tags. --!>
  665. <b>Status:</b> Active <br>
  666. <b>Age:</b> -<br>
  667. <b>Nature:</b>-<br>
  668. <b>Species:</b> Pidgey<br>
  669. <b>Desc:</b> Red Baron's assistant... Didn't stand a chance against Senna in the gym battle... Senna needs to apologize for that last attack... *coughs*
  670. <br>
  671. </div>
  672.  
  673. <!--Character Image--!>
  674. <img src="http://i.imgur.com/hSbOmMN.png">
  675.  
  676. <div class="title"><h1>
  677.  
  678. <!--Series Name and Roleplay Link--!>
  679. <a href="/tagged/rider">Rider</a>
  680.  
  681. </h1></div>
  682. </div>
  683. <!-- End Char --!>
  684.  
  685. <!-- START CHAR --!>
  686. <div class="char">
  687. <div class="info">
  688.  
  689. <!--Character Name--!>
  690. <h1>» Momo Arling</h1>
  691.  
  692. <!--Character Description. Be sure to close all bolded tags. --!>
  693. <b>Status:</b> Active <br>
  694. <b>Age:</b> 30<br>
  695. <b>Nature:</b> Impish<br>
  696. <b>Species:</b> Flaaffy<br>
  697. <b>Desc:</b> Leda's mom. Chill as hell flaaffy who is a close friend of Azel. Can get on Azel's nerves sometimes. Makes Noah add her, Leda, and Azel to his team.
  698. <br>
  699. </div>
  700.  
  701. <!--Character Image--!>
  702. <img src="http://orig01.deviantart.net/69cc/f/2015/064/b/a/3_by_nyapapa-d8kjg5y.png">
  703.  
  704. <div class="title"><h1>
  705.  
  706. <!--Series Name and Roleplay Link--!>
  707. <a href="/tagged/momo">Momo</a>
  708.  
  709. </h1></div>
  710. </div>
  711. <!-- End Char --!>
  712.  
  713. <!-- START CHAR --!>
  714. <div class="char">
  715. <div class="info">
  716.  
  717. <!--Character Name--!>
  718. <h1>» Leda Arling</h1>
  719.  
  720. <!--Character Description. Be sure to close all bolded tags. --!>
  721. <b>Status:</b> Active <br>
  722. <b>Age:</b> 12<br>
  723. <b>Nature:</b> Rash<br>
  724. <b>Species:</b> Togepi<br>
  725. <b>Desc:</b> Momo's adopted daughter who is snarky and mischevious. She likes to bother Azel and tends to look down on Noah. Azel questions Momo on how she raises Leda sometimes.
  726. <br>
  727. </div>
  728.  
  729. <!--Character Image--!>
  730. <img src="http://i.imgur.com/k4rqk1j.png">
  731.  
  732. <div class="title"><h1>
  733.  
  734. <!--Series Name and Roleplay Link--!>
  735. <a href="/tagged/leda">LEDA</a>
  736.  
  737. </h1></div>
  738. </div>
  739. <!-- End Char --!>
  740.  
  741.  
  742. <!-- START CHAR --!>
  743. <div class="char">
  744. <div class="info">
  745.  
  746. <!--Character Name--!>
  747. <h1>» Jude</h1>
  748.  
  749. <!--Character Description. Be sure to close all bolded tags. --!>
  750. <b>Status:</b> Active <br>
  751. <b>Age:</b> ???<br>
  752. <b>Nature:</b> ???<br>
  753. <b>Species:</b> ???<br>
  754. <b>Desc:</b> A Team Rocket member.
  755. <br>
  756. </div>
  757.  
  758. <!--Character Image--!>
  759. <img src="http://i.imgur.com/MEwIxQC.png">
  760.  
  761. <div class="title"><h1>
  762.  
  763. <!--Series Name and Roleplay Link--!>
  764. <a href="/tagged/jude">jude</a>
  765.  
  766. </h1></div>
  767. </div>
  768. <!-- End Char --!>
  769.  
  770.  
  771. <!-- START CHAR --!>
  772. <div class="char">
  773. <div class="info">
  774.  
  775. <!--Character Name--!>
  776. <h1>» Franco</h1>
  777.  
  778. <!--Character Description. Be sure to close all bolded tags. --!>
  779. <b>Status:</b> Active <br>
  780. <b>Age:</b> ???<br>
  781. <b>Nature:</b> ???<br>
  782. <b>Species:</b> ???<br>
  783. <b>Desc:</b> A Team Rocket member.
  784. <br>
  785. </div>
  786.  
  787. <!--Character Image--!>
  788. <img src="http://i.imgur.com/dBPkCb5.png">
  789.  
  790. <div class="title"><h1>
  791.  
  792. <!--Series Name and Roleplay Link--!>
  793. <a href="/tagged/franco">franco</a>
  794.  
  795. </h1></div>
  796. </div>
  797. <!-- End Char --!>
  798.  
  799. <!-- START CHAR --!>
  800. <div class="char">
  801. <div class="info">
  802.  
  803. <!--Character Name--!>
  804. <h1>» Laurent</h1>
  805.  
  806. <!--Character Description. Be sure to close all bolded tags. --!>
  807. <b>Status:</b> Active <br>
  808. <b>Age:</b> ???<br>
  809. <b>Nature:</b> ???<br>
  810. <b>Species:</b> ???<br>
  811. <b>Desc:</b> A Team Rocket member.
  812. <br>
  813. </div>
  814.  
  815. <!--Character Image--!>
  816. <img src="http://i.imgur.com/ClqYiYF.png">
  817.  
  818. <div class="title"><h1>
  819.  
  820. <!--Series Name and Roleplay Link--!>
  821. <a href="/tagged/laurent">laurent</a>
  822.  
  823. </h1></div>
  824. </div>
  825. <!-- End Char --!>
  826.  
  827.  
  828.  
  829. <!-- START CHAR --!>
  830. <div class="char">
  831. <div class="info">
  832.  
  833. <!--Character Name--!>
  834. <h1>» Gomme</h1>
  835.  
  836. <!--Character Description. Be sure to close all bolded tags. --!>
  837. <b>Status:</b> Active <br>
  838. <b>Age:</b> ???<br>
  839. <b>Nature:</b> ???<br>
  840. <b>Species:</b> ???<br>
  841. <b>Desc:</b> A Team Rocket member.
  842. <br>
  843. </div>
  844.  
  845. <!--Character Image--!>
  846. <img src="http://i.imgur.com/fm5ecZN.png">
  847.  
  848. <div class="title"><h1>
  849.  
  850. <!--Series Name and Roleplay Link--!>
  851. <a href="/tagged/gomme">gomme</a>
  852.  
  853. </h1></div>
  854. </div>
  855. <!-- End Char --!>
  856.  
  857.  
  858.  
  859. <!-- START CHAR --!>
  860. <div class="char">
  861. <div class="info">
  862.  
  863. <!--Character Name--!>
  864. <h1>Liliane</h1>
  865.  
  866. <!--Character Description. Be sure to close all bolded tags. --!>
  867. <b>Status:</b> Active <br>
  868. <b>Age:</b> ???<br>
  869. <b>Nature:</b> ???<br>
  870. <b>Species:</b> ???<br>
  871. <b>Desc:</b> A Team Rocket member.
  872. <br>
  873. </div>
  874.  
  875. <!--Character Image--!>
  876. <img src="http://i.imgur.com/x2rGr2x.png">
  877.  
  878. <div class="title"><h1>
  879.  
  880. <!--Series Name and Roleplay Link--!>
  881. <a href="/tagged/liliane">liliane</a>
  882.  
  883. </h1></div>
  884. </div>
  885. <!-- End Char --!>
  886.  
  887.  
  888. <!-- START CHAR --!>
  889. <div class="char">
  890. <div class="info">
  891.  
  892. <!--Character Name--!>
  893. <h1>Arun</h1>
  894.  
  895. <!--Character Description. Be sure to close all bolded tags. --!>
  896. <b>Status:</b> Active <br>
  897. <b>Age:</b> 21<br>
  898. <b>Nature:</b> Bold<br>
  899. <b>Species:</b> Arcanine<br>
  900. <b>Desc:</b> Herman's eldest son. He is a bro/police officer who's close friends with Gabe. Currently going to Hayes's location with Gabe
  901. <br>
  902. </div>
  903.  
  904. <!--Character Image--!>
  905. <img src="http://fc07.deviantart.net/fs71/f/2015/031/3/e/3_by_nyapapa-d8g5cyg.png">
  906.  
  907. <div class="title"><h1>
  908.  
  909. <!--Series Name and Roleplay Link--!>
  910. <a href="/tagged/arun">Arun</a>
  911.  
  912. </h1></div>
  913. </div>
  914. <!-- End Char --!>
  915.  
  916.  
  917. <!-- START CHAR --!>
  918. <div class="char">
  919. <div class="info">
  920.  
  921. <!--Character Name--!>
  922. <h1>Maclagan</h1>
  923.  
  924. <!--Character Description. Be sure to close all bolded tags. --!>
  925. <b>Status:</b> Active <br>
  926. <b>Age:</b> 40<br>
  927. <b>Nature:</b> Adamant<br>
  928. <b>Species:</b> Gengar<br>
  929. <b>Desc:</b> Chief of police in Ecruteak City.
  930. <br>
  931. </div>
  932.  
  933. <!--Character Image--!>
  934. <img src="http://fc09.deviantart.net/fs71/f/2015/031/6/e/5_by_nyapapa-d8g5cxt.png">
  935.  
  936. <div class="title"><h1>
  937.  
  938. <!--Series Name and Roleplay Link--!>
  939. <a href="/tagged/maclagan">maclagan</a>
  940.  
  941. </h1></div>
  942. </div>
  943. <!-- End Char --!>
  944.  
  945. <!-- START CHAR --!>
  946. <div class="char">
  947. <div class="info">
  948.  
  949. <!--Character Name--!>
  950. <h1>Victor</h1>
  951.  
  952. <!--Character Description. Be sure to close all bolded tags. --!>
  953. <b>Status:</b> Active <br>
  954. <b>Age:</b> 35<br>
  955. <b>Nature:</b> Quiet<br>
  956. <b>Species:</b> Ariados<br>
  957. <b>Desc:</b> Chief of police in Azalea Town.
  958. <br>
  959. </div>
  960.  
  961. <!--Character Image--!>
  962. <img src="http://fc07.deviantart.net/fs70/f/2015/031/2/b/6_by_nyapapa-d8g5cxh.png">
  963.  
  964. <div class="title"><h1>
  965.  
  966. <!--Series Name and Roleplay Link--!>
  967. <a href="/tagged/victor">victor</a>
  968.  
  969. </h1></div>
  970. </div>
  971. <!-- End Char --!>
  972.  
  973. <!-- START CHAR --!>
  974. <div class="char">
  975. <div class="info">
  976.  
  977. <!--Character Name--!>
  978. <h1>Hausmann</h1>
  979.  
  980. <!--Character Description. Be sure to close all bolded tags. --!>
  981. <b>Status:</b> Active <br>
  982. <b>Age:</b> 50<br>
  983. <b>Nature:</b> Jolly<br>
  984. <b>Species:</b> Kingdra<br>
  985. <b>Desc:</b> Chief of police in Blackthorn City.
  986. <br>
  987. </div>
  988.  
  989. <!--Character Image--!>
  990. <img src="http://fc03.deviantart.net/fs71/f/2015/031/5/a/7_by_nyapapa-d8g5cxa.png">
  991.  
  992. <div class="title"><h1>
  993.  
  994. <!--Series Name and Roleplay Link--!>
  995. <a href="/tagged/hausmann">Hausmann</a>
  996.  
  997. </h1></div>
  998. </div>
  999. <!-- End Char --!>
  1000.  
  1001. <!-- START CHAR --!>
  1002. <div class="char">
  1003. <div class="info">
  1004.  
  1005. <!--Character Name--!>
  1006. <h1>Utah Bailey</h1>
  1007.  
  1008. <!--Character Description. Be sure to close all bolded tags. --!>
  1009. <b>Status:</b> Active <br>
  1010. <b>Age:</b> 17<br>
  1011. <b>Nature:</b> Bashful<br>
  1012. <b>Species:</b> Sandshrew<br>
  1013. <b>Desc:</b> A kind hearted boy who's taking the League Challenge with three others. He is a team leader who thinks more of the members rather than himself.
  1014. <br>
  1015. </div>
  1016.  
  1017. <!--Character Image--!>
  1018. <img src="http://orig11.deviantart.net/d5eb/f/2015/064/d/0/1_by_nyapapa-d8kj7yf.png">
  1019.  
  1020. <div class="title"><h1>
  1021.  
  1022. <!--Series Name and Roleplay Link--!>
  1023. <a href="/tagged/utah">Utah</a>
  1024.  
  1025. </h1></div>
  1026. </div>
  1027. <!-- End Char --!>
  1028.  
  1029. <!-- START CHAR --!>
  1030. <div class="char">
  1031. <div class="info">
  1032. <!--Character Name--!>
  1033. <h1>Nix Marin</h1>
  1034.  
  1035. <!--Character Description. Be sure to close all bolded tags. --!>
  1036. <b>Status:</b> Active <br>
  1037. <b>Age:</b> 13<br>
  1038. <b>Nature:</b> Naughty<br>
  1039. <b>Species:</b> Wooper<br>
  1040. <b>Desc:</b> One of Utah's teammates. She cool.
  1041. <br>
  1042. </div>
  1043.  
  1044. <!--Character Image--!>
  1045. <img src="http://orig05.deviantart.net/23ba/f/2015/067/0/5/1_by_nyapapa-d8kytbt.png">
  1046.  
  1047. <div class="title"><h1>
  1048.  
  1049. <!--Series Name and Roleplay Link--!>
  1050. <a href="/tagged/Nix">Nix</a>
  1051.  
  1052. </h1></div>
  1053. </div>
  1054. <!-- End Char --!>
  1055.  
  1056.  
  1057.  
  1058.  
  1059. </div>
  1060. </div>
  1061. </body>
  1062. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement