leilukin-site/_site/shrines/starwarskotor/resources/kotor-same-gender-romance-mods/index.html

730 lines
34 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en" dir="ltr" id="page-top">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="List of Same-Gender Romance Mods for Star Wars: Knights of the Old Republic Series | Resources | Star Wars: Knights of the Old Republic Shrine">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Throughout the years, modders have created same-gender romance mods for the Knights of the Old Republic series. Want to make your KotOR games more gay? This list is for you!">
<meta name="generator" content="Eleventy v2.0.1">
<meta property="og:type" content="website">
<meta property="og:url" content="https://leilukin.neocities.org/shrines/starwarskotor/resources/kotor-same-gender-romance-mods/">
<meta property="og:site_name" content="Leilukin's Hub">
<meta property="og:locale" content="en_MY">
<meta property="og:description" content="Throughout the years, modders have created same-gender romance mods for the Knights of the Old Republic series. Want to make your KotOR games more gay? This list is for you!">
<meta name="twitter:card" content="summary">
<meta name="twitter:url" content="https://leilukin.neocities.org/shrines/starwarskotor/resources/kotor-same-gender-romance-mods/">
<meta name="twitter:description" content="Throughout the years, modders have created same-gender romance mods for the Knights of the Old Republic series. Want to make your KotOR games more gay? This list is for you!">
<link rel="canonical" href="https://leilukin.neocities.org/shrines/starwarskotor/resources/kotor-same-gender-romance-mods/">
<link rel="stylesheet" href="/assets/css/main.css">
<link rel="stylesheet" href="/assets/css/starwarskotor.css">
<link rel="stylesheet" href="/assets/fonts/noto-sans/noto-sans.css">
<link href="/assets/fonts/fontawesome/css/fontawesome.css" rel="stylesheet" />
<link href="/assets/fonts/fontawesome/css/brands.css" rel="stylesheet" />
<link href="/assets/fonts/fontawesome/css/solid.css" rel="stylesheet" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/shrines/starwarskotor/images/kotor-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/shrines/starwarskotor/images/kotor-icon.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/shrines/starwarskotor/images/kotor-icon.png">
<link rel="manifest" href="/assets/favicon/site.webmanifest">
<title>
List of Same-Gender Romance Mods for Star Wars: Knights of the Old Republic Series | Resources | Star Wars: Knights of the Old Republic Shrine | Leilukin's Hub
</title>
</head>
<body>
<header class="hero">
<div class="hero__top-bar hidden"></div>
<div class="hero__img">
<picture>
<source srcset="/assets/shrines/starwarskotor/images/swkotor-header-320.png" media="(orientation: landscape)" />
<img src="/assets/shrines/starwarskotor/images/swkotor-header.jpg" alt="anner of Star Wars: Knights of the Old Republic Shrine" />
</picture>
</div>
</header>
<style>
.hero {
width: 100%;
background-color: var(--clr-hero-bg);
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
.hero__top-bar {
background-color: var(--clr-navbar-bg);
width: 100%;
padding: 0.5em 0.7em;
}
.hero__img {
display: grid;
place-content: center;
}
.hero img {
object-fit: contain;
overflow: hidden;
max-height: 16rem;
}
</style>
<script defer>
const hero = document.querySelector(".hero");
const heroTopBarEl = document.querySelector(".hero__top-bar");
const headerImgEl = document.querySelector(".hero__img");
const todayEvent = getTodayEvent();
if (todayEvent) {
heroTopBarEl.classList.remove('hidden');
heroTopBarEl.innerHTML = todayEvent;
}
function getTodayEvent() {
const date = new Date();
const month = date.getMonth() + 1;
const day = date.getDate();
const year = date.getFullYear();
const kotor1ReleaseDate = new Date("2003-07-15").getFullYear();
const kotor2ReleaseDate = new Date("2004-12-06").getFullYear();
const kotor1Anniversary = year - kotor1ReleaseDate;
const kotor2Anniversary = year - kotor2ReleaseDate;
if (month === 7 && day === 15)
return `
Today is the ${kotor1Anniversary}-year anniversary of the release of <cite>Star Wars: Knihgts of the Old Republic</cite>
`;
else if (month === 12 && day === 6)
return `
Today is the ${kotor2Anniversary}-year anniversary of the release of <cite>Star Wars: Knights of the Old Republic II — The Sith Lords</cite>
`;
else
return null;
}
</script>
<nav class="navbar">
<div class="navbar__header">
<button class="navbar__toggle" aria-label="Navigation menu toggle">
<i class="fa-solid fa-bars"></i>
</button>
<h2 class="navbar__title">Navigation</h2>
</div>
<ul class="navbar__links">
<li>
<a href="/shrines/starwarskotor/">Shrine Home</a>
</li>
<li>
<a href="/shrines/starwarskotor/articles/">Articles</a>
</li>
<li>
<a href="/shrines/starwarskotor/guides/">Guides</a>
</li>
<li>
<a href="/shrines/starwarskotor/resources/">Resources</a>
</li>
<li>
<a href="/shrines/starwarskotor/universes/">Universes</a>
</li>
<li><a href="/shrines/">Shrine Index</a></li>
<li><a href="/">Main Site</a></li>
</ul>
</nav>
<style>
.navbar {
background: var(--clr-navbar-bg);
padding: 0.6em 1em;
width: 100%;
z-index: 999;
position: sticky;
top: 0;
}
.navbar__header {
display: flex;
align-items: center;
gap: 0.8em;
}
.navbar__toggle {
border: none;
padding: 0;
margin: 0;
font-size: 1.3rem;
background-color: inherit;
color: var(--clr-navbar-link);
}
.navbar__toggle:focus,
.navbar a:focus {
outline: 0.15em solid var(--clr-navbar-link);
}
.navbar__title {
font-size: 1.3rem;
color: var(--clr-navbar-link);
}
.navbar a {
color: var(--clr-navbar-link);
text-decoration: none;
cursor: pointer;
}
.navbar a:hover {
color: var(--clr-link-hover);
}
.navbar a:focus {
outline-offset: 0.3em;
}
.navbar__links {
list-style: none;
display: none;
gap: 1em;
padding: 0.5em 2em;
overflow: auto;
}
.navbar__links--show {
display: grid;
}
/* Tablet screen size */
@media only screen and (min-width: 43.75rem) {
.navbar {
padding: 0 0.6em;
}
.navbar__header {
display: none;
}
.navbar__links {
display: flex;
justify-content: space-evenly;
gap: 0.5em;
flex-wrap: wrap;
padding: 0;
overflow: unset;
}
}
</style>
<script defer>
const navbarToggle = document.querySelector('.navbar__toggle');
const navbarLinks = document.querySelector(".navbar__links");
navbarToggle.addEventListener('click', () => {
navbarLinks.classList.toggle("navbar__links--show");
});
</script>
<main>
<header class="main__header">
<ul class="breadcrumbs">
<li>
<a href="/shrines/">Shrines</a>
</li>
<li>
<a href="/shrines/starwarskotor/">Star Wars: Knights of the Old Republic Shrine</a>
</li>
<li>
<a href="/shrines/starwarskotor/resources/">Resources</a>
</li>
</ul>
<h1>List of Same-Gender Romance Mods for Star Wars: Knights of the Old Republic Series</h1>
<p>Throughout the years, modders have created same-gender romance mods for the Knights of the Old Republic series. Want to make your KotOR games more gay? This list is for you!</p>
</header>
<div class="content__wrapper">
<aside class="left-sidebar">
<details class="toc__wrapper sidebar--sticky">
<summary class="toc__heading">
On This Page
</summary>
<nav class="toc">
<ol>
<li><a href="#for-knights-of-the-old-republic-i">For Knights of the Old Republic I</a>
<ol>
<li><a href="#bastila-and-female-revan-untold-love-story">Bastila & Female Revan (Untold Love Story)</a>
</li>
<li><a href="#the-romancing-of-bastila">The Romancing of Bastila</a>
</li>
<li><a href="#party-on-the-leviathan">Party on the Leviathan!</a>
</li>
<li><a href="#bi-carth">Bi Carth</a>
</li>
<li><a href="#juhani-romance-enhancement">Juhani Romance Enhancement</a>
</li>
<li><a href="#jcs-romance-enhancement-biromantic-bastila-for-k1">JCs Romance Enhancement: Biromantic Bastila for K1</a>
</li>
<li><a href="#jcs-romance-enhancement-pan-galactic-flirting-for-k1">JC's Romance Enhancement: Pan-Galactic Flirting for K1</a>
</li>
<li><a href="#carth-onasi-and-male-pc-romance">Carth Onasi and Male PC Romance</a>
</li>
</ol>
</li>
<li><a href="#for-knights-of-the-old-republic-ii-the-sith-lords">For Knights of the Old Republic II: The Sith Lords</a>
<ol>
<li><a href="#worthy-of-note">Worthy of Note:</a>
</li>
<li><a href="#alternate-revan-romances">Alternate Revan Romances</a>
</li>
<li><a href="#visas-marr-and-female-exile-romance">Visas Marr and Female Exile Romance</a>
</li>
<li><a href="#atton-rand-and-male-exile-romance">Atton Rand and Male Exile Romance</a>
</li>
<li><a href="#handmaiden-and-female-exile-disciple-and-male-exile-romance">Handmaiden and Female Exile - Disciple and Male Exile Romance</a>
</li>
<li><a href="#darth-sion-and-male-exile-mod">Darth Sion and Male Exile Mod</a>
</li>
<li><a href="#alternate-revan-romances-redux">Alternate Revan Romances REDUX</a>
</li>
<li><a href="#dahnis-flirt-option-for-female-pc">Dahnis Flirt Option for Female PC</a>
</li>
</ol>
</li>
</ol>
</nav>
</details>
</aside>
<style>
.toc__wrapper {
max-height: 89vh;
overflow: auto;
background-color: var(--clr-content-bg);
padding: 1rem 1.3rem;
}
.toc__heading {
font-size: 1.3rem;
font-weight: 700;
color: var(--clr-sub-heading);
cursor: pointer;
}
.toc ol,
.toc ol ol {
display: grid;
gap: 0.3em;
}
.toc ol {
border-top: 0.1em solid var(--clr-title-border);
padding-left: 1.3em;
padding-top: 1em;
}
.toc ol ol {
border-top: none;
list-style-type: disc;
padding-left: 1em;
padding-top: 0.3em;
}
.toc ol a {
font-size: 1.1rem;
padding-left: 0.3em;
}
.toc ol ol a {
padding: 0;
font-size: 1rem;
}
</style>
<div class="content ">
<p>[This list is also available on <a href="https://docs.google.com/document/d/1l5cThs2A8PaUR4BlSEnlb2ZS5zrcnS3CeL58psjPfKI/edit">Google Docs</a>]</p>
<p>The first Star Wars: Knights of the Old Republic video game introduced Juhani, the very first confirmed gay character in any Star Wars media, including Legends, the old Star Wars Expanded Universe, and the very first canon same-gender romance option in any BioWare game. However, the KotOR series at large has little LGBTQ+ content, and except for Juhani, none of the romance options in both KotOR games are available for same-gender romances.</p>
<p>Therefore, throughout the years, modders of the KotOR games have created various mods adding more same-gender romance options and content to the games to fill the void.</p>
<p>Below is a list of all the same-gender romance mods that had been created for the KotOR game series throughout KotORs modding history, sorted by their original release dates in chronological order.</p>
<p>Wanting to make your KotOR games more gay? Then this list is for you! This list also serves as an archive to document the history of same-gender romance mods for the KotOR series. Happy gayming!</p>
<p>NOTE: Some listed mods below have overlapping concepts and thus are not compatible with each other. Mods that are hosted exclusively on Gamefront are very old mods that were made in the 2000s, and thus may have compatibility issues with newer mods (not just ones that listed here).</p>
<p><strong>Warning: this list contains spoilers for both KotOR games.</strong></p>
<div class="heading-wrapper h2">
<h2 id="for-knights-of-the-old-republic-i">For Knights of the Old Republic I</h2>
<a class="heading-anchor" href="#for-knights-of-the-old-republic-i" aria-labelledby="for-knights-of-the-old-republic-i"><span hidden>#</span></a></div>
<div class="heading-wrapper h3">
<h3 id="bastila-and-female-revan-untold-love-story">Bastila &amp; Female Revan (Untold Love Story)</h3>
<a class="heading-anchor" href="#bastila-and-female-revan-untold-love-story" aria-labelledby="bastila-and-female-revan-untold-love-story"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> Master Kavar</p>
<p><span class="info-field">Original Release Date:</span> 25 November 2006</p>
<p><span class="info-field">Download:</span> <a href="https://www.gamefront.com/games/knights-of-the-old-republic/file/bastila-female-revan-untold-love-story">Gamefront</a></p>
<p><span class="info-field">Mod Description:</span> Allows female Revan to romance Bastila. In addition, this mod also allows female Revan to flirt with certain female NPCs, most notably Yuthura Ban.</p>
<div class="heading-wrapper h3">
<h3 id="the-romancing-of-bastila">The Romancing of Bastila</h3>
<a class="heading-anchor" href="#the-romancing-of-bastila" aria-labelledby="the-romancing-of-bastila"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> Darth Shan &amp; Swfan28</p>
<p><span class="info-field">Original Release Date:</span> 10 March 2009</p>
<p><span class="info-field">Download:</span> <a href="https://www.gamefront.com/games/knights-of-the-old-republic/file/the-romancing-of-bastila">Gamefront</a></p>
<p><span class="info-field">Mod Description:</span> Compiles several Bastila content mods into one mod. Regarding Bastilas romance, in addition to allowing female Revan to romance Bastila, this mod also includes bug fixes and a kissing scene between Bastila and female Revan.</p>
<p><span class="info-field">Installation Note:</span> If you want to use this mod with Bastila &amp; Female Revan (Untold Love Story), you must install this mod AFTER Untold Love Story, and override the k_hbas_dialog.dlg file when prompted.</p>
<div class="heading-wrapper h3">
<h3 id="party-on-the-leviathan">Party on the Leviathan!</h3>
<a class="heading-anchor" href="#party-on-the-leviathan" aria-labelledby="party-on-the-leviathan"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> Fair Strides</p>
<p><span class="info-field">Original Release Date:</span> 2 July 2015</p>
<p><span class="info-field">Download:</span> <a href="https://deadlystream.com/files/file/567-party-on-the-leviathan/">Deadly Stream</a></p>
<p><span class="info-field">Mod Description:</span> Restores Juhanis conversation, including romance conversation with a female player character, on the Leviathan, by spawning the rest of the Ebon Hawk crew on the Leviathan after you are rescued.</p>
<div class="heading-wrapper h3">
<h3 id="bi-carth">Bi Carth</h3>
<a class="heading-anchor" href="#bi-carth" aria-labelledby="bi-carth"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> forgetcanon</p>
<p><span class="info-field">Original Release Date:</span> 20 July 2015</p>
<p><span class="info-field">Download:</span></p>
<ul>
<li><a href="https://deadlystream.com/files/file/577-bi-carth/">Deadly Stream</a></li>
<li><a href="https://www.nexusmods.com/kotor/mods/60">Nexus Mods</a></li>
</ul>
<p><span class="info-field">Mod Description:</span> Allows Male Revan to romance Carth and flirt with certain male NPCs.</p>
<div class="heading-wrapper h3">
<h3 id="juhani-romance-enhancement">Juhani Romance Enhancement</h3>
<a class="heading-anchor" href="#juhani-romance-enhancement" aria-labelledby="juhani-romance-enhancement"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> Kexikus</p>
<p><span class="info-field">Original Release Date:</span> 4 January 2016</p>
<p><span class="info-field">Download:</span></p>
<ul>
<li><a href="https://deadlystream.com/files/file/772-juhani-romance-enhancement/">Deadly Stream</a></li>
<li><a href="http://www.nexusmods.com/kotor/mods/73">Nexus Mods</a></li>
</ul>
<p><span class="info-field">Mod Description:</span> Improves the final romance conversation with Juhani, including triggering the conversation automatically, provided the conditions for this conversation are met, as well as adding a kiss between Juhani and female Revan.</p>
<p><span class="info-field">Note:</span> For details on how to successfully complete Juhanis romance, please check out my <a href="/shrines/starwarskotor/guides/kotor-juhani-romance-guide">Juhani Romance Guide</a>.</p>
<div class="heading-wrapper h3">
<h3 id="jcs-romance-enhancement-biromantic-bastila-for-k1">JCs Romance Enhancement: Biromantic Bastila for K1</h3>
<a class="heading-anchor" href="#jcs-romance-enhancement-biromantic-bastila-for-k1" aria-labelledby="jcs-romance-enhancement-biromantic-bastila-for-k1"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> JCarter426</p>
<p><span class="info-field">Original Release Date:</span> 19 January 2020</p>
<p><span class="info-field">Download:</span> <a href="https://deadlystream.com/files/file/1548-jcs-romance-enhancement-biromantic-bastila-for-k1/">Deadly Stream</a></p>
<p><span class="info-field">Mod Description:</span> Another mod that allows female Revan to romance Bastila, but what makes this mod different is that it also further edits Bastilas dialogue so Bastila would not refer to female Revan as a man. This mod also fixes the bugs with Bastilas romance during the endgame.</p>
<div class="heading-wrapper h3">
<h3 id="jcs-romance-enhancement-pan-galactic-flirting-for-k1">JC's Romance Enhancement: Pan-Galactic Flirting for K1</h3>
<a class="heading-anchor" href="#jcs-romance-enhancement-pan-galactic-flirting-for-k1" aria-labelledby="jcs-romance-enhancement-pan-galactic-flirting-for-k1"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> JCarter426</p>
<p><span class="info-field">Original Release Date:</span> 6 July 2022</p>
<p><span class="info-field">Download:</span> <a href="https://deadlystream.com/files/file/2115-jcs-romance-enhancement-pan-galactic-flirting-for-k1/">Deadly Stream</a></p>
<p><span class="info-field">Mod Description:</span> Allows the player to flirt with several NPCs regardless of gender.</p>
<p><span class="info-field">Note:</span> This mod is essentially a modern and improved version of Bastila &amp; Female Revan (Untold Love Story). What makes JCarter426s mod better is the fact that this mod uses an installer tool (TSLPatcher) to patch relevant dialogue files to improve compatibility with other mods, compared to Untold Love Story's installation method of putting dialogue files into the Override folder, which increases the chance of causing conflict with other mods.</p>
<div class="heading-wrapper h3">
<h3 id="carth-onasi-and-male-pc-romance">Carth Onasi and Male PC Romance</h3>
<a class="heading-anchor" href="#carth-onasi-and-male-pc-romance" aria-labelledby="carth-onasi-and-male-pc-romance"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> Leilukin (me)</p>
<p><span class="info-field">Original Release Date:</span> 6 August 2022</p>
<p><span class="info-field">Download:</span></p>
<ul>
<li><a href="https://deadlystream.com/files/file/2140-carth-onasi-and-male-pc-romance/">Deadly Stream</a></li>
<li><a href="https://www.nexusmods.com/kotor/mods/1493">Nexus Mods</a></li>
</ul>
<p><span class="info-field">Mod Description:</span> Inspired by the aforementioned Bi Carth mod, this is my version of a male Revan and Carth romance mod. The biggest differences between my version and forgetcanons are that my mod is installed by patching relevant dialogue files, instead of putting modified dialogue files in the Override folder, and I have also edited Carths dialogue and spliced audio files to prevent Carth from referring to male Revan as a woman.</p>
<div class="heading-wrapper h2">
<h2 id="for-knights-of-the-old-republic-ii-the-sith-lords">For Knights of the Old Republic II: The Sith Lords</h2>
<a class="heading-anchor" href="#for-knights-of-the-old-republic-ii-the-sith-lords" aria-labelledby="for-knights-of-the-old-republic-ii-the-sith-lords"><span hidden>#</span></a></div>
<div class="heading-wrapper h3">
<h3 id="worthy-of-note">Worthy of Note:</h3>
<a class="heading-anchor" href="#worthy-of-note" aria-labelledby="worthy-of-note"><span hidden>#</span></a></div>
<p>Stoffes <a href="https://www.gamefront.com/files/handmaiden-choice-for-females/">Handmaiden Choice for Females</a> mod (originally released on 23 April 2005), which was the first mod ever made that allowed female Exiles to recruit Handmaiden as a party member, could technically be considered a same-gender romance mod, due to the fact that with this mod, female Exiles would also be able to romance Handmaiden by having her as a party member.</p>
<p>In addition, since Handmaiden replaces Disciples place on the Ebon Hawk crew in this mod, this mod also allows female Exiles to get the Visas romance scene after the Rebuilt Jedi Enclave sequence.</p>
<p>That being said, these are all side effects of Handmaiden being exclusive to male Exiles in the vanilla game. Handmaiden Choice for Females was not intentionally made with same-gender romances in mind.</p>
<p>Hassat Hunter had remade the mod into <a href="https://www.moddb.com/mods/the-sith-lords-restored-content-mod-tslrcm/addons/handmaiden-4-females-disciple-4-males-183">Handmaiden 4 Females - Disciple for Males</a> (originally released on 14 March 2014) to be compatible with The Sith Lords Restored Content Mod (TSLRCM). However, the mod is outdated and no longer supported.</p>
<div class="heading-wrapper h3">
<h3 id="alternate-revan-romances">Alternate Revan Romances</h3>
<a class="heading-anchor" href="#alternate-revan-romances" aria-labelledby="alternate-revan-romances"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> felixfelicitas</p>
<p><span class="info-field">Original Release Date:</span> 9 March 2015</p>
<p><span class="info-field">Download:</span></p>
<ul>
<li><a href="https://deadlystream.com/files/file/529-alternate-revan-romances/">Deadly Stream</a></li>
<li><a href="http://www.nexusmods.com/kotor2/mods/43">Nexus Mods</a></li>
</ul>
<p><span class="info-field">Mod Description:</span> Allows players to set Revans love interest(s), instead of letting the game assume male Revan is romantically involved with Bastila, while female Revan is romantically involved with Carth. Most notably, with this mod, Bastila can be chosen as female Revans love interest, and Carth can be chosen as male Revans love interest.</p>
<p><span class="info-field">Required Mod:</span> <a href="https://deadlystream.com/files/file/578-tsl-restored-content-mod/">The Sith Lords Restored Content Mod (TSLRCM)</a></p>
<p><strong>WARNING:</strong> This mod is outdated, and it has game-breaking bugs. Use my REDUX version of the mod below instead. I am listing the original mod here for historical record purpose.</p>
<div class="heading-wrapper h3">
<h3 id="visas-marr-and-female-exile-romance">Visas Marr and Female Exile Romance</h3>
<a class="heading-anchor" href="#visas-marr-and-female-exile-romance" aria-labelledby="visas-marr-and-female-exile-romance"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> Leilukin (me)</p>
<p><span class="info-field">Original Release Date: </span>15 December 2016</p>
<p><span class="info-field">Download:</span></p>
<ul>
<li><a href="https://deadlystream.com/files/file/968-visas-marr-and-female-exile-romance/">Deadly Stream</a></li>
<li><a href="https://www.nexusmods.com/kotor2/mods/925">Nexus Mods</a></li>
</ul>
<p><span class="info-field">Mod Description:</span> Makes the Visas romance scene, which occurs near the endgame, available for the Exile regardless of gender.</p>
<div class="heading-wrapper h3">
<h3 id="atton-rand-and-male-exile-romance">Atton Rand and Male Exile Romance</h3>
<a class="heading-anchor" href="#atton-rand-and-male-exile-romance" aria-labelledby="atton-rand-and-male-exile-romance"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> Leilukin (me)</p>
<p><span class="info-field">Original Release Date:</span> 27 December 2016</p>
<p><span class="info-field">Download:</span></p>
<ul>
<li><a href="https://deadlystream.com/files/file/972-atton-rand-and-male-exile-romance/">Deadly Stream</a></li>
<li><a href="https://www.nexusmods.com/kotor2/mods/926">Nexus Mods</a></li>
</ul>
<p>Mod Description: Makes Atton flirt with and express romantic interest in a male Exile.</p>
<p>Required Mod: <a href="https://deadlystream.com/files/file/578-tsl-restored-content-mod/">The Sith Lords Restored Content Mod (TSLRCM)</a></p>
<div class="heading-wrapper h3">
<h3 id="handmaiden-and-female-exile-disciple-and-male-exile-romance">Handmaiden and Female Exile - Disciple and Male Exile Romance</h3>
<a class="heading-anchor" href="#handmaiden-and-female-exile-disciple-and-male-exile-romance" aria-labelledby="handmaiden-and-female-exile-disciple-and-male-exile-romance"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> Leilukin (me)</p>
<p><span class="info-field">Original Release Date:</span> 2 January 2017</p>
<p>Download:</p>
<ul>
<li><a href="https://deadlystream.com/files/file/977-handmaiden-and-female-exile-disciple-and-male-exile-romance/">Deadly Stream</a></li>
<li><a href="https://www.nexusmods.com/kotor2/mods/927">Nexus Mods</a></li>
</ul>
<p><pan class="info-field">Mod Description:</pan> In addition to allowing Handmaiden to join a female Exiles party and allowing Disciple to join a male Exiles party, this mod also makes Handmaiden a romance option for a female Exile, and Disciple for a male Exile. It is worth noting that by allowing Handmaiden to join a female Exile, this mod also enables romantic subtext between Atris and the female Exile.</p>
<p><span class="info-field">Required Mod:</span> <a href="https://deadlystream.com/files/file/578-tsl-restored-content-mod/">The Sith Lords Restored Content Mod (TSLRCM)</a></p>
<div class="heading-wrapper h3">
<h3 id="darth-sion-and-male-exile-mod">Darth Sion and Male Exile Mod</h3>
<a class="heading-anchor" href="#darth-sion-and-male-exile-mod" aria-labelledby="darth-sion-and-male-exile-mod"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> Leilukin (me)</p>
<p><span class="info-field">Original Release Date:</span> 12 January 2017</p>
<p><span class="info-field">Download:</span></p>
<ul>
<li><a href="https://deadlystream.com/files/file/996-darth-sion-and-male-exile-mod/">Deadly Stream</a></li>
<li><a href="https://www.nexusmods.com/kotor2/mods/928">Nexus Mods</a></li>
</ul>
<p><span class="info-field">Mod Description:</span> Makes Darth Sion displays romantic attachment (in his own way) to a male Exile.</p>
<p><span class="info-field">Required Mod:</span> <a href="https://deadlystream.com/files/file/578-tsl-restored-content-mod/">The Sith Lords Restored Content Mod (TSLRCM)</a></p>
<div class="heading-wrapper h3">
<h3 id="alternate-revan-romances-redux">Alternate Revan Romances REDUX</h3>
<a class="heading-anchor" href="#alternate-revan-romances-redux" aria-labelledby="alternate-revan-romances-redux"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> Leilukin (me), original mod made by felixfelicitas</p>
<p><span class="info-field">Original Release Date:</span> 26 January 2017</p>
<p><span class="info-field">Download:</span></p>
<ul>
<li><a href="https://deadlystream.com/files/file/1004-alternate-revan-romances-redux/">Deadly Stream</a></li>
<li><a href="https://www.nexusmods.com/kotor2/mods/933">Nexus Mods</a></li>
</ul>
<p>Mod Description: My updated version of the Alternate Revan Romances mod, released with felixfelicitas permission. My mod fixes many bugs with the original version.</p>
<p>Required Mod: <a href="https://deadlystream.com/files/file/578-tsl-restored-content-mod/">The Sith Lords Restored Content Mod (TSLRCM)</a></p>
<div class="heading-wrapper h3">
<h3 id="dahnis-flirt-option-for-female-pc">Dahnis Flirt Option for Female PC</h3>
<a class="heading-anchor" href="#dahnis-flirt-option-for-female-pc" aria-labelledby="dahnis-flirt-option-for-female-pc"><span hidden>#</span></a></div>
<p><span class="info-field">Mod Author:</span> Leilukin (me)</p>
<p><span class="info-field">Original Release Date:</span> 10 November 2018</p>
<p><span class="info-field">Download:</span></p>
<ul>
<li><a href="https://deadlystream.com/files/file/1400-dahnis-flirt-option-for-female-pc/">Deadly Stream</a></li>
<li><a href="https://www.nexusmods.com/kotor2/mods/1036">Nexus Mods</a></li>
</ul>
<p><span class="info-field">Mod Description:</span> Makes Dahnis, a minor NPC and one of the Pazaak players on Nar Shaddaa, flirt with the player</p>
</div>
<aside class="right-sidebar">
<div class="shrine__info sidebar--sticky">
<h2>About</h2>
<p>Welcome to Leilukin's shrine for <cite>Star Wars: Knights of the Old Republic</cite>, a series of role-playing video games set in the <cite>Star Wars</cite> universe, taking place almost 4,000 years before the events of the Skywalker film saga.</p>
<h3>Links</h3>
<ul>
<li><a href="https://kotor.neocities.org/" target="_blank">KOTOR Community Portal</a></li>
</ul>
</div>
</aside>
<style>
.right-sidebar {
background-color: var(--clr-content-bg);
font-size: clamp(0.9rem, 0.9rem + 3vw, 1rem);
}
.shrine__info {
padding: 1rem;
}
.shrine__info h2 {
font-size: clamp(1.5rem, 1rem + 3vw, 1.7rem);
margin-bottom: 0.2em;
}
.shrine__info h3 {
font-size: clamp(1.3rem, 1rem + 3vw, 1.5rem);
margin-top: 1em;
}
.shrine__info ul {
margin-top: 0.5em;
}
</style>
</div>
<style>
.breadcrumbs {
list-style: none;
padding: 0;
margin: 0 0 0.7em 0;
display: flex;
gap: 0.5em;
flex-wrap: wrap;
justify-content: center;
}
.breadcrumbs li::after {
content: '➔';
padding-left: 0.3em;
}
</style>
</main>
<footer class="footer">
<p>Made with ♥ and the Force by Leilukin | Shrine Launched: 17 February 2023</p>
<p>Back to: <a href="/shrines/">Shrine Index</a> | <a href="/">Leilukin&#39;s Hub</a></p>
</footer>
<style>
.footer {
margin-top: auto;
background: var(--clr-main-footer-bg);
padding: 0.8rem;
text-align: center;
display: grid;
}
.footer p {
padding: 0;
}
.footer__links {
justify-self: center;
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 0.7em;
}
.footer__links li:not(:last-child)::after {
content: '|';
padding-left: 0.6em;
}
@media only screen and (min-width: 600px) {
.footer {
width: 100%;
}
}
</style>
<button class="top-btn hidden" aria-label="Scroll to top">
<i class="fa-solid fa-chevron-up"></i>
</button>
<style>
.top-btn {
position: fixed;
margin: 0;
padding: 0;
bottom: 0.5rem;
right: 0.5rem;
z-index: 999;
border: none;
background-color: var(--clr-top-btn-bg);
color: var(--clr-top-btn-txt);
border-radius: 50em;
width: 2rem;
aspect-ratio: 1 / 1;
}
.top-btn:focus {
outline: 0.25em solid var(--clr-top-btn-bg);
outline-offset: 0.15em;
}
</style>
<script defer>
const topButton = document.querySelector(".top-btn");
window.onscroll = () => {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
topButton.classList.remove("hidden");
} else {
topButton.classList.add("hidden");
}
}
topButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
left: 0,
behavior: "smooth",
});
});
</script>
</body>
</html>