|
@@ -0,0 +1,3846 @@
|
|
|
|
|
+import clsx from "clsx";
|
|
|
|
|
+import type { NextPage } from "next";
|
|
|
|
|
+import Link from "next/link";
|
|
|
|
|
+import { useState } from "react";
|
|
|
|
|
+import NovelCover from "../../../components/NovelCover";
|
|
|
|
|
+import styles from "../../../styles/novel-info.module.scss";
|
|
|
|
|
+
|
|
|
|
|
+const Novel: NextPage = () => {
|
|
|
|
|
+ const [tab, setTab] = useState("about");
|
|
|
|
|
+ return (
|
|
|
|
|
+ <main>
|
|
|
|
|
+ <div
|
|
|
|
|
+ className={styles["novel-wrap"]}
|
|
|
|
|
+ style={{
|
|
|
|
|
+ backgroundImage:
|
|
|
|
|
+ "url(https://www.wuxiaworld.com/cdn-cgi/image/fit=contain,quality=75,format=auto/https://cdn.wuxiaworld.com/images/covers/og.jpg?ver=362f12103bcf1ea3fc048174300b89a65643336b)",
|
|
|
|
|
+ }}
|
|
|
|
|
+ >
|
|
|
|
|
+ <div className={styles["novel-container"]}>
|
|
|
|
|
+ <div className="text-sm py-4 breadcrumbs">
|
|
|
|
|
+ <ul>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a>
|
|
|
|
|
+ <svg className="w-5 h-5 mr-1 -mt-1">
|
|
|
|
|
+ <use xlinkHref="/icons.svg#home"></use>
|
|
|
|
|
+ </svg>
|
|
|
|
|
+ Home
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a>Documents</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>Add Document</li>
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div className={styles["novel-info"]}>
|
|
|
|
|
+ <NovelCover
|
|
|
|
|
+ className={styles["novel-info-cover"]}
|
|
|
|
|
+ component="div"
|
|
|
|
|
+ />
|
|
|
|
|
+ <div className={styles["nove-info-body"]}>
|
|
|
|
|
+ <h1>
|
|
|
|
|
+ Supreme Harem God System
|
|
|
|
|
+ <small>Completed</small>
|
|
|
|
|
+ </h1>
|
|
|
|
|
+ <h2>
|
|
|
|
|
+ <a title="Fantasy" href="">
|
|
|
|
|
+ <svg>
|
|
|
|
|
+ <use xlinkHref="/icons.svg#paper"></use>
|
|
|
|
|
+ </svg>
|
|
|
|
|
+ <span>Fantasy</span>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ <svg>
|
|
|
|
|
+ <use xlinkHref="/icons.svg#chapter"></use>
|
|
|
|
|
+ </svg>
|
|
|
|
|
+ <span>438 Chapters</span>
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ <svg>
|
|
|
|
|
+ <use xlinkHref="/icons.svg#eye"></use>
|
|
|
|
|
+ </svg>
|
|
|
|
|
+ <span>3.9M Views</span>
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ </h2>
|
|
|
|
|
+ <div className={styles["btns"]}>
|
|
|
|
|
+ <a href="" className={styles["button"]}>
|
|
|
|
|
+ Start Reading
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div className="container bg-paper py-3">
|
|
|
|
|
+ <div className="tabs">
|
|
|
|
|
+ <button
|
|
|
|
|
+ className={clsx(["tab", { active: tab === "about" }])}
|
|
|
|
|
+ onClick={() => setTab("about")}
|
|
|
|
|
+ >
|
|
|
|
|
+ About
|
|
|
|
|
+ </button>
|
|
|
|
|
+ <button
|
|
|
|
|
+ className={clsx(["tab", { active: tab === "chapters" }])}
|
|
|
|
|
+ onClick={() => setTab("chapters")}
|
|
|
|
|
+ >
|
|
|
|
|
+ Chapters
|
|
|
|
|
+ </button>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div className={clsx({ hidden: tab !== "about" })}>
|
|
|
|
|
+ <h2 className="sub-title">Tags</h2>
|
|
|
|
|
+ <div className="tags">
|
|
|
|
|
+ {[
|
|
|
|
|
+ "Chinese",
|
|
|
|
|
+ "Romance",
|
|
|
|
|
+ "Fantasy",
|
|
|
|
|
+ "Comedy",
|
|
|
|
|
+ "Mystery",
|
|
|
|
|
+ "Xuanhuan",
|
|
|
|
|
+ "Action",
|
|
|
|
|
+ "Virtual Reality",
|
|
|
|
|
+ "Crafting",
|
|
|
|
|
+ "Modern Setting",
|
|
|
|
|
+ "Superpowers",
|
|
|
|
|
+ "Political Intrigue",
|
|
|
|
|
+ ].map((item) => (
|
|
|
|
|
+ <a href="" className="tag" key={item}>
|
|
|
|
|
+ {item}
|
|
|
|
|
+ </a>
|
|
|
|
|
+ ))}
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <h2 className="sub-title">Synopsis</h2>
|
|
|
|
|
+ <div className={styles["novel-text"]}>
|
|
|
|
|
+ <p>
|
|
|
|
|
+ The Age of Gods has long since ended, their voices no longer heard
|
|
|
|
|
+ on the continent of Douluo. Humanity, standing on the shoulders of
|
|
|
|
|
+ legends from its history, advanced soul technology to
|
|
|
|
|
+ inconceivable heights. The humans of Douluo invented weapons of
|
|
|
|
|
+ mass destruction, mechanized armor, and living metals. With these
|
|
|
|
|
+ advancements, they went on to conquer the oceans and discovered
|
|
|
|
|
+ two new continents. To fuel these new technologies, humanity
|
|
|
|
|
+ hunted the soul beasts to the very brink of extinction.
|
|
|
|
|
+ </p>
|
|
|
|
|
+ <p>
|
|
|
|
|
+ Once the dominant force of Douluo, the few surviving soul beasts
|
|
|
|
|
+ now hide in the darkest recesses of their last sanctuary. The
|
|
|
|
|
+ weakest have all been hunted, leaving only the strongest to scheme
|
|
|
|
|
+ in the heart of the forest. The soul beasts, not willing to fade
|
|
|
|
|
+ away, plot an uprising for their survival. In the midst of this, a
|
|
|
|
|
+ god from a long forgotten era awakens in the depths of the Great
|
|
|
|
|
+ Star Dou Forest to seek vengeance for the soul beasts.
|
|
|
|
|
+ </p>
|
|
|
|
|
+ <p>
|
|
|
|
|
+ As darkness encroaches from the abyss, hope is found in a young
|
|
|
|
|
+ boy who holds a power beyond divinity within himself—Tang Wulin!
|
|
|
|
|
+ Hope for both humanity and the soul beasts, as the bridge between
|
|
|
|
|
+ the two. He finds his way into the fabled halls of Shrek Academy,
|
|
|
|
|
+ where he learns to wield his prodigious powers, makes friends and
|
|
|
|
|
+ finds allies, eventually rising to become a towering leader.
|
|
|
|
|
+ </p>
|
|
|
|
|
+ <p>
|
|
|
|
|
+ As he learns to harness his strength, danger lurks within the
|
|
|
|
|
+ shadows as the various factions of humanity maneuver and plot to
|
|
|
|
|
+ usurp Shrek Academy. Tang Wulin discovers the threat to the only
|
|
|
|
|
+ world he knows as he sinks deeper into the intrigue. Meanwhile,
|
|
|
|
|
+ camouflaged by the chaos and unbeknownst to the humans, the soul
|
|
|
|
|
+ beasts’ plot continues to steadily advance.
|
|
|
|
|
+ </p>
|
|
|
|
|
+ <p>
|
|
|
|
|
+ To defend what he loves and reclaim what was lost, Tang Wulin must
|
|
|
|
|
+ seek out the legacies of legends past and unlock the full might of
|
|
|
|
|
+ the Golden Dragon King!
|
|
|
|
|
+ </p>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div className={clsx({ hidden: tab !== "chapters" })}>
|
|
|
|
|
+ <h3 className="sub-title">Volume 1 : The Awakening.</h3>
|
|
|
|
|
+ <ol className={styles["chapter-list"]}>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 01: Prologue">
|
|
|
|
|
+ <i>1</i>
|
|
|
|
|
+ <strong>Chapter 01: Prologue</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 02: Awakening.">
|
|
|
|
|
+ <i>2</i>
|
|
|
|
|
+ <strong>Chapter 02: Awakening.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 03: Violet Snow. ">
|
|
|
|
|
+ <i>3</i>
|
|
|
|
|
+ <strong>Chapter 03: Violet Snow. </strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 04: An incredibly beautiful woman.">
|
|
|
|
|
+ <i>4</i>
|
|
|
|
|
+ <strong>Chapter 04: An incredibly beautiful woman.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 05: The Inquisition.">
|
|
|
|
|
+ <i>5</i>
|
|
|
|
|
+ <strong>Chapter 05: The Inquisition.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 06: The most 'normal' parents in the world."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>6</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 06: The most 'normal' parents in the world.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 07: Daughter-in-law.">
|
|
|
|
|
+ <i>7</i>
|
|
|
|
|
+ <strong>Chapter 07: Daughter-in-law.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 08: Grudges from the past.">
|
|
|
|
|
+ <i>8</i>
|
|
|
|
|
+ <strong>Chapter 08: Grudges from the past.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 09: The only one who forgives is God, I don't. "
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>9</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 09: The only one who forgives is God, I don't.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 10: A frog in a well.">
|
|
|
|
|
+ <i>10</i>
|
|
|
|
|
+ <strong>Chapter 10: A frog in a well.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 11: Obsession... And The Perfect Maid.">
|
|
|
|
|
+ <i>11</i>
|
|
|
|
|
+ <strong>Chapter 11: Obsession... And The Perfect Maid.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 12: A hard-working maid.">
|
|
|
|
|
+ <i>12</i>
|
|
|
|
|
+ <strong>Chapter 12: A hard-working maid.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 13: Ruby Scarlett.">
|
|
|
|
|
+ <i>13</i>
|
|
|
|
|
+ <strong>Chapter 13: Ruby Scarlett.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 14: Thomas and Jimmy.">
|
|
|
|
|
+ <i>14</i>
|
|
|
|
|
+ <strong>Chapter 14: Thomas and Jimmy.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 15: Jimmy is a smart guy.">
|
|
|
|
|
+ <i>15</i>
|
|
|
|
|
+ <strong>Chapter 15: Jimmy is a smart guy.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 16: Ambush.">
|
|
|
|
|
+ <i>16</i>
|
|
|
|
|
+ <strong>Chapter 16: Ambush.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 17: She is your wife.">
|
|
|
|
|
+ <i>17</i>
|
|
|
|
|
+ <strong>Chapter 17: She is your wife.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 18: Sasha Fulger.">
|
|
|
|
|
+ <i>18</i>
|
|
|
|
|
+ <strong>Chapter 18: Sasha Fulger.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 19: Sasha Fulger 2.">
|
|
|
|
|
+ <i>19</i>
|
|
|
|
|
+ <strong>Chapter 19: Sasha Fulger 2.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 20: Childhood friends.">
|
|
|
|
|
+ <i>20</i>
|
|
|
|
|
+ <strong>Chapter 20: Childhood friends.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 21: Andrew, Edward, and Leona.">
|
|
|
|
|
+ <i>21</i>
|
|
|
|
|
+ <strong>Chapter 21: Andrew, Edward, and Leona.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 22: Yanderes... Means problems.">
|
|
|
|
|
+ <i>22</i>
|
|
|
|
|
+ <strong>Chapter 22: Yanderes... Means problems.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 23: Violet and Sasha meet. ">
|
|
|
|
|
+ <i>23</i>
|
|
|
|
|
+ <strong>Chapter 23: Violet and Sasha meet. </strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 24: Two wives.">
|
|
|
|
|
+ <i>24</i>
|
|
|
|
|
+ <strong>Chapter 24: Two wives.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 25: Professor Adam.">
|
|
|
|
|
+ <i>25</i>
|
|
|
|
|
+ <strong>Chapter 25: Professor Adam.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 26: Why do you hide behind that mask?">
|
|
|
|
|
+ <i>26</i>
|
|
|
|
|
+ <strong>Chapter 26: Why do you hide behind that mask?</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 27: Priorities">
|
|
|
|
|
+ <i>27</i>
|
|
|
|
|
+ <strong>Chapter 27: Priorities</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 28: The woman who kills Oni.">
|
|
|
|
|
+ <i>28</i>
|
|
|
|
|
+ <strong>Chapter 28: The woman who kills Oni.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 29: The three wives meet.">
|
|
|
|
|
+ <i>29</i>
|
|
|
|
|
+ <strong>Chapter 29: The three wives meet.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 30: Scathach Scarlett.">
|
|
|
|
|
+ <i>30</i>
|
|
|
|
|
+ <strong>Chapter 30: Scathach Scarlett.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 31: The Third Wife.">
|
|
|
|
|
+ <i>31</i>
|
|
|
|
|
+ <strong>Chapter 31: The Third Wife.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ </ol>
|
|
|
|
|
+ <h3 className="sub-title">Volume 2 : Vampire Society.</h3>
|
|
|
|
|
+ <ol className={styles["chapter-list"]}>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 32: Son-In-Law">
|
|
|
|
|
+ <i>32</i>
|
|
|
|
|
+ <strong>Chapter 32: Son-In-Law</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 33: Son-In-Law 2">
|
|
|
|
|
+ <i>33</i>
|
|
|
|
|
+ <strong>Chapter 33: Son-In-Law 2</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 34: Victor has been kidnapped!">
|
|
|
|
|
+ <i>34</i>
|
|
|
|
|
+ <strong>Chapter 34: Victor has been kidnapped!</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 35: Vampire World.">
|
|
|
|
|
+ <i>35</i>
|
|
|
|
|
+ <strong>Chapter 35: Vampire World.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 36: It's time to get strong! And… Chaos."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>36</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 36: It's time to get strong! And… Chaos.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 37: like mother, like daughter.">
|
|
|
|
|
+ <i>37</i>
|
|
|
|
|
+ <strong>Chapter 37: like mother, like daughter.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 38: Pepper is an airhead girl.">
|
|
|
|
|
+ <i>38</i>
|
|
|
|
|
+ <strong>Chapter 38: Pepper is an airhead girl.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 39: Anomaly.">
|
|
|
|
|
+ <i>39</i>
|
|
|
|
|
+ <strong>Chapter 39: Anomaly.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 40: Violet arrived, and two wives meet their father-in-law."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>40</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 40: Violet arrived, and two wives meet their
|
|
|
|
|
+ father-in-law.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 41: The greedy witch.">
|
|
|
|
|
+ <i>41</i>
|
|
|
|
|
+ <strong>Chapter 41: The greedy witch.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 42: Now you understand me.">
|
|
|
|
|
+ <i>42</i>
|
|
|
|
|
+ <strong>Chapter 42: Now you understand me.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 43: Darling!">
|
|
|
|
|
+ <i>43</i>
|
|
|
|
|
+ <strong>Chapter 43: Darling!</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 44: Together.">
|
|
|
|
|
+ <i>44</i>
|
|
|
|
|
+ <strong>Chapter 44: Together.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 45: Insanity? Wrong, I'm sane.">
|
|
|
|
|
+ <i>45</i>
|
|
|
|
|
+ <strong>Chapter 45: Insanity? Wrong, I'm sane.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 46: A beautiful night.">
|
|
|
|
|
+ <i>46</i>
|
|
|
|
|
+ <strong>Chapter 46: A beautiful night.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 47: like mother, like daughter. 2">
|
|
|
|
|
+ <i>47</i>
|
|
|
|
|
+ <strong>Chapter 47: like mother, like daughter. 2</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 48: Ruby returns home.">
|
|
|
|
|
+ <i>48</i>
|
|
|
|
|
+ <strong>Chapter 48: Ruby returns home.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 49: Mother and daughter.">
|
|
|
|
|
+ <i>49</i>
|
|
|
|
|
+ <strong>Chapter 49: Mother and daughter.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 50: Ruby and Victor.">
|
|
|
|
|
+ <i>50</i>
|
|
|
|
|
+ <strong>Chapter 50: Ruby and Victor.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 51: Meeting.">
|
|
|
|
|
+ <i>51</i>
|
|
|
|
|
+ <strong>Chapter 51: Meeting.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 52: Meeting. 2">
|
|
|
|
|
+ <i>52</i>
|
|
|
|
|
+ <strong>Chapter 52: Meeting. 2</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 53: What will you do?">
|
|
|
|
|
+ <i>53</i>
|
|
|
|
|
+ <strong>Chapter 53: What will you do?</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 54: Hybrids.">
|
|
|
|
|
+ <i>54</i>
|
|
|
|
|
+ <strong>Chapter 54: Hybrids.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 55: Digging your own grave.">
|
|
|
|
|
+ <i>55</i>
|
|
|
|
|
+ <strong>Chapter 55: Digging your own grave.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 56: I can't contain myself anymore~.">
|
|
|
|
|
+ <i>56</i>
|
|
|
|
|
+ <strong>Chapter 56: I can't contain myself anymore~.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 57: So it begins.">
|
|
|
|
|
+ <i>57</i>
|
|
|
|
|
+ <strong>Chapter 57: So it begins.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 58: The White Wolf.">
|
|
|
|
|
+ <i>58</i>
|
|
|
|
|
+ <strong>Chapter 58: The White Wolf.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 59: The White Wolf. 2">
|
|
|
|
|
+ <i>59</i>
|
|
|
|
|
+ <strong>Chapter 59: The White Wolf. 2</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 60: The White Wolf. 3">
|
|
|
|
|
+ <i>60</i>
|
|
|
|
|
+ <strong>Chapter 60: The White Wolf. 3</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 61: Progress.">
|
|
|
|
|
+ <i>61</i>
|
|
|
|
|
+ <strong>Chapter 61: Progress.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 62: I knew it!">
|
|
|
|
|
+ <i>62</i>
|
|
|
|
|
+ <strong>Chapter 62: I knew it!</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 63: Coward.">
|
|
|
|
|
+ <i>63</i>
|
|
|
|
|
+ <strong>Chapter 63: Coward.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 64: Do you want it?">
|
|
|
|
|
+ <i>64</i>
|
|
|
|
|
+ <strong>Chapter 64: Do you want it?</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 65: Changes.">
|
|
|
|
|
+ <i>65</i>
|
|
|
|
|
+ <strong>Chapter 65: Changes.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 66: Something happens!">
|
|
|
|
|
+ <i>66</i>
|
|
|
|
|
+ <strong>Chapter 66: Something happens!</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 67: A weird situation indeed.">
|
|
|
|
|
+ <i>67</i>
|
|
|
|
|
+ <strong>Chapter 67: A weird situation indeed.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 68: Countess Eleonor Adrasteia.">
|
|
|
|
|
+ <i>68</i>
|
|
|
|
|
+ <strong>Chapter 68: Countess Eleonor Adrasteia.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 69: Countess Eleonor Adrasteia. 2">
|
|
|
|
|
+ <i>69</i>
|
|
|
|
|
+ <strong>Chapter 69: Countess Eleonor Adrasteia. 2</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 70: King's Capital">
|
|
|
|
|
+ <i>70</i>
|
|
|
|
|
+ <strong>Chapter 70: King's Capital</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 71: King's Capital. 2">
|
|
|
|
|
+ <i>71</i>
|
|
|
|
|
+ <strong>Chapter 71: King's Capital. 2</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 72: A little girl of few words. ">
|
|
|
|
|
+ <i>72</i>
|
|
|
|
|
+ <strong>Chapter 72: A little girl of few words.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 73: The King's Daughters. ">
|
|
|
|
|
+ <i>73</i>
|
|
|
|
|
+ <strong>Chapter 73: The King's Daughters. </strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 74: The King's Daughters. 2">
|
|
|
|
|
+ <i>74</i>
|
|
|
|
|
+ <strong>Chapter 74: The King's Daughters. 2</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 75: I just do what I want.">
|
|
|
|
|
+ <i>75</i>
|
|
|
|
|
+ <strong>Chapter 75: I just do what I want.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 76: It's not like they're trying to keep secrets."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>76</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 76: It's not like they're trying to keep secrets.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 77: My Master.">
|
|
|
|
|
+ <i>77</i>
|
|
|
|
|
+ <strong>Chapter 77: My Master.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 78: The game day.">
|
|
|
|
|
+ <i>78</i>
|
|
|
|
|
+ <strong>Chapter 78: The game day.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 79: The game day. 2">
|
|
|
|
|
+ <i>79</i>
|
|
|
|
|
+ <strong>Chapter 79: The game day. 2</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 80: Everything is Connected.">
|
|
|
|
|
+ <i>80</i>
|
|
|
|
|
+ <strong>Chapter 80: Everything is Connected.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 81: Sly Fox.">
|
|
|
|
|
+ <i>81</i>
|
|
|
|
|
+ <strong>Chapter 81: Sly Fox.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 82: The match is starting...">
|
|
|
|
|
+ <i>82</i>
|
|
|
|
|
+ <strong>Chapter 82: The match is starting...</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 83: Let the games begin!">
|
|
|
|
|
+ <i>83</i>
|
|
|
|
|
+ <strong>Chapter 83: Let the games begin!</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 84: Tatsuya Vs Einer.">
|
|
|
|
|
+ <i>84</i>
|
|
|
|
|
+ <strong>Chapter 84: Tatsuya Vs Einer.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 85: Tatsuya Vs Einer. 2">
|
|
|
|
|
+ <i>85</i>
|
|
|
|
|
+ <strong>Chapter 85: Tatsuya Vs Einer. 2</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 86: How can I not be excited?">
|
|
|
|
|
+ <i>86</i>
|
|
|
|
|
+ <strong>Chapter 86: How can I not be excited?</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 87: Victor Vs Tatsuya and Einer.">
|
|
|
|
|
+ <i>87</i>
|
|
|
|
|
+ <strong>Chapter 87: Victor Vs Tatsuya and Einer.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 88: A little monster was created.">
|
|
|
|
|
+ <i>88</i>
|
|
|
|
|
+ <strong>Chapter 88: A little monster was created.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 89: Teamwork.">
|
|
|
|
|
+ <i>89</i>
|
|
|
|
|
+ <strong>Chapter 89: Teamwork.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 90: The End. And the beginning.">
|
|
|
|
|
+ <i>90</i>
|
|
|
|
|
+ <strong>Chapter 90: The End. And the beginning.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 91: Wife time... And became famous.">
|
|
|
|
|
+ <i>91</i>
|
|
|
|
|
+ <strong>Chapter 91: Wife time... And became famous.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 92: Tatsuya Gained a Friend...">
|
|
|
|
|
+ <i>92</i>
|
|
|
|
|
+ <strong>Chapter 92: Tatsuya Gained a Friend...</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 93: Tatsuya Gained a Friend… 2">
|
|
|
|
|
+ <i>93</i>
|
|
|
|
|
+ <strong>Chapter 93: Tatsuya Gained a Friend… 2</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 94: Is Ophis a spoiled girl?">
|
|
|
|
|
+ <i>94</i>
|
|
|
|
|
+ <strong>Chapter 94: Is Ophis a spoiled girl?</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 95: The wives are feeling threatened. "
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>95</i>
|
|
|
|
|
+ <strong>Chapter 95: The wives are feeling threatened.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 96: Strange Place.">
|
|
|
|
|
+ <i>96</i>
|
|
|
|
|
+ <strong>Chapter 96: Strange Place.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 97: Two new weird friends.">
|
|
|
|
|
+ <i>97</i>
|
|
|
|
|
+ <strong>Chapter 97: Two new weird friends.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 98: An invitation from a Countess. ">
|
|
|
|
|
+ <i>98</i>
|
|
|
|
|
+ <strong>Chapter 98: An invitation from a Countess.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 99: The Four Clans of Vampire Counts.">
|
|
|
|
|
+ <i>99</i>
|
|
|
|
|
+ <strong>Chapter 99: The Four Clans of Vampire Counts.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 100: The Four Clans of Vampire Counts. 2"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>100</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 100: The Four Clans of Vampire Counts. 2
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 101: The Perfect Maid is hiding Master's dirty secrets."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>101</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 101: The Perfect Maid is hiding Master's dirty
|
|
|
|
|
+ secrets.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 102: Ruby introduces a new world.">
|
|
|
|
|
+ <i>102</i>
|
|
|
|
|
+ <strong>Chapter 102: Ruby introduces a new world.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 103: Date.">
|
|
|
|
|
+ <i>103</i>
|
|
|
|
|
+ <strong>Chapter 103: Date.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 104: An unforgettable day.">
|
|
|
|
|
+ <i>104</i>
|
|
|
|
|
+ <strong>Chapter 104: An unforgettable day.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 105: Unexpected visits.">
|
|
|
|
|
+ <i>105</i>
|
|
|
|
|
+ <strong>Chapter 105: Unexpected visits.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 106: Memories from the past.">
|
|
|
|
|
+ <i>106</i>
|
|
|
|
|
+ <strong>Chapter 106: Memories from the past.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 107: Victor meets the in-laws.">
|
|
|
|
|
+ <i>107</i>
|
|
|
|
|
+ <strong>Chapter 107: Victor meets the in-laws.</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 108: Victor meets the in-laws. 2">
|
|
|
|
|
+ <i>108</i>
|
|
|
|
|
+ <strong>Chapter 108: Victor meets the in-laws. 2</strong>
|
|
|
|
|
+ <small>1yr</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 109: Victor meets the in-laws. 3 ">
|
|
|
|
|
+ <i>109</i>
|
|
|
|
|
+ <strong>Chapter 109: Victor meets the in-laws. 3</strong>
|
|
|
|
|
+ <small>12mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 110: The anger of a husband.">
|
|
|
|
|
+ <i>110</i>
|
|
|
|
|
+ <strong>Chapter 110: The anger of a husband.</strong>
|
|
|
|
|
+ <small>12mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 111: The anger of a husband. 2">
|
|
|
|
|
+ <i>111</i>
|
|
|
|
|
+ <strong>Chapter 111: The anger of a husband. 2</strong>
|
|
|
|
|
+ <small>12mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 112: An insane man.">
|
|
|
|
|
+ <i>112</i>
|
|
|
|
|
+ <strong>Chapter 112: An insane man.</strong>
|
|
|
|
|
+ <small>12mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 113: A monster created by god.">
|
|
|
|
|
+ <i>113</i>
|
|
|
|
|
+ <strong>Chapter 113: A monster created by god.</strong>
|
|
|
|
|
+ <small>12mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 114: Another crazy mother-in-law.">
|
|
|
|
|
+ <i>114</i>
|
|
|
|
|
+ <strong>Chapter 114: Another crazy mother-in-law.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 115: Another crazy mother-in-law. 2">
|
|
|
|
|
+ <i>115</i>
|
|
|
|
|
+ <strong>Chapter 115: Another crazy mother-in-law. 2</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 116: Two Mothers.">
|
|
|
|
|
+ <i>116</i>
|
|
|
|
|
+ <strong>Chapter 116: Two Mothers.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 117: The consequences of actions.">
|
|
|
|
|
+ <i>117</i>
|
|
|
|
|
+ <strong>Chapter 117: The consequences of actions.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 118: The consequences of actions. 2">
|
|
|
|
|
+ <i>118</i>
|
|
|
|
|
+ <strong>Chapter 118: The consequences of actions. 2</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 119: The king of all vampires.">
|
|
|
|
|
+ <i>119</i>
|
|
|
|
|
+ <strong>Chapter 119: The king of all vampires.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 120: The king of all vampires. 2">
|
|
|
|
|
+ <i>120</i>
|
|
|
|
|
+ <strong>Chapter 120: The king of all vampires. 2</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 121: A proposal from the king.">
|
|
|
|
|
+ <i>121</i>
|
|
|
|
|
+ <strong>Chapter 121: A proposal from the king.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 122: My mother-in-law is obsessed with me."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>122</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 122: My mother-in-law is obsessed with me.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 123: The king's plan.">
|
|
|
|
|
+ <i>123</i>
|
|
|
|
|
+ <strong>Chapter 123: The king's plan.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 124: The king's plan. 2">
|
|
|
|
|
+ <i>124</i>
|
|
|
|
|
+ <strong>Chapter 124: The king's plan. 2</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 125: Sanguis noctis regis.">
|
|
|
|
|
+ <i>125</i>
|
|
|
|
|
+ <strong>Chapter 125: Sanguis noctis regis.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 126: The birth of a new pillar.">
|
|
|
|
|
+ <i>126</i>
|
|
|
|
|
+ <strong>Chapter 126: The birth of a new pillar.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 127: The love of a goddess.">
|
|
|
|
|
+ <i>127</i>
|
|
|
|
|
+ <strong>Chapter 127: The love of a goddess.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 128: Natashia is working hard for her happiness!"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>128</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 128: Natashia is working hard for her happiness!
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 129: The king is disappointed.">
|
|
|
|
|
+ <i>129</i>
|
|
|
|
|
+ <strong>Chapter 129: The king is disappointed.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 130: The consequences of being on top.">
|
|
|
|
|
+ <i>130</i>
|
|
|
|
|
+ <strong>Chapter 130: The consequences of being on top.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ </ol>
|
|
|
|
|
+ <h3 className="sub-title">Volume 3 : A New Pillar.</h3>
|
|
|
|
|
+ <ol className={styles["chapter-list"]}>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 131: An existence that defies common sense."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>131</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 131: An existence that defies common sense.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 132: An existence that defies common sense. 2"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>132</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 132: An existence that defies common sense. 2
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 133: My Beloved.">
|
|
|
|
|
+ <i>133</i>
|
|
|
|
|
+ <strong>Chapter 133: My Beloved.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 134: The supernatural world's interests in the new Count. "
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>134</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 134: The supernatural world's interests in the new
|
|
|
|
|
+ Count.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 135: They provoked the wrong monsters.">
|
|
|
|
|
+ <i>135</i>
|
|
|
|
|
+ <strong>Chapter 135: They provoked the wrong monsters.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 136: They provoke the wrong monsters. 2"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>136</i>
|
|
|
|
|
+ <strong>Chapter 136: They provoke the wrong monsters. 2</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 137: Farewells.">
|
|
|
|
|
+ <i>137</i>
|
|
|
|
|
+ <strong>Chapter 137: Farewells.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 138: A man of culture. ">
|
|
|
|
|
+ <i>138</i>
|
|
|
|
|
+ <strong>Chapter 138: A man of culture. </strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 139: Victor returned home.">
|
|
|
|
|
+ <i>139</i>
|
|
|
|
|
+ <strong>Chapter 139: Victor returned home.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 140: Victor returned home. 2">
|
|
|
|
|
+ <i>140</i>
|
|
|
|
|
+ <strong>Chapter 140: Victor returned home. 2</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 141: A king is among us.">
|
|
|
|
|
+ <i>141</i>
|
|
|
|
|
+ <strong>Chapter 141: A king is among us.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 142: I am not an ungrateful child.">
|
|
|
|
|
+ <i>142</i>
|
|
|
|
|
+ <strong>Chapter 142: I am not an ungrateful child.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 143: A stubborn man. ">
|
|
|
|
|
+ <i>143</i>
|
|
|
|
|
+ <strong>Chapter 143: A stubborn man. </strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 144: Report from June.">
|
|
|
|
|
+ <i>144</i>
|
|
|
|
|
+ <strong>Chapter 144: Report from June.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 145: Eternal rivals.">
|
|
|
|
|
+ <i>145</i>
|
|
|
|
|
+ <strong>Chapter 145: Eternal rivals.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 146: The Lost Club.">
|
|
|
|
|
+ <i>146</i>
|
|
|
|
|
+ <strong>Chapter 146: The Lost Club.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 147: Mongrel.">
|
|
|
|
|
+ <i>147</i>
|
|
|
|
|
+ <strong>Chapter 147: Mongrel.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 148: A woman who never forgets.">
|
|
|
|
|
+ <i>148</i>
|
|
|
|
|
+ <strong>Chapter 148: A woman who never forgets.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 149: The fifth count.">
|
|
|
|
|
+ <i>149</i>
|
|
|
|
|
+ <strong>Chapter 149: The fifth count.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 150: The Sweet Taste of Revenge. ">
|
|
|
|
|
+ <i>150</i>
|
|
|
|
|
+ <strong>Chapter 150: The Sweet Taste of Revenge.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 151: A wife's ambition.">
|
|
|
|
|
+ <i>151</i>
|
|
|
|
|
+ <strong>Chapter 151: A wife's ambition.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 152: Natural Playboy.">
|
|
|
|
|
+ <i>152</i>
|
|
|
|
|
+ <strong>Chapter 152: Natural Playboy.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 153: Faith.">
|
|
|
|
|
+ <i>153</i>
|
|
|
|
|
+ <strong>Chapter 153: Faith.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 154: Onmyo Mage?">
|
|
|
|
|
+ <i>154</i>
|
|
|
|
|
+ <strong>Chapter 154: Onmyo Mage?</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 155: AMEN!!!">
|
|
|
|
|
+ <i>155</i>
|
|
|
|
|
+ <strong>Chapter 155: AMEN!!!</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 156: AMEN!!! 2">
|
|
|
|
|
+ <i>156</i>
|
|
|
|
|
+ <strong>Chapter 156: AMEN!!! 2</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 157: They never learn.">
|
|
|
|
|
+ <i>157</i>
|
|
|
|
|
+ <strong>Chapter 157: They never learn.</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 158: They never learn. 2">
|
|
|
|
|
+ <i>158</i>
|
|
|
|
|
+ <strong>Chapter 158: They never learn. 2</strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 159: They never learn. 3 ">
|
|
|
|
|
+ <i>159</i>
|
|
|
|
|
+ <strong>Chapter 159: They never learn. 3 </strong>
|
|
|
|
|
+ <small>11mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 160: Carnage. ">
|
|
|
|
|
+ <i>160</i>
|
|
|
|
|
+ <strong>Chapter 160: Carnage. </strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 161: A Lucky Man.">
|
|
|
|
|
+ <i>161</i>
|
|
|
|
|
+ <strong>Chapter 161: A Lucky Man.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 162: A lucky man. 2 ">
|
|
|
|
|
+ <i>162</i>
|
|
|
|
|
+ <strong>Chapter 162: A lucky man. 2 </strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 163: Do you believe in god? ">
|
|
|
|
|
+ <i>163</i>
|
|
|
|
|
+ <strong>Chapter 163: Do you believe in god? </strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 164: Consequences. ">
|
|
|
|
|
+ <i>164</i>
|
|
|
|
|
+ <strong>Chapter 164: Consequences. </strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 165: My Maid.">
|
|
|
|
|
+ <i>165</i>
|
|
|
|
|
+ <strong>Chapter 165: My Maid.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 166: Clan Scarlett arrives.">
|
|
|
|
|
+ <i>166</i>
|
|
|
|
|
+ <strong>Chapter 166: Clan Scarlett arrives.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 167: Welcome to my humble abode. ">
|
|
|
|
|
+ <i>167</i>
|
|
|
|
|
+ <strong>Chapter 167: Welcome to my humble abode.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 168: Mother.">
|
|
|
|
|
+ <i>168</i>
|
|
|
|
|
+ <strong>Chapter 168: Mother.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 169: Powers of the sisters.">
|
|
|
|
|
+ <i>169</i>
|
|
|
|
|
+ <strong>Chapter 169: Powers of the sisters.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 170: Mother and Mother.">
|
|
|
|
|
+ <i>170</i>
|
|
|
|
|
+ <strong>Chapter 170: Mother and Mother.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 171: Mother And Mother. 2">
|
|
|
|
|
+ <i>171</i>
|
|
|
|
|
+ <strong>Chapter 171: Mother And Mother. 2</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 172: Scathach and Victor. ">
|
|
|
|
|
+ <i>172</i>
|
|
|
|
|
+ <strong>Chapter 172: Scathach and Victor. </strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 173: Victor and Scathach. 2 ">
|
|
|
|
|
+ <i>173</i>
|
|
|
|
|
+ <strong>Chapter 173: Victor and Scathach. 2 </strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 174: The obsession and love of a mother-in-law."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>174</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 174: The obsession and love of a mother-in-law.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 175: An angel sent by God.">
|
|
|
|
|
+ <i>175</i>
|
|
|
|
|
+ <strong>Chapter 175: An angel sent by God.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 176: An angel of vengeance.">
|
|
|
|
|
+ <i>176</i>
|
|
|
|
|
+ <strong>Chapter 176: An angel of vengeance.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 177: Everything is permitted.">
|
|
|
|
|
+ <i>177</i>
|
|
|
|
|
+ <strong>Chapter 177: Everything is permitted.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 178: If my god ordered it, I will do it. "
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>178</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 178: If my god ordered it, I will do it.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 179: My Maids, show me.">
|
|
|
|
|
+ <i>179</i>
|
|
|
|
|
+ <strong>Chapter 179: My Maids, show me.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 180: A Bloody Spectacle! ">
|
|
|
|
|
+ <i>180</i>
|
|
|
|
|
+ <strong>Chapter 180: A Bloody Spectacle! </strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 181: He is completely insane!">
|
|
|
|
|
+ <i>181</i>
|
|
|
|
|
+ <strong>Chapter 181: He is completely insane!</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 182: He's coming for you.">
|
|
|
|
|
+ <i>182</i>
|
|
|
|
|
+ <strong>Chapter 182: He's coming for you.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 183: He's coming for you. 2">
|
|
|
|
|
+ <i>183</i>
|
|
|
|
|
+ <strong>Chapter 183: He's coming for you. 2</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 184: He's coming for you. 3">
|
|
|
|
|
+ <i>184</i>
|
|
|
|
|
+ <strong>Chapter 184: He's coming for you. 3</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 185: Facing The Yanderes.">
|
|
|
|
|
+ <i>185</i>
|
|
|
|
|
+ <strong>Chapter 185: Facing The Yanderes.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 186: Interesting discoveries and consequences."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>186</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 186: Interesting discoveries and consequences.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 187: A wolf there, a wolf here, wolves everywhere!"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>187</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 187: A wolf there, a wolf here, wolves everywhere!
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 188: A wolf there, a wolf here, wolves everywhere! 2"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>188</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 188: A wolf there, a wolf here, wolves everywhere! 2
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 189: A wolf there, a wolf here, wolves everywhere! 3"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>189</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 189: A wolf there, a wolf here, wolves everywhere! 3
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 190: Resolving issues from the past.">
|
|
|
|
|
+ <i>190</i>
|
|
|
|
|
+ <strong>Chapter 190: Resolving issues from the past.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 191: What is your desire?">
|
|
|
|
|
+ <i>191</i>
|
|
|
|
|
+ <strong>Chapter 191: What is your desire?</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 192: The power of Alucard.">
|
|
|
|
|
+ <i>192</i>
|
|
|
|
|
+ <strong>Chapter 192: The power of Alucard.</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 193: The power of Alucard. 2">
|
|
|
|
|
+ <i>193</i>
|
|
|
|
|
+ <strong>Chapter 193: The power of Alucard. 2</strong>
|
|
|
|
|
+ <small>10mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 194: The power of Alucard. 3">
|
|
|
|
|
+ <i>194</i>
|
|
|
|
|
+ <strong>Chapter 194: The power of Alucard. 3</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 195: The power of Alucard. 4">
|
|
|
|
|
+ <i>195</i>
|
|
|
|
|
+ <strong>Chapter 195: The power of Alucard. 4</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 196: Sometimes you should just burn everything. "
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>196</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 196: Sometimes you should just burn everything.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 197: Isn't that too easy? ">
|
|
|
|
|
+ <i>197</i>
|
|
|
|
|
+ <strong>Chapter 197: Isn't that too easy? </strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 198: Where is he!? ">
|
|
|
|
|
+ <i>198</i>
|
|
|
|
|
+ <strong>Chapter 198: Where is he!? </strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 199: A normal day in Nightingale?">
|
|
|
|
|
+ <i>199</i>
|
|
|
|
|
+ <strong>Chapter 199: A normal day in Nightingale?</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 200: Discoveries.">
|
|
|
|
|
+ <i>200</i>
|
|
|
|
|
+ <strong>Chapter 200: Discoveries.</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 201: Discoveries. 2">
|
|
|
|
|
+ <i>201</i>
|
|
|
|
|
+ <strong>Chapter 201: Discoveries. 2</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 202: Discoveries. 3">
|
|
|
|
|
+ <i>202</i>
|
|
|
|
|
+ <strong>Chapter 202: Discoveries. 3</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 203: I'm not the only one crazy out there."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>203</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 203: I'm not the only one crazy out there.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 204: Bet, and legs are justice.">
|
|
|
|
|
+ <i>204</i>
|
|
|
|
|
+ <strong>Chapter 204: Bet, and legs are justice.</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 205: Victor has strange luck.">
|
|
|
|
|
+ <i>205</i>
|
|
|
|
|
+ <strong>Chapter 205: Victor has strange luck.</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 206: Vampire meets wolf and fox.">
|
|
|
|
|
+ <i>206</i>
|
|
|
|
|
+ <strong>Chapter 206: Vampire meets wolf and fox.</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 207: Strange Situation.">
|
|
|
|
|
+ <i>207</i>
|
|
|
|
|
+ <strong>Chapter 207: Strange Situation.</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 208: An innocent smile.">
|
|
|
|
|
+ <i>208</i>
|
|
|
|
|
+ <strong>Chapter 208: An innocent smile.</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 209: Something is challenging Heaven, and it's not Lucifer."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>209</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 209: Something is challenging Heaven, and it's not
|
|
|
|
|
+ Lucifer.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 210: Come, my son. Tell your mother.">
|
|
|
|
|
+ <i>210</i>
|
|
|
|
|
+ <strong>Chapter 210: Come, my son. Tell your mother.</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 211: A war of thousands of years.">
|
|
|
|
|
+ <i>211</i>
|
|
|
|
|
+ <strong>Chapter 211: A war of thousands of years.</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 212: A Gentle Demon.">
|
|
|
|
|
+ <i>212</i>
|
|
|
|
|
+ <strong>Chapter 212: A Gentle Demon.</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 213: I found you.">
|
|
|
|
|
+ <i>213</i>
|
|
|
|
|
+ <strong>Chapter 213: I found you.</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 214: Four? Four? FOUR!?">
|
|
|
|
|
+ <i>214</i>
|
|
|
|
|
+ <strong>Chapter 214: Four? Four? FOUR!?</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 215: That day, I felt my mother-in-law to heaven."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>215</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 215: That day, I felt my mother-in-law to heaven.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 216: The day Victor motivated his mother-in-law."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>216</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 216: The day Victor motivated his mother-in-law.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 217: My mother-in-law is motivated, and she wants…"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>217</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 217: My mother-in-law is motivated, and she wants…
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 218: Cute.">
|
|
|
|
|
+ <i>218</i>
|
|
|
|
|
+ <strong>Chapter 218: Cute.</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 219: So Much Chaos.">
|
|
|
|
|
+ <i>219</i>
|
|
|
|
|
+ <strong>Chapter 219: So Much Chaos.</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 220: 'Welcome to the club'? ">
|
|
|
|
|
+ <i>220</i>
|
|
|
|
|
+ <strong>Chapter 220: 'Welcome to the club'? </strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 221: Date! Date... Date....? EGG!">
|
|
|
|
|
+ <i>221</i>
|
|
|
|
|
+ <strong>Chapter 221: Date! Date... Date....? EGG!</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 222: My Gift to You.">
|
|
|
|
|
+ <i>222</i>
|
|
|
|
|
+ <strong>Chapter 222: My Gift to You.</strong>
|
|
|
|
|
+ <small>9mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 223: A Secret Only Mine.">
|
|
|
|
|
+ <i>223</i>
|
|
|
|
|
+ <strong>Chapter 223: A Secret Only Mine.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 224: So it begins.">
|
|
|
|
|
+ <i>224</i>
|
|
|
|
|
+ <strong>Chapter 224: So it begins.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 225: So it begins. 2">
|
|
|
|
|
+ <i>225</i>
|
|
|
|
|
+ <strong>Chapter 225: So it begins. 2</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 226: Ruby and Victor.">
|
|
|
|
|
+ <i>226</i>
|
|
|
|
|
+ <strong>Chapter 226: Ruby and Victor.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 227: Mother-in-law love!">
|
|
|
|
|
+ <i>227</i>
|
|
|
|
|
+ <strong>Chapter 227: Mother-in-law love!</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 228: The Power of the Fulger Clan.">
|
|
|
|
|
+ <i>228</i>
|
|
|
|
|
+ <strong>Chapter 228: The Power of the Fulger Clan.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 229: A shout of motivation.">
|
|
|
|
|
+ <i>229</i>
|
|
|
|
|
+ <strong>Chapter 229: A shout of motivation.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 230: My mother-in-law wants my naked body... Gulp."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>230</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 230: My mother-in-law wants my naked body... Gulp.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 231: An old fox. ">
|
|
|
|
|
+ <i>231</i>
|
|
|
|
|
+ <strong>Chapter 231: An old fox. </strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 232: Alucard wants revenge.">
|
|
|
|
|
+ <i>232</i>
|
|
|
|
|
+ <strong>Chapter 232: Alucard wants revenge.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter: 233: The consequences of being on top. 2"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>233</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter: 233: The consequences of being on top. 2
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 234: Wrong Decisions of a King.">
|
|
|
|
|
+ <i>234</i>
|
|
|
|
|
+ <strong>Chapter 234: Wrong Decisions of a King.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 235: Reunion">
|
|
|
|
|
+ <i>235</i>
|
|
|
|
|
+ <strong>Chapter 235: Reunion</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 236: Is Eleonor Adrasteia my neighbor?">
|
|
|
|
|
+ <i>236</i>
|
|
|
|
|
+ <strong>Chapter 236: Is Eleonor Adrasteia my neighbor?</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 237: The world moves.">
|
|
|
|
|
+ <i>237</i>
|
|
|
|
|
+ <strong>Chapter 237: The world moves.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 238: The Witch Queen.">
|
|
|
|
|
+ <i>238</i>
|
|
|
|
|
+ <strong>Chapter 238: The Witch Queen.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 239: Anderson goes to visit his friend Alucard."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>239</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 239: Anderson goes to visit his friend Alucard.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 240: Anderson goes to visit his friend Alucard. 2"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>240</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 240: Anderson goes to visit his friend Alucard. 2
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 241: Anderson goes to visit his friend Alucard. 3"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>241</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 241: Anderson goes to visit his friend Alucard. 3
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 242: Alpha Werewolf vs. Vampire Count.">
|
|
|
|
|
+ <i>242</i>
|
|
|
|
|
+ <strong>Chapter 242: Alpha Werewolf vs. Vampire Count.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 243: Special being.">
|
|
|
|
|
+ <i>243</i>
|
|
|
|
|
+ <strong>Chapter 243: Special being.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 244: Misunderstandings Happen.">
|
|
|
|
|
+ <i>244</i>
|
|
|
|
|
+ <strong>Chapter 244: Misunderstandings Happen.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 245: One Year and Six months. ">
|
|
|
|
|
+ <i>245</i>
|
|
|
|
|
+ <strong>Chapter 245: One Year and Six months.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 246: The Goddess Aphrodite.">
|
|
|
|
|
+ <i>246</i>
|
|
|
|
|
+ <strong>Chapter 246: The Goddess Aphrodite.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 247: The Goddess Aphrodite. 2">
|
|
|
|
|
+ <i>247</i>
|
|
|
|
|
+ <strong>Chapter 247: The Goddess Aphrodite. 2</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 248: The Mistake of the Goddess of Love."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>248</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 248: The Mistake of the Goddess of Love.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 249: Alucard has become an expert in causing chaos."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>249</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 249: Alucard has become an expert in causing chaos.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ </ol>
|
|
|
|
|
+ <h3 className="sub-title">
|
|
|
|
|
+ Volume 4 : Discoveries, Changes, And War.
|
|
|
|
|
+ </h3>
|
|
|
|
|
+ <ol className={styles["chapter-list"]}>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 250: Belial loves say the name of... ALUCARD! "
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>250</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 250: Belial loves say the name of... ALUCARD!
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 251: Demon.">
|
|
|
|
|
+ <i>251</i>
|
|
|
|
|
+ <strong>Chapter 251: Demon.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 252: Fulfilling Past Promises.">
|
|
|
|
|
+ <i>252</i>
|
|
|
|
|
+ <strong>Chapter 252: Fulfilling Past Promises.</strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 253: Pepper is not a Hooligan!... Maybe."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>253</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 253: Pepper is not a Hooligan!... Maybe.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>8mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 254: Is Roberta a Failure of a Maid?">
|
|
|
|
|
+ <i>254</i>
|
|
|
|
|
+ <strong>Chapter 254: Is Roberta a Failure of a Maid?</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 255: Gorilla meets an Old friend. Gorilla Meets Female vampire… Gorilla knows the secret…"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>255</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 255: Gorilla meets an Old friend. Gorilla Meets Female
|
|
|
|
|
+ vampire… Gorilla knows the secret…
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 256: Gorilla’s surprised.">
|
|
|
|
|
+ <i>256</i>
|
|
|
|
|
+ <strong>Chapter 256: Gorilla’s surprised.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 257: Gorilla meets Berserker woman.">
|
|
|
|
|
+ <i>257</i>
|
|
|
|
|
+ <strong>Chapter 257: Gorilla meets Berserker woman.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 258: My mother-in-law's patience disappeared"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>258</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 258: My mother-in-law's patience disappeared
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 259: Gates of Limbo.">
|
|
|
|
|
+ <i>259</i>
|
|
|
|
|
+ <strong>Chapter 259: Gates of Limbo.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 260: A true member of Clan Alucard, Eve Alucard."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>260</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 260: A true member of Clan Alucard, Eve Alucard.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 261: Second Progenitor.">
|
|
|
|
|
+ <i>261</i>
|
|
|
|
|
+ <strong>Chapter 261: Second Progenitor.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 262: Second Progenitor 2">
|
|
|
|
|
+ <i>262</i>
|
|
|
|
|
+ <strong>Chapter 262: Second Progenitor 2</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 263: Witch wants the … Of Alucard.">
|
|
|
|
|
+ <i>263</i>
|
|
|
|
|
+ <strong>Chapter 263: Witch wants the … Of Alucard.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 264: Selena Moriarty, Daughter of queen witch."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>264</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 264: Selena Moriarty, Daughter of queen witch.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 265: My mother-in-law is on fire...">
|
|
|
|
|
+ <i>265</i>
|
|
|
|
|
+ <strong>Chapter 265: My mother-in-law is on fire...</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 266: My mother-in-law is on fire… 2">
|
|
|
|
|
+ <i>266</i>
|
|
|
|
|
+ <strong>Chapter 266: My mother-in-law is on fire… 2</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 267: Maid and Witch.">
|
|
|
|
|
+ <i>267</i>
|
|
|
|
|
+ <strong>Chapter 267: Maid and Witch.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 268: Maid and Witch. 2">
|
|
|
|
|
+ <i>268</i>
|
|
|
|
|
+ <strong>Chapter 268: Maid and Witch. 2</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 269: The definition of insanity?">
|
|
|
|
|
+ <i>269</i>
|
|
|
|
|
+ <strong>Chapter 269: The definition of insanity?</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 270: Feeding my pet.">
|
|
|
|
|
+ <i>270</i>
|
|
|
|
|
+ <strong>Chapter 270: Feeding my pet.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 271: The man that until the fruit of sin."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>271</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 271: The man that until the fruit of sin.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 272: A point of change. ">
|
|
|
|
|
+ <i>272</i>
|
|
|
|
|
+ <strong>Chapter 272: A point of change. </strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 273: Roxanne Alucard.">
|
|
|
|
|
+ <i>273</i>
|
|
|
|
|
+ <strong>Chapter 273: Roxanne Alucard.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 274: Scathach joins the club.">
|
|
|
|
|
+ <i>274</i>
|
|
|
|
|
+ <strong>Chapter 274: Scathach joins the club.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 275: Scathach joins the club. 2">
|
|
|
|
|
+ <i>275</i>
|
|
|
|
|
+ <strong>Chapter 275: Scathach joins the club. 2</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 276: Violet wants the...">
|
|
|
|
|
+ <i>276</i>
|
|
|
|
|
+ <strong>Chapter 276: Violet wants the...</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 277: Vampire meets goddess again…">
|
|
|
|
|
+ <i>277</i>
|
|
|
|
|
+ <strong>Chapter 277: Vampire meets goddess again…</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 278: Clues on how to get home.">
|
|
|
|
|
+ <i>278</i>
|
|
|
|
|
+ <strong>Chapter 278: Clues on how to get home.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 279: I want you. ">
|
|
|
|
|
+ <i>279</i>
|
|
|
|
|
+ <strong>Chapter 279: I want you.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 280: Victor makes a proposal to…">
|
|
|
|
|
+ <i>280</i>
|
|
|
|
|
+ <strong>Chapter 280: Victor makes a proposal to…</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 281: Vlad problems.">
|
|
|
|
|
+ <i>281</i>
|
|
|
|
|
+ <strong>Chapter 281: Vlad problems.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 282: Snakes hiding in the dark.">
|
|
|
|
|
+ <i>282</i>
|
|
|
|
|
+ <strong>Chapter 282: Snakes hiding in the dark.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 283: Snakes hiding in the dark. 2">
|
|
|
|
|
+ <i>283</i>
|
|
|
|
|
+ <strong>Chapter 283: Snakes hiding in the dark. 2</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 284: Mother-in-law’s secrets.">
|
|
|
|
|
+ <i>284</i>
|
|
|
|
|
+ <strong>Chapter 284: Mother-in-law’s secrets.</strong>
|
|
|
|
|
+ <small>7mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 285: Mother-in-law's secrets. 2">
|
|
|
|
|
+ <i>285</i>
|
|
|
|
|
+ <strong>Chapter 285: Mother-in-law's secrets. 2</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 286: Your legacy.">
|
|
|
|
|
+ <i>286</i>
|
|
|
|
|
+ <strong>Chapter 286: Your legacy.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 287: Your legacy. 2 ">
|
|
|
|
|
+ <i>287</i>
|
|
|
|
|
+ <strong>Chapter 287: Your legacy. 2 </strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 288: Your legacy. 3">
|
|
|
|
|
+ <i>288</i>
|
|
|
|
|
+ <strong>Chapter 288: Your legacy. 3</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 289: The result of a choice.">
|
|
|
|
|
+ <i>289</i>
|
|
|
|
|
+ <strong>Chapter 289: The result of a choice.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 290: One small step, one big change... A turning point."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>290</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 290: One small step, one big change... A turning
|
|
|
|
|
+ point.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 291: Changes are not always welcome, but they are necessary."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>291</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 291: Changes are not always welcome, but they are
|
|
|
|
|
+ necessary.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 292: Changes are not always welcome, but they are necessary. 2"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>292</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 292: Changes are not always welcome, but they are
|
|
|
|
|
+ necessary. 2
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 293: Victor’s change.">
|
|
|
|
|
+ <i>293</i>
|
|
|
|
|
+ <strong>Chapter 293: Victor’s change.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title=" Chapter 294: Alucard has changed… And this is terrifying."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>294</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 294: Alucard has changed… And this is terrifying.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 295: My Wife, forgive me.">
|
|
|
|
|
+ <i>295</i>
|
|
|
|
|
+ <strong>Chapter 295: My Wife, forgive me.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 296: My Wife, forgive me. 2">
|
|
|
|
|
+ <i>296</i>
|
|
|
|
|
+ <strong>Chapter 296: My Wife, forgive me. 2</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 297: Persephone, The Queen Of The Underworld."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>297</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 297: Persephone, The Queen Of The Underworld.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 298: Persephone, The Queen Of The Underworld. 2"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>298</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 298: Persephone, The Queen Of The Underworld. 2
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 299: Two choices, one obvious decision."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>299</i>
|
|
|
|
|
+ <strong>Chapter 299: Two choices, one obvious decision.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 300: My Beloved Maids.">
|
|
|
|
|
+ <i>300</i>
|
|
|
|
|
+ <strong>Chapter 300: My Beloved Maids.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 301: Blood Sacrifice.">
|
|
|
|
|
+ <i>301</i>
|
|
|
|
|
+ <strong>Chapter 301: Blood Sacrifice.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 302: Junketsu.">
|
|
|
|
|
+ <i>302</i>
|
|
|
|
|
+ <strong>Chapter 302: Junketsu.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 303: Agnes’ change. ">
|
|
|
|
|
+ <i>303</i>
|
|
|
|
|
+ <strong>Chapter 303: Agnes’ change.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 304: The Snow Clan Treasure.">
|
|
|
|
|
+ <i>304</i>
|
|
|
|
|
+ <strong>Chapter 304: The Snow Clan Treasure.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 305: Scathach feels weird for several reasons."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>305</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 305: Scathach feels weird for several reasons.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 306: Training.">
|
|
|
|
|
+ <i>306</i>
|
|
|
|
|
+ <strong>Chapter 306: Training.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 307: Sweet time with my wife and mothers-in-law."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>307</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 307: Sweet time with my wife and mothers-in-law.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 308: I love my mother-in-law. ">
|
|
|
|
|
+ <i>308</i>
|
|
|
|
|
+ <strong>Chapter 308: I love my mother-in-law.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 309: The promise I made.">
|
|
|
|
|
+ <i>309</i>
|
|
|
|
|
+ <strong>Chapter 309: The promise I made.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 310: Things to sort out before leaving."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>310</i>
|
|
|
|
|
+ <strong>Chapter 310: Things to sort out before leaving.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 311: My Favorite Hunter.">
|
|
|
|
|
+ <i>311</i>
|
|
|
|
|
+ <strong>Chapter 311: My Favorite Hunter.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 312: Mizuki meets Alucard.">
|
|
|
|
|
+ <i>312</i>
|
|
|
|
|
+ <strong>Chapter 312: Mizuki meets Alucard.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 313: Mizuki desperately tries not to fall."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>313</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 313: Mizuki desperately tries not to fall.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 314: Mizuki falls.">
|
|
|
|
|
+ <i>314</i>
|
|
|
|
|
+ <strong>Chapter 314: Mizuki falls.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 315: Victor is a Yandere.">
|
|
|
|
|
+ <i>315</i>
|
|
|
|
|
+ <strong>Chapter 315: Victor is a Yandere.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 316: Witches.">
|
|
|
|
|
+ <i>316</i>
|
|
|
|
|
+ <strong>Chapter 316: Witches.</strong>
|
|
|
|
|
+ <small>6mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 317: Violet Snow’s Responsibilities.">
|
|
|
|
|
+ <i>317</i>
|
|
|
|
|
+ <strong>Chapter 317: Violet Snow’s Responsibilities.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 318: Sasha Is Just Like Her Mother!">
|
|
|
|
|
+ <i>318</i>
|
|
|
|
|
+ <strong>Chapter 318: Sasha Is Just Like Her Mother!</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 319: Ruby’s Experiments and Discoveries."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>319</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 319: Ruby’s Experiments and Discoveries.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 320: The Wives Are United.">
|
|
|
|
|
+ <i>320</i>
|
|
|
|
|
+ <strong>Chapter 320: The Wives Are United.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 321: The Wives Are United. 2">
|
|
|
|
|
+ <i>321</i>
|
|
|
|
|
+ <strong>Chapter 321: The Wives Are United. 2</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 322: Feelings Put on a Piece of Paper.">
|
|
|
|
|
+ <i>322</i>
|
|
|
|
|
+ <strong>Chapter 322: Feelings Put on a Piece of Paper.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 323: Seductive Vampire Tricks Greedy Witch."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>323</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 323: Seductive Vampire Tricks Greedy Witch.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 324: The Gates of Tartarus.">
|
|
|
|
|
+ <i>324</i>
|
|
|
|
|
+ <strong>Chapter 324: The Gates of Tartarus.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 325: Let's Dance!!">
|
|
|
|
|
+ <i>325</i>
|
|
|
|
|
+ <strong>Chapter 325: Let's Dance!!</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 326: Countess Eleanor Adrestia. 3">
|
|
|
|
|
+ <i>326</i>
|
|
|
|
|
+ <strong>Chapter 326: Countess Eleanor Adrestia. 3</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 327: Master Scathach Scarlett has acquired new disciples."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>327</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 327: Master Scathach Scarlett has acquired new
|
|
|
|
|
+ disciples.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 328: Hell Makes Its Move.">
|
|
|
|
|
+ <i>328</i>
|
|
|
|
|
+ <strong>Chapter 328: Hell Makes Its Move.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 329: Fulger Sisters. ">
|
|
|
|
|
+ <i>329</i>
|
|
|
|
|
+ <strong>Chapter 329: Fulger Sisters.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 330: Betrayals.">
|
|
|
|
|
+ <i>330</i>
|
|
|
|
|
+ <strong>Chapter 330: Betrayals.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 331: Karma is a bitch.">
|
|
|
|
|
+ <i>331</i>
|
|
|
|
|
+ <strong>Chapter 331: Karma is a bitch.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 332: A Saint and a Succubus.">
|
|
|
|
|
+ <i>332</i>
|
|
|
|
|
+ <strong>Chapter 332: A Saint and a Succubus.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 333: A Saint and a Succubus. 2">
|
|
|
|
|
+ <i>333</i>
|
|
|
|
|
+ <strong>Chapter 333: A Saint and a Succubus. 2</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 334: Pepper And Lacus training with her daddy?"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>334</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 334: Pepper And Lacus training with her daddy?
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 335: Ophis…? Ophis! OPHIS!">
|
|
|
|
|
+ <i>335</i>
|
|
|
|
|
+ <strong>Chapter 335: Ophis…? Ophis! OPHIS!</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 336: Ophis meets a strange girl.">
|
|
|
|
|
+ <i>336</i>
|
|
|
|
|
+ <strong>Chapter 336: Ophis meets a strange girl.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 337: Hyakki Yakō.">
|
|
|
|
|
+ <i>337</i>
|
|
|
|
|
+ <strong>Chapter 337: Hyakki Yakō.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 338: Haruna, The Moonlight Kitsune.">
|
|
|
|
|
+ <i>338</i>
|
|
|
|
|
+ <strong>Chapter 338: Haruna, The Moonlight Kitsune.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 339: Ophis has disappeared.">
|
|
|
|
|
+ <i>339</i>
|
|
|
|
|
+ <strong>Chapter 339: Ophis has disappeared.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 340: Father is coming.">
|
|
|
|
|
+ <i>340</i>
|
|
|
|
|
+ <strong>Chapter 340: Father is coming.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 341: Two girls against the world.">
|
|
|
|
|
+ <i>341</i>
|
|
|
|
|
+ <strong>Chapter 341: Two girls against the world.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 342: She is not a disease.">
|
|
|
|
|
+ <i>342</i>
|
|
|
|
|
+ <strong>Chapter 342: She is not a disease.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 343: Crimson Nightmare.">
|
|
|
|
|
+ <i>343</i>
|
|
|
|
|
+ <strong>Chapter 343: Crimson Nightmare.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 344: Crimson Nightmare. 2">
|
|
|
|
|
+ <i>344</i>
|
|
|
|
|
+ <strong>Chapter 344: Crimson Nightmare. 2</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 345: Hypocrisy.">
|
|
|
|
|
+ <i>345</i>
|
|
|
|
|
+ <strong>Chapter 345: Hypocrisy.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 346: Like a Storm God.">
|
|
|
|
|
+ <i>346</i>
|
|
|
|
|
+ <strong>Chapter 346: Like a Storm God.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 347: Hunting Day, Hunter's Day. ">
|
|
|
|
|
+ <i>347</i>
|
|
|
|
|
+ <strong>Chapter 347: Hunting Day, Hunter's Day.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 348: Ophis no longer wants to leave her father's side."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>348</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 348: Ophis no longer wants to leave her father's side.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 349: The Mindset of a Wise King.">
|
|
|
|
|
+ <i>349</i>
|
|
|
|
|
+ <strong>Chapter 349: The Mindset of a Wise King.</strong>
|
|
|
|
|
+ <small>5mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 350: Welcome to my humble abode.">
|
|
|
|
|
+ <i>350</i>
|
|
|
|
|
+ <strong>Chapter 350: Welcome to my humble abode.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 351: Welcome to hell.">
|
|
|
|
|
+ <i>351</i>
|
|
|
|
|
+ <strong>Chapter 351: Welcome to hell.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 352: Hahaha~, Welcome, Stranger!">
|
|
|
|
|
+ <i>352</i>
|
|
|
|
|
+ <strong>Chapter 352: Hahaha~, Welcome, Stranger!</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 353: Oni meets Vampire.">
|
|
|
|
|
+ <i>353</i>
|
|
|
|
|
+ <strong>Chapter 353: Oni meets Vampire.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 354: Oni Meets vampire 2.">
|
|
|
|
|
+ <i>354</i>
|
|
|
|
|
+ <strong>Chapter 354: Oni Meets vampire 2.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 355: Fox Girl Meet Vampire.">
|
|
|
|
|
+ <i>355</i>
|
|
|
|
|
+ <strong>Chapter 355: Fox Girl Meet Vampire.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 356: Hadō.">
|
|
|
|
|
+ <i>356</i>
|
|
|
|
|
+ <strong>Chapter 356: Hadō.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 357: A Good Woman.">
|
|
|
|
|
+ <i>357</i>
|
|
|
|
|
+ <strong>Chapter 357: A Good Woman.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 358: Your mother is…">
|
|
|
|
|
+ <i>358</i>
|
|
|
|
|
+ <strong>Chapter 358: Your mother is…</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 359: Lucky man.">
|
|
|
|
|
+ <i>359</i>
|
|
|
|
|
+ <strong>Chapter 359: Lucky man.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 360: The Power of the Strongest Female Vampire."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>360</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 360: The Power of the Strongest Female Vampire.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 361: The Power of the Strongest Female Vampire. 2"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>361</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 361: The Power of the Strongest Female Vampire. 2
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 362: The Ice Empress.">
|
|
|
|
|
+ <i>362</i>
|
|
|
|
|
+ <strong>Chapter 362: The Ice Empress.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 363: The Ice Empress. 2">
|
|
|
|
|
+ <i>363</i>
|
|
|
|
|
+ <strong>Chapter 363: The Ice Empress. 2</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 364: It is always women. ">
|
|
|
|
|
+ <i>364</i>
|
|
|
|
|
+ <strong>Chapter 364: It is always women. </strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 365: Vlad Dracul Tepes fears the new 'Dracul'."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>365</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 365: Vlad Dracul Tepes fears the new 'Dracul'.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 366: Destiny can be unpredictable sometimes."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>366</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 366: Destiny can be unpredictable sometimes.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 367: The love of a Yandere.">
|
|
|
|
|
+ <i>367</i>
|
|
|
|
|
+ <strong>Chapter 367: The love of a Yandere.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 368: Kurama.">
|
|
|
|
|
+ <i>368</i>
|
|
|
|
|
+ <strong>Chapter 368: Kurama.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 369: Sasha took her mother's teachings very seriously. "
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>369</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 369: Sasha took her mother's teachings very seriously.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 370: Ruby and Victor.">
|
|
|
|
|
+ <i>370</i>
|
|
|
|
|
+ <strong>Chapter 370: Ruby and Victor.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 371: Scathach's feelings.">
|
|
|
|
|
+ <i>371</i>
|
|
|
|
|
+ <strong>Chapter 371: Scathach's feelings.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 372: An Unforgettable Night.">
|
|
|
|
|
+ <i>372</i>
|
|
|
|
|
+ <strong>Chapter 372: An Unforgettable Night.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 373: A not-so-pleasant encounter. ">
|
|
|
|
|
+ <i>373</i>
|
|
|
|
|
+ <strong>Chapter 373: A not-so-pleasant encounter.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 374: A not-so-pleasant encounter. 2">
|
|
|
|
|
+ <i>374</i>
|
|
|
|
|
+ <strong>Chapter 374: A not-so-pleasant encounter. 2</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 375: Sasha and Victor.">
|
|
|
|
|
+ <i>375</i>
|
|
|
|
|
+ <strong>Chapter 375: Sasha and Victor.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 376: Sasha and Victor. 2">
|
|
|
|
|
+ <i>376</i>
|
|
|
|
|
+ <strong>Chapter 376: Sasha and Victor. 2</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 377: Sasha and Victor. 3">
|
|
|
|
|
+ <i>377</i>
|
|
|
|
|
+ <strong>Chapter 377: Sasha and Victor. 3</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 378: Endless Depravity.">
|
|
|
|
|
+ <i>378</i>
|
|
|
|
|
+ <strong>Chapter 378: Endless Depravity.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 379: Scathach wants Victor just for her."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>379</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 379: Scathach wants Victor just for her.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 380: Victor is playing with fire.">
|
|
|
|
|
+ <i>380</i>
|
|
|
|
|
+ <strong>Chapter 380: Victor is playing with fire.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 381: Two Progenitors. Dracul and Alucard."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>381</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 381: Two Progenitors. Dracul and Alucard.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 382: Two Progenitors. Dracul and Alucard. 2"
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>382</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 382: Two Progenitors. Dracul and Alucard. 2
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 383: Advice from a friend.">
|
|
|
|
|
+ <i>383</i>
|
|
|
|
|
+ <strong>Chapter 383: Advice from a friend.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 384: Scathach is jealous. ">
|
|
|
|
|
+ <i>384</i>
|
|
|
|
|
+ <strong>Chapter 384: Scathach is jealous. </strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 385: Victor is a good father... The best."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>385</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 385: Victor is a good father... The best.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 386: A sister she never knew.">
|
|
|
|
|
+ <i>386</i>
|
|
|
|
|
+ <strong>Chapter 386: A sister she never knew.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 387: Count Alucard's Daughter. ">
|
|
|
|
|
+ <i>387</i>
|
|
|
|
|
+ <strong>Chapter 387: Count Alucard's Daughter.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 388: The Consequences of an Action.">
|
|
|
|
|
+ <i>388</i>
|
|
|
|
|
+ <strong>Chapter 388: The Consequences of an Action.</strong>
|
|
|
|
|
+ <small>4mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 389: Visiting a God.">
|
|
|
|
|
+ <i>389</i>
|
|
|
|
|
+ <strong>Chapter 389: Visiting a God.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 390: Nero doesn't want to walk away from her father."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>390</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 390: Nero doesn't want to walk away from her father.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 391: God.">
|
|
|
|
|
+ <i>391</i>
|
|
|
|
|
+ <strong>Chapter 391: God.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 392: God. 2">
|
|
|
|
|
+ <i>392</i>
|
|
|
|
|
+ <strong>Chapter 392: God. 2</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 393: God. 3">
|
|
|
|
|
+ <i>393</i>
|
|
|
|
|
+ <strong>Chapter 393: God. 3</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 394: Maids. ">
|
|
|
|
|
+ <i>394</i>
|
|
|
|
|
+ <strong>Chapter 394: Maids. </strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 395: My Beloved Maids.">
|
|
|
|
|
+ <i>395</i>
|
|
|
|
|
+ <strong>Chapter 395: My Beloved Maids.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 396: Shooting himself in the foot.">
|
|
|
|
|
+ <i>396</i>
|
|
|
|
|
+ <strong>Chapter 396: Shooting himself in the foot.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 397: A sensitive point for Victor.">
|
|
|
|
|
+ <i>397</i>
|
|
|
|
|
+ <strong>Chapter 397: A sensitive point for Victor.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 398: Is Aphrodite a Good Friend!?">
|
|
|
|
|
+ <i>398</i>
|
|
|
|
|
+ <strong>Chapter 398: Is Aphrodite a Good Friend!?</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 399: Anna and Aphrodite, a friendship of over 10 years."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>399</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 399: Anna and Aphrodite, a friendship of over 10
|
|
|
|
|
+ years.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 400: Thoughts, Plans, and Decisions.">
|
|
|
|
|
+ <i>400</i>
|
|
|
|
|
+ <strong>Chapter 400: Thoughts, Plans, and Decisions.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 401: A New Name, and an important matter."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>401</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 401: A New Name, and an important matter.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 402: Strong Women.">
|
|
|
|
|
+ <i>402</i>
|
|
|
|
|
+ <strong>Chapter 402: Strong Women.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 403: Strong woman. 2">
|
|
|
|
|
+ <i>403</i>
|
|
|
|
|
+ <strong>Chapter 403: Strong woman. 2</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 404: The past that defines us…">
|
|
|
|
|
+ <i>404</i>
|
|
|
|
|
+ <strong>Chapter 404: The past that defines us…</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 405: The Past That Defines Us… 2">
|
|
|
|
|
+ <i>405</i>
|
|
|
|
|
+ <strong>Chapter 405: The Past That Defines Us… 2</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 406: An Older Vampire's Desire.">
|
|
|
|
|
+ <i>406</i>
|
|
|
|
|
+ <strong>Chapter 406: An Older Vampire's Desire.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 407: Nero Meets With her grandmother.">
|
|
|
|
|
+ <i>407</i>
|
|
|
|
|
+ <strong>Chapter 407: Nero Meets With her grandmother.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 408: The Love of Another Mother.">
|
|
|
|
|
+ <i>408</i>
|
|
|
|
|
+ <strong>Chapter 408: The Love of Another Mother.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 409: Daughter.">
|
|
|
|
|
+ <i>409</i>
|
|
|
|
|
+ <strong>Chapter 409: Daughter.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 410: An existence that breaks common sense."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>410</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 410: An existence that breaks common sense.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 411: Be careful what you desire...">
|
|
|
|
|
+ <i>411</i>
|
|
|
|
|
+ <strong>Chapter 411: Be careful what you desire...</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 412: Anna is the best mom.">
|
|
|
|
|
+ <i>412</i>
|
|
|
|
|
+ <strong>Chapter 412: Anna is the best mom.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 413: Choose wisely">
|
|
|
|
|
+ <i>413</i>
|
|
|
|
|
+ <strong>Chapter 413: Choose wisely</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 414: The highest degree of heresy.">
|
|
|
|
|
+ <i>414</i>
|
|
|
|
|
+ <strong>Chapter 414: The highest degree of heresy.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 415: A vote of confidence.">
|
|
|
|
|
+ <i>415</i>
|
|
|
|
|
+ <strong>Chapter 415: A vote of confidence.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 416: Strange Occurrences.">
|
|
|
|
|
+ <i>416</i>
|
|
|
|
|
+ <strong>Chapter 416: Strange Occurrences.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 417: Demons move.">
|
|
|
|
|
+ <i>417</i>
|
|
|
|
|
+ <strong>Chapter 417: Demons move.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 418: A Bad Foreboding.">
|
|
|
|
|
+ <i>418</i>
|
|
|
|
|
+ <strong>Chapter 418: A Bad Foreboding.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 419: Don't made a Yandere Angry.">
|
|
|
|
|
+ <i>419</i>
|
|
|
|
|
+ <strong>Chapter 419: Don't made a Yandere Angry.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 420: Pepper meets Nero.">
|
|
|
|
|
+ <i>420</i>
|
|
|
|
|
+ <strong>Chapter 420: Pepper meets Nero.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 421: Pepper Scarlett.">
|
|
|
|
|
+ <i>421</i>
|
|
|
|
|
+ <strong>Chapter 421: Pepper Scarlett.</strong>
|
|
|
|
|
+ <small>3mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 422: I can't take it anymore~!">
|
|
|
|
|
+ <i>422</i>
|
|
|
|
|
+ <strong>Chapter 422: I can't take it anymore~!</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 423: Natashia is a good friend.">
|
|
|
|
|
+ <i>423</i>
|
|
|
|
|
+ <strong>Chapter 423: Natashia is a good friend.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 424: Pepper's Worries.">
|
|
|
|
|
+ <i>424</i>
|
|
|
|
|
+ <strong>Chapter 424: Pepper's Worries.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 425: The day I destroyed my mother in law."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>425</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 425: The day I destroyed my mother in law.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 426: Warfall Problems.">
|
|
|
|
|
+ <i>426</i>
|
|
|
|
|
+ <strong>Chapter 426: Warfall Problems.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 427: The day my mother in law became my wife."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>427</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 427: The day my mother in law became my wife.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 428: Violet has become a great woman.">
|
|
|
|
|
+ <i>428</i>
|
|
|
|
|
+ <strong>Chapter 428: Violet has become a great woman.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 429: Ruby's Obsession. ">
|
|
|
|
|
+ <i>429</i>
|
|
|
|
|
+ <strong>Chapter 429: Ruby's Obsession.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 430: Desire.">
|
|
|
|
|
+ <i>430</i>
|
|
|
|
|
+ <strong>Chapter 430: Desire.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 431: The Wife Who Has No Inhibitions.">
|
|
|
|
|
+ <i>431</i>
|
|
|
|
|
+ <strong>Chapter 431: The Wife Who Has No Inhibitions.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 432: ELEGANT!">
|
|
|
|
|
+ <i>432</i>
|
|
|
|
|
+ <strong>Chapter 432: ELEGANT!</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 433: The meeting.">
|
|
|
|
|
+ <i>433</i>
|
|
|
|
|
+ <strong>Chapter 433: The meeting.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 434: The meeting. 2">
|
|
|
|
|
+ <i>434</i>
|
|
|
|
|
+ <strong>Chapter 434: The meeting. 2</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 435: The meeting. 3">
|
|
|
|
|
+ <i>435</i>
|
|
|
|
|
+ <strong>Chapter 435: The meeting. 3</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 436: Dotings Fathers.">
|
|
|
|
|
+ <i>436</i>
|
|
|
|
|
+ <strong>Chapter 436: Dotings Fathers.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 437: Respect.">
|
|
|
|
|
+ <i>437</i>
|
|
|
|
|
+ <strong>Chapter 437: Respect.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 438: A Father's Feelings.">
|
|
|
|
|
+ <i>438</i>
|
|
|
|
|
+ <strong>Chapter 438: A Father's Feelings.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 449: What has been lost cannot be recovered so easily."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>439</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 449: What has been lost cannot be recovered so easily.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 440: Agnes lost… And determination.">
|
|
|
|
|
+ <i>440</i>
|
|
|
|
|
+ <strong>Chapter 440: Agnes lost… And determination.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 441: Determination.">
|
|
|
|
|
+ <i>441</i>
|
|
|
|
|
+ <strong>Chapter 441: Determination.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 442: Obscene Desire.">
|
|
|
|
|
+ <i>442</i>
|
|
|
|
|
+ <strong>Chapter 442: Obscene Desire.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 443: A Strong Heart.">
|
|
|
|
|
+ <i>443</i>
|
|
|
|
|
+ <strong>Chapter 443: A Strong Heart.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 444:The dedication of a husband.">
|
|
|
|
|
+ <i>444</i>
|
|
|
|
|
+ <strong>Chapter 444:The dedication of a husband.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 445: Highest-Level Yandere.">
|
|
|
|
|
+ <i>445</i>
|
|
|
|
|
+ <strong>Chapter 445: Highest-Level Yandere.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 446: The First Wife.">
|
|
|
|
|
+ <i>446</i>
|
|
|
|
|
+ <strong>Chapter 446: The First Wife.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 447: The 'Love' of a Goddess of Love. "
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>447</i>
|
|
|
|
|
+ <strong>Chapter 447: The 'Love' of a Goddess of Love.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 448: My will.">
|
|
|
|
|
+ <i>448</i>
|
|
|
|
|
+ <strong>Chapter 448: My will.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 449: Alucard joined the chat group.">
|
|
|
|
|
+ <i>449</i>
|
|
|
|
|
+ <strong>Chapter 449: Alucard joined the chat group.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 450: True Warriors.">
|
|
|
|
|
+ <i>450</i>
|
|
|
|
|
+ <strong>Chapter 450: True Warriors.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 451: Victims of their own whims.">
|
|
|
|
|
+ <i>451</i>
|
|
|
|
|
+ <strong>Chapter 451: Victims of their own whims.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 452: Apex predator.">
|
|
|
|
|
+ <i>452</i>
|
|
|
|
|
+ <strong>Chapter 452: Apex predator.</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 453: Apex Predator. 2">
|
|
|
|
|
+ <i>453</i>
|
|
|
|
|
+ <strong>Chapter 453: Apex Predator. 2</strong>
|
|
|
|
|
+ <small>2mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 454: A Master!">
|
|
|
|
|
+ <i>454</i>
|
|
|
|
|
+ <strong>Chapter 454: A Master!</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 455: The Power to Shape Creation.">
|
|
|
|
|
+ <i>455</i>
|
|
|
|
|
+ <strong>Chapter 455: The Power to Shape Creation.</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 456: A Mass Destruction Team.">
|
|
|
|
|
+ <i>456</i>
|
|
|
|
|
+ <strong>Chapter 456: A Mass Destruction Team.</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 457: The sword of Clan Adrasteia.">
|
|
|
|
|
+ <i>457</i>
|
|
|
|
|
+ <strong>Chapter 457: The sword of Clan Adrasteia.</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a
|
|
|
|
|
+ href=""
|
|
|
|
|
+ title="Chapter 458: My mother-in-law can't hold back anymore."
|
|
|
|
|
+ >
|
|
|
|
|
+ <i>458</i>
|
|
|
|
|
+ <strong>
|
|
|
|
|
+ Chapter 458: My mother-in-law can't hold back anymore.
|
|
|
|
|
+ </strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 459: A worthy opponent.">
|
|
|
|
|
+ <i>459</i>
|
|
|
|
|
+ <strong>Chapter 459: A worthy opponent.</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 460: A worthy opponent. 2">
|
|
|
|
|
+ <i>460</i>
|
|
|
|
|
+ <strong>Chapter 460: A worthy opponent. 2</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 461: A worthy opponent. 3">
|
|
|
|
|
+ <i>461</i>
|
|
|
|
|
+ <strong>Chapter 461: A worthy opponent. 3</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 462: The Hidden Boss.">
|
|
|
|
|
+ <i>462</i>
|
|
|
|
|
+ <strong>Chapter 462: The Hidden Boss.</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 463: A Casual Act That Changed Fate.">
|
|
|
|
|
+ <i>463</i>
|
|
|
|
|
+ <strong>Chapter 463: A Casual Act That Changed Fate.</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 464: Scathach has arrived.">
|
|
|
|
|
+ <i>464</i>
|
|
|
|
|
+ <strong>Chapter 464: Scathach has arrived.</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 465: A squadmate.">
|
|
|
|
|
+ <i>465</i>
|
|
|
|
|
+ <strong>Chapter 465: A squadmate.</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 466: Self-respect.">
|
|
|
|
|
+ <i>466</i>
|
|
|
|
|
+ <strong>Chapter 466: Self-respect.</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 467: Self respect. 2">
|
|
|
|
|
+ <i>467</i>
|
|
|
|
|
+ <strong>Chapter 467: Self respect. 2</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 468: An Unexpected Meeting.">
|
|
|
|
|
+ <i>468</i>
|
|
|
|
|
+ <strong>Chapter 468: An Unexpected Meeting.</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 469: An unexpected meeting. 2">
|
|
|
|
|
+ <i>469</i>
|
|
|
|
|
+ <strong>Chapter 469: An unexpected meeting. 2</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 470: Bonds Forged in the Past.">
|
|
|
|
|
+ <i>470</i>
|
|
|
|
|
+ <strong>Chapter 470: Bonds Forged in the Past.</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="" title="Chapter 471: Bonds Forged in the Past. 2">
|
|
|
|
|
+ <i>471</i>
|
|
|
|
|
+ <strong>Chapter 471: Bonds Forged in the Past. 2</strong>
|
|
|
|
|
+ <small>1mth</small>
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ </ol>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </main>
|
|
|
|
|
+ );
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
|
|
+export default Novel;
|